Ursplaticus by commanderstitch
Ursplaticus, a game made in sfml. my first one in sfml.
release and debug versions of the game performed very differently, so i was shocked to discover how much faster the release version ran compared with the debug version.
your goal is to squish your opponent as many times as possible.
You do this by taking the truck and clicking on it. then simply click on your enemy. simple right?
yeah, i know. I liked it too.
there are a couple of things you might want to know:
1. you have to move mouse off of the truck in order to pick it up again.
known bugs so far are:
sometimes your animation will flicker.
sometimes if you multi-click movement and pick up the truck it makes your character disappear.
sometimes the final score doesn't appear in the right spot.(black screen)
great stuff. :-)
it says windows, but i'm not so sure it can't be run on other machines; i have no idea. someone should test this.
release and debug versions of the game performed very differently, so i was shocked to discover how much faster the release version ran compared with the debug version.
your goal is to squish your opponent as many times as possible.
You do this by taking the truck and clicking on it. then simply click on your enemy. simple right?
yeah, i know. I liked it too.
there are a couple of things you might want to know:
1. you have to move mouse off of the truck in order to pick it up again.
known bugs so far are:
sometimes your animation will flicker.
sometimes if you multi-click movement and pick up the truck it makes your character disappear.
sometimes the final score doesn't appear in the right spot.(black screen)
great stuff. :-)
it says windows, but i'm not so sure it can't be run on other machines; i have no idea. someone should test this.
https://www.dropbox.com/s/m1lbkaf3o2trf1f/CommanderStitch_LD32.zip?dl=0
mTimer = 0;
mTimerlimit = 0.1;
void update()
{
mTimer += time since last update; (Time.deltaTime in unity)
if(mTimer > mTimelimit)
{
Do the normal update
mTimer = 0; -Important, otherwise it will always update anyway.
}
}
I hope this helped.