Search found 7 matches

by LoveHurts
Tue Sep 24, 2013 2:05 pm
Forum: Games and Creations
Topic: Legends of Rathnor [WIP]
Replies: 37
Views: 33847

Re: Legends of Rathnor [WIP]

Heres more art modifications of your art are welcome to use..
by LoveHurts
Thu Sep 12, 2013 9:05 pm
Forum: Support and Development
Topic: How to build a level file format
Replies: 29
Views: 12419

Re: How to build a save system

You can also study the sources of BoxBreaker: http://love2d.org/forums/viewtopic.php?f=5&t=3617&start=20 I am trying to run this game but it crashes in love 0.8.0 It has to do with the physics name changes so I updated the code... and now applyLinearImpulse doesn't cause the ball to move up...
by LoveHurts
Thu Sep 12, 2013 8:49 pm
Forum: Support and Development
Topic: Dynamic Callback Functions
Replies: 9
Views: 5220

Re: Dynamic Callback Functions

The reason why I wanted to do this is I was looking at the code for another game... and it seems to run a little slow. So I was trying cut out as many if statements as a could. I never want to check if its the gamestate. I just want to switch to the correct states at the right time by overwriting th...
by LoveHurts
Thu Sep 12, 2013 6:21 am
Forum: Support and Development
Topic: Dynamic Callback Functions
Replies: 9
Views: 5220

Re: Dynamic Callback Functions

So the love.run() function is called by the boot after the love.load() function is called once? What if love.load() doesn't return? What if I overwrite love.run() to run another function run2() when that returns then run3(). Can I set love.run =nil while I am within the function? Its just a pointer ...
by LoveHurts
Thu Sep 12, 2013 5:37 am
Forum: General
Topic: The library names are hilarious...
Replies: 19
Views: 26817

Re: The library names are hilarious...

What the heck is a Joystick Ball anyway? Well, aside from the plastic red thing at the end of the stick in the arcade . They're aren't always red... http://th08.deviantart.net/fs71/PRE/i/2013/212/c/a/link_hand_painted_joystick_ball_top_by_anomalyarcadesticks-d6g1yr2.jpg more joystick balls http://a...
by LoveHurts
Thu Sep 12, 2013 5:34 am
Forum: Support and Development
Topic: love.filesystem Loading .love files??
Replies: 2
Views: 4383

Re: love.filesystem Loading .love files??

What is the call to physfs that love utilizes to unzip the love file in the first place? I there a way I can unzip the contents to a tmp dir then load the file(s)?
by LoveHurts
Mon Sep 09, 2013 5:13 pm
Forum: Support and Development
Topic: Dynamic Callback Functions
Replies: 9
Views: 5220

Dynamic Callback Functions

I would like to create save the defauit love.run() callback function like this; what do I do to get a pointer to a function? function love.load() lr = love.run() end --then redefined love.run function love.run() fori=1,50,1 do splash() love.graphics.present() end --later I want to change to a differ...