If you're not a nerd, get outta here!
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>
dependencies { implementation 'com.github.M64DiamondStar:EffectMaster:1.4.5' }
dependencies { implementation("com.github.M64DiamondStar:EffectMaster:1.4.5") }
<dependencies> <dependency> <groupId>com.github.M64DiamondStar</groupId> <artifactId>EffectMaster</artifactId> <version>1.4.5</version> </dependency> </dependencies>
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.
Please select one of the following:
Starting a show
Creating a custom effect
Last updated 3 months ago