diff --git a/KeepersCompound.LGS/Database/File.cs b/KeepersCompound.LGS/Database/File.cs index 6cad85d..26cea6e 100644 --- a/KeepersCompound.LGS/Database/File.cs +++ b/KeepersCompound.LGS/Database/File.cs @@ -144,6 +144,7 @@ public class DbFile "P$OTxtRepr3" => new PropertyChunk(), "P$Light" => new PropertyChunk(), "P$LightColo" => new PropertyChunk(), + "P$Spotlight" => new PropertyChunk(), "P$RenderAlp" => new PropertyChunk(), "LD$MetaProp" => new LinkDataMetaProp(), _ when entryName.StartsWith("L$") => new LinkChunk(), diff --git a/KeepersCompound.LGS/Database/ObjectHierarchy.cs b/KeepersCompound.LGS/Database/ObjectHierarchy.cs index 921ded2..4fbc59d 100644 --- a/KeepersCompound.LGS/Database/ObjectHierarchy.cs +++ b/KeepersCompound.LGS/Database/ObjectHierarchy.cs @@ -102,6 +102,7 @@ public class ObjectHierarchy AddProp("P$RenderAlp"); AddProp("P$Light"); AddProp("P$LightColo"); + AddProp("P$Spotlight"); } public T GetProperty(int objectId, string propName) where T : Property