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 specific .gitattributes | |
| * text=auto | |
| *.cs diff=csharp text | |
| *.cginc text | |
| *.shader text | |
| # Unity YAML | |
| *.anim -text merge=unityyamlmerge diff |
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> | |
| /// Scene preview data. | |
| /// http://diegogiacomelli.com.br/unitytips-scene-preview-window | |
| /// </summary> | |
| public class ScenePreviewData | |
| { | |
| Texture2D _texture; |
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 UnityEditor; | |
| using UnityEngine; | |
| /// <summary> | |
| /// Hierarchy window game object icon. | |
| /// http://diegogiacomelli.com.br/unitytips-hierarchy-window-gameobject-icon/ | |
| /// </summary> | |
| [InitializeOnLoad] | |
| public static class HierarchyWindowGameObjectIcon | |
| { |
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 System.Collections.Generic; | |
| using UnityEngine; | |
| namespace TheHunt.Util { | |
| /// <summary> | |
| /// Extend this abstract base class to receive enter/exit events | |
| /// from dynamic triggers. | |
| /// </summary> | |
| public abstract class DynamicTriggerListener : MonoBehaviour { |
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 UnityEditor; | |
| using UnityEngine; | |
| // <summary> | |
| /// Hierarchy Window Layer Info | |
| /// http://diegogiacomelli.com.br/unitytips-hierarchy-window-layer-info/ | |
| /// </summary> | |
| [InitializeOnLoad] | |
| public static class HierarchyWindowLayerInfo | |
| { |
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 System; | |
| using System.IO; | |
| using System.Runtime.CompilerServices; | |
| using UnityEditor; | |
| using UnityEngine; | |
| using UnityEngine.Events; | |
| /// <summary> | |
| /// Hierarchy Window Group Header | |
| /// http://diegogiacomelli.com.br/unitytips-changing-the-style-of-the-hierarchy-window-group-header/ |
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 | |
| { |
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
| code --install-extension QassimFarid.ejs-language-support | |
| code --install-extension SirTori.indenticator | |
| code --install-extension TimonVS.ReactSnippetsStandard | |
| code --install-extension TwentyChung.jsx | |
| code --install-extension abusaidm.html-snippets | |
| code --install-extension asvetliakov.move-imports | |
| code --install-extension aws-scripting-guy.cform | |
| code --install-extension bierner.markdown-preview-github-styles | |
| code --install-extension ccitiriga.TSMethodCreator | |
| code --install-extension christian-kohler.npm-intellisense |
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 System.Linq; | |
| using UnityEditor; | |
| using UnityEngine; | |
| /// <summary> | |
| /// Easing2Curve: An editor window to create animation curve from easing functions | |
| /// http://diegogiacomelli.com.br/easing-2-curve-an-editor-window-to-create-animation-curve-from-easing-functions/ | |
| /// </summary> | |
| public class Easing2CurveEditorWindow : EditorWindow | |
| { |