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
  • Repository
  • Dependency
  • Using the API

Was this helpful?

  1. EffectMaster

Developer API

If you're not a nerd, get outta here!

Repository

repositories {
	mavenCentral()
	maven { url 'https://jitpack.io' }
}
repositories {
	mavenCentral()
	maven { url("https://jitpack.io") }
}
<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>

Dependency

dependencies {
        implementation 'com.github.M64DiamondStar:EffectMaster:1.4.9'
}
dependencies {
        implementation("com.github.M64DiamondStar:EffectMaster:1.4.9")
}
<dependencies>
	<dependency>
		<groupId>com.github.M64DiamondStar</groupId>
		<artifactId>EffectMaster</artifactId>
		<version>1.4.9</version>
	</dependency>
</dependencies>

Java or Kotlin?

Though it is possible to interact with EffectMaster using Java, I suggest using Kotlin if you understand the language. EffectMaster is written in Kotlin which makes it a lot easier to interact with if you use kotlin yourself.

Using the API

Please select one of the following:

Starting a show

Creating a custom effect

PreviousCreationsNextStarting a show

Last updated 3 months ago

Was this helpful?