mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 09:28:46 +02:00
Update ScriptEngine::_isUserLoaded to be atomic
This commit is contained in:
parent
a21e07327d
commit
5f60aeef22
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ protected:
|
||||||
Quat _quatLibrary;
|
Quat _quatLibrary;
|
||||||
Vec3 _vec3Library;
|
Vec3 _vec3Library;
|
||||||
ScriptUUID _uuidLibrary;
|
ScriptUUID _uuidLibrary;
|
||||||
bool _isUserLoaded { false };
|
std::atomic<bool> _isUserLoaded { false };
|
||||||
bool _isReloading { false };
|
bool _isReloading { false };
|
||||||
|
|
||||||
ArrayBufferClass* _arrayBufferClass;
|
ArrayBufferClass* _arrayBufferClass;
|
||||||
|
|
Loading…
Reference in a new issue