소스 검색

:art: Tween rotation when accessing driving seat

DricomDragon 1 년 전
부모
커밋
40049b91c3
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      first3d/component/entity/walker/walker.gd

+ 3 - 1
first3d/component/entity/walker/walker.gd

@@ -76,7 +76,9 @@ func _get_on_driver_seat() -> void:
 		_seat = null
 		return
 
-	set_rotation(_seat.get_rotation())
+	var rotation_tween: Tween = create_tween()
+	rotation_tween.tween_property(self, "quaternion", _seat.quaternion, seat_rotation_duration)
+
 	var local_velocity = (_seat.position - position).normalized() * seat_access_speed
 	velocity = get_parent().get_transform().basis * local_velocity
 	print("- I'm at ", position, ", going to ", _seat.position, " with speed ", velocity)