Jasoco wrote:I wrap at page width. I don't get the whole obsession with 80 characters. It's a relic from the DOS days when you needed to hard wrap a text file for it to appear right on screen.
I do it because I keep mah terminals at 80 characters. And because the right margin shows up more than half way across my screen, seeing as I have an extremely low resolution most of the time.
bartbes wrote:No more tabs vs spaces, because I know I am right. (though if I say what I prefer this will all start again)
It's gnawing away inside me to know what you prefer.
I did see your game, and for me the walls work. You should try and fix it though, because if it doesn't work for some people there is probably still something wrong.
In addition to the sins other people have listed, you also put all your update code in love.draw. You have no love.update at all. (And that is terrible.)
Regarding the winning condition, am I correct in assuming the player actually has to pick up the balls/crystals/whatever in a certain order?
And as a function update, is not the solution.
I initially brought this demo using the function update.
But when come to the conclusion that without this function will be better.
On my laptop, this version (with sleep) works better than the first with function update.
And as a function update, is not the solution.
I initially brought this demo using the function update.
But when come to the conclusion that without this function will be better.
On my laptop, this version (with sleep) works better than the first with function update.
Thanks for comments.
Wait, what? You think You're better off without update()?
That's like saying you're better off without tires on your car. It'll still slide along, sure, but you're gonna want that control and functionality later. How are you going to force things to be consistent without dt?
tentus wrote:That's like saying you're better off without tires on your car. It'll still slide along, sure, but you're gonna want that control and functionality later. How are you going to force things to be consistent without dt?
There's the love.timer.getDelta function, but conceptually, not using love.update is bad.
prototypez wrote:I use Microsoft Word 97 to write my code with word wrap off and convert all of my code to HTML. Then I compile it. It always works just fine!
prototypez wrote:I use Microsoft Word 97 to write my code with word wrap off and convert all of my code to HTML. Then I compile it. It always works just fine!