mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
14 lines
212 B
GDScript
14 lines
212 B
GDScript
extends KinematicBody
|
|
|
|
func _enter_tree():
|
|
var spat : Node = get_parent()
|
|
|
|
while spat != null:
|
|
if spat is Spatial:
|
|
transform = (spat as Spatial).transform * transform
|
|
|
|
spat = spat.get_parent()
|
|
|
|
|
|
|