mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			828 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			828 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="UTF-8" ?>
 | 
						|
<class name="VisualScriptCondition" inherits="VisualScriptNode" version="4.0">
 | 
						|
	<brief_description>
 | 
						|
		A Visual Script node which branches the flow.
 | 
						|
	</brief_description>
 | 
						|
	<description>
 | 
						|
		A Visual Script node that checks a [bool] input port. If [code]true[/code], it will exit via the "true" sequence port. If [code]false[/code], it will exit via the "false" sequence port. After exiting either, it exits via the "done" port. Sequence ports may be left disconnected.
 | 
						|
		[b]Input Ports:[/b]
 | 
						|
		- Sequence: [code]if (cond) is[/code]
 | 
						|
		- Data (boolean): [code]cond[/code]
 | 
						|
		[b]Output Ports:[/b]
 | 
						|
		- Sequence: [code]true[/code]
 | 
						|
		- Sequence: [code]false[/code]
 | 
						|
		- Sequence: [code]done[/code]
 | 
						|
	</description>
 | 
						|
	<tutorials>
 | 
						|
	</tutorials>
 | 
						|
	<methods>
 | 
						|
	</methods>
 | 
						|
	<constants>
 | 
						|
	</constants>
 | 
						|
</class>
 |