Plugin Release XGlow - Simple ProtocolLib based API to create glow on your entities.

Download Link
https://github.com/Xezard/XGlow/releases
Source Code
https://github.com/Xezard/XGlow
Documentation
https://github.com/Xezard/XGlow/wiki
Support
https://github.com/Xezard/XGlow
Minecraft Versions
1.9.* - 1.19.*
Compatible Java Versions
8+
jK3qS5oMc30.jpg

(I noticed that the GlowAPI from the inventivetalent has been abandoned, has not been updated for a long time, has bad reviews and bugs, as well as a rather low-quality code - so I decided to make and publish my own version of the api for the glow)

XGlow - is a simple, easy-to-use API to create glow on your entities. The plugin requires ProtocolLib to work.

Usage
First you need to create a Glow object:
(You can use a builder for this)
Java:
Glow glow = Glow.builder()
                .animatedColor(ChatColor.GREEN)
                .name("test")
                .build();

You can add entity to glow object holders,
to make this entity glow with glow object colors.
The glow of the entity will be seen by all viewers
which the glow object contains:
Java:
glow.addHolders(entity);

To remove the glow of an entity,
you can remove it from the glow object holders.
The entity's glow will disappear for all viewers of the glow object:
Java:
glow.removeHolders(entity);

You can add a viewer to the glow object so that he immediately sees the glow of all holders of the glow object:
Java:
glow.display(player);

When the viewer is removed from the glow object,
all holders of the glow object will
no longer glow for removed viewer:
Java:
glow.hideFrom(player);

For more features check out XGlow wiki page on github: https://github.com/Xezard/XGlow/wiki

If you use XGlow and you like it, please rate and leave a review about it!
 
  • Like
Reactions: Tacklezaza

Xezard

New member
Jan 7, 2022
3
1
1
Updated to XGlow v.1.0.7
  • Refactoring and fixes.
  • Added support for all versions from 1.9.* to 1.19.*.