Search found 62 matches

by TheP3
Fri Feb 24, 2012 7:48 pm
Forum: General
Topic: Hats, hats, and more hats?
Replies: 22
Views: 6636

Re: Hats, hats, and more hats?

coffee wrote:http://www.google.com/imghp?hl=en&tab=wi
Try search... let's say... hats... I got good results
I did not know what hat to pick...
by TheP3
Fri Feb 24, 2012 7:38 pm
Forum: General
Topic: Hats, hats, and more hats?
Replies: 22
Views: 6636

Hats, hats, and more hats?

Ok, i'm making a game. I need to know what hats to make. So, can you look for some nice two hats for me? This is the last thing then... Then, my game is about done!
by TheP3
Fri Feb 24, 2012 6:28 pm
Forum: Games and Creations
Topic: Update!!! On my puppy game! Wanna beta test?
Replies: 16
Views: 8354

Re: Update!!! On my puppy game! Wanna beta test?

Robin wrote:Also, is it supposed to give away the answers?
When it's done it won't. lol. If you open up the source code you can see the place to delete the answers...
by TheP3
Fri Feb 24, 2012 3:18 am
Forum: Games and Creations
Topic: Update!!! On my puppy game! Wanna beta test?
Replies: 16
Views: 8354

Re: Update!!! On my puppy game! Wanna beta test?

OMG! OH cute! it's a Dog Sim tamagotchi for LOVE!!! Ok, being serious, small bug. When entering in Math Q/A "mode" you forgot to "reset" font size. So the text at top left corner get the big font size of math questions. App isn't bad, it's getting better than what I saw before i...
by TheP3
Fri Feb 24, 2012 3:14 am
Forum: Games and Creations
Topic: Update!!! On my puppy game! Wanna beta test?
Replies: 16
Views: 8354

Re: Update!!! On my puppy game! Wanna beta test?

I don't know what happens. After down DogGame.zip , I rename it to DogGame.love, open with love0.7.1 in a pc with win server 2003 it give only love0.7.1 ' s rotate flower in starsky, can't see game fontpaga. ( look in main.lua and game.lua , for a newbie can't adjust anything.) And if I download jr...
by TheP3
Fri Feb 24, 2012 12:19 am
Forum: Games and Creations
Topic: Update!!! On my puppy game! Wanna beta test?
Replies: 16
Views: 8354

Update!!! On my puppy game! Wanna beta test?

So, after only 4 hours of sleep. I made the game... almost, still have to make hats and the toys usable... But other than that ! I think I'm about done! :awesome: Also, I uploaded the code! So, if there is a bug! Tell me! and to exit any menu hit esc... Also, if your mouse gets at x = 0 and y = 0......
by TheP3
Thu Feb 23, 2012 6:19 am
Forum: Support and Development
Topic: How to setFont(size) with out being a memory sucker!(Fixed!)
Replies: 12
Views: 2425

Re: How to setFont(size) with out being a memory sucker!

Well, sorry if someone was just about to answer. But, I think I did it. If there is a better way please tell me! love.load() setfont = false end love.draw() or update(dt) if setfont == false then love.graphics.setFont(size) setfont = true end love.graphics.print("This text is running in love.dr...
by TheP3
Thu Feb 23, 2012 6:11 am
Forum: Support and Development
Topic: How to setFont(size) with out being a memory sucker!(Fixed!)
Replies: 12
Views: 2425

How to setFont(size) with out being a memory sucker!(Fixed!)

So, is there a way? For those who don't know if you put love.graphics.setFont(size) in love.update() or love.draw() it sucks up soooooooo much memory! Is there a way around this?
by TheP3
Wed Feb 22, 2012 8:38 pm
Forum: Support and Development
Topic: Loading data from a file?
Replies: 2
Views: 1770

Loading data from a file?

How do I make love2D read a file? Like a txt, or .lua file. I prefer it to be a .lua file. I want to store data and read data.



Thanks!
by TheP3
Wed Feb 22, 2012 6:16 pm
Forum: Support and Development
Topic: How do you make buttons?
Replies: 6
Views: 2548

Re: How do you make buttons?

function love.mousepressed(x, y, click) if click == "l"(l as in left click) then if x >= (x pos of the button img) and x <= (x pos + width of img) and y >= (y pos of the button img) and y <= (y pos + width of img) then --function end end end That's about it!