Forums » General StepMania » Make song play throughout screens

1
I have a song I'm playing using loadactor (I'm doing this wrong, aren't I?), and when the screen ends the song stops playing. How do I get it to play continuously?

Also, my intro screen doesn't automatically advance to my title screen. This is the screen I'm using in metrics.ini:


[ScreenWarning]
Class="ScreenAttract"
Fallback="ScreenAttract"
NextScreen="ScreenLogo"
PrevScreen="ScreenTitleMenu"
TimerSeconds=10


If I press enter it goes to ScreenLogo, but it doesn't do anything if I don't.

Last edited: 22 May 2015 9:16pm

Reply
You might need to add ForceTimer=true to the metrics in order to get the screen to move on automatically.

For the song thing: both screens should have the same song defined (preferably via .redirs to save on disk space), then it should work as expected.

Last edited: 23 May 2015 11:18am

Reply
OK. How do I load music from the sounds folder instead of LoadActor then?
Reply
LoadActor(THEME:GetPathS("ScreenSomething", "somesound")) will load Sounds/ScreenSomething somesound
Reply