diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-06-26 13:15:12 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-06-26 13:15:12 +0200 |
| commit | eff1b80e06fd0b50675d235e7a9b3dadc6048d40 (patch) | |
| tree | 8c564547e54c3cccce476bbd4511d1a7060a75c7 /client/player/controllable_player.gd | |
| parent | 9be454fc277d910fe563aac4a792f9a53c32954d (diff) | |
| parent | d29914ef2b2285d6326e95d5100c8aef9954d670 (diff) | |
| download | hurrycurry-eff1b80e06fd0b50675d235e7a9b3dadc6048d40.tar hurrycurry-eff1b80e06fd0b50675d235e7a9b3dadc6048d40.tar.bz2 hurrycurry-eff1b80e06fd0b50675d235e7a9b3dadc6048d40.tar.zst | |
Merge branch 'master' of codeberg.org:metamuffin/undercooked
Diffstat (limited to 'client/player/controllable_player.gd')
| -rw-r--r-- | client/player/controllable_player.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd index c4691b67..903f22c7 100644 --- a/client/player/controllable_player.gd +++ b/client/player/controllable_player.gd @@ -34,6 +34,7 @@ func _ready(): timer.connect("timeout", func(): game.mp.send_position(position_, rotation_) ) + super() func _process(delta): var input = Vector2(Input.get_axis("left", "right"), Input.get_axis("forward", "backwards")).normalized() |