OpenSim.Region.Framework.Scenes.Scene.ForEachClient C# (CSharp) Method

ForEachClient() public method

public ForEachClient ( Action action ) : void
action Action
return void
        public void ForEachClient(Action<IClientAPI> action)
        {
            m_clientManager.ForEachSync(action);
        }

Usage Example

Ejemplo n.º 1
0
 protected void KillEntities(Scene scene, ISceneEntity[] grp)
 {
     scene.ForEachClient(delegate(IClientAPI client)
     {
         client.SendKillObject(scene.RegionInfo.RegionHandle, grp);
     });
 }
All Usage Examples Of OpenSim.Region.Framework.Scenes.Scene::ForEachClient
Scene