Search found 23 matches

by lbhoward
Tue Feb 17, 2009 9:42 pm
Forum: Support and Development
Topic: Does anyone have a turtrial for a loading screen
Replies: 5
Views: 2686

Re: Does anyone have a turtrial for a loading screen

Technically you could emulate a loading bar, although it would not represent just what has been loaded. From what I understand the LOVE engine streams music/sounds as they are requested to play - so I could not see any hope for your code to ask 'is everything loaded' for it then to 'draw loading bar...
by lbhoward
Tue Feb 17, 2009 6:25 pm
Forum: Support and Development
Topic: ERROR! on Audio
Replies: 2
Views: 1470

Re: ERROR! on Audio

Aha! Thank you very much bartbes, you drew my attention to the fact that 'loop' was not a valid parameter, I have changed the code.

Code: Select all

   splashsong = love.audio.newMusic("sound/SFOpening.ogg")
   love.audio.play(splashsong, 0)
'0' indicating to loop forever. Thank you very much.
by lbhoward
Tue Feb 17, 2009 6:19 pm
Forum: Support and Development
Topic: ERROR! on Audio
Replies: 2
Views: 1470

ERROR! on Audio

Hello there - I am a BTEC National Diploma Games Development student, and for one of my projects I have been tasked with the creation of a 2D Game. We have been given alot of freedom on this project (as with most of our projects) so I decided to use the LOVE Engine, purely because I have some experi...