コード例 #1
0
 public SpriteSheet(Point offset, Size selection)
 {
     this.offset    = offset;
     this.selection = selection;
     this.margin    = new Size(0, 0);
     this.direction = SpriteImportTilingDirection.Right;
     this.count     = 1;
 }
コード例 #2
0
 public SpriteSheet(Point offset, Size selection, Size margin, SpriteImportTilingDirection direction, int count)
 {
     this.offset    = offset;
     this.selection = selection;
     this.margin    = margin;
     this.direction = direction;
     this.count     = count;
 }