wabbajack/Wabbajack.DTOs/ModList/BSA/FileStates/BA2DX10File.cs
Timothy Baldridge 4bfce0e418
Cube maps (#2260)
* Add some support for cubemaps in BA2

* add read support for cubemaps in BA2 routines

* Fix slide support during compilation

* Set default logging level to Information instead of Trace

* update CHANGELOG.md
2022-12-28 09:21:58 -07:00

30 lines
674 B
C#

using Wabbajack.DTOs.JsonConverters;
namespace Wabbajack.DTOs.BSA.FileStates;
[JsonName("BA2DX10Entry")]
[JsonAlias("BA2DX10Entry, Compression.BSA")]
public class BA2DX10File : AFile
{
public BA2Chunk[] Chunks { get; set; }
public byte PixelFormat { get; set; }
public byte NumMips { get; set; }
public ushort Width { get; set; }
public ushort Height { get; set; }
public ushort ChunkHdrLen { get; set; }
public byte Unk8 { get; set; }
public uint DirHash { get; set; }
public string Extension { get; set; }
public uint NameHash { get; set; }
public byte IsCubeMap { get; set; }
public byte TileMode { get; set; }
}