GetAspectRatio#
- ExportLocalStreamCamera.GetAspectRatio()#
カメラのアスペクト比を取得します。
- Returns:
アスペクト比
- Return type:
number
Example#
-- ローカルプレイヤーのローカルストリームカメラのアスペクト比を取得する
local camera = vci.vc.room.streamCamera.GetMyLocalStreamCamera()
if camera.IsAvailable() then
print(camera.GetAspectRatio())
end