Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

The mood is really good!
I think the radial menu overlays on some of the text and makes it hard to read since it shows up on top of it.  The menu shows on the bottom for me, and overlays on top of "Build tools" or other text.

Dang, how did you do the text appearing in godot? Any links appreciated.

Love the sound scape you used!

(+1)

Thanks, yeah i couldn't polish as much as I wanted because the game jam deadline.

For the text, i instance a label with the text and then i make it appear with a tween. The time is proportional to the character number.

    var character_number = log_text.length()
    instance.visible_ratio = 0
    var tween = get_tree().create_tween()
    tween.tween_property(instance, "visible_ratio", 1, character_number * 0.03)