logo.gd 130 B

12345678
  1. extends TextureRect
  2. func _on_timer_timeout():
  3. if randf() < 0.1:
  4. texture.current_frame = 1
  5. else:
  6. texture.current_frame = 0