Something like Director, but without the Segmentation Faults and Bus Errors?

For my project, the Director Class is overkill, and it’s not working at all. To make things even more frustrating, it works fine on the simulator, but not on an actual device.

I don’t need transitions, and I think I can handle the clean-up. Is there something out there that can simply switch from one lua to another? And, no, as of now, just resetting the variables isn’t going to do it for me.

[import]uid: 13529 topic_id: 5902 reply_id: 305902[/import]

If Director is not helping you, you can try to make your own class. It’s very hard to make something that can be used for everyone for everything, maybe if you make just the part you need, it will be a better solution. [import]uid: 8556 topic_id: 5902 reply_id: 20249[/import]

/ endRant

UPDATE:
I got Director to work on my iPad. It seems that iPads don’t really like fast transitions. To get past this, I made a new function:

function moveOn()  
 director:changeScene("levelComplete")  
end  

and I call it with:

 timer.performWithDelay( 5000, moveOn, 1)  

once my a level has been completed (two objects colliding in my case). I’m going to experiment with just how long of a delay I really need.

Thanks for Director, and I wholeheartedly apologize for my frustration. [import]uid: 13529 topic_id: 5902 reply_id: 20259[/import]

I recommend this if director does not suit your needs (although director is awesome - thanks ricardo!):

http://developer.anscamobile.com/code/object-oriented-sample-game-framework [import]uid: 7587 topic_id: 5902 reply_id: 20261[/import]

@emf715

Great to see that you got your app to work with Director! [import]uid: 8556 topic_id: 5902 reply_id: 21135[/import]