My Unity repo's git config as of today.
For more complex and complete alternatives, look at:
My Unity repo's git config as of today.
For more complex and complete alternatives, look at:
// Shader targeted for low end devices. Single Pass Forward Rendering. | |
Shader "Custom/Shadows Only" | |
{ | |
// Keep properties of StandardSpecular shader for upgrade reasons. | |
Properties | |
{ | |
_Alpha("Shadow Alpha", float) = 0.5 | |
// Blending state |
// NOTE DONT put in an editor folder! | |
using UnityEngine; | |
public class AutohookAttribute : PropertyAttribute | |
{ | |
} |
Shader "AR Proxy" | |
{ | |
Properties | |
{ | |
} | |
SubShader | |
{ | |
Tags | |
{ |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEngine; | |
/// <summary> | |
/// Sorting Layer Debugger. | |
/// https://diegogiacomelli.com.br/a-sorting-layer-debugger-for-unity/ | |
/// </summary> | |
public class SortingLayerDebugger : EditorWindow |
using UnityEditor; | |
using UnityEngine; | |
/// <summary> | |
/// Folder organizer editor window. | |
/// http://diegogiacomelli.com.br/using-an-assetpostprocessor-editorwindow-to-keep-assets-organized-on-unity-projects | |
/// </summary> | |
public class FolderOrganizerEditorWindow : EditorWindow | |
{ | |
FolderOrganizerSettings _settings; |
### Unity ### | |
/[Ll]ibrary/ | |
/[Tt]emp/ | |
/[Oo]bj/ | |
/[Bb]uild/ | |
/[Bb]uilds/ | |
/[Ll]ogs/ | |
/[Ll]og/ | |
/[Aa]ssets/AssetStoreTools* | |
/[Aa]ssetBundles/ |
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 | |
{ |
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 |