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