├── .gitignore ├── Assets ├── SimplestarGame.meta └── SimplestarGame │ ├── SimpleURPToonLitOutlineExample.meta │ └── SimpleURPToonLitOutlineExample │ ├── Resources.meta │ ├── Resources │ ├── SimpleURPToonLitOutlineExample.meta │ ├── SimpleURPToonLitOutlineExample │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── SimpleURPToonLitOutlineExample.shader │ │ ├── SimpleURPToonLitOutlineExample.shader.meta │ │ ├── SimpleURPToonLitOutlineExample_LightingEquation.hlsl │ │ ├── SimpleURPToonLitOutlineExample_LightingEquation.hlsl.meta │ │ ├── SimpleURPToonLitOutlineExample_Shared.hlsl │ │ └── SimpleURPToonLitOutlineExample_Shared.hlsl.meta │ ├── SimpleURPTransparent.meta │ ├── SimpleURPTransparent │ │ ├── SimpleURPTransparent.mat │ │ ├── SimpleURPTransparent.mat.meta │ │ ├── SimpleURPTransparent.shadergraph │ │ └── SimpleURPTransparent.shadergraph.meta │ ├── Unity-Technologies.meta │ └── Unity-Technologies │ │ ├── ShaderGraph-Custom-Lighting.meta │ │ └── ShaderGraph-Custom-Lighting │ │ ├── Includes.meta │ │ ├── Includes │ │ ├── CustomLighting.hlsl │ │ └── CustomLighting.hlsl.meta │ │ ├── Sub Graphs.meta │ │ └── Sub Graphs │ │ ├── Calculate Additional Lights.shadersubgraph │ │ ├── Calculate Additional Lights.shadersubgraph.meta │ │ ├── Calculate Lighting.shadersubgraph │ │ ├── Calculate Lighting.shadersubgraph.meta │ │ ├── Calculate Main Light.shadersubgraph │ │ ├── Calculate Main Light.shadersubgraph.meta │ │ ├── Direct Specular.shadersubgraph │ │ ├── Direct Specular.shadersubgraph.meta │ │ ├── Get Main Light.shadersubgraph │ │ └── Get Main Light.shadersubgraph.meta │ ├── Scripts.meta │ └── Scripts │ ├── MaterialFactory.cs │ └── MaterialFactory.cs.meta ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/SimplestarGame.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/LICENSE -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/LICENSE.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/README.md -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/README.md.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample.shader -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample.shader.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_LightingEquation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_LightingEquation.hlsl -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_LightingEquation.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_LightingEquation.hlsl.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_Shared.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_Shared.hlsl -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_Shared.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPToonLitOutlineExample/SimpleURPToonLitOutlineExample_Shared.hlsl.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.mat -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.mat.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.shadergraph -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/SimpleURPTransparent/SimpleURPTransparent.shadergraph.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Includes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Includes.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Includes/CustomLighting.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Includes/CustomLighting.hlsl -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Includes/CustomLighting.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Includes/CustomLighting.hlsl.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Additional Lights.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Additional Lights.shadersubgraph -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Additional Lights.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Additional Lights.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Lighting.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Lighting.shadersubgraph -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Lighting.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Lighting.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Main Light.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Main Light.shadersubgraph -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Main Light.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Calculate Main Light.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Direct Specular.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Direct Specular.shadersubgraph -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Direct Specular.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Direct Specular.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Get Main Light.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Get Main Light.shadersubgraph -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Get Main Light.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Resources/Unity-Technologies/ShaderGraph-Custom-Lighting/Sub Graphs/Get Main Light.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Scripts.meta -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Scripts/MaterialFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Scripts/MaterialFactory.cs -------------------------------------------------------------------------------- /Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Scripts/MaterialFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/Assets/SimplestarGame/SimpleURPToonLitOutlineExample/Scripts/MaterialFactory.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplestargame/SimpleURPToonLitOutlineExample/HEAD/README.md --------------------------------------------------------------------------------