SetPosition#

ExportLocalStreamCamera.SetPosition(position)#

補間を有効にして移動します。自身が生成したカメラのみ有効です。

Parameters:

position (Vector3) -- 位置

Example#

-- ローカルプレイヤーのローカルストリームカメラの位置をスムーズに変更する
local camera = vci.vc.room.streamCamera.GetMyLocalStreamCamera()

function update()
    if camera.IsAvailable() then
        -- Y軸方向に振動させる
        local pos = camera.GetPosition()
        local y = math.cos(os.time()) * 0.1 + 1
        camera.SetPosition(Vector3.__new(pos.x, y, pos.z))
    end
end