- Native Minecraft Version:
- 1.16
- Tested Minecraft Versions:
- 1.14
- 1.15
- 1.16
- Source Code:
- https://github.com/BackdoorIncorp/AnimationLibary
ANIMATIONLIBARY
by Intyaa(BackdoorIncorp)
Use:
With this Libary you can send Easy Animation Packets to any Players or NPC.
Supported:
Syncron and Asyncron Animations are Supported.
All Vanilla Animations are Supported.
TODO: Add LabyMod / LunarClient Animation
For Developers:
Code (Text):import io.github.animationlib.AnimationLibary;
import io.github.animationlib.enums.Animation;
import org.bukkit.Bukkit;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
public class ExampleCommand implements CommandExecutor {
@Override
public boolean onCommand(CommandSender commandSender, Command command, String s, String[] strings) {
if(commandSender instanceof Player) {
Player player = (Player) commandSender;
if(strings.length == 1) {
Player target = Bukkit.getPlayer(strings[0]);
AnimationLibary.getAnimationLibary().playerAnimations.sendPublicAsyncPlayerAnimation(player, Animation.SWING_ARM);
}
}
return false;
}
}
Discord:
Rene#8373

Spigot Animation Libary 0.1
Easy to use NMS Animation Libary for Players and EntityPlayers (NPCs)