Ui Rebuild and Full Controller Support #59

Merged
Snoweuph merged 29 commits from dev-base into stable 2023-04-11 20:41:55 +00:00
2 changed files with 0 additions and 2 deletions
Showing only changes of commit 02f141a6ef - Show all commits

View file

@ -14,7 +14,6 @@ func get_move_input_vector() -> Vector2:
return (input_direction if not input_direction_controller.length() > input_direction.length() else input_direction_controller.normalized())
func update_player_movement(delta : float):
print(get_move_input_vector())
var input = get_move_input_vector()
# Damp Movement if not moving, Accelerate if Moving

View file

@ -16,7 +16,6 @@ func get_aim_pos() -> Vector2:
func rotate_to_pointer():
look_at(get_aim_pos())
#TODO Implement Joystick Aiming
func spawn_projectile(pos : Vector2, dir : float, speed: float, damage : int):
var projectile = projectilePrefab.instantiate()