public void AllClientsBloom(bool enable)
        {
            var pkg = new S2C_Postprocess_Bloom.ArgumentData();

            pkg.Enable = enable;
            if (ProfilerConnect != null)
            {
                S2C_Postprocess_Bloom.Instance.DoCall(
                    ref pkg,
                    NetCore.ERouteTarget.Self, ProfilerConnect, null);
            }
        }
 public void OnS2C_Postprocess_Bloom(byte userFlags, ref S2C_Postprocess_Bloom.ArgumentData cmd, UInt16 serialId, NetCore.NetConnection connect, ref NetCore.RPCRouter.RouteData routeInfo)
 {
     CEngine.EnableBloom = cmd.Enable;
 }