Has anyone figured out a way to loop thru soundtracks?

IntelligentDesignerIntelligentDesigner Member Posts: 517
I have a series of soundtracks that I would like to play, in a 1-2-3-4-5-6-7-1-2-3, etc...fashion

How do you get the soundtrack to link to the next soundtrack when it hits the end of the currently playing one?

Anyone have an idea, please help?

Comments

  • synthesissynthesis Member Posts: 1,693
    Stitch them all together into one soundtrack using a audio editing software. Then select the loop options in the play music behavior.
  • IntelligentDesignerIntelligentDesigner Member Posts: 517
    That would do it, Thanks Synthesis... Is there any sort of programmatic way like animation looping, though?
  • synthesissynthesis Member Posts: 1,693
    Not that I know of. Sound is pretty simple...PLAY, STOP, LOOP OR NOT LOOP.
  • GamexcbGamexcb Member Posts: 179
    I know!

    I have looped 3 tracks in a "programmatic" way!

    Make and actor with as many rules as there are sounds.

    Then give it a self attribute called sound.
    Set sound to 1
    Next make a rule:

    if sound = 1 - then
    ----
    for (how long specific sound clip is in seconds)
    play sound (sound title) - with loop set

    after (how long specific sound clip is in seconds)
    set sound to 2
    ------------

    And of course the last rule with the last track will set sound back to 1.

    ----------

    -Gamexcb
Sign In or Register to comment.