Search found 65 matches

by BulbaMander
Mon Jan 21, 2013 4:22 am
Forum: Support and Development
Topic: 'vent-programming' and what can become of It
Replies: 7
Views: 2920

'vent-programming' and what can become of It

So I got home from a wrestling tournament last night and had placed 5th which is not what I hoped for, so naturally being me and not taking losing very well I was incredibly depressed/angry and Started a new main.lua and just added some code to play around with angrily (I often use interpreters as t...
by BulbaMander
Mon Dec 17, 2012 1:40 am
Forum: Support and Development
Topic: Help with a GUI Library of sorts
Replies: 5
Views: 2655

Re: Help with a GUI Library of sorts

The first time I ran your game, it completely crashed my macbook. I had to force shut down. I think it's cause you're creating a new font each frame in love.draw(). Make the new font in love.load, and then just set it in love.draw(). Otherwise your game could become unplayable. im really sorry! ive...
by BulbaMander
Sun Dec 16, 2012 9:19 pm
Forum: Support and Development
Topic: Help with a GUI Library of sorts
Replies: 5
Views: 2655

Re: Help With My First Game's Menu

I can help you fix your code, but I don't know about any button libraries. Starting with main.lua, you need to provide a love.mousepressed function. It should look something like this: function love.mousepressed(x, y, button) if gamestate == "menu" then if button == "l" then but...
by BulbaMander
Sun Dec 16, 2012 9:00 pm
Forum: Support and Development
Topic: Help with a GUI Library of sorts
Replies: 5
Views: 2655

Re: Help With My First Game's Menu

thanks alot ill try that right now!
by BulbaMander
Sun Dec 16, 2012 4:49 pm
Forum: Support and Development
Topic: Help with a GUI Library of sorts
Replies: 5
Views: 2655

Help with a GUI Library of sorts

Hey, So I just started this whole love thing and Ill be honest Im not too good yet but I got inspired yesterday to make a really cool dungeon crawler game. All i have right now is the "menu" screen and a box dude i drew in 5 minutes to move around with no maps or anything. The problem is t...