We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ca3e94 commit 5642b6aCopy full SHA for 5642b6a
core/character_controller_3d.gd
@@ -321,7 +321,7 @@ func _start_variables():
321
322
func _check_landed():
323
if is_on_floor() and not _last_is_on_floor:
324
- emit_signal("landed")
+ _on_landed()
325
_reset_step()
326
_last_is_on_floor = is_on_floor()
327
@@ -395,6 +395,10 @@ func _on_jumped():
395
emit_signal("jumped")
396
397
398
+func _on_landed():
399
+ emit_signal("landed")
400
+
401
402
func _on_swim_ability_emerged():
403
emit_signal("emerged")
404
0 commit comments