Created
March 8, 2018 02:34
-
-
Save romsalva/bfbe95284de2af264f2647972f1bbe0a to your computer and use it in GitHub Desktop.
Unity Better Script Templates
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 System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class #SCRIPTNAME# : MonoBehaviour { | |
private void Start() { | |
} | |
private void Update() { | |
} | |
} |
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
<install dir>\Unity\Editor\Data\Resources\ScriptTemplates |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment