├── .gitattributes ├── .gitignore ├── Assets ├── [Shaders].meta ├── [Shaders] │ ├── [Session 00].meta │ ├── [Session 00] │ │ ├── [Material].meta │ │ ├── [Scene].meta │ │ ├── [Shader].meta │ │ └── [Shader] │ │ │ ├── 01-ShaderSyntax.mat │ │ │ ├── 01-ShaderSyntax.mat.meta │ │ │ ├── 01-ShaderSyntax.shader │ │ │ └── 01-ShaderSyntax.shader.meta │ ├── [Session 06].meta │ ├── [Session 06] │ │ ├── [Material].meta │ │ ├── [Scene].meta │ │ ├── [Shader].meta │ │ └── [Shader] │ │ │ ├── 01-Standard Diffuse.mat │ │ │ ├── 01-Standard Diffuse.mat.meta │ │ │ ├── 01-Standard Diffuse.shader │ │ │ ├── 01-Standard Diffuse.shader.meta │ │ │ ├── 12-Outlined Diffuse.mat │ │ │ ├── 12-Outlined Diffuse.mat.meta │ │ │ ├── 12-Outlined Diffuse.shader │ │ │ └── 12-Outlined Diffuse.shader.meta │ ├── [Session 0X].meta │ └── [Session 0X] │ │ ├── [Material].meta │ │ ├── [Scene].meta │ │ └── [Shader].meta └── [Textures].meta ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/[Shaders].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00]/[Material].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00]/[Material].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00]/[Scene].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00]/[Scene].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00]/[Shader].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00]/[Shader].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.mat -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.mat.meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.shader -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 00]/[Shader]/01-ShaderSyntax.shader.meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Material].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Material].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Scene].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Scene].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.mat -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.mat.meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.shader -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/01-Standard Diffuse.shader.meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.mat -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.mat.meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.shader -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 06]/[Shader]/12-Outlined Diffuse.shader.meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 0X].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 0X].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 0X]/[Material].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 0X]/[Material].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 0X]/[Scene].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 0X]/[Scene].meta -------------------------------------------------------------------------------- /Assets/[Shaders]/[Session 0X]/[Shader].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Shaders]/[Session 0X]/[Shader].meta -------------------------------------------------------------------------------- /Assets/[Textures].meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/Assets/[Textures].meta -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.3f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianMo/Unity-Shader-Practice/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unity-Shader-Practice 2 | --------------------------------------------------------------------------------