diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-09-04 22:12:02 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-09-04 22:12:02 +0200 |
| commit | 5fab354d37476f7339975311a0fe4d5a559065db (patch) | |
| tree | d58a10d24c66291237d1bc4dc026b86f490881bf /client/player/controllable_player.gd | |
| parent | c646336dc3bf470d4185eec995d00a89c420127b (diff) | |
| parent | 9ed1d51ad4abaa114da36e3284c8e29dd07855ad (diff) | |
| download | hurrycurry-5fab354d37476f7339975311a0fe4d5a559065db.tar hurrycurry-5fab354d37476f7339975311a0fe4d5a559065db.tar.bz2 hurrycurry-5fab354d37476f7339975311a0fe4d5a559065db.tar.zst | |
Merge branch 'master' of codeberg.org:hurrycurry/hurrycurry
Diffstat (limited to 'client/player/controllable_player.gd')
| -rw-r--r-- | client/player/controllable_player.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd index c654c070..81315630 100644 --- a/client/player/controllable_player.gd +++ b/client/player/controllable_player.gd @@ -136,8 +136,8 @@ func aabb_point_distance(mi: Vector2, ma: Vector2, p: Vector2) -> float: func update_position(_new_position: Vector2, _new_rotation: float, _new_boosting: bool): pass -func progress(p: float, warn: bool): - super(p, warn) +func progress(position__: float, speed: float, warn: bool): + super(position__, speed, warn) Input.start_joy_vibration(0, 0.5, 0.1, 0.15) func put_item(tile: Tile): |