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,15 @@
extends Spatial
export(Array, Dictionary) var animations: Array = []
export var player_only: bool = false
enum type {T_BED, T_DOOR, T_CONTAINER, T_NAV}
func entered(body):
print("entered:", body.name)
func exited(body):
print("exited:", body.name)
func activate():
pass
func _ready():
$Area.connect("body_entered", self, "entered")
$Area.connect("body_exited", self, "exited")