From 2e09a963298f28cc37f680f3c459334b7257ab4d Mon Sep 17 00:00:00 2001 From: Carmine Date: Sat, 24 Feb 2018 21:12:14 +0100 Subject: [PATCH] LightAttributes_s: renamed Unknown_1Bh as Flashiness and splitted Type into Type + GroupId (according to openFormats) --- CodeWalker.Core/GameFiles/Resources/Drawable.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CodeWalker.Core/GameFiles/Resources/Drawable.cs b/CodeWalker.Core/GameFiles/Resources/Drawable.cs index 089b290..a03a5dd 100644 --- a/CodeWalker.Core/GameFiles/Resources/Drawable.cs +++ b/CodeWalker.Core/GameFiles/Resources/Drawable.cs @@ -2032,11 +2032,12 @@ namespace CodeWalker.GameFiles public byte ColorR { get; set; } public byte ColorG { get; set; } public byte ColorB { get; set; } - public byte Unknown_1Bh { get; set; } + public byte Flashiness { get; set; } public float Intensity { get; set; } public uint Flags { get; set; } public ushort BoneId { get; set; } - public ushort Type { get; set; } + public byte Type { get; set; } + public byte GroupId { get; set; } public uint TimeFlags { get; set; } public float Falloff { get; set; } public float FalloffExponent { get; set; }