A Minecraft particle animation library designed to make your life easier.
Create complex particle animations with just a few lines of code!
Partigon.mp4
To get started, head to the documentation.
It is recommended to use Kotlin with Partigon, as it was made specifically for usage with Kotlin.
To use this library, add the Partigon.jar
file (found in Releases) and Kotlin.jar
(found here) to your plugins folder. Partigon requires the Kotlin stdlib to work.
Then, add Partigon as a dependency or soft dependency like any other plugin:
depend: [ Partigon ]
To add Partigon as a Maven dependency:
<repository>
<id>gameoholic-repo</id>
<url>https://repo.gameoholic.xyz/releases</url>
</repository>
<dependency>
<groupId>xyz.gameoholic</groupId>
<artifactId>partigon</artifactId>
<version>version</version>
<scope>provided</scope>
</dependency>
To add Partigon as a Gradle (Kotlin) dependency:
repositories {
maven {
url = uri("https://repo.gameoholic.xyz/releases")
}
}
dependencies {
compileOnly("xyz.gameoholic:partigon:version")
}