Show show =newShow("category","name"); // Get a show instanceshow.play(); // The general start optionshow.playFrom(1); // Start a show from a specific effect IDshow.playOnly(1); // Only play one effect from a show
Kotlin
val show =Show("category", "name") // Get a show instanceshow.play() // The general start optionshow.playFrom(1) // Start a show from a specific effect IDshow.playOnly(1) // Only play one effect from a show