Package com.ngt.jopenmetaverse.shared.protocol.primitives

Examples of com.ngt.jopenmetaverse.shared.protocol.primitives.TextureAnimation


        prim.PrimData = data;

        // Textures, texture animations, particle system, and extra params
        prim.Textures = objectupdate.Textures;

        prim.TextureAnim = new TextureAnimation(block.TextureAnim, 0);
       
        //FIXME need to fix the following exception
        try{
          prim.ParticleSys = new ParticleSystem(block.PSBlock, 0);
        }
View Full Code Here


        // Texture animation
        if ((flags & CompressedFlags.TextureAnimation.getIndex())  != 0)
        {
          //int textureAnimLength = (int)Utils.BytesToUIntBig(block.Data, i);
          i += 4;
          prim.TextureAnim = new TextureAnimation(block.Data, i);
        }

        //endregion

        prim.IsAttachment = (flags & CompressedFlags.HasNameValues.getIndex())  != 0 && prim.ParentID != 0;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.primitives.TextureAnimation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.