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