Added DataSize calculation to RenderableLODLights

This commit is contained in:
dexy 2019-12-12 01:32:07 +11:00
parent 39edd18b71
commit 73f763de43

View File

@ -1514,6 +1514,8 @@ namespace CodeWalker.Rendering
Spots = spots.ToArray();
Caps = caps.ToArray();
DataSize = (points.Count + spots.Count + caps.Count) * 80;
}
public override void Load(Device device)