Cromon

Untitled

Aug 16th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. M2Model.prototype.ajaxComplete = function(response) {
  2.     this.reader = new BinaryReader(response);
  3.  
  4.     var header = this.reader.readType(M2Header);
  5.  
  6.     this.reader.position = header.ofsVertices;
  7.     var vertices = this.reader.readArray(header.nVertices, M2Vertex);
  8.     console.log(vertices);
  9. };
Advertisement
Add Comment
Please, Sign In to add comment