❌Item Animations
Item Animations is a feature that allows you to create animated items. There are two types of items: static and animated. As the name suggests, static items are not updated, so you cannot change their appearance once they are displayed. In contrast, animated items are updated periodically, and their properties, such as type, name, and lore, may change with each update.
How to create an Animated Item?
Head over to the/config/menus/folderOpen a Menu fileChoose an item you would like to make animatedFind theanimation-settingssectionSet theenabledsetting to trueCreate your animations (see below)Restart the server or reload the plugin to apply changes
How to create an Animation?
To create an animation, you need to make the meta-builder iterable.
Here is an example of a static meta-builder:
meta-builder:
name: "Static Item Name"
lore:
- "Static Item Lore"
type: ENDER_CHEST
amount: 1
glow: false
player-head: ""
custom-head: ""
Here's an example of an animated meta-builder:
meta-builder:
1:
name: "Animation #1 Item Name"
lore:
- "Animation #1 Item Lore"
type: ENDER_CHEST
amount: 1
glow: false
player-head: ""
custom-head: ""
2:
name: "Animation #2 Item Name"
lore:
- "Animation #2 Item Lore"
type: ENDER_CHEST
amount: 1
glow: false
player-head: ""
custom-head: ""
Last updated