/// <summary> /// Move this group from inside of another group into the Scene as a full member /// This does not reset IDs so that it is updated correctly in the client /// </summary> /// <param name="entity"></param> public void DelinkPartToScene (ISceneEntity entity) { //Force the prim to backup now that it has been added entity.ForcePersistence(); //Tell the entity that they are being added to a scene IOpenRegionSettingsModule WSModule = m_parentScene.RequestModuleInterface<IOpenRegionSettingsModule>(); if (WSModule != null) entity.ApplyPhysics(WSModule.AllowPhysicalPrims); else entity.ApplyPhysics(true); //Now save the entity that we have AddEntity(entity, false); }