proto3 initial commit

This commit is contained in:
Segey Lapin
2020-04-13 12:45:25 +03:00
parent 69410badf6
commit 1084b6d5c3
1588 changed files with 368852 additions and 23 deletions

View File

@@ -0,0 +1,13 @@
extends RigidBody
var timeout = 1.5
func _ready():
pass
func _process(delta):
timeout -= delta
if timeout < 0.0:
if get_tree().get_nodes_in_group("projectile").size() > 40:
queue_free()
else:
sleeping = true
set_process(false)