tweak: adjusted run headbob frequency and inverted weapon bob

This commit is contained in:
Sara 2025-08-30 00:30:25 +02:00
parent 909e83e779
commit e30758754c
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ void PlayerCamera::update_offset() {
for (Variant child : get_children()) {
Node3D *child_3d{ cast_to<Node3D>(child) };
GETSETM(child_3d, position, {
position = -offset;
position = offset;
});
}
}