diff options
Diffstat (limited to 'client/map')
-rw-r--r-- | client/map/items/item.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd index a42edc39..fc10dbee 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -46,6 +46,7 @@ func _ready(): func _process(delta): var ispeed = 30.0 if owned_by.get_parent().get_parent() is Player else 10. position = G.interpolate(position, owned_by.global_position, delta * ispeed) + rotation.y = G.interpolate_angle(rotation.y, owned_by.global_rotation.y, delta * ispeed) func progress(p: float, warn: bool): progress_instance.visible = true |