GetPosition#

ExportWebVideoPlayer.GetPosition()#

Webビデオプレイヤーの位置を取得します。
IsAvailable()falseの場合はVector3.zero()を返します。

Returns:

Webビデオプレイヤーの位置

Return type:

Vector3

Example#

-- Webビデオプレイヤーの位置を取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
if webVideoPlayer.IsAvailable() then
    print(webVideoPlayer.GetPosition())
end