immersive-home/app/content/entities/entity.gd

14 lines
262 B
GDScript3
Raw Normal View History

2024-01-27 16:13:43 +02:00
extends StaticBody3D
var entity_id: String
var icon = R.state("question_mark")
var icon_color = R.state(Color(1, 1, 1, 1))
2024-01-27 16:13:43 +02:00
func _ready():
var movable = get_node("Movable")
if movable:
movable.on_moved.connect(func():
House.body.save_all_entities()
)