GetNearClipPlane#

ExportPhotographyCamera.GetNearClipPlane()#

写真撮影用カメラの Near Clip Plane までの距離を取得します。

Returns:

Near Clip Plane までの距離

Return type:

number

説明#

単位は world units(バーチャルキャスト内では meters)です。
デフォルトの値は 0.01 です。

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

sample#

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

local nearClipPlane = camera.GetNearClipPlane()
print(nearClipPlane)