A game created for the Godot Wild Jam #21
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.

18 lines
338B

  1. extends Node2D
  2. export var pulse_color:Color = Color(1.0, 0.8, 0.0, 1.0)
  3. func _ready():
  4. $Dot.pulse_color = pulse_color
  5. $Dot.start()
  6. $Dot21.pulse_color = pulse_color
  7. $Dot21.start()
  8. $Dot22.pulse_color = pulse_color
  9. $Dot22.start()
  10. $Dot31.pulse_color = pulse_color
  11. $Dot31.start()
  12. $Dot32.pulse_color = pulse_color
  13. $Dot32.start()