SetRotation#
- ExportLocalStreamCamera.SetRotation(rotation)#
補間を有効にして回転します。自身が生成したカメラのみ有効です。
- Parameters:
rotation (
Quaternion
) -- 回転
Example#
-- ローカルプレイヤーのローカルストリームカメラの位置をスムーズに変更する
local camera = vci.vc.room.streamCamera.GetMyLocalStreamCamera()
function update()
if camera.IsAvailable() then
-- Y軸を中心に回転
camera.SetRotation(Quaternion.Euler(0, os.time() * 20 % 360, 0))
end
end