mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
4bfce0e418
* 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
30 lines
674 B
C#
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; }
|
|
} |