|
2 | 2 |
|
3 | 3 | namespace MBINCompiler.Models.Structs |
4 | 4 | { |
5 | | - public class GcBiomeData : NMSTemplate |
| 5 | + public class GcBiomeData : NMSTemplate // size: 0x400 |
6 | 6 | { |
7 | | - public GcMiningSubstanceData MiningSubstance1; |
8 | | - public GcMiningSubstanceData MiningSubstance2; |
9 | | - public GcMiningSubstanceData MiningSubstance3; |
10 | | - public GcMiningSubstanceData MiningSubstance4; |
11 | | - public GcPlanetWaterData Water; |
| 7 | + /* 0x000 */ public GcMiningSubstanceData MiningSubstance1; |
| 8 | + /* 0x00C */ public GcMiningSubstanceData MiningSubstance2; |
| 9 | + /* 0x018 */ public GcMiningSubstanceData MiningSubstance3; |
| 10 | + [NMS(Size = 0xC, Ignore = true)] |
| 11 | + /* 0x024 */ public byte[] Padding24; |
| 12 | + /* 0x030 */ public GcPlanetWaterData Water; |
12 | 13 |
|
13 | 14 | [NMS(Size = 0x80)] |
14 | | - public string DiffuseMap; |
| 15 | + /* 0x1E0 */ public string DiffuseMap; |
15 | 16 | [NMS(Size = 0x80)] |
16 | | - public string NormalMap; |
| 17 | + /* 0x260 */ public string NormalMap; |
| 18 | + [NMS(Size = 0x80)] |
| 19 | + /* 0x02E0 */ public string OverlayTexture; |
17 | 20 |
|
18 | | - [NMS(Size = 10)] |
19 | | - public GcTileTypeOptions[] TileTypes; |
| 21 | + /* 0x360 */ public List<GcTileTypeSet> TileTypeSets; // something 0x64 long... |
20 | 22 |
|
21 | | - public List<GcExternalObjectListOptions> ExternalObjectLists; |
| 23 | + /* 0x370 */ public List<GcExternalObjectListOptions> ExternalObjectLists; |
22 | 24 |
|
23 | 25 | [NMS(Size = 7, EnumValue = new string[7] { "Clear", "Dust", "Humid", "Snow", "Toxic", "Scorched", "Radioactive" } )] |
24 | | - public bool[] WeatherOptions; |
| 26 | + /* 0x380 */ public bool[] WeatherOptions; |
25 | 27 |
|
26 | | - public GcTerrainControls Terrain; |
| 28 | + /* 0x388 */ public GcTerrainControls Terrain; |
27 | 29 |
|
28 | 30 | [NMS(Size = 8, Ignore = true)] |
29 | | - public byte[] Padding408; |
| 31 | + /* 0x3F8 */ public byte[] Padding3F8; |
30 | 32 | } |
31 | 33 | } |
0 commit comments