File size: 364 Bytes
6cae93f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | using UnityEngine;
namespace UnityAgent
{
/// <summary>
/// Convenience alias for <see cref="ThirdPersonCamera"/>. Lets designers
/// attach a component named CameraController if they prefer that name.
/// </summary>
public class CameraController : ThirdPersonCamera
{
// All behaviour is inherited from ThirdPersonCamera.
}
}
|