GetAspectRatio#

ExportWebVideoPlayer.GetAspectRatio()#

Webビデオプレイヤーのアスペクト比を取得します。

Returns:

Webビデオプレイヤーのアスペクト比

Return type:

number

Example#

-- Webビデオプレイヤーのアスペクト比を取得する
local webVideoPlayer = vci.vc.room.webVideoPlayer
if webVideoPlayer.IsAvailable() then
    print(webVideoPlayer.GetAspectRatio())
end