Game
Tsalagi

2 years ago

Decided to do some work on the save/load. Name, Chapter, and even Total Play Time CORRECTLY FORMATTED Will work on the chapter banners later. Free time formatting code below


(Sorry for the poor formatting)

func _process(delta):

your_time_variable += delta

func format_my_time():
var time_elapsed = float(your_time_variable)

var s = int(time_elapsed) % 60

var min = int(time_elapsed) / 60

var m = min % 60

var h = min / 60

if m < 10:

m = str("0" + str(m))

if s < 10:

s = str("0" + str(s))

time.text = str(h) + ":" + str(m) + ":" + str(s).pad_decimals(0)

You could theoretically go up to days and years, just using 24 and 365. That is not necessary for my game, but the pattern remains the same. If you need something really precise, accounting for leap years or leap seconds, then I might recommend using something in the Time singleton



0 comments

Loading...

Next up

Doing some designing of the main village, mostly so I can get some connections in and get the next part of the opening cutscenes roughed in.

Working on battles. A little different than last time, aesthetically, but still the same basic idea

Ah, yes, Grandpa and Grandma's old farmhouse, with a million rooms, basement full of mason jars, and the old '57 Chevy in the garage

I mean, not my Gramma and Grampa, but someone's, right?

The combat system is already being implemented and there are also some advances with the environment (WIP)

#gamedev #indiedev #godot

This game has gone through so many iterations it's not even funny anymore

We’re excited to announce that we’re working on a new game, a 3D metroidvania with a Low Poly Pixel Art style. Stay tuned for more updates!!!

#gamedev #indiedev #pixelart

NEW PACKAGES AVAILABLE NOW!

Version 1.1.0 is now available for Linux and Windows

-Platform bugs fixed where player fell through the floor

-Area 2 accessible through Level 8

-Minor spiffing up, wax and polish

Today's accomplishments include a rather smooth state machine, a functioning opening cutscene, and name input. It's not pretty, but there aren't any bugs

It's Halloween! let's talk about SCARE.

Battle State Machine is working Player chooses what to do, enemies choose what to do, and they even have variable rates of attack/defend/flee. Next step will be to actually start dealing damage