12 lines
226 B
C#
12 lines
226 B
C#
using UnityEngine;
|
|
|
|
namespace Moonlit.FootstepPro
|
|
{
|
|
[RequireComponent(typeof(Camera))]
|
|
[AddComponentMenu("FootprintSystem/Camera Settings")]
|
|
public class CameraSettings : MonoBehaviour
|
|
{
|
|
public bool Disable = true;
|
|
}
|
|
}
|