Starting a show

Use the EffectMaster API to start a show!

Java

Show show = new Show("category", "name"); // Get a show instance
show.play(); // The general start option
show.playFrom(1); // Start a show from a specific effect ID
show.playOnly(1); // Only play one effect from a show

Kotlin

val show = Show("category", "name") // Get a show instance
show.play() // The general start option
show.playFrom(1) // Start a show from a specific effect ID
show.playOnly(1) // Only play one effect from a show

Last updated