1.7.10 Custom particles in the armor

Версия Minecraft
1.7.10
Hello excuse my ignorance and for disturbing a lot in this forum, but is there a way to create particles and put it in an armature, for example in the image? for example turn around for the character or something that can be done if anyone knows could you help me?
 

Вложения

  • Captura.PNG
    Captura.PNG
    739.5 KB · Просмотры: 28
7,099
324
1,509
Try to spawn particles with disperse on radius(like a sphere) and with velocity to top(like (0,1,0)
1589544507380.png
 
1,417
44
594
2018-06-12_21.34.31.png
Java:
    private static void sphere(double x, double y, double z, EntityPlayer player) {
        for(double sv = -1; sv<1; sv+=0.2) {
            for(double ch = -1; ch<1; ch+=0.2) {
                double cv = Math.sqrt(1 - sv * sv);
                double sh = Math.sqrt(1 - ch * ch);
                PartLib.particle(x + (0.5 * sv), y+ (0.5*sh*cv),z + (0.5 * ch * cv), player.dimension, 30F);
                PartLib.particle(x + (0.5 * sv), y- (0.5*sh*cv),z + (0.5 * ch * cv), player.dimension, 30F);
            }
        }
    }
PartLib.particle => world#spawnParticle
 
Сверху