Search found 10 matches
- Tue Nov 06, 2012 3:55 am
- Forum: Support and Development
- Topic: Combining love.graphics.print text strings?
- Replies: 1
- Views: 3677
Combining love.graphics.print text strings?
To combine text strings, I always use string.format, which is very slow and will cut my framerate in half when doing a lot of printing with it. For example: love.graphics.print(string.format("%s%s%","variable:",var),10,10) is how I use it, and I'm wondering if there is an easier...
- Sun Aug 05, 2012 3:49 pm
- Forum: Games and Creations
- Topic: My First Game, Snake
- Replies: 22
- Views: 18245
Re: My First Game, Snake
I really like the font & tile style. The gameplay is pretty standard to Snake, but great job on the graphics. I get 60 fps, so I'm assuming you are using some kind of FPS lock or v-sync.
Great job.
Great job.
- Sun Mar 25, 2012 1:44 pm
- Forum: Games and Creations
- Topic: falla (formerly noname)
- Replies: 4
- Views: 3324
Re: falla (formerly noname)
I've come up with a name and added a lot of neat stuff. Plus I have an .exe version, for super easy use!
- Sat Mar 24, 2012 4:00 pm
- Forum: Games and Creations
- Topic: falla (formerly noname)
- Replies: 4
- Views: 3324
falla (formerly noname)
I call it falla because, you catch falling things. It's a pretty simple game with some nice simple graphics, although a little too simple maybe, and a repeating chiptuney song. HCuvP.png falla.love - open with love.exe falla.exe - unzip and run the .exe space: progress through menus mouse: drag the ...
- Tue Jan 24, 2012 4:14 am
- Forum: Games and Creations
- Topic: World Aviator!
- Replies: 15
- Views: 9046
Re: World Aviator!
Quick question, how do you change the icon for compiled .exes?
- Sun Jan 15, 2012 12:53 am
- Forum: Games and Creations
- Topic: World Aviator!
- Replies: 15
- Views: 9046
Re: World Aviator!
I saw the example about issues with images that aren't divisible by 2, I could use that to fix the white boxes issue.
But for the getPixel, I don't really understand how it works. Would I call it in the update function?
But for the getPixel, I don't really understand how it works. Would I call it in the update function?
- Sun Jan 15, 2012 12:01 am
- Forum: Games and Creations
- Topic: World Aviator!
- Replies: 15
- Views: 9046
Re: World Aviator!
Four remarks: You can't steer and change the throttle at the same time, perhaps some elseifs that are supposed to be ifs? You can't see yourself on the minimap. Being able to land anywhere isn't as good for my ego when I land on an airstrip. The plane "blip" doesn't indicate a direction. ...
- Sat Jan 14, 2012 9:39 pm
- Forum: Games and Creations
- Topic: World Aviator!
- Replies: 15
- Views: 9046
World Aviator!
World Aviator is a little top-down flight game I've been working on for the past two weeks. It has landing, crashing, refueling & two maps! But it also doesn't have a rotating plane image, sounds, a working speedbreak or a map changing menu. It still needs a lot of work! Controls: A to turn righ...
- Sat Jan 07, 2012 10:02 pm
- Forum: Support and Development
- Topic: Image rotation
- Replies: 2
- Views: 2358
Re: Image rotation
If you are only drawing one image... function love.draw() love.graphics.rotate(angleInRadians) -- Rotates all items drawn. love.graphics.draw(yourImage,x,y) -- Draws your image. end To convert an angle to radian, you can use... radian = angle*math.pi/180 When you use this it rotates from 0,0 not you...
- Sat Jan 07, 2012 5:15 pm
- Forum: General
- Topic: What code editor do you use ?
- Replies: 195
- Views: 318243
Re: What code editor do you use ?
Notepad. The one that comes default with windows.