XGameStreamingIsStreaming
ゲームが現在ストリーミングされているかどうかを確認します。
構文
bool XGameStreamingIsStreaming();
戻り値
型: bool
XGameStreamingIsStreaming
は、1 つ以上のストリーミング クライアント デバイスが接続されている Xbox でゲームが実行されている場合に true を返します。
解説
XGameStreamingIsStreaming
は本体がリモート プレイまたは Xbox ゲーム ストリーミングを介してストリーミングしている場合は区別されません。
個々のストリーミング クライアント デバイスの接続時や切断時に通知を受け取るには、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