Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
9 lines (7 sloc)
231 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends Node2D | |
func _on_Area2D_area_entered(area): | |
if(area.get_collision_layer_bit(2)): | |
queue_free() | |
# Called every frame. 'delta' is the elapsed time since the previous frame. | |
func _process(delta): | |
move_local_x(delta * 400) |