GetAspectRatio#

ExportPhotographyCamera.GetAspectRatio()#

写真撮影用カメラのプレビューと撮影結果のアスペクト比(横幅を縦幅で割った値)を取得します。

Returns:

写真撮影用カメラのプレビューと撮影結果のアスペクト比

Return type:

number

説明#

ExportPhotographyCamera が破棄済みの場合、number の代わりに nil が返されます。

注意

現状、全ての写真撮影用カメラのプレビューと撮影結果のアスペクト比は 16:9 (1.777...) です。

sample#

-- 写真撮影用カメラを生成する
local cameraAnchor = vci.assets.GetTransform("CameraAnchor")
local camera = vci.cameraSystem.CreatePhotographyCamera(cameraAnchor)

local aspectRatio = camera.GetAspectRatio()
print(aspectRatio) -- 1.777...