diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-09-22 07:03:57 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-09-22 07:03:57 -0400 |
commit | 12943209f25236a06f0a1c3ddcb62c83f7172827 (patch) | |
tree | 678eab684f5e73134ef2fd1e2e946d59088a81ca /character/fps_controller/fps_controller.gd | |
parent | 62f864004c6cfcbdb919e5e27a6ddaaaa8c4acc9 (diff) | |
download | godot_wildjam_49-12943209f25236a06f0a1c3ddcb62c83f7172827.tar.gz godot_wildjam_49-12943209f25236a06f0a1c3ddcb62c83f7172827.zip |
Modify the fog and blur to better hide the pop in
Diffstat (limited to 'character/fps_controller/fps_controller.gd')
-rw-r--r-- | character/fps_controller/fps_controller.gd | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/character/fps_controller/fps_controller.gd b/character/fps_controller/fps_controller.gd index 8d5af12..54f9dbe 100644 --- a/character/fps_controller/fps_controller.gd +++ b/character/fps_controller/fps_controller.gd @@ -79,12 +79,10 @@ func handle_collision(): var col_pos = collision.position - collider.transform.origin collider.add_force(col_force_vec, col_pos) - func _on_ladder_detector_body_entered(body): if body.is_in_group("ladder"): is_climbing = true - func _on_ladder_detector_body_exited(body): if body.is_in_group("ladder"): - is_climbing = false
\ No newline at end of file + is_climbing = false |