8 lines
164 B
GDScript
8 lines
164 B
GDScript
extends Node3D
|
|
|
|
func execUpdate():
|
|
$XLightingUpdate3D.updateLighting.emit()
|
|
|
|
func _process(delta: float) -> void:
|
|
$objects.child_entered_tree.connect(execUpdate)
|