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.
19 lines
434 B
19 lines
434 B
using UnityEngine; |
|
using System.Collections; |
|
|
|
namespace Fungus |
|
{ |
|
// Defines a camera view point. |
|
// The position and rotation are specified using the game object's transform, so this class |
|
// only specifies the ortographic view size. |
|
[ExecuteInEditMode] |
|
public class View : MonoBehaviour |
|
{ |
|
public float viewSize = 0.5f; |
|
|
|
void Start() |
|
{ |
|
// An empty Start() method is needed to display enable checkbox in editor |
|
} |
|
} |
|
} |