I have a scene that is displayed before a level, where the images are loaded. During this I show text about the game. I would like the text to appeal to what Level it is. How can I do something like "if Level is 5-9", and then the rest of the code.

Basically my way of explaining is:

       if (currentLevel.Level 5-9) { 
//do stuff 
    }

By Level5-9 I mean Levels 5, 6, 7, 8, 9. Tell me if you need more explanation. Thanks

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted
if (currentLevel >=5 && currentLevel <= 9) { 
    // do stuff 
}
link|improve this answer
Thanks man! Will accept answer (it's telling me wait 5 minutes). – Joethemonkey101 Mar 7 '11 at 1:04
Hey btw, how can I do the same thing, but with randomly selected levels? I want to make some texts appear at random Levels – Joethemonkey101 Mar 7 '11 at 1:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.