Examples of MCIN


Examples of starlight.taliis.core.chunks.adt.MCIN

  private void init() {
    // create all chunks
    info = new MVER();

    header = new MHDR();
    fieldInfo = new MCIN();

    mtex = new MTEX();

    mmdx = new MMDX();
    mmid = new MMID();
View Full Code Here

Examples of starlight.taliis.core.chunks.adt.MCIN

    // load stuff using the offsets
    int base_offs = header.getBaseOffs();

    try {
      buff.position(base_offs + header.getInfoOffs());
      fieldInfo = new MCIN(buff);

      buff.position(base_offs + header.getTexOffs());
      mtex = new MTEX(buff);

      buff.position(base_offs + header.getModelOffs());
View Full Code Here

Examples of starlight.taliis.core.chunks.adt.MCIN

      throw new InvalidClassException("No ADT Headers found.");
    }

    checkVersion();

      fieldInfo = new MCIN(buff);

      mtex = new MTEX(buff);

      mmdx = new MMDX(buff);
     
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.