diff options
author | nokoe <nokoe@mailbox.org> | 2025-10-07 00:12:45 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2025-10-07 00:12:45 +0200 |
commit | ded5df80fb7025cd3d2cc5e8f3e59684903b1b77 (patch) | |
tree | d1ca576c71a373ceb581e0a66a3e0e1cf9815282 /client | |
parent | efcb14390a34a153defbe4d8d9dfe1e5a805ae2d (diff) | |
download | hurrycurry-ded5df80fb7025cd3d2cc5e8f3e59684903b1b77.tar hurrycurry-ded5df80fb7025cd3d2cc5e8f3e59684903b1b77.tar.bz2 hurrycurry-ded5df80fb7025cd3d2cc5e8f3e59684903b1b77.tar.zst |
fix head not hiding in first person mode
Diffstat (limited to 'client')
-rw-r--r-- | client/map/items/rolled_dough.res | bin | 8735 -> 8737 bytes | |||
-rw-r--r-- | client/player/controllable_player.gd | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/rolled_dough.res b/client/map/items/rolled_dough.res Binary files differindex 194e8c55..2759b731 100644 --- a/client/map/items/rolled_dough.res +++ b/client/map/items/rolled_dough.res diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd index f37acb41..3a64743b 100644 --- a/client/player/controllable_player.gd +++ b/client/player/controllable_player.gd @@ -59,11 +59,11 @@ func _ready(): ) add_child(onscreen_controls) add_child(marker) + super() Settings.hook_changed_init("gameplay.first_person", "hide_head", func(fps): character.head_default.visible = not fps character.username_tag.visible = not fps ) - super() const MAX_DT = 1. / 50. func _process(delta): |