Ship mostly works #10

Merged
chrisbell merged 60 commits from feature/ship-syncing into develop 2024-12-29 04:35:51 +00:00
Showing only changes of commit dc635482c8 - Show all commits

View File

@ -139,8 +139,8 @@ func _send_ship_sync():
func _handle_ship_sync_position(pos: Vector3):
lerp(global_position, pos, 0.1 * delta_time)
global_position = lerp(global_position, pos, 0.1 * delta_time)
func _handle_ship_sync_rotation(rot: Vector3):
lerp(global_rotation, rot, 0.1 * delta_time)
global_rotation = lerp(global_rotation, rot, 0.1 * delta_time)