Re: [SOLVED]Positioning a image in another image(A weap in h
Posted: Thu Jan 16, 2014 10:33 am
Instead of using:
You can use:
This will return an integer instead of a double (or float).
Basically, this will get rid of the .<number>
Code: Select all
love.graphics.print("STAMINA: "..player.stamina,100,80)
Code: Select all
love.graphics.print("STAMINA: "..math.floor(player.stamina),100,80)
Basically, this will get rid of the .<number>