XGameStreamingIsStreaming
确定游戏当前是否在流式处理。
语法
bool XGameStreamingIsStreaming();
返回值
类型:bool
XGameStreamingIsStreaming
如果游戏在至少连接了一个流式处理客户端设备的 Xbox 上运行,则返回 true。
备注
XGameStreamingIsStreaming
不区分主机是通过远程播放还是通过 Xbox Game Streaming 进行流式传输。
要在单独的流式处理客户端设备正在连接和/或正在断开连接时收到通知,请考虑通过 XGameStreamingRegisterConnectionStateChanged 注册回调。
示例
if (XGameStreamingIsStreaming())
{
// The game is currently streaming to at least one device
// Enable any customizations that might be useful when running from the cloud
}
要求
头文件:xgamestreaming.h
库:xgameruntime.lib
支持平台:Windows、Xbox One 系列主机和 Xbox Series 主机
另请参阅
XGameStreamingConnectionState
XGameStreamingUnregisterConnectionStateChanged
XGameStreamingRegisterConnectionStateChanged
XGameStreaming