Skip to content

Commit 121a9fc

Browse files
authored
load3d asap on main thread
1 parent 0f196ff commit 121a9fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/GameEventHandler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ namespace plugin {
868868
if (auto actor = arg2_form->As<RE::Actor>()) {
869869
if (!actor->Is3DLoaded()) {
870870
logger::warn("Loading 3D for node transform");
871-
actor->Load3D(false);
871+
actor->Load3D(true);
872872
}
873873
}
874874
}
@@ -881,7 +881,7 @@ namespace plugin {
881881
if (auto actor = arg2_form->As<RE::Actor>()) {
882882
if (!actor->Is3DLoaded()) {
883883
logger::warn("Loading 3D for node transform");
884-
actor->Load3D(false);
884+
actor->Load3D(true);
885885
}
886886
}
887887
}

0 commit comments

Comments
 (0)