Adds a engine method to clear the scopeAlways flag on netObjects

This commit is contained in:
Areloch 2017-10-15 03:59:13 -05:00
parent efbd5fb451
commit 524556fe30

View file

@ -493,3 +493,8 @@ void NetObject::removeScopeRef()
}
}
DefineEngineMethod(NetObject, clearScopeAlways, void, (), ,
"@brief Clears the scope always flag on this object.\n\n")
{
object->clearScopeAlways();
}