|
|
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using NaughtyAttributes;
-
-
- /// <summary>
- ///
- /// </summary>
- 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
- /// <summary>
- /// OnEnable is called when the object becomes enabled and active.
- /// </summary>
- private void OnEnable()
- {
- #NOTRIM#
- }
-
- /// <summary>
- /// OnDisable is called when the behaviour becomes disabled.
- /// </summary>
- private void OnDisable()
- {
- #NOTRIM#
- }
-
- /// <summary>
- /// Update is called once per frame
- /// </summary>
- private void Update()
- {
- #NOTRIM#
- }
-
- #endregion MonoBehaviour Functions
-
- #region Class Functionality
- #NOTRIM#
- #endregion Class Functionality
-
- #region Editor Functions
- /// <summary>
- /// Called when the Component is created or Reset from the Inspector
- /// </summary>
- private void Reset()
- {
- //useful for finding components on creation
- }
- #endregion Editor Functions
-
- }
|