realtime.destroy problem
Realtime: Could not find RealtimeViewModel for RealtimeView in the datastore. Unable to destroy RealtimeView.
UnityEngine.Debug:LogError (object)
UnityEngine.Debug:LogError (object)
RealtimeView you're trying to destroy with is not found in the datastore. This could happen if the RealtimeView was not properly registered with the datastore, which can occur if it was not instantiated using Realtime.Instantiate(). Realtime.Instantiate().RealtimeView that was not instantiated using Realtime.Instantiate(), you may encounter this error. Make sure that the RealtimeView you're trying to destroy was instantiated correctly.RealtimeView:RealtimeView, or issues with the model setter in RealtimeComponent. You can refer to the Common Questions (https://normcore.io/documentation/realtime/common-questions#why-would-a-realtimecomponents-model-remain-null) section of the NormalVR documentation for more details.Realtime.Destroy()Realtime.Destroy()// Instantiate
GameObject myObject = Realtime.Instantiate("MyPrefabName");
// Destroy
if (realtimeView.isOwnedLocally) {
Realtime.Destroy(myObject);
}