No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bonus1.gd 190B

123456789101112
  1. extends "scroll_movement.gd"
  2. func _physics_process(delta):
  3. move()
  4. func _on_pick_bonus_body_entered(body):
  5. if body.name == "player2" :
  6. Signals.emit_signal("gain",1)
  7. queue_free()