2010-08-25から1日間の記事一覧

mqo表示まで

なかなか時間がとれぬ。 JOGLと同じところまで進んだ。 次は、SkeletalAnimation、要するにpmd+vmdの実装に進む。 9月中にJBulletと合体するとこまで行きてぇ。 とりあえずソース貼る。 http://github.com/ousttrue/trigonal

バイナリファイルの読み込みメモ

pmdローダーを作る前に。 import java.io.File; import java.io.FileInputStream; import java.nio.ByteBuffer; // 全部読み込む File f=new File(path); int length=(int)f.length(); byte[] buf=new byte[length]; FileInputStream fs=new FileInputStream…