GetStatus#
- ExportWebVideoPlayer.GetStatus()#
Webビデオプレイヤーの再生状態を取得します。
IsAvailable()
がfalse
の場合はExportWebVideoPlayerStatus.BeforeLoad
を返します。- Returns:
Webビデオプレイヤーの再生状態
- Return type:
Example#
-- Webビデオプレイヤーの再生状態を取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
local status
function updateAll()
if webVideoPlayer.IsAvailable() then
status = webVideoPlayer.GetStatus()
if status == ExportWebVideoPlayerStatus.BeforeLoad then
print("読み込み前")
elseif status == ExportWebVideoPlayerStatus.Paused then
print("一時停止中")
elseif status == ExportWebVideoPlayerStatus.Playing then
print("再生中")
elseif status == ExportWebVideoPlayerStatus.Finished then
print("再生終了")
end
end
end