GetIsLooping#
- ExportWebVideoPlayer.GetIsLooping()#
動画がループ再生されるかどうかを取得します。
IsAvailable()
がfalse
の場合はfalse
を返します。- Returns:
動画がループ再生されるかどうか
- Return type:
boolean
Example#
-- Webビデオプレイヤーの再生中の動画がループ再生されるかどうかを取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
if webVideoPlayer.IsAvailable() then
-- 再生中の動画がループ再生されるかどうかを取得する
if webVideoPlayer.GetStatus() == ExportWebVideoPlayerStatus.Playing then
print(webVideoPlayer.GetIsLooping())
end
end