IsAvailable#

ExportWebVideoPlayer.IsAvailable()#

ルーム内にWebビデオプレイヤーが存在するかどうかを取得します。

Returns:

ルーム内にWebビデオプレイヤーが存在するか

Return type:

boolean

Example#

-- Webビデオプレイヤーが存在する場合は座標を取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
if webVideoPlayer.IsAvailable() then
    print(webVideoPlayer.GetPosition())
end