Gather Cyan
Game made in 5 hours using Godot on a day off during my military service.
Will try to play your games when I have a computer again.
Music found here: https://opengameart.org/content/4-chiptunes-adventure
Sounds in Bfxr.
All animations in Aseprite!
Status | Released |
Platforms | HTML5 |
Author | spoonsweet |
Tags | cyan |
Comments
Log in with itch.io to leave a comment.
Does the game only have one level?
haha yes it does!
Didn't have time for another one.
Thanks for hosting! It was such an interesting theme!
Good job !
For my future self:
The Cyan gets destroyed:
extends Area2D
var kill = false
onready var anim = $AnimationPlayer
var cur_anim = ""
func _ready():
change_anim("idle")
func change_anim(new_anim):
if cur_anim != new_anim:
anim.play(new_anim)
cur_anim = new_anim
func break_animation_finished():
queue_free()
func _process(delta):
if Input.is_action_just_pressed("ui_accept") && kill:
change_anim("break")
func _on_Blue_body_entered(body):
if body.name == "Player":
kill = true