mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8" ?>
 | |
| <class name="VisualScriptYield" inherits="VisualScriptNode" category="Core" version="3.0-alpha">
 | |
| 	<brief_description>
 | |
| 	</brief_description>
 | |
| 	<description>
 | |
| 	</description>
 | |
| 	<tutorials>
 | |
| 	</tutorials>
 | |
| 	<demos>
 | |
| 	</demos>
 | |
| 	<methods>
 | |
| 		<method name="get_wait_time">
 | |
| 			<return type="float">
 | |
| 			</return>
 | |
| 			<description>
 | |
| 			</description>
 | |
| 		</method>
 | |
| 		<method name="get_yield_mode">
 | |
| 			<return type="int" enum="VisualScriptYield.YieldMode">
 | |
| 			</return>
 | |
| 			<description>
 | |
| 			</description>
 | |
| 		</method>
 | |
| 		<method name="set_wait_time">
 | |
| 			<return type="void">
 | |
| 			</return>
 | |
| 			<argument index="0" name="sec" type="float">
 | |
| 			</argument>
 | |
| 			<description>
 | |
| 			</description>
 | |
| 		</method>
 | |
| 		<method name="set_yield_mode">
 | |
| 			<return type="void">
 | |
| 			</return>
 | |
| 			<argument index="0" name="mode" type="int" enum="VisualScriptYield.YieldMode">
 | |
| 			</argument>
 | |
| 			<description>
 | |
| 			</description>
 | |
| 		</method>
 | |
| 	</methods>
 | |
| 	<members>
 | |
| 		<member name="mode" type="int" setter="set_yield_mode" getter="get_yield_mode" enum="VisualScriptYield.YieldMode">
 | |
| 		</member>
 | |
| 		<member name="wait_time" type="float" setter="set_wait_time" getter="get_wait_time">
 | |
| 		</member>
 | |
| 	</members>
 | |
| 	<constants>
 | |
| 		<constant name="YIELD_FRAME" value="1">
 | |
| 		</constant>
 | |
| 		<constant name="YIELD_PHYSICS_FRAME" value="2">
 | |
| 		</constant>
 | |
| 		<constant name="YIELD_WAIT" value="3">
 | |
| 		</constant>
 | |
| 	</constants>
 | |
| </class>
 | 
