- Facilitates routine work. Now there is no need to constantly clean up excess garbage in the standard Unity script. All frequently used constructions are now created in one click!
- Import this .unitypackage to your Unity project.
- Click Import all.
- Restart the unity project.
- Done!
- After installing this package, right-click in any folder and create a script.
- There are four ready-made script templates.
- Default Unity script:
using UnityEngine;
public sealed class NewScript : MonoBehaviour
{
}
- Interface:
using UnityEngine;
public interface NewInterface
{
}
- Serializable Struct:
using UnityEngine;
[System.Serializable]
public struct NewStruct
{
}
- Serializable Class:
using UnityEngine;
[System.Serializable]
public sealed class NewClass
{
}