Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buyOn this page, you will find our API to create your own set of animations
The API is only available for the premium version of the plugin.
Create your own opening phase animations and register them at runtime through the API.
Extend OpeningPhaseAnimation and implement the lifecycle methods:
public class YourPhaseAnimation extends OpeningPhaseAnimation<EmptyOpeningPhaseData> {
public YourPhaseAnimation(OpeningCrateAnimation animation, OpeningPhaseType type,
EmptyOpeningPhaseData data) {
super(animation, type, data);
}
@Override
public void load() {
}
@Override
public void tick() {
}
@Override
public void unload() {
}
}
Register your phase during addon startup and unregister it on shutdown:
public void onEnable() {
registerPhase(
new OpeningPhaseType(PhaseType.FIRST, "YOUR_PHASE_IDENTIFIER",
"Your Display Name",
XMaterial.STONE, ServerVersion.v1_16_R1,
new XMaterial[] {}, EmptyOpeningPhaseData.class,
(animation, type, data) -> new YourPhaseAnimation(animation,
type, (EmptyOpeningPhaseData) data),
() -> new EmptyOpeningPhaseData()));
}
public void onDisable() {
for (final OpeningPhaseType type : this.registeredPhases) {
OpeningPhaseType.unregisterPhase(type);
}
}
private void registerPhase(OpeningPhaseType phase) {
// Registering first phase animations
OpeningPhaseType.registerPhase(phase);
// Caching to unload later on
this.registeredPhases.add(phase);
}
tick() when possible.onDisable().If you have not created your addon bootstrap yet, start with 🔧 Custom Addons.
Oops... looks like the spiders padded through here
Add products to your cart and remove them from here Lets buy