10 lines
		
	
	
		
			229 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			229 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
extends Test
 | 
						|
 | 
						|
# Called when the node enters the scene tree for the first time.
 | 
						|
func _ready() -> void:
 | 
						|
	pass
 | 
						|
 | 
						|
# Called every frame. 'delta' is the elapsed time since the previous frame.
 | 
						|
func _process(_delta: float) -> void:
 | 
						|
	pass
 |