Files
libremetaverse/LibreMetaverse.RLV/CameraSettings.cs
nooperation d905210ecf Initial commit of LibreMetaverse.RLV and LibreMetaverse.RLV.Tests.
This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
2025-08-17 19:55:33 -04:00

23 lines
655 B
C#

namespace LibreMetaverse.RLV
{
public class CameraSettings
{
public CameraSettings(float avDistMin, float avDistMax, float fovMin, float fovMax, float zoomMin, float currentFov)
{
AvDistMin = avDistMin;
AvDistMax = avDistMax;
FovMin = fovMin;
FovMax = fovMax;
ZoomMin = zoomMin;
CurrentFov = currentFov;
}
public float AvDistMin { get; }
public float AvDistMax { get; }
public float FovMin { get; }
public float FovMax { get; }
public float ZoomMin { get; }
public float CurrentFov { get; }
}
}