├── .gitignore ├── Assets ├── Models.meta ├── Models │ ├── Bowl.blend │ ├── Bowl.blend.meta │ ├── Materials.meta │ └── Materials │ │ ├── Bowl.mat │ │ └── Bowl.mat.meta ├── Scenes.meta ├── Scenes │ ├── Main.unity │ └── Main.unity.meta ├── Scripts.meta ├── Scripts │ ├── RainbowColour.cs │ └── RainbowColour.cs.meta ├── Shaders.meta ├── Shaders │ ├── Tutorial_Shader.shader │ ├── Tutorial_Shader.shader.meta │ ├── Unlit_Tutorial_Shader.mat │ └── Unlit_Tutorial_Shader.mat.meta ├── Textures.meta └── Textures │ ├── Bowl.png │ ├── Bowl.png.meta │ ├── Noise.png │ └── Noise.png.meta ├── Images ├── Logo.ai ├── Logo.png ├── Playing_With_Shaders_1.gif ├── Playing_With_Shaders_2.gif ├── Playing_With_Shaders_3.gif ├── Rendering_Pipeline.ai ├── Rendering_Pipeline.png ├── Scripting_and_Shaders_1.gif ├── Scripting_and_Shaders_1.png ├── Scripting_and_Shaders_2.png ├── Scripting_and_Shaders_3.gif ├── Setup_1.png ├── Setup_2.png ├── Setup_3.png ├── Setup_4.png ├── Shading_Basics_1.png ├── Shading_Basics_2.png ├── Shading_Basics_3.png ├── Shading_Basics_4.png ├── Shading_Basics_5.png ├── Shading_Basics_6.png ├── Skeleton_1.png └── Skeleton_2.png ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Models.meta -------------------------------------------------------------------------------- /Assets/Models/Bowl.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Models/Bowl.blend -------------------------------------------------------------------------------- /Assets/Models/Bowl.blend.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Models/Bowl.blend.meta -------------------------------------------------------------------------------- /Assets/Models/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Models/Materials.meta -------------------------------------------------------------------------------- /Assets/Models/Materials/Bowl.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Models/Materials/Bowl.mat -------------------------------------------------------------------------------- /Assets/Models/Materials/Bowl.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Models/Materials/Bowl.mat.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Scenes/Main.unity -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Scenes/Main.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/RainbowColour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Scripts/RainbowColour.cs -------------------------------------------------------------------------------- /Assets/Scripts/RainbowColour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Scripts/RainbowColour.cs.meta -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/Tutorial_Shader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Shaders/Tutorial_Shader.shader -------------------------------------------------------------------------------- /Assets/Shaders/Tutorial_Shader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Shaders/Tutorial_Shader.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/Unlit_Tutorial_Shader.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Shaders/Unlit_Tutorial_Shader.mat -------------------------------------------------------------------------------- /Assets/Shaders/Unlit_Tutorial_Shader.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Shaders/Unlit_Tutorial_Shader.mat.meta -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Textures.meta -------------------------------------------------------------------------------- /Assets/Textures/Bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Textures/Bowl.png -------------------------------------------------------------------------------- /Assets/Textures/Bowl.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Textures/Bowl.png.meta -------------------------------------------------------------------------------- /Assets/Textures/Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Textures/Noise.png -------------------------------------------------------------------------------- /Assets/Textures/Noise.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Assets/Textures/Noise.png.meta -------------------------------------------------------------------------------- /Images/Logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Logo.ai -------------------------------------------------------------------------------- /Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Logo.png -------------------------------------------------------------------------------- /Images/Playing_With_Shaders_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Playing_With_Shaders_1.gif -------------------------------------------------------------------------------- /Images/Playing_With_Shaders_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Playing_With_Shaders_2.gif -------------------------------------------------------------------------------- /Images/Playing_With_Shaders_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Playing_With_Shaders_3.gif -------------------------------------------------------------------------------- /Images/Rendering_Pipeline.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Rendering_Pipeline.ai -------------------------------------------------------------------------------- /Images/Rendering_Pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Rendering_Pipeline.png -------------------------------------------------------------------------------- /Images/Scripting_and_Shaders_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Scripting_and_Shaders_1.gif -------------------------------------------------------------------------------- /Images/Scripting_and_Shaders_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Scripting_and_Shaders_1.png -------------------------------------------------------------------------------- /Images/Scripting_and_Shaders_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Scripting_and_Shaders_2.png -------------------------------------------------------------------------------- /Images/Scripting_and_Shaders_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Scripting_and_Shaders_3.gif -------------------------------------------------------------------------------- /Images/Setup_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Setup_1.png -------------------------------------------------------------------------------- /Images/Setup_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Setup_2.png -------------------------------------------------------------------------------- /Images/Setup_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Setup_3.png -------------------------------------------------------------------------------- /Images/Setup_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Setup_4.png -------------------------------------------------------------------------------- /Images/Shading_Basics_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Shading_Basics_1.png -------------------------------------------------------------------------------- /Images/Shading_Basics_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Shading_Basics_2.png -------------------------------------------------------------------------------- /Images/Shading_Basics_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Shading_Basics_3.png -------------------------------------------------------------------------------- /Images/Shading_Basics_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Shading_Basics_4.png -------------------------------------------------------------------------------- /Images/Shading_Basics_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Shading_Basics_5.png -------------------------------------------------------------------------------- /Images/Shading_Basics_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Shading_Basics_6.png -------------------------------------------------------------------------------- /Images/Skeleton_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Skeleton_1.png -------------------------------------------------------------------------------- /Images/Skeleton_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/Images/Skeleton_2.png -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.1.1f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Centribo/Unity-Shader-Basics-Tutorial/HEAD/README.md --------------------------------------------------------------------------------