Developer API

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

The API is kind of broken at the moment, I'll try to fix this as soon as possible!

The API isn't very rich currently. You can start shows but you can't modify them or add your own custom effects.

Dependency

Importing with Maven

<repositories>
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
</repositories>
<dependencies>
	<dependency>
	    <groupId>com.github.M64DiamondStar</groupId>
	    <artifactId>EffectMaster</artifactId>
	    <version>f47e6278df</version>
	</dependency>
</dependencies>

Importing with Gradle

dependencyResolutionManagement {
	repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
	repositories {
		mavenCentral()
		maven { url 'https://jitpack.io' }
	}
}

dependencies {
        implementation 'com.github.M64DiamondStar:EffectMaster:f47e6278df'
}

Using the API

Please select one of the following (more coming (hopefully) soon):

Starting a show

Last updated