This file contains hidden or 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
| # =============== # | |
| # Unity generated # | |
| # =============== # | |
| [Tt]emp/ | |
| [Oo]bj/ | |
| [Bb]uild | |
| /[Bb]uilds/ | |
| /[Ll]ibrary/ | |
| sysinfo.txt | |
| *.stackdump |
This file contains hidden or 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 UnitEngine; | |
| public class Example : MonoBehaviour | |
| { | |
| //As easy as this ! | |
| //You can adjust the slider limits in the inspector as well | |
| public Vector3Range v3Range; | |
| //... |
This file contains hidden or 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; | |
| using UnityEditor; | |
| /// <summary> | |
| /// Hierarchy Window Group Header | |
| /// http://diegogiacomelli.com.br/unitytips-hierarchy-window-group-header | |
| /// </summary> | |
| [InitializeOnLoad] | |
| public static class HierarchyWindowGroupHeader | |
| { |