protected int nid;//特征id,比如卡的id,npc的id等等 public PictureRegion(int id, int x, int y, int width, int height, PictureRegionCellType type, int nid) : base(id, x, y, width, height) { this.nid = nid; this.type = type; Scale = 1; }
public void SetRegionType(int id, PictureRegionCellType value) { SubVirtualRegion region; if (subRegions.TryGetValue(id, out region)) { (region as PictureRegion).SetType(value); } }
public PictureAnimRegion(int id, int x, int y, int width, int height, PictureRegionCellType type, int nid) : base(id, x, y, width, height, type, nid) { }
public void SetType(PictureRegionCellType value) { type = value; }