GetPosition#
- ExportWebVideoPlayer.GetPosition()#
Webビデオプレイヤーの位置を取得します。
IsAvailable()
がfalse
の場合はVector3.zero()
を返します。- Returns:
Webビデオプレイヤーの位置
- Return type:
Example#
-- Webビデオプレイヤーの位置を取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
if webVideoPlayer.IsAvailable() then
print(webVideoPlayer.GetPosition())
end