説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CellExtra.cs 454B

123456789101112131415
  1. using System.IO;
  2. namespace UnityEditor.U2D.Aseprite
  3. {
  4. /// <summary>
  5. /// Parsed representation of an Aseprite CellExtra chunk.
  6. /// </summary>
  7. /// <note>Not supported yet.</note>
  8. internal class CellExtra : BaseChunk
  9. {
  10. public override ChunkTypes chunkType => ChunkTypes.CellExtra;
  11. internal CellExtra(uint chunkSize) : base(chunkSize) { }
  12. protected override void InternalRead(BinaryReader reader) { }
  13. }
  14. }