GetRotation#

ExportWebVideoPlayer.GetRotation()#

Webビデオプレイヤーの回転を取得します。
IsAvailable()falseの場合はQuaternion.identity()を返します。

Returns:

Webビデオプレイヤーの回転

Return type:

Quaternion

Example#

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