Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

Alright, I'm like half way through this video.

Some of the bugs were so bad, I've been programming while watching through the feedback. I have uploaded the first of probably a couple builds I'll be putting up today.

Here is part 1 of my response.

---

About audio adjusting in real time. The volume of an audio object in gamemaker is set at the time of play. So I reset all audio on menu close. I've been trying to find a good way around doing it this way for a while.

The save buttons shouldn't have been in the splash page options menu at all. It was an artifact from combining scripts. Fixed.

I'll give label boxes a white border instead of a cyan one.

For name input, it actually activates a toggle for custom name input mode. If the input in empty it generates a new name. I figured that the rainbow text was a good enough indicator of the edit mode being toggled. The edit button itself now also changes color.

Pressing enter actually confirms the name change. Nobody is doing this, but there is a catch for this when the characters are submitted. I have added this function to the edit button.

Sprint is now on by default. (Shift toggle sprint)

You cannot destroy objects while in the pay respects animation.

You can pay respects the totem at any time, but there was a bug where the totem was being targeted from the wrong square. Standing on the square south of the totem would have worked. There is no way you could have known that.

I have yet again reduced rain noise. XD

That weird thing with the job switching. Huh, I've never see that happen before. After quite a bit of testing. I've determined that it is the newly implemented aspirations system. This was happening, because while pawns can choose a different job to perform on their own. They were not checking other professions aspirations, before setting a new one. Scrolling through the list of professions caused them to accept all jobs, and all of those jobs aspirations. Going on a job fair.

(+1)

About audio adjusting in real time. The volume of an audio object in gamemaker is set at the time of play. So I reset all audio on menu close. I've been trying to find a good way around doing it this way for a while.

Hm, I'd think gamemaker would provide some way to make this work? I don't know anything about gamemaker but maybe you could hack it by waiting for the player to change the audio option, and then resuming play for the shortest amount of time possible and then stopping play. Then the change would take effect but it would be invisible to the user that they ever left a menu state.

That weird thing with the job switching. Huh, I've never see that happen before. After quite a bit of testing. I've determined that it is the newly implemented aspirations system. This was happening, because while pawns can choose a different job to perform on their own. They were not checking other professions aspirations, before setting a new one. Scrolling through the list of professions caused them to accept all jobs, and all of those jobs aspirations. Going on a job fair.

Ah don't you love bugs like this