Last active
April 1, 2021 06:58
-
-
Save SenshiSentou/66eb5557d8eda93822941fc3cdc1e9c0 to your computer and use it in GitHub Desktop.
Save this script in the following location as `82-Scriptable Object-NewScriptableObject.cs.txt`: Windows: C:\Program Files\Unity\Editor\Data\Resources\ScriptTemplates Mac (since 5.2.1f1): /Applications/Unity/Unity.app/Contents/Resources/ScriptTemplates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
[CreateAssetMenu(menuName = "Custom/#SCRIPTNAME#", fileName = "New #SCRIPTNAME#", order = 10)] | |
public class #SCRIPTNAME# : ScriptableObject { | |
#NOTRIM# | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment