Package starlight.taliis.core.binary.m2

Examples of starlight.taliis.core.binary.m2.Header


   
    keybonelookup=new short[1];
    keybonelookup[0]=-1;
   
    vertex=new Vertex[1];
    vertex[0]=new Vertex();

    transparency=new AnimationBlock[1];
    transparency[0]=new AnimationBlock();
   
    texdefs=new TexDef[1];
View Full Code Here


    nVertices= header.getnVertices();
    ofsVertices= header.getofsVertices();
    buff.position(ofsVertices);
    vertex=new Vertex[nVertices];
    for(int i=0;i<nVertices;i++){
      vertex[i]=new Vertex(buff);
    }
    System.out.println("Loaded Vertices\n");
   
    nBones= header.getnBones();
    ofsBones= header.getofsBones();
View Full Code Here

  }
 
  public void setnVertices(int val){
    vertex=new Vertex[val];
    for(int i=0;i<val;i++){
      vertex[i]=new Vertex();
    }
  }
View Full Code Here

    created=true;
   
    header=new Header();
    modelname=new ZeroTerminatedString("Test");
    anims=new AnimSequ[1];
    anims[0]=new AnimSequ();
    bone=new Bones[1];
    bone[0]=new Bones();
    bonelookup=new short[1];
    bonelookup[0]=0;
   
View Full Code Here

   
   
    anims=new AnimSequ[header.getNAnim()];
    buff.position(header.getAnimoffs());
    for(int i=0;i<header.getNAnim();i++){
      anims[i]=new AnimSequ(buff);
    }
    System.out.println("Loaded AnimSequences\n");
   
    nVertices= header.getnVertices();
    ofsVertices= header.getofsVertices();
View Full Code Here

TOP

Related Classes of starlight.taliis.core.binary.m2.Header

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.