You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
52 lines
1.4 KiB
11 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace Fungus
|
||
|
{
|
||
11 years ago
|
/**
|
||
|
* Defines a camera view point.
|
||
|
* The position and rotation are specified using the game object's transform, so this class
|
||
|
* only needs to specify the ortographic view size.
|
||
|
*/
|
||
11 years ago
|
[ExecuteInEditMode]
|
||
|
public class View : MonoBehaviour
|
||
|
{
|
||
11 years ago
|
/**
|
||
11 years ago
|
* Orthographic size of the camera view in world units.
|
||
11 years ago
|
*/
|
||
11 years ago
|
[Tooltip("Orthographic size of the camera view in world units.")]
|
||
11 years ago
|
public float viewSize = 0.5f;
|
||
|
|
||
11 years ago
|
/**
|
||
|
* Aspect ratio of the primary view rectangle.
|
||
|
* e.g. a 4:3 aspect ratio = 1.333
|
||
|
*/
|
||
11 years ago
|
[Tooltip("Aspect ratio of the primary view rectangle. (e.g. 4:3 aspect ratio = 1.333)")]
|
||
11 years ago
|
public float primaryAspectRatio = (4f / 3f);
|
||
|
|
||
|
/**
|
||
|
* Color of the primary view rectangle.
|
||
|
*/
|
||
11 years ago
|
[Tooltip("Color of the primary view rectangle.")]
|
||
11 years ago
|
public Color primaryColor = Color.green;
|
||
|
|
||
|
/**
|
||
|
* Aspect ratio of the secondary view rectangle.
|
||
|
* e.g. a 2:1 aspect ratio = 2/1 = 2.0
|
||
|
*/
|
||
11 years ago
|
[Tooltip("Aspect ratio of the secondary view rectangle. (e.g. 2:1 aspect ratio = 2.0)")]
|
||
11 years ago
|
public float secondaryAspectRatio = (2f / 1f);
|
||
|
|
||
|
/**
|
||
|
* Color of the secondary view rectangle.
|
||
|
*/
|
||
11 years ago
|
[Tooltip("Color of the secondary view rectangle.")]
|
||
11 years ago
|
public Color secondaryColor = Color.grey;
|
||
11 years ago
|
|
||
|
void Update()
|
||
|
{
|
||
|
// Disable scaling to avoid complicating the orthographic size calculations
|
||
|
transform.localScale = new Vector3(1,1,1);
|
||
|
}
|
||
11 years ago
|
}
|
||
|
}
|