Skip to content

Instantly share code, notes, and snippets.

@F1Soda
F1Soda / ShaderLabURP.shader
Created July 2, 2025 15:58
Cheat sheet with all ShaderLab features for URP Unity 6
// https://docs.unity3d.com/6000.2/Documentation/Manual/SL-Shader.html
Shader "Unlit/temp"
{
// https://docs.unity3d.com/6000.2/Documentation/Manual/SL-Properties.html
Properties
{
// Numeric types
_ExampleFloat ("Float display", Float) = 0.5
_ExampleRange ("Range slider", Range(0.0, 1.0)) = 0.75
_ExampleInteger ("Integer display", Integer) = 2