|
|
|
public class CameraGroupTargetParameters
|
|
{
|
|
public readonly float Weight;
|
|
public readonly float Radius;
|
|
|
|
public CameraGroupTargetParameters()
|
|
{
|
|
Weight = 1f;
|
|
Radius = 1f;
|
|
}
|
|
|
|
public CameraGroupTargetParameters(float weight, float radius)
|
|
{
|
|
Weight = weight;
|
|
Radius = radius;
|
|
}
|
|
}
|