コード例 #1
0
ファイル: GumpWidget.java プロジェクト: carriercomm/Exult
 protected void initShape(int shnum, ShapeFiles file) {
   shapeFile = file == null ? ShapeFiles.GUMPS_VGA : file;
   frameNum = 0;
   shapeNum = shnum;
   shape = shapeFile.getShape(shapeNum, frameNum);
 }
コード例 #2
0
ファイル: GumpWidget.java プロジェクト: carriercomm/Exult
 public void setFrame(int f) {
   frameNum = f;
   shape = shapeFile.getShape(shapeNum, frameNum);
 }