14 lines
282 B
C#
14 lines
282 B
C#
using UnityEditor;
|
|
|
|
namespace Cinemachine.Editor
|
|
{
|
|
[CustomEditor(typeof(CinemachinePOV))]
|
|
internal sealed class CinemachinePOVEditor : BaseEditor<CinemachinePOV>
|
|
{
|
|
private void OnEnable()
|
|
{
|
|
Target.UpdateInputAxisProvider();
|
|
}
|
|
}
|
|
}
|