Inheritance: ProjectIndexedDataType
示例#1
0
文件: Area.cs 项目: Drenn1/LynnaLab
 void SetAnimation(byte index)
 {
     graphicsState.RemoveGfxHeaderType(GfxHeaderType.Animation);
     // Animation
     if (index != 0xff) {
         animationGroup
             = Project.GetIndexedDataType<AnimationGroup>(index);
     }
     else
         animationGroup = null;
     InvalidateAllTiles();
 }