EffectMaster Wiki
Discord Support
  • EffectMaster
    • EffectMaster Home
    • Getting Started
      • Creating your first show
    • Effects
      • Activator
      • Animatronic
      • Animatronic Group
      • Block Line
      • Block Path
      • Console Command
      • Falling Block
      • Fill Block
      • Firework
      • Fountain
      • Fountain Bloom
      • Fountain Dancing
      • Fountain Line
      • Fountain Path
      • Item Fountain
      • Item Fountain Line
      • Item Fountain Path
      • Particle
      • Particle Emitter
      • Particle Line
      • Particle Path
      • Replace Fill
      • Set Block
      • Snow Launcher
      • Sound Effect
      • Sound Emitter
    • Commands
    • Settings
      • Show Looping
      • Relative Shows
    • Plugin Integrations
      • Animatronics
      • ProtocolLib
      • TrainCarts
    • Videos and tutorials
    • Creations
    • Developer API
      • Starting a show
      • Creating a custom effect
    • Troubleshooting
    • Donation
  • Links
    • Download
    • Github
    • Discord
    • M64's Wiki
    • M64's Portfolio
Powered by GitBook
On this page
  • Java
  • Kotlin

Was this helpful?

  1. EffectMaster
  2. Developer API

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
PreviousDeveloper APINextCreating a custom effect

Last updated 8 months ago

Was this helpful?