Skip to content

RimuruDev/UnityScriptDefaultTemplates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

RimuruDev [Unity Script Default Templates]

Made With Unity License Last Commit Repo Size Downloads Last Release GitHub stars GitHub user stars

For what?

  • 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!

Install

  • Import this .unitypackage to your Unity project.
  • Click Import all.
  • Restart the unity project.
  • Done!

image

How to use?

  • After installing this package, right-click in any folder and create a script.
  • There are four ready-made script templates.
  1. Default Unity script:

image

using UnityEngine;

public sealed class NewScript : MonoBehaviour
{

}
  1. Interface:

image

using UnityEngine;

public interface NewInterface
{

}
  1. Serializable Struct:

image

using UnityEngine;

[System.Serializable]
public struct NewStruct
{

}
  1. Serializable Class:

image

using UnityEngine;

[System.Serializable]
public sealed class NewClass
{

}

Leave a ⭐ if you found it helpful!