Advertisement
ignacy123

Gemetry Dash - Enemy1.gd

Aug 9th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. extends "res://src/Actors/Actor.gd"
  2.  
  3. func _ready():
  4. velocity.x = -speed.x
  5.  
  6. func _physics_process(delta) -> void:
  7. velocity.y += gravity * delta
  8. if is_on_wall():
  9. velocity.x *= -1.0
  10. velocity.y = move_and_slide(velocity, FLOOR_NORMAL).y
  11.  
  12. func _on_StompDetector_body_entered(body):
  13. if body.global_position.y > get_node("StompDetector").global_position.y:
  14. return
  15. die()
  16.  
  17. func die() -> void:
  18. queue_free()
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement