Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Minor Patch?

A topic by DungeonMartian created 86 days ago Views: 53 Replies: 4
Viewing posts 1 to 4
Submitted

Am I allowed to put out a minor patch that fixes a major performance issue?

Submitted

Just changing 

if velocity.x < 0: sprite.set_flip_h(true) 

else : sprite.set_flip_h(false)

to

if velocity.x < 0: sprite.set_flip_h(true) 

elif: velocity.x > 0: sprite.set_flip_h(false)


This caused me no issues in all of my testing, and only seems to be an issue in browser

Host

Yup! please do provide a devlog on the itch page if you do more changes detailing them.

Submitted

This is interesting, can I do a minor change in my game too to solve a balance problem? There was an item that didn't drop  when you killed enemies.. I will write a devlog explaining it. Thanks!

Host

Sorry for the late answer, but yes that is fine