Browse Source

:tada: Move the character relative to camera point of view

DricomDragon 1 year ago
parent
commit
da8eaebdd4
1 changed files with 4 additions and 3 deletions
  1. 4 3
      godot/component/entity/walker/walker.gd

+ 4 - 3
godot/component/entity/walker/walker.gd

@@ -41,9 +41,10 @@ func trigger_jump() -> void:
 func trigger_direction(dir: Vector2) -> void:
 	#target_rotation = -dir.x * turn_to_rad
 	#var ground_velocity: Vector2 = Vector2.UP.rotated(-global_rotation.y) * dir.y * speed
-	target_velocity.x = dir.x * speed
-	target_velocity.z = -dir.y * speed
-
+	var target_character_direction = Vector3(dir.x, 0.0, -dir.y)
+	var target_world_direction: Vector3 = get_viewport().get_camera_3d().get_camera_transform().basis * target_character_direction
+	target_world_direction.y = 0.0
+	target_velocity = target_world_direction.normalized() * speed
 
 ## Return true if inside a vehicle
 func is_onboard() -> bool: