using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using NaughtyAttributes;
///
///
///
public class #SCRIPTNAME# : MonoBehaviour
{
#region Inspector Fields
#NOTRIM#
#endregion Inspector Fields
#region Private Fields
#NOTRIM#
#endregion Private Fields
#region Getters
#NOTRIM#
#endregion Getters
#region MonoBehaviour Functions
///
/// OnEnable is called when the object becomes enabled and active.
///
private void OnEnable()
{
#NOTRIM#
}
///
/// OnDisable is called when the behaviour becomes disabled.
///
private void OnDisable()
{
#NOTRIM#
}
///
/// Update is called once per frame
///
private void Update()
{
#NOTRIM#
}
#endregion MonoBehaviour Functions
#region Class Functionality
#NOTRIM#
#endregion Class Functionality
#region Editor Functions
///
/// Called when the Component is created or Reset from the Inspector
///
private void Reset()
{
//useful for finding components on creation
}
#endregion Editor Functions
}