forked from teamnwah/openmw-tes3coop
Use editor markers for lights and creatures levelled lists
This commit is contained in:
parent
0bd6078826
commit
6ddf6eb885
2 changed files with 9 additions and 0 deletions
|
@ -79,6 +79,7 @@
|
|||
Feature #4444: Per-group KF-animation files support
|
||||
Feature #4466: Editor: Add option to ignore "Base" records when running verifier
|
||||
Feature #4012: Editor: Write a log file if OpenCS crashes
|
||||
Feature #4512: Editor: Use markers for lights and creatures levelled lists
|
||||
Task #2490: Don't open command prompt window on Release-mode builds automatically
|
||||
|
||||
0.44.0
|
||||
|
|
|
@ -102,6 +102,14 @@ void CSVRender::Object::update()
|
|||
if (recordType == CSMWorld::UniversalId::Type_Light)
|
||||
{
|
||||
light = &dynamic_cast<const CSMWorld::Record<ESM::Light>& >(referenceables.getRecord(index)).get();
|
||||
if (model.empty())
|
||||
model = "marker_light.nif";
|
||||
}
|
||||
|
||||
if (recordType == CSMWorld::UniversalId::Type_CreatureLevelledList)
|
||||
{
|
||||
if (model.empty())
|
||||
model = "marker_creature.nif";
|
||||
}
|
||||
|
||||
if (model.empty())
|
||||
|
|
Loading…
Reference in a new issue