diff options
Diffstat (limited to 'Chicken.gd')
-rw-r--r-- | Chicken.gd | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -21,6 +21,8 @@ func roll_die(chance): return (randf() * 100) <= chance func _physics_process(delta): + if !is_on_floor(): + move_and_slide(Vector3.DOWN, Vector3.UP) if chasing: state_chasing(delta) return |