├── .gitignore ├── Assets ├── ExampleAssets.meta ├── ExampleAssets │ ├── Materials.meta │ ├── Materials │ │ ├── ConstructionLight_Mat.mat │ │ ├── ConstructionLight_Mat.mat.meta │ │ ├── DryWallPainted_Mat.mat │ │ ├── DryWallPainted_Mat.mat.meta │ │ ├── DryWall_Mat.mat │ │ ├── DryWall_Mat.mat.meta │ │ ├── Ground_Mat.mat │ │ ├── Ground_Mat.mat.meta │ │ ├── Hammer_Mat.mat │ │ ├── Hammer_Mat.mat.meta │ │ ├── HardHat_Mat.mat │ │ ├── HardHat_Mat.mat.meta │ │ ├── Jigsaw_Mat.mat │ │ ├── Jigsaw_Mat.mat.meta │ │ ├── LightBulb_Mat.mat │ │ ├── LightBulb_Mat.mat.meta │ │ ├── Liquid_Mat.mat │ │ ├── Liquid_Mat.mat.meta │ │ ├── Metal_Blue_Simple_Mat.mat │ │ ├── Metal_Blue_Simple_Mat.mat.meta │ │ ├── Metal_Simple_Mat.mat │ │ ├── Metal_Simple_Mat.mat.meta │ │ ├── OBS_Mat.mat │ │ ├── OBS_Mat.mat.meta │ │ ├── Paint1G_WAnim_Material.mat │ │ ├── Paint1G_WAnim_Material.mat.meta │ │ ├── PaintBrush_Mat.mat │ │ ├── PaintBrush_Mat.mat.meta │ │ ├── PaintLabel_Mat.mat │ │ ├── PaintLabel_Mat.mat.meta │ │ ├── PlanarShadow.mat │ │ ├── PlanarShadow.mat.meta │ │ ├── Plastic_Black_Mat.mat │ │ ├── Plastic_Black_Mat.mat.meta │ │ ├── Plastic_Gray_Mat.mat │ │ ├── Plastic_Gray_Mat.mat.meta │ │ ├── Plastic_Ridges_Mat.mat │ │ ├── Plastic_Ridges_Mat.mat.meta │ │ ├── Plastic_Rough_Mat.mat │ │ ├── Plastic_Rough_Mat.mat.meta │ │ ├── Plastic_Transparent.mat │ │ ├── Plastic_Transparent.mat.meta │ │ ├── Plastic_White_Mat.mat │ │ ├── Plastic_White_Mat.mat.meta │ │ ├── Plastic_Yellow_Mat.mat │ │ ├── Plastic_Yellow_Mat.mat.meta │ │ ├── Strap_Mat.mat │ │ ├── Strap_Mat.mat.meta │ │ ├── Stud_Mat.mat │ │ └── Stud_Mat.mat.meta │ ├── Models.meta │ ├── Models │ │ ├── ConstructionLight_Low.fbx │ │ ├── ConstructionLight_Low.fbx.meta │ │ ├── Stud.fbx │ │ ├── Stud.fbx.meta │ │ ├── Workbench.fbx │ │ ├── Workbench.fbx.meta │ │ ├── Workbench_Low.fbx │ │ ├── Workbench_Low.fbx.meta │ │ ├── Workshop_Set.fbx │ │ ├── Workshop_Set.fbx.meta │ │ ├── brush_low.fbx │ │ ├── brush_low.fbx.meta │ │ ├── hammer_low.fbx │ │ ├── hammer_low.fbx.meta │ │ ├── jigsaw_low.fbx │ │ ├── jigsaw_low.fbx.meta │ │ ├── magneticlevel_low.fbx │ │ ├── magneticlevel_low.fbx.meta │ │ ├── paintbucket_low.fbx │ │ ├── paintbucket_low.fbx.meta │ │ ├── safetygoggles_low.fbx │ │ ├── safetygoggles_low.fbx.meta │ │ ├── safetyhat_low.fbx │ │ ├── safetyhat_low.fbx.meta │ │ ├── small_plane.fbx │ │ └── small_plane.fbx.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Construction Light Low.prefab │ │ ├── Construction Light Low.prefab.meta │ │ ├── Paint Supplies.prefab │ │ ├── Paint Supplies.prefab.meta │ │ ├── Props.prefab │ │ ├── Props.prefab.meta │ │ ├── Workbench.prefab │ │ ├── Workbench.prefab.meta │ │ ├── Workbench_LOD0.prefab │ │ ├── Workbench_LOD0.prefab.meta │ │ ├── Workbench_LOD1.prefab │ │ ├── Workbench_LOD1.prefab.meta │ │ ├── Workshop Set.prefab │ │ └── Workshop Set.prefab.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── Paint1G_WAnim_Shader.ShaderGraph │ │ ├── Paint1G_WAnim_Shader.ShaderGraph.meta │ │ ├── PlanarShadow.shader │ │ └── PlanarShadow.shader.meta │ ├── Textures.meta │ └── Textures │ │ ├── Concrete.meta │ │ ├── Concrete │ │ ├── Ground_Albedo.tif │ │ ├── Ground_Albedo.tif.meta │ │ ├── Ground_MetallicOcculusionSmoothness.tif │ │ ├── Ground_MetallicOcculusionSmoothness.tif.meta │ │ ├── Ground_Normal.tif │ │ └── Ground_Normal.tif.meta │ │ ├── Drywall.meta │ │ ├── Drywall │ │ ├── DrywallPainted_Normal.tif │ │ ├── DrywallPainted_Normal.tif.meta │ │ ├── Drywall_Albedo.tif │ │ ├── Drywall_Albedo.tif.meta │ │ ├── Drywall_AlbedoSmoothness.tif │ │ ├── Drywall_AlbedoSmoothness.tif.meta │ │ ├── Drywall_Normal.tif │ │ └── Drywall_Normal.tif.meta │ │ ├── Metal.meta │ │ ├── Metal │ │ ├── Metal_Albedo.tif │ │ ├── Metal_Albedo.tif.meta │ │ ├── Metal_MetallicSmoothness.tif │ │ ├── Metal_MetallicSmoothness.tif.meta │ │ ├── Metal_Normal.tif │ │ └── Metal_Normal.tif.meta │ │ ├── Plastic.meta │ │ ├── Plastic │ │ ├── Elastic_MetallicOcculusionSmoothness.tif │ │ ├── Elastic_MetallicOcculusionSmoothness.tif.meta │ │ ├── Elastic_Normal.tif │ │ ├── Elastic_Normal.tif.meta │ │ ├── PlasticRidges_Albedo.tif │ │ ├── PlasticRidges_Albedo.tif.meta │ │ ├── PlasticRidges_MetallicOcculusionSmoothness.tif │ │ ├── PlasticRidges_MetallicOcculusionSmoothness.tif.meta │ │ ├── PlasticRidges_Normal.tif │ │ ├── PlasticRidges_Normal.tif.meta │ │ ├── PlasticRough_Albedo.tif │ │ ├── PlasticRough_Albedo.tif.meta │ │ ├── PlasticRough_MetallicOcculusionSmoothness.tif │ │ ├── PlasticRough_MetallicOcculusionSmoothness.tif.meta │ │ ├── Plastic_AlbedoSmoothness.tif │ │ ├── Plastic_AlbedoSmoothness.tif.meta │ │ ├── Plastic_Normal.tif │ │ └── Plastic_Normal.tif.meta │ │ ├── Props.meta │ │ ├── Props │ │ ├── Construction_Light.meta │ │ ├── Construction_Light │ │ │ ├── ConstructionLight_Albedo.tif │ │ │ ├── ConstructionLight_Albedo.tif.meta │ │ │ ├── ConstructionLight_MetallicOcculusionSmoothness.tif │ │ │ └── ConstructionLight_MetallicOcculusionSmoothness.tif.meta │ │ ├── Hammer.meta │ │ ├── Hammer │ │ │ ├── Hammer_Albedo.tif │ │ │ ├── Hammer_Albedo.tif.meta │ │ │ ├── Hammer_MetallicOcculusionSmoothness.tif │ │ │ ├── Hammer_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Hammer_Normal.tif │ │ │ └── Hammer_Normal.tif.meta │ │ ├── HardHat.meta │ │ ├── HardHat │ │ │ ├── SafetyHat_Albedo.tif │ │ │ ├── SafetyHat_Albedo.tif.meta │ │ │ ├── SafetyHat_MetallicOcculusionSmoothness.tif │ │ │ ├── SafetyHat_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── SafetyHat_Normal.tif │ │ │ └── SafetyHat_Normal.tif.meta │ │ ├── Jigsaw.meta │ │ ├── Jigsaw │ │ │ ├── Jigsaw_Albedo.tif │ │ │ ├── Jigsaw_Albedo.tif.meta │ │ │ ├── Jigsaw_MetallicOcculusionSmoothness.tif │ │ │ ├── Jigsaw_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Jigsaw_Normal.tif │ │ │ └── Jigsaw_Normal.tif.meta │ │ ├── Paint.meta │ │ └── Paint │ │ │ ├── Paint1G_Albedo.tif │ │ │ ├── Paint1G_Albedo.tif.meta │ │ │ ├── Paint1G_MetallicOcculusionRoughness.tif │ │ │ ├── Paint1G_MetallicOcculusionRoughness.tif.meta │ │ │ ├── Paint1G_Normal.tif │ │ │ ├── Paint1G_Normal.tif.meta │ │ │ ├── Paint5G_AlbedoSmoothness.tif │ │ │ ├── Paint5G_AlbedoSmoothness.tif.meta │ │ │ ├── PaintAnimMask.tif │ │ │ ├── PaintAnimMask.tif.meta │ │ │ ├── PaintLabel.tif │ │ │ ├── PaintLabel.tif.meta │ │ │ ├── Paintbrush_Albedo.tif │ │ │ ├── Paintbrush_Albedo.tif.meta │ │ │ ├── Paintbrush_MetallicOcculusionSmoothness.tif │ │ │ ├── Paintbrush_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Paintbrush_Normal.tif │ │ │ └── Paintbrush_Normal.tif.meta │ │ ├── Wood.meta │ │ └── Wood │ │ ├── OBS_Albedo.tif │ │ ├── OBS_Albedo.tif.meta │ │ ├── OBS_MetallicOcculusionSmoothness.tif │ │ ├── OBS_MetallicOcculusionSmoothness.tif.meta │ │ ├── OBS_Normal.tif │ │ ├── OBS_Normal.tif.meta │ │ ├── Plywood_Albedo.tif │ │ ├── Plywood_Albedo.tif.meta │ │ ├── Plywood_MetallicOcculusionSmoothness.tif │ │ ├── Plywood_MetallicOcculusionSmoothness.tif.meta │ │ ├── Plywood_Normal.tif │ │ └── Plywood_Normal.tif.meta ├── Materials.meta ├── Materials │ ├── Skybox_Mat.mat │ └── Skybox_Mat.mat.meta ├── Presets.meta ├── Presets │ ├── AudioCompressedInMemory.preset │ ├── AudioCompressedInMemory.preset.meta │ ├── AudioStreaming.preset │ ├── AudioStreaming.preset.meta │ ├── Defaults.meta │ ├── Defaults │ │ ├── AlbedoTexture_Default.preset │ │ ├── AlbedoTexture_Default.preset.meta │ │ ├── AudioDecompressOnLoad.preset │ │ ├── AudioDecompressOnLoad.preset.meta │ │ ├── DirectionalLight_Default.preset │ │ └── DirectionalLight_Default.preset.meta │ ├── NormalTexture.preset │ ├── NormalTexture.preset.meta │ ├── UtilityTexture.preset │ └── UtilityTexture.preset.meta ├── Readme.asset ├── Readme.asset.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── Scripts.meta ├── Scripts │ ├── PlanerShadow.cs │ ├── PlanerShadow.cs.meta │ ├── SimpleCameraController.cs │ └── SimpleCameraController.cs.meta ├── Settings.meta ├── Settings │ ├── ForwardRenderer.asset │ ├── ForwardRenderer.asset.meta │ ├── SampleSceneProfile.asset │ ├── SampleSceneProfile.asset.meta │ ├── UniversalRP-HighQuality.asset │ ├── UniversalRP-HighQuality.asset.meta │ ├── UniversalRP-LowQuality.asset │ ├── UniversalRP-LowQuality.asset.meta │ ├── UniversalRP-MediumQuality.asset │ └── UniversalRP-MediumQuality.asset.meta ├── TutorialInfo.meta └── TutorialInfo │ ├── Icons.meta │ ├── Icons │ ├── Help_Icon.png │ ├── Help_Icon.png.meta │ ├── UniversalIcon.png │ └── UniversalIcon.png.meta │ ├── Layout.wlt │ ├── Layout.wlt.meta │ ├── Scripts.meta │ └── Scripts │ ├── Editor.meta │ ├── Editor │ ├── ReadmeEditor.cs │ └── ReadmeEditor.cs.meta │ ├── Readme.cs │ └── Readme.cs.meta ├── Packages ├── manifest.json └── src │ ├── com.unity.render-pipelines.core │ ├── .npmignore │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ │ ├── Camera-Switcher.md │ │ ├── Culling-in-SRP.md │ │ ├── Drawing-in-SRP.md │ │ ├── Free-Camera.md │ │ ├── Images │ │ │ ├── CameraSwitcher1.png │ │ │ └── FreeCamera1.png │ │ ├── Problems-That-SRP-Solves.md │ │ ├── SRP-Asset.md │ │ ├── SRP-Context.md │ │ ├── SRP-Instance.md │ │ ├── SRP-Overview.md │ │ ├── TableOfContents.md │ │ ├── XR-in-SRP.md │ │ └── index.md │ ├── Editor.meta │ ├── Editor │ │ ├── CameraEditorUtils.cs │ │ ├── CameraEditorUtils.cs.meta │ │ ├── ContextualMenuDispatcher.cs │ │ ├── ContextualMenuDispatcher.cs.meta │ │ ├── CoreEditorDrawers.cs │ │ ├── CoreEditorDrawers.cs.meta │ │ ├── CoreEditorStyles.cs │ │ ├── CoreEditorStyles.cs.meta │ │ ├── CoreEditorUtils.cs │ │ ├── CoreEditorUtils.cs.meta │ │ ├── Debugging.meta │ │ ├── Debugging │ │ │ ├── DebugState.cs │ │ │ ├── DebugState.cs.meta │ │ │ ├── DebugUIDrawer.Builtins.cs │ │ │ ├── DebugUIDrawer.Builtins.cs.meta │ │ │ ├── DebugUIDrawer.cs │ │ │ ├── DebugUIDrawer.cs.meta │ │ │ ├── DebugUIHandlerCanvasEditor.cs │ │ │ ├── DebugUIHandlerCanvasEditor.cs.meta │ │ │ ├── DebugWindow.cs │ │ │ ├── DebugWindow.cs.meta │ │ │ ├── UIFoldoutEditor.cs │ │ │ └── UIFoldoutEditor.cs.meta │ │ ├── EditorPrefBoolFlags.cs │ │ ├── EditorPrefBoolFlags.cs.meta │ │ ├── ExpandedState.cs │ │ ├── ExpandedState.cs.meta │ │ ├── FilterWindow.cs │ │ ├── FilterWindow.cs.meta │ │ ├── Gizmo.meta │ │ ├── Gizmo │ │ │ ├── HierarchicalBox.cs │ │ │ ├── HierarchicalBox.cs.meta │ │ │ ├── HierarchicalSphere.cs │ │ │ ├── HierarchicalSphere.cs.meta │ │ │ ├── UnlitGizmo.shader │ │ │ └── UnlitGizmo.shader.meta │ │ ├── InspectorCurveEditor.cs │ │ ├── InspectorCurveEditor.cs.meta │ │ ├── Lighting.meta │ │ ├── Lighting │ │ │ ├── CoreLightEditorUtilities.cs │ │ │ └── CoreLightEditorUtilities.cs.meta │ │ ├── LookDev.meta │ │ ├── LookDev │ │ │ ├── CameraController.cs │ │ │ ├── CameraController.cs.meta │ │ │ ├── CameraState.cs │ │ │ ├── CameraState.cs.meta │ │ │ ├── ComparisonGizmoController.cs │ │ │ ├── ComparisonGizmoController.cs.meta │ │ │ ├── ComparisonGizmoState.cs │ │ │ ├── ComparisonGizmoState.cs.meta │ │ │ ├── Compositor.cs │ │ │ ├── Compositor.cs.meta │ │ │ ├── Compositor.shader │ │ │ ├── Compositor.shader.meta │ │ │ ├── Context.cs │ │ │ ├── Context.cs.meta │ │ │ ├── CubeToLatlong.shader │ │ │ ├── CubeToLatlong.shader.meta │ │ │ ├── DisplayWindow-PersonalSkin.uss │ │ │ ├── DisplayWindow-PersonalSkin.uss.meta │ │ │ ├── DisplayWindow.DebugSidePanel.cs │ │ │ ├── DisplayWindow.DebugSidePanel.cs.meta │ │ │ ├── DisplayWindow.EnvironmentLibrarySidePanel.cs │ │ │ ├── DisplayWindow.EnvironmentLibrarySidePanel.cs.meta │ │ │ ├── DisplayWindow.cs │ │ │ ├── DisplayWindow.cs.meta │ │ │ ├── DisplayWindow.uss │ │ │ ├── DisplayWindow.uss.meta │ │ │ ├── DropArea.cs │ │ │ ├── DropArea.cs.meta │ │ │ ├── Environment.cs │ │ │ ├── Environment.cs.meta │ │ │ ├── EnvironmentLibrary.cs │ │ │ ├── EnvironmentLibrary.cs.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── Add.png │ │ │ │ ├── Add.png.meta │ │ │ │ ├── Add@2x.png │ │ │ │ ├── Add@2x.png.meta │ │ │ │ ├── Camera1.png │ │ │ │ ├── Camera1.png.meta │ │ │ │ ├── Camera1@2x.png │ │ │ │ ├── Camera1@2x.png.meta │ │ │ │ ├── Camera2.png │ │ │ │ ├── Camera2.png.meta │ │ │ │ ├── Camera2@2x.png │ │ │ │ ├── Camera2@2x.png.meta │ │ │ │ ├── CenterLight.png │ │ │ │ ├── CenterLight.png.meta │ │ │ │ ├── CenterLight@2x.png │ │ │ │ ├── CenterLight@2x.png.meta │ │ │ │ ├── Duplicate.png │ │ │ │ ├── Duplicate.png.meta │ │ │ │ ├── Duplicate@2x.png │ │ │ │ ├── Duplicate@2x.png.meta │ │ │ │ ├── Environment.png │ │ │ │ ├── Environment.png.meta │ │ │ │ ├── Environment@2x.png │ │ │ │ ├── Environment@2x.png.meta │ │ │ │ ├── Layout1.png │ │ │ │ ├── Layout1.png.meta │ │ │ │ ├── Layout1@2x.png │ │ │ │ ├── Layout1@2x.png.meta │ │ │ │ ├── Layout2.png │ │ │ │ ├── Layout2.png.meta │ │ │ │ ├── Layout2@2x.png │ │ │ │ ├── Layout2@2x.png.meta │ │ │ │ ├── LayoutCustom.png │ │ │ │ ├── LayoutCustom.png.meta │ │ │ │ ├── LayoutCustom@2x.png │ │ │ │ ├── LayoutCustom@2x.png.meta │ │ │ │ ├── LayoutHorizontal.png │ │ │ │ ├── LayoutHorizontal.png.meta │ │ │ │ ├── LayoutHorizontal@2x.png │ │ │ │ ├── LayoutHorizontal@2x.png.meta │ │ │ │ ├── LayoutVertical.png │ │ │ │ ├── LayoutVertical.png.meta │ │ │ │ ├── LayoutVertical@2x.png │ │ │ │ ├── LayoutVertical@2x.png.meta │ │ │ │ ├── LeftArrow.png │ │ │ │ ├── LeftArrow.png.meta │ │ │ │ ├── LeftArrow@2x.png │ │ │ │ ├── LeftArrow@2x.png.meta │ │ │ │ ├── Link.png │ │ │ │ ├── Link.png.meta │ │ │ │ ├── Link@2x.png │ │ │ │ ├── Link@2x.png.meta │ │ │ │ ├── LookDev.png │ │ │ │ ├── LookDev.png.meta │ │ │ │ ├── LookDev@2x.png │ │ │ │ ├── LookDev@2x.png.meta │ │ │ │ ├── Remove.png │ │ │ │ ├── Remove.png.meta │ │ │ │ ├── Remove@2x.png │ │ │ │ ├── Remove@2x.png.meta │ │ │ │ ├── RenderDoc@2x.png │ │ │ │ ├── RenderDoc@2x.png.meta │ │ │ │ ├── RightArrow.png │ │ │ │ ├── RightArrow.png.meta │ │ │ │ ├── RightArrow@2x.png │ │ │ │ ├── RightArrow@2x.png.meta │ │ │ │ ├── Rotation.png │ │ │ │ ├── Rotation.png.meta │ │ │ │ ├── Rotation@2x.png │ │ │ │ ├── Rotation@2x.png.meta │ │ │ │ ├── SunPosition.png │ │ │ │ ├── SunPosition.png.meta │ │ │ │ ├── SunPosition@2x.png │ │ │ │ ├── SunPosition@2x.png.meta │ │ │ │ ├── d_Add.png │ │ │ │ ├── d_Add.png.meta │ │ │ │ ├── d_Add@2x.png │ │ │ │ ├── d_Add@2x.png.meta │ │ │ │ ├── d_Camera1.png │ │ │ │ ├── d_Camera1.png.meta │ │ │ │ ├── d_Camera1@2x.png │ │ │ │ ├── d_Camera1@2x.png.meta │ │ │ │ ├── d_Camera2.png │ │ │ │ ├── d_Camera2.png.meta │ │ │ │ ├── d_Camera2@2x.png │ │ │ │ ├── d_Camera2@2x.png.meta │ │ │ │ ├── d_CenterLight.png │ │ │ │ ├── d_CenterLight.png.meta │ │ │ │ ├── d_CenterLight@2x.png │ │ │ │ ├── d_CenterLight@2x.png.meta │ │ │ │ ├── d_Duplicate.png │ │ │ │ ├── d_Duplicate.png.meta │ │ │ │ ├── d_Duplicate@2x.png │ │ │ │ ├── d_Duplicate@2x.png.meta │ │ │ │ ├── d_Environment.png │ │ │ │ ├── d_Environment.png.meta │ │ │ │ ├── d_Environment@2x.png │ │ │ │ ├── d_Environment@2x.png.meta │ │ │ │ ├── d_Layout1.png │ │ │ │ ├── d_Layout1.png.meta │ │ │ │ ├── d_Layout1@2x.png │ │ │ │ ├── d_Layout1@2x.png.meta │ │ │ │ ├── d_Layout2.png │ │ │ │ ├── d_Layout2.png.meta │ │ │ │ ├── d_Layout2@2x.png │ │ │ │ ├── d_Layout2@2x.png.meta │ │ │ │ ├── d_LayoutCustom.png │ │ │ │ ├── d_LayoutCustom.png.meta │ │ │ │ ├── d_LayoutCustom@2x.png │ │ │ │ ├── d_LayoutCustom@2x.png.meta │ │ │ │ ├── d_LayoutHorizontal.png │ │ │ │ ├── d_LayoutHorizontal.png.meta │ │ │ │ ├── d_LayoutHorizontal@2x.png │ │ │ │ ├── d_LayoutHorizontal@2x.png.meta │ │ │ │ ├── d_LayoutVertical.png │ │ │ │ ├── d_LayoutVertical.png.meta │ │ │ │ ├── d_LayoutVertical@2x.png │ │ │ │ ├── d_LayoutVertical@2x.png.meta │ │ │ │ ├── d_LeftArrow.png │ │ │ │ ├── d_LeftArrow.png.meta │ │ │ │ ├── d_LeftArrow@2x.png │ │ │ │ ├── d_LeftArrow@2x.png.meta │ │ │ │ ├── d_Link.png │ │ │ │ ├── d_Link.png.meta │ │ │ │ ├── d_Link@2x.png │ │ │ │ ├── d_Link@2x.png.meta │ │ │ │ ├── d_LookDev.png │ │ │ │ ├── d_LookDev.png.meta │ │ │ │ ├── d_LookDev@2x.png │ │ │ │ ├── d_LookDev@2x.png.meta │ │ │ │ ├── d_Remove.png │ │ │ │ ├── d_Remove.png.meta │ │ │ │ ├── d_Remove@2x.png │ │ │ │ ├── d_Remove@2x.png.meta │ │ │ │ ├── d_RenderDoc@2x.png │ │ │ │ ├── d_RenderDoc@2x.png.meta │ │ │ │ ├── d_RightArrow.png │ │ │ │ ├── d_RightArrow.png.meta │ │ │ │ ├── d_RightArrow@2x.png │ │ │ │ ├── d_RightArrow@2x.png.meta │ │ │ │ ├── d_Rotation.png │ │ │ │ ├── d_Rotation.png.meta │ │ │ │ ├── d_Rotation@2x.png │ │ │ │ ├── d_Rotation@2x.png.meta │ │ │ │ ├── d_SunPosition.png │ │ │ │ ├── d_SunPosition.png.meta │ │ │ │ ├── d_SunPosition@2x.png │ │ │ │ ├── d_SunPosition@2x.png.meta │ │ │ │ ├── d_renderdoc.png │ │ │ │ ├── d_renderdoc.png.meta │ │ │ │ ├── renderdoc.png │ │ │ │ └── renderdoc.png.meta │ │ │ ├── Inspectors.uss │ │ │ ├── Inspectors.uss.meta │ │ │ ├── LookDev.cs │ │ │ ├── LookDev.cs.meta │ │ │ ├── LookDevRenderer.cs │ │ │ ├── LookDevRenderer.cs.meta │ │ │ ├── Stage.cs │ │ │ ├── Stage.cs.meta │ │ │ ├── ToolbarRadio.cs │ │ │ └── ToolbarRadio.cs.meta │ │ ├── MaterialUpgrader.cs │ │ ├── MaterialUpgrader.cs.meta │ │ ├── PropertyFetcher.cs │ │ ├── PropertyFetcher.cs.meta │ │ ├── QuaternionPropertyDrawer.cs │ │ ├── QuaternionPropertyDrawer.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Advanced_Pressed_mini.png │ │ │ ├── Advanced_Pressed_mini.png.meta │ │ │ ├── Advanced_UnPressed_mini.png │ │ │ └── Advanced_UnPressed_mini.png.meta │ │ ├── ShaderGenerator.meta │ │ ├── ShaderGenerator │ │ │ ├── CSharpToHLSL.cs │ │ │ ├── CSharpToHLSL.cs.meta │ │ │ ├── ICSharpCode.NRefactory.dll │ │ │ ├── ICSharpCode.NRefactory.dll.meta │ │ │ ├── ShaderGeneratorMenu.cs │ │ │ ├── ShaderGeneratorMenu.cs.meta │ │ │ ├── ShaderTypeGeneration.cs │ │ │ └── ShaderTypeGeneration.cs.meta │ │ ├── Unity.RenderPipelines.Core.Editor.asmdef │ │ ├── Unity.RenderPipelines.Core.Editor.asmdef.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── EditorMaterialQuality.cs │ │ │ ├── EditorMaterialQuality.cs.meta │ │ │ ├── SerializedBitArray.cs │ │ │ └── SerializedBitArray.cs.meta │ │ ├── Volume.meta │ │ └── Volume │ │ │ ├── Drawers.meta │ │ │ ├── Drawers │ │ │ ├── ColorParameterDrawer.cs │ │ │ ├── ColorParameterDrawer.cs.meta │ │ │ ├── FloatParameterDrawer.cs │ │ │ ├── FloatParameterDrawer.cs.meta │ │ │ ├── IntParameterDrawer.cs │ │ │ ├── IntParameterDrawer.cs.meta │ │ │ ├── Vector4ParameterDrawer.cs │ │ │ └── Vector4ParameterDrawer.cs.meta │ │ │ ├── SerializedDataParameter.cs │ │ │ ├── SerializedDataParameter.cs.meta │ │ │ ├── VolumeComponentEditor.cs │ │ │ ├── VolumeComponentEditor.cs.meta │ │ │ ├── VolumeComponentListEditor.cs │ │ │ ├── VolumeComponentListEditor.cs.meta │ │ │ ├── VolumeComponentProvider.cs │ │ │ ├── VolumeComponentProvider.cs.meta │ │ │ ├── VolumeEditor.cs │ │ │ ├── VolumeEditor.cs.meta │ │ │ ├── VolumeMenuItems.cs │ │ │ ├── VolumeMenuItems.cs.meta │ │ │ ├── VolumeParameterDrawer.cs │ │ │ ├── VolumeParameterDrawer.cs.meta │ │ │ ├── VolumeProfileEditor.cs │ │ │ ├── VolumeProfileEditor.cs.meta │ │ │ ├── VolumeProfileFactory.cs │ │ │ └── VolumeProfileFactory.cs.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.cs.meta │ │ ├── Camera.meta │ │ ├── Camera │ │ │ ├── CameraSwitcher.cs │ │ │ ├── CameraSwitcher.cs.meta │ │ │ ├── FreeCamera.cs │ │ │ └── FreeCamera.cs.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── CommandBufferPool.cs │ │ │ ├── CommandBufferPool.cs.meta │ │ │ ├── CommonStructs.cs │ │ │ ├── CommonStructs.cs.meta │ │ │ ├── ComponentSingleton.cs │ │ │ ├── ComponentSingleton.cs.meta │ │ │ ├── CoreUnsafeUtils.cs │ │ │ ├── CoreUnsafeUtils.cs.meta │ │ │ ├── DynamicArray.cs │ │ │ ├── DynamicArray.cs.meta │ │ │ ├── DynamicResolutionHandler.cs │ │ │ ├── DynamicResolutionHandler.cs.meta │ │ │ ├── GlobalDynamicResolutionSettings.cs │ │ │ ├── GlobalDynamicResolutionSettings.cs.meta │ │ │ ├── ObjectPools.cs │ │ │ ├── ObjectPools.cs.meta │ │ │ ├── ObservableList.cs │ │ │ ├── ObservableList.cs.meta │ │ │ ├── RectInt.cs │ │ │ ├── RectInt.cs.meta │ │ │ ├── SerializedDictionary.cs │ │ │ ├── SerializedDictionary.cs.meta │ │ │ ├── XRGraphics.cs │ │ │ └── XRGraphics.cs.meta │ │ ├── Debugging.meta │ │ ├── Debugging │ │ │ ├── DebugManager.Actions.cs │ │ │ ├── DebugManager.Actions.cs.meta │ │ │ ├── DebugManager.cs │ │ │ ├── DebugManager.cs.meta │ │ │ ├── DebugShapes.cs │ │ │ ├── DebugShapes.cs.meta │ │ │ ├── DebugUI.Containers.cs │ │ │ ├── DebugUI.Containers.cs.meta │ │ │ ├── DebugUI.Fields.cs │ │ │ ├── DebugUI.Fields.cs.meta │ │ │ ├── DebugUI.Panel.cs │ │ │ ├── DebugUI.Panel.cs.meta │ │ │ ├── DebugUI.cs │ │ │ ├── DebugUI.cs.meta │ │ │ ├── DebugUpdater.cs │ │ │ ├── DebugUpdater.cs.meta │ │ │ ├── MousePositionDebug.cs │ │ │ ├── MousePositionDebug.cs.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Fonts.meta │ │ │ │ ├── Fonts │ │ │ │ │ ├── Perfect DOS VGA 437.ttf │ │ │ │ │ └── Perfect DOS VGA 437.ttf.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── DebugUI Canvas.prefab │ │ │ │ │ ├── DebugUI Canvas.prefab.meta │ │ │ │ │ ├── DebugUI Persistent Canvas.prefab │ │ │ │ │ └── DebugUI Persistent Canvas.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── DebugUIHandlerBitField.cs │ │ │ │ │ ├── DebugUIHandlerBitField.cs.meta │ │ │ │ │ ├── DebugUIHandlerButton.cs │ │ │ │ │ ├── DebugUIHandlerButton.cs.meta │ │ │ │ │ ├── DebugUIHandlerCanvas.cs │ │ │ │ │ ├── DebugUIHandlerCanvas.cs.meta │ │ │ │ │ ├── DebugUIHandlerColor.cs │ │ │ │ │ ├── DebugUIHandlerColor.cs.meta │ │ │ │ │ ├── DebugUIHandlerContainer.cs │ │ │ │ │ ├── DebugUIHandlerContainer.cs.meta │ │ │ │ │ ├── DebugUIHandlerEnumField.cs │ │ │ │ │ ├── DebugUIHandlerEnumField.cs.meta │ │ │ │ │ ├── DebugUIHandlerEnumHistory.cs │ │ │ │ │ ├── DebugUIHandlerEnumHistory.cs.meta │ │ │ │ │ ├── DebugUIHandlerFloatField.cs │ │ │ │ │ ├── DebugUIHandlerFloatField.cs.meta │ │ │ │ │ ├── DebugUIHandlerFoldout.cs │ │ │ │ │ ├── DebugUIHandlerFoldout.cs.meta │ │ │ │ │ ├── DebugUIHandlerGroup.cs │ │ │ │ │ ├── DebugUIHandlerGroup.cs.meta │ │ │ │ │ ├── DebugUIHandlerHBox.cs │ │ │ │ │ ├── DebugUIHandlerHBox.cs.meta │ │ │ │ │ ├── DebugUIHandlerIndirectFloatField.cs │ │ │ │ │ ├── DebugUIHandlerIndirectFloatField.cs.meta │ │ │ │ │ ├── DebugUIHandlerIndirectToggle.cs │ │ │ │ │ ├── DebugUIHandlerIndirectToggle.cs.meta │ │ │ │ │ ├── DebugUIHandlerIntField.cs │ │ │ │ │ ├── DebugUIHandlerIntField.cs.meta │ │ │ │ │ ├── DebugUIHandlerPanel.cs │ │ │ │ │ ├── DebugUIHandlerPanel.cs.meta │ │ │ │ │ ├── DebugUIHandlerPersistentCanvas.cs │ │ │ │ │ ├── DebugUIHandlerPersistentCanvas.cs.meta │ │ │ │ │ ├── DebugUIHandlerToggle.cs │ │ │ │ │ ├── DebugUIHandlerToggle.cs.meta │ │ │ │ │ ├── DebugUIHandlerToggleHistory.cs │ │ │ │ │ ├── DebugUIHandlerToggleHistory.cs.meta │ │ │ │ │ ├── DebugUIHandlerUIntField.cs │ │ │ │ │ ├── DebugUIHandlerUIntField.cs.meta │ │ │ │ │ ├── DebugUIHandlerVBox.cs │ │ │ │ │ ├── DebugUIHandlerVBox.cs.meta │ │ │ │ │ ├── DebugUIHandlerValue.cs │ │ │ │ │ ├── DebugUIHandlerValue.cs.meta │ │ │ │ │ ├── DebugUIHandlerVector2.cs │ │ │ │ │ ├── DebugUIHandlerVector2.cs.meta │ │ │ │ │ ├── DebugUIHandlerVector3.cs │ │ │ │ │ ├── DebugUIHandlerVector3.cs.meta │ │ │ │ │ ├── DebugUIHandlerVector4.cs │ │ │ │ │ ├── DebugUIHandlerVector4.cs.meta │ │ │ │ │ ├── DebugUIHandlerWidget.cs │ │ │ │ │ ├── DebugUIHandlerWidget.cs.meta │ │ │ │ │ ├── UIFoldout.cs │ │ │ │ │ └── UIFoldout.cs.meta │ │ │ │ ├── Textures.meta │ │ │ │ ├── Textures │ │ │ │ │ ├── UIArrowDown.png │ │ │ │ │ ├── UIArrowDown.png.meta │ │ │ │ │ ├── UICheckMark.png │ │ │ │ │ ├── UICheckMark.png.meta │ │ │ │ │ ├── UIElement8px.png │ │ │ │ │ ├── UIElement8px.png.meta │ │ │ │ │ ├── UIFoldoutClosed.png │ │ │ │ │ ├── UIFoldoutClosed.png.meta │ │ │ │ │ ├── UIFoldoutOpened.png │ │ │ │ │ ├── UIFoldoutOpened.png.meta │ │ │ │ │ ├── White1px.png │ │ │ │ │ └── White1px.png.meta │ │ │ │ ├── Widgets.meta │ │ │ │ └── Widgets │ │ │ │ │ ├── DebugUI BitField.prefab │ │ │ │ │ ├── DebugUI BitField.prefab.meta │ │ │ │ │ ├── DebugUI Button.prefab │ │ │ │ │ ├── DebugUI Button.prefab.meta │ │ │ │ │ ├── DebugUI Color.prefab │ │ │ │ │ ├── DebugUI Color.prefab.meta │ │ │ │ │ ├── DebugUI EnumField.prefab │ │ │ │ │ ├── DebugUI EnumField.prefab.meta │ │ │ │ │ ├── DebugUI EnumHistory.prefab │ │ │ │ │ ├── DebugUI EnumHistory.prefab.meta │ │ │ │ │ ├── DebugUI FloatField.prefab │ │ │ │ │ ├── DebugUI FloatField.prefab.meta │ │ │ │ │ ├── DebugUI Foldout.prefab │ │ │ │ │ ├── DebugUI Foldout.prefab.meta │ │ │ │ │ ├── DebugUI Group.prefab │ │ │ │ │ ├── DebugUI Group.prefab.meta │ │ │ │ │ ├── DebugUI HBox.prefab │ │ │ │ │ ├── DebugUI HBox.prefab.meta │ │ │ │ │ ├── DebugUI IntField.prefab │ │ │ │ │ ├── DebugUI IntField.prefab.meta │ │ │ │ │ ├── DebugUI Panel.prefab │ │ │ │ │ ├── DebugUI Panel.prefab.meta │ │ │ │ │ ├── DebugUI Toggle.prefab │ │ │ │ │ ├── DebugUI Toggle.prefab.meta │ │ │ │ │ ├── DebugUI ToggleHistory.prefab │ │ │ │ │ ├── DebugUI ToggleHistory.prefab.meta │ │ │ │ │ ├── DebugUI UIntField.prefab │ │ │ │ │ ├── DebugUI UIntField.prefab.meta │ │ │ │ │ ├── DebugUI VBox.prefab │ │ │ │ │ ├── DebugUI VBox.prefab.meta │ │ │ │ │ ├── DebugUI Value.prefab │ │ │ │ │ ├── DebugUI Value.prefab.meta │ │ │ │ │ ├── DebugUI Vector2.prefab │ │ │ │ │ ├── DebugUI Vector2.prefab.meta │ │ │ │ │ ├── DebugUI Vector3.prefab │ │ │ │ │ ├── DebugUI Vector3.prefab.meta │ │ │ │ │ ├── DebugUI Vector4.prefab │ │ │ │ │ └── DebugUI Vector4.prefab.meta │ │ │ ├── ProfilingSample.cs │ │ │ └── ProfilingSample.cs.meta │ │ ├── Documentation.cs │ │ ├── Documentation.cs.meta │ │ ├── Inputs.meta │ │ ├── Inputs │ │ │ ├── InputRegistering.cs │ │ │ └── InputRegistering.cs.meta │ │ ├── LookDev.meta │ │ ├── LookDev │ │ │ ├── IDataProvider.cs │ │ │ └── IDataProvider.cs.meta │ │ ├── RenderGraph.meta │ │ ├── RenderGraph │ │ │ ├── RenderGraph.cs │ │ │ ├── RenderGraph.cs.meta │ │ │ ├── RenderGraphBuilder.cs │ │ │ ├── RenderGraphBuilder.cs.meta │ │ │ ├── RenderGraphLogger.cs │ │ │ ├── RenderGraphLogger.cs.meta │ │ │ ├── RenderGraphObjectPool.cs │ │ │ ├── RenderGraphObjectPool.cs.meta │ │ │ ├── RenderGraphResource.cs │ │ │ ├── RenderGraphResource.cs.meta │ │ │ ├── RenderGraphResourceRegistry.cs │ │ │ └── RenderGraphResourceRegistry.cs.meta │ │ ├── RendererList.meta │ │ ├── RendererList │ │ │ ├── RendererList.cs │ │ │ └── RendererList.cs.meta │ │ ├── Script.meta │ │ ├── Script │ │ │ ├── Profiler.meta │ │ │ └── Profiler │ │ │ │ ├── MiniProfiler.cs │ │ │ │ └── MiniProfiler.cs.meta │ │ ├── ShaderGenerator.meta │ │ ├── ShaderGenerator │ │ │ ├── ShaderGeneratorAttributes.cs │ │ │ └── ShaderGeneratorAttributes.cs.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── BufferedRTHandleSystem.cs │ │ │ ├── BufferedRTHandleSystem.cs.meta │ │ │ ├── DepthBits.cs │ │ │ ├── DepthBits.cs.meta │ │ │ ├── MSAASamples.cs │ │ │ ├── MSAASamples.cs.meta │ │ │ ├── RTHandle.cs │ │ │ ├── RTHandle.cs.meta │ │ │ ├── RTHandleSystem.cs │ │ │ ├── RTHandleSystem.cs.meta │ │ │ ├── RTHandles.cs │ │ │ ├── RTHandles.cs.meta │ │ │ ├── TextureXR.cs │ │ │ └── TextureXR.cs.meta │ │ ├── Unity.RenderPipelines.Core.Runtime.asmdef │ │ ├── Unity.RenderPipelines.Core.Runtime.asmdef.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── BitArray.cs │ │ │ ├── BitArray.cs.meta │ │ │ ├── CameraCaptureBridge.cs │ │ │ ├── CameraCaptureBridge.cs.meta │ │ │ ├── ColorUtils.cs │ │ │ ├── ColorUtils.cs.meta │ │ │ ├── CoreRenderPipelinePreferences.cs │ │ │ ├── CoreRenderPipelinePreferences.cs.meta │ │ │ ├── CoreUtils.cs │ │ │ ├── CoreUtils.cs.meta │ │ │ ├── DelegateUtility.cs │ │ │ ├── DelegateUtility.cs.meta │ │ │ ├── HableCurve.cs │ │ │ ├── HableCurve.cs.meta │ │ │ ├── HaltonSequence.cs │ │ │ ├── HaltonSequence.cs.meta │ │ │ ├── MaterialQuality.cs │ │ │ ├── MaterialQuality.cs.meta │ │ │ ├── ResourceReloader.cs │ │ │ ├── ResourceReloader.cs.meta │ │ │ ├── SceneRenderPipeline.cs │ │ │ ├── SceneRenderPipeline.cs.meta │ │ │ ├── TextureCurve.cs │ │ │ ├── TextureCurve.cs.meta │ │ │ ├── TileLayoutUtils.cs │ │ │ ├── TileLayoutUtils.cs.meta │ │ │ ├── XRUtils.cs │ │ │ └── XRUtils.cs.meta │ │ ├── Volume.meta │ │ └── Volume │ │ │ ├── Volume.cs │ │ │ ├── Volume.cs.meta │ │ │ ├── VolumeComponent.cs │ │ │ ├── VolumeComponent.cs.meta │ │ │ ├── VolumeManager.cs │ │ │ ├── VolumeManager.cs.meta │ │ │ ├── VolumeParameter.cs │ │ │ ├── VolumeParameter.cs.meta │ │ │ ├── VolumeProfile.cs │ │ │ ├── VolumeProfile.cs.meta │ │ │ ├── VolumeStack.cs │ │ │ └── VolumeStack.cs.meta │ ├── ShaderLibrary.meta │ ├── ShaderLibrary │ │ ├── ACES.hlsl │ │ ├── ACES.hlsl.meta │ │ ├── API.meta │ │ ├── API │ │ │ ├── D3D11.hlsl │ │ │ ├── D3D11.hlsl.meta │ │ │ ├── GLCore.hlsl │ │ │ ├── GLCore.hlsl.meta │ │ │ ├── GLES2.hlsl │ │ │ ├── GLES2.hlsl.meta │ │ │ ├── GLES3.hlsl │ │ │ ├── GLES3.hlsl.meta │ │ │ ├── Metal.hlsl │ │ │ ├── Metal.hlsl.meta │ │ │ ├── PSSL.hlsl │ │ │ ├── PSSL.hlsl.meta │ │ │ ├── Switch.hlsl │ │ │ ├── Switch.hlsl.meta │ │ │ ├── Validate.hlsl │ │ │ ├── Validate.hlsl.meta │ │ │ ├── Vulkan.hlsl │ │ │ ├── Vulkan.hlsl.meta │ │ │ ├── XBoxOne.hlsl │ │ │ └── XBoxOne.hlsl.meta │ │ ├── AreaLighting.hlsl │ │ ├── AreaLighting.hlsl.meta │ │ ├── BC6H.hlsl │ │ ├── BC6H.hlsl.meta │ │ ├── BSDF.hlsl │ │ ├── BSDF.hlsl.meta │ │ ├── Color.hlsl │ │ ├── Color.hlsl.meta │ │ ├── Common.hlsl │ │ ├── Common.hlsl.meta │ │ ├── CommonDeprecated.hlsl │ │ ├── CommonDeprecated.hlsl.meta │ │ ├── CommonLighting.hlsl │ │ ├── CommonLighting.hlsl.meta │ │ ├── CommonMaterial.hlsl │ │ ├── CommonMaterial.hlsl.meta │ │ ├── CommonShadow.hlsl │ │ ├── CommonShadow.hlsl.meta │ │ ├── Debug.hlsl │ │ ├── Debug.hlsl.meta │ │ ├── DummyShaderLibrary.cs │ │ ├── DummyShaderLibrary.cs.meta │ │ ├── EntityLighting.hlsl │ │ ├── EntityLighting.hlsl.meta │ │ ├── Filtering.hlsl │ │ ├── Filtering.hlsl.meta │ │ ├── GeometricTools.hlsl │ │ ├── GeometricTools.hlsl.meta │ │ ├── ImageBasedLighting.hlsl │ │ ├── ImageBasedLighting.hlsl.meta │ │ ├── Macros.hlsl │ │ ├── Macros.hlsl.meta │ │ ├── NormalSurfaceGradient.hlsl │ │ ├── NormalSurfaceGradient.hlsl.meta │ │ ├── Packing.hlsl │ │ ├── Packing.hlsl.meta │ │ ├── PerPixelDisplacement.hlsl │ │ ├── PerPixelDisplacement.hlsl.meta │ │ ├── PhysicalCamera.hlsl │ │ ├── PhysicalCamera.hlsl.meta │ │ ├── Random.hlsl │ │ ├── Random.hlsl.meta │ │ ├── Refraction.hlsl │ │ ├── Refraction.hlsl.meta │ │ ├── SDF2D.hlsl │ │ ├── SDF2D.hlsl.meta │ │ ├── Sampling.meta │ │ ├── Sampling │ │ │ ├── Fibonacci.hlsl │ │ │ ├── Fibonacci.hlsl.meta │ │ │ ├── Hammersley.hlsl │ │ │ ├── Hammersley.hlsl.meta │ │ │ ├── SampleUVMapping.hlsl │ │ │ ├── SampleUVMapping.hlsl.meta │ │ │ ├── SampleUVMappingInternal.hlsl │ │ │ ├── SampleUVMappingInternal.hlsl.meta │ │ │ ├── SampleUVMappingNormalInternal.hlsl │ │ │ ├── SampleUVMappingNormalInternal.hlsl.meta │ │ │ ├── Sampling.hlsl │ │ │ └── Sampling.hlsl.meta │ │ ├── Shadow.meta │ │ ├── Shadow │ │ │ ├── ShadowSamplingTent.hlsl │ │ │ └── ShadowSamplingTent.hlsl.meta │ │ ├── SpaceFillingCurves.hlsl │ │ ├── SpaceFillingCurves.hlsl.meta │ │ ├── SpaceTransforms.hlsl │ │ ├── SpaceTransforms.hlsl.meta │ │ ├── Tessellation.hlsl │ │ ├── Tessellation.hlsl.meta │ │ ├── Unity.RenderPipelines.Core.ShaderLibrary.asmdef │ │ ├── Unity.RenderPipelines.Core.ShaderLibrary.asmdef.meta │ │ ├── UnityInstancing.hlsl │ │ ├── UnityInstancing.hlsl.meta │ │ ├── Version.hlsl │ │ ├── Version.hlsl.meta │ │ ├── VolumeRendering.hlsl │ │ └── VolumeRendering.hlsl.meta │ ├── Tests.meta │ ├── Tests │ │ ├── .tests.json │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── BitArrayTests.cs │ │ │ ├── BitArrayTests.cs.meta │ │ │ ├── CoreUnsafeUtilsTests.cs │ │ │ ├── CoreUnsafeUtilsTests.cs.meta │ │ │ ├── EditorExampleTest.cs │ │ │ ├── EditorExampleTest.cs.meta │ │ │ ├── FixedBufferStringQueueTests.cs │ │ │ ├── FixedBufferStringQueueTests.cs.meta │ │ │ ├── Unity.RenderPipelines.Core.Editor.Tests.asmdef │ │ │ └── Unity.RenderPipelines.Core.Editor.Tests.asmdef.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── RuntimeExampleTest.cs │ │ │ ├── RuntimeExampleTest.cs.meta │ │ │ ├── Unity.RenderPipelines.Core.Runtime.Tests.asmdef │ │ │ └── Unity.RenderPipelines.Core.Runtime.Tests.asmdef.meta │ ├── package.json │ └── package.json.meta │ ├── com.unity.render-pipelines.lightweight │ ├── .npmignore │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ │ ├── Getting-Started.md │ │ └── index.md │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── ShaderLibrary.meta │ ├── ShaderLibrary │ │ ├── Core.hlsl │ │ ├── Core.hlsl.meta │ │ ├── Input.hlsl │ │ ├── Input.hlsl.meta │ │ ├── Lighting.hlsl │ │ ├── Lighting.hlsl.meta │ │ ├── MetaInput.hlsl │ │ ├── MetaInput.hlsl.meta │ │ ├── Particles.hlsl │ │ ├── Particles.hlsl.meta │ │ ├── ShaderGraphFunctions.hlsl │ │ ├── ShaderGraphFunctions.hlsl.meta │ │ ├── Shadows.hlsl │ │ ├── Shadows.hlsl.meta │ │ ├── SurfaceInput.hlsl │ │ ├── SurfaceInput.hlsl.meta │ │ ├── UnityInput.hlsl │ │ ├── UnityInput.hlsl.meta │ │ ├── Version.hlsl │ │ └── Version.hlsl.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── Include.meta │ │ │ └── Include │ │ │ │ ├── CombinedShapeLightShared.hlsl │ │ │ │ ├── CombinedShapeLightShared.hlsl.meta │ │ │ │ ├── LightingUtility.hlsl │ │ │ │ ├── LightingUtility.hlsl.meta │ │ │ │ ├── NormalsRenderingShared.hlsl │ │ │ │ └── NormalsRenderingShared.hlsl.meta │ │ ├── BakedLitInput.hlsl │ │ ├── BakedLitInput.hlsl.meta │ │ ├── BakedLitMetaPass.hlsl │ │ ├── BakedLitMetaPass.hlsl.meta │ │ ├── DepthOnlyPass.hlsl │ │ ├── DepthOnlyPass.hlsl.meta │ │ ├── LitForwardPass.hlsl │ │ ├── LitForwardPass.hlsl.meta │ │ ├── LitInput.hlsl │ │ ├── LitInput.hlsl.meta │ │ ├── LitMetaPass.hlsl │ │ ├── LitMetaPass.hlsl.meta │ │ ├── Nature.meta │ │ ├── Nature │ │ │ ├── SpeedTree7BillboardInput.hlsl │ │ │ ├── SpeedTree7BillboardInput.hlsl.meta │ │ │ ├── SpeedTree7BillboardPasses.hlsl │ │ │ ├── SpeedTree7BillboardPasses.hlsl.meta │ │ │ ├── SpeedTree7CommonInput.hlsl │ │ │ ├── SpeedTree7CommonInput.hlsl.meta │ │ │ ├── SpeedTree7CommonPasses.hlsl │ │ │ ├── SpeedTree7CommonPasses.hlsl.meta │ │ │ ├── SpeedTree7Input.hlsl │ │ │ ├── SpeedTree7Input.hlsl.meta │ │ │ ├── SpeedTree7Passes.hlsl │ │ │ ├── SpeedTree7Passes.hlsl.meta │ │ │ ├── SpeedTree8Input.hlsl │ │ │ ├── SpeedTree8Input.hlsl.meta │ │ │ ├── SpeedTree8Passes.hlsl │ │ │ └── SpeedTree8Passes.hlsl.meta │ │ ├── Particles.meta │ │ ├── Particles │ │ │ ├── ParticlesLitForwardPass.hlsl │ │ │ ├── ParticlesLitForwardPass.hlsl.meta │ │ │ ├── ParticlesLitInput.hlsl │ │ │ ├── ParticlesLitInput.hlsl.meta │ │ │ ├── ParticlesSimpleLitForwardPass.hlsl │ │ │ ├── ParticlesSimpleLitForwardPass.hlsl.meta │ │ │ ├── ParticlesSimpleLitInput.hlsl │ │ │ ├── ParticlesSimpleLitInput.hlsl.meta │ │ │ ├── ParticlesUnlitForwardPass.hlsl │ │ │ ├── ParticlesUnlitForwardPass.hlsl.meta │ │ │ ├── ParticlesUnlitInput.hlsl │ │ │ └── ParticlesUnlitInput.hlsl.meta │ │ ├── ShadowCasterPass.hlsl │ │ ├── ShadowCasterPass.hlsl.meta │ │ ├── SimpleLitForwardPass.hlsl │ │ ├── SimpleLitForwardPass.hlsl.meta │ │ ├── SimpleLitInput.hlsl │ │ ├── SimpleLitInput.hlsl.meta │ │ ├── SimpleLitMetaPass.hlsl │ │ ├── SimpleLitMetaPass.hlsl.meta │ │ ├── Terrain.meta │ │ ├── Terrain │ │ │ ├── TerrainLitInput.hlsl │ │ │ ├── TerrainLitInput.hlsl.meta │ │ │ ├── TerrainLitMetaPass.hlsl │ │ │ ├── TerrainLitMetaPass.hlsl.meta │ │ │ ├── TerrainLitPasses.hlsl │ │ │ ├── TerrainLitPasses.hlsl.meta │ │ │ ├── WavingGrassInput.hlsl │ │ │ ├── WavingGrassInput.hlsl.meta │ │ │ ├── WavingGrassPasses.hlsl │ │ │ └── WavingGrassPasses.hlsl.meta │ │ ├── UnlitInput.hlsl │ │ ├── UnlitInput.hlsl.meta │ │ ├── UnlitMetaPass.hlsl │ │ ├── UnlitMetaPass.hlsl.meta │ │ ├── Utils.meta │ │ └── Utils │ │ │ ├── CopyDepthPass.hlsl │ │ │ ├── CopyDepthPass.hlsl.meta │ │ │ ├── Lightweight2D.hlsl │ │ │ └── Lightweight2D.hlsl.meta │ ├── Tests.meta │ ├── Tests │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── LightweightEditorTests.cs │ │ │ ├── LightweightEditorTests.cs.meta │ │ │ ├── Unity.Testing.Lightweight.EditorTests.asmdef │ │ │ └── Unity.Testing.Lightweight.EditorTests.asmdef.meta │ ├── package.json │ └── package.json.meta │ ├── com.unity.render-pipelines.universal │ ├── .npmignore │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ │ ├── 2DLightProperties.md │ │ ├── 2DRendererData_overview.md │ │ ├── 2DShadows.md │ │ ├── 2d-index.md │ │ ├── 2d-pixelperfect.md │ │ ├── CreateNewProjectFromTemplate.md │ │ ├── EffectList.md │ │ ├── HDREmulationScale.md │ │ ├── Images │ │ │ ├── 2DLightBasics.png │ │ │ ├── 2D_Pix_image_0.png │ │ │ ├── 2D_Pix_image_1.png │ │ │ ├── 2D_Pix_image_2.png │ │ │ ├── 2D_Pix_image_3.png │ │ │ ├── 2D_Pix_image_4.png │ │ │ ├── 2D_Pix_image_5.png │ │ │ ├── 2D_Pix_image_6.png │ │ │ ├── 2D_Pix_image_7.png │ │ │ ├── 2D_Pix_image_8.png │ │ │ ├── 2D_Pix_image_9.png │ │ │ ├── 2dRendererData_properties.png │ │ │ ├── 2dRendererData_properties_updated.png │ │ │ ├── AssetShots │ │ │ │ └── Beauty │ │ │ │ │ ├── Overview.png │ │ │ │ │ ├── SceneWithPost.png │ │ │ │ │ └── SceneWithoutPost.png │ │ │ ├── Graphics │ │ │ │ └── Rendering_Flowchart.png │ │ │ ├── Inspectors │ │ │ │ ├── Bloom.png │ │ │ │ ├── BokehDepthOfField.png │ │ │ │ ├── ChannelMixer.png │ │ │ │ ├── ChromaticAberration.png │ │ │ │ ├── ColorAdjustments.png │ │ │ │ ├── ColorCurves.png │ │ │ │ ├── ColorLookup.png │ │ │ │ ├── FilmGrain.png │ │ │ │ ├── GaussianDepthOfField.png │ │ │ │ ├── LensDistortion.png │ │ │ │ ├── LiftGammaGain.png │ │ │ │ ├── MotionBlur.png │ │ │ │ ├── PaniniProjection.png │ │ │ │ ├── Shaders │ │ │ │ │ ├── BakedLit.png │ │ │ │ │ ├── Lit.png │ │ │ │ │ ├── ParticlesExtra.png │ │ │ │ │ ├── ParticlesLit.png │ │ │ │ │ ├── ParticlesSimpleLit.png │ │ │ │ │ ├── ParticlesUnlit.png │ │ │ │ │ ├── SimpleLit.png │ │ │ │ │ └── Unlit.png │ │ │ │ ├── ShadowsMidtonesHighlights.png │ │ │ │ ├── SplitToning.png │ │ │ │ ├── Tonemapping.png │ │ │ │ ├── Vignette.png │ │ │ │ ├── Volume1.png │ │ │ │ ├── VolumeProfile.png │ │ │ │ └── WhiteBalance.png │ │ │ ├── LightType_FreeForm.png │ │ │ ├── LightType_Parametric.png │ │ │ ├── LightType_Point.png │ │ │ ├── LightType_Sprite.png │ │ │ ├── RendSilhou_disabled_SS_false-1567347975031.png │ │ │ ├── RendSilhou_disabled_SS_false.png │ │ │ ├── RendSilhou_disabled_SS_true_-1567348054952.png │ │ │ ├── RendSilhou_disabled_SS_true_.png │ │ │ ├── RendSilhou_enabled_SS_false-1567348020330.png │ │ │ ├── RendSilhou_enabled_SS_false.png │ │ │ ├── RendSilhou_enabled_SS_true-1567348111977.png │ │ │ ├── RendSilhou_enabled_SS_true.png │ │ │ ├── ShadowIntensity0-1566813584467.png │ │ │ ├── ShadowIntensity0.png │ │ │ ├── ShadowIntensity05-1566813620123.png │ │ │ ├── ShadowIntensity05.png │ │ │ ├── ShadowIntensity100-1566813654802.png │ │ │ ├── ShadowIntensity100.png │ │ │ ├── cine_2Dpixelperfect_ex.png │ │ │ ├── image_0.png │ │ │ ├── image_1.png │ │ │ ├── image_10.png │ │ │ ├── image_11.png │ │ │ ├── image_12.png │ │ │ ├── image_13.png │ │ │ ├── image_14.png │ │ │ ├── image_15.png │ │ │ ├── image_16.png │ │ │ ├── image_17.png │ │ │ ├── image_18.png │ │ │ ├── image_19.png │ │ │ ├── image_2.png │ │ │ ├── image_20.png │ │ │ ├── image_21.png │ │ │ ├── image_22.png │ │ │ ├── image_23.png │ │ │ ├── image_24.png │ │ │ ├── image_25.png │ │ │ ├── image_26.png │ │ │ ├── image_27.png │ │ │ ├── image_28.png │ │ │ ├── image_29.png │ │ │ ├── image_3.png │ │ │ ├── image_30.png │ │ │ ├── image_31.png │ │ │ ├── image_32.png │ │ │ ├── image_33.png │ │ │ ├── image_34.png │ │ │ ├── image_35.png │ │ │ ├── image_36.png │ │ │ ├── image_37.png │ │ │ ├── image_38.png │ │ │ ├── image_39.png │ │ │ ├── image_4.png │ │ │ ├── image_40.png │ │ │ ├── image_41.png │ │ │ ├── image_42.png │ │ │ ├── image_43.png │ │ │ ├── image_44.png │ │ │ ├── image_45.png │ │ │ ├── image_46.png │ │ │ ├── image_47.png │ │ │ ├── image_48.png │ │ │ ├── image_49.png │ │ │ ├── image_5.png │ │ │ ├── image_50.png │ │ │ ├── image_51.png │ │ │ ├── image_52.png │ │ │ ├── image_53.png │ │ │ ├── image_54.png │ │ │ ├── image_6.png │ │ │ ├── image_7.png │ │ │ ├── image_8.png │ │ │ ├── image_9.png │ │ │ ├── w_composite_shadow.png │ │ │ ├── wo_composite_shadow-1567350239236.png │ │ │ └── wo_composite_shadow.png │ │ ├── InstallURPIntoAProject.md │ │ ├── InstallingAndConfiguringURP.md │ │ ├── LightBlendStyles.md │ │ ├── LightTypes.md │ │ ├── Lights-2D-intro.md │ │ ├── Post-Processing-Channel-Mixer.md │ │ ├── Post-Processing-Color-Adjustments.md │ │ ├── Post-Processing-Color-Curves.md │ │ ├── Post-Processing-Film-Grain.md │ │ ├── Post-Processing-Lens-Distortion.md │ │ ├── Post-Processing-Lift-Gamma-Gain.md │ │ ├── Post-Processing-Motion-Blur.md │ │ ├── Post-Processing-Panini-Projection.md │ │ ├── Post-Processing-Shadows-Midtones-Highlights.md │ │ ├── Post-Processing-Split-Toning.md │ │ ├── Post-Processing-White-Balance.md │ │ ├── PrepShader.md │ │ ├── SecondaryTextures.md │ │ ├── Setup.md │ │ ├── ShaderGraph.md │ │ ├── TableOfContents.md │ │ ├── VolumeOverrides.md │ │ ├── VolumeProfile.md │ │ ├── Volumes.md │ │ ├── baked-lit-shader.md │ │ ├── camera-inspector.md │ │ ├── camera.md │ │ ├── configuring-universalrp-for-use.md │ │ ├── creating-a-new-project-with-universalrp.md │ │ ├── faq.md │ │ ├── forward-renderer.md │ │ ├── index.md │ │ ├── inside-universalrp.md │ │ ├── integration-with-post-processing.md │ │ ├── light-inspector.md │ │ ├── lit-shader.md │ │ ├── particles-lit-shader.md │ │ ├── particles-simple-lit-shader.md │ │ ├── particles-unlit-shader.md │ │ ├── pixel-cinemachine.md │ │ ├── post-processing-bloom.md │ │ ├── post-processing-chromatic-aberration.md │ │ ├── post-processing-depth-of-field.md │ │ ├── post-processing-tonemapping.md │ │ ├── post-processing-vignette.md │ │ ├── realtime-lighting-in-universalrp.md │ │ ├── rendering-in-universalrp.md │ │ ├── shader-stripping.md │ │ ├── shaders-in-universalrp.md │ │ ├── shading-model.md │ │ ├── simple-lit-shader.md │ │ ├── speedtree.md │ │ ├── universalrp-asset.md │ │ ├── universalrp-builtin-feature-comparison.md │ │ ├── unlit-shader.md │ │ └── upgrading-your-shaders.md │ ├── Editor.meta │ ├── Editor │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── CinemachineUniversalPixelPerfectEditor.cs │ │ │ ├── CinemachineUniversalPixelPerfectEditor.cs.meta │ │ │ ├── CompositeShadowCaster2DEditor.cs │ │ │ ├── CompositeShadowCaster2DEditor.cs.meta │ │ │ ├── Light2DEditor.cs │ │ │ ├── Light2DEditor.cs.meta │ │ │ ├── Light2DEditorUtility.cs │ │ │ ├── Light2DEditorUtility.cs.meta │ │ │ ├── PixelPerfectCameraEditor.cs │ │ │ ├── PixelPerfectCameraEditor.cs.meta │ │ │ ├── Renderer2DAnalytics.cs │ │ │ ├── Renderer2DAnalytics.cs.meta │ │ │ ├── Renderer2DDataEditor.cs │ │ │ ├── Renderer2DDataEditor.cs.meta │ │ │ ├── Renderer2DMenus.cs │ │ │ ├── Renderer2DMenus.cs.meta │ │ │ ├── Renderer2DUpgrader.cs │ │ │ ├── Renderer2DUpgrader.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Cinemachine.png │ │ │ │ ├── Cinemachine.png.meta │ │ │ │ ├── InspectorIcons.meta │ │ │ │ ├── InspectorIcons │ │ │ │ │ ├── FreeformLight.png │ │ │ │ │ ├── FreeformLight.png.meta │ │ │ │ │ ├── GlobalLight.png │ │ │ │ │ ├── GlobalLight.png.meta │ │ │ │ │ ├── ParametricLight.png │ │ │ │ │ ├── ParametricLight.png.meta │ │ │ │ │ ├── PointLight.png │ │ │ │ │ ├── PointLight.png.meta │ │ │ │ │ ├── SpriteLight.png │ │ │ │ │ └── SpriteLight.png.meta │ │ │ │ ├── LightCapBottomLeft.png │ │ │ │ ├── LightCapBottomLeft.png.meta │ │ │ │ ├── LightCapBottomRight.png │ │ │ │ ├── LightCapBottomRight.png.meta │ │ │ │ ├── LightCapDown.png │ │ │ │ ├── LightCapDown.png.meta │ │ │ │ ├── LightCapTopLeft.png │ │ │ │ ├── LightCapTopLeft.png.meta │ │ │ │ ├── LightCapTopRight.png │ │ │ │ ├── LightCapTopRight.png.meta │ │ │ │ ├── LightCapUp.png │ │ │ │ ├── LightCapUp.png.meta │ │ │ │ ├── PixelPerfectCamera.png │ │ │ │ ├── PixelPerfectCamera.png.meta │ │ │ │ ├── SceneViewIcons.meta │ │ │ │ └── SceneViewIcons │ │ │ │ │ ├── FreeformLight.png │ │ │ │ │ ├── FreeformLight.png.meta │ │ │ │ │ ├── GlobalLight.png │ │ │ │ │ ├── GlobalLight.png.meta │ │ │ │ │ ├── ParametricLight.png │ │ │ │ │ ├── ParametricLight.png.meta │ │ │ │ │ ├── PointLight.png │ │ │ │ │ ├── PointLight.png.meta │ │ │ │ │ ├── SpriteLight.png │ │ │ │ │ └── SpriteLight.png.meta │ │ │ ├── ShadowCaster2DEditor.cs │ │ │ ├── ShadowCaster2DEditor.cs.meta │ │ │ ├── ShadowCaster2DShapeTool.cs │ │ │ ├── ShadowCaster2DShapeTool.cs.meta │ │ │ ├── ShapeEditor.meta │ │ │ ├── ShapeEditor │ │ │ │ ├── EditablePath.meta │ │ │ │ ├── EditablePath │ │ │ │ │ ├── BezierUtility.cs │ │ │ │ │ ├── BezierUtility.cs.meta │ │ │ │ │ ├── ControlPoint.cs │ │ │ │ │ ├── ControlPoint.cs.meta │ │ │ │ │ ├── EditablePath.cs │ │ │ │ │ ├── EditablePath.cs.meta │ │ │ │ │ ├── EditablePathController.cs │ │ │ │ │ ├── EditablePathController.cs.meta │ │ │ │ │ ├── EditablePathExtensions.cs │ │ │ │ │ ├── EditablePathExtensions.cs.meta │ │ │ │ │ ├── EditablePathUtility.cs │ │ │ │ │ ├── EditablePathUtility.cs.meta │ │ │ │ │ ├── IEditablePath.cs │ │ │ │ │ ├── IEditablePath.cs.meta │ │ │ │ │ ├── IEditablePathController.cs │ │ │ │ │ ├── IEditablePathController.cs.meta │ │ │ │ │ ├── ISnapping.cs │ │ │ │ │ ├── ISnapping.cs.meta │ │ │ │ │ ├── IUndoObject.cs │ │ │ │ │ ├── IUndoObject.cs.meta │ │ │ │ │ ├── MultipleEditablePathController.cs │ │ │ │ │ ├── MultipleEditablePathController.cs.meta │ │ │ │ │ ├── Snapping.cs │ │ │ │ │ └── Snapping.cs.meta │ │ │ │ ├── EditorTool.meta │ │ │ │ ├── EditorTool │ │ │ │ │ ├── GenericScriptablePath.cs │ │ │ │ │ ├── GenericScriptablePath.cs.meta │ │ │ │ │ ├── GenericScriptablePathInspector.cs │ │ │ │ │ ├── GenericScriptablePathInspector.cs.meta │ │ │ │ │ ├── PathComponentEditor.cs │ │ │ │ │ ├── PathComponentEditor.cs.meta │ │ │ │ │ ├── PathEditorTool.cs │ │ │ │ │ ├── PathEditorTool.cs.meta │ │ │ │ │ ├── PathEditorToolExtensions.cs │ │ │ │ │ ├── PathEditorToolExtensions.cs.meta │ │ │ │ │ ├── ScriptableData.cs │ │ │ │ │ ├── ScriptableData.cs.meta │ │ │ │ │ ├── ScriptablePath.cs │ │ │ │ │ ├── ScriptablePath.cs.meta │ │ │ │ │ ├── ScriptablePathInspector.cs │ │ │ │ │ └── ScriptablePathInspector.cs.meta │ │ │ │ ├── GUIFramework.meta │ │ │ │ ├── GUIFramework │ │ │ │ │ ├── ClickAction.cs │ │ │ │ │ ├── ClickAction.cs.meta │ │ │ │ │ ├── CommandAction.cs │ │ │ │ │ ├── CommandAction.cs.meta │ │ │ │ │ ├── Control.cs │ │ │ │ │ ├── Control.cs.meta │ │ │ │ │ ├── DefaultControl.cs │ │ │ │ │ ├── DefaultControl.cs.meta │ │ │ │ │ ├── GUIAction.cs │ │ │ │ │ ├── GUIAction.cs.meta │ │ │ │ │ ├── GUIState.cs │ │ │ │ │ ├── GUIState.cs.meta │ │ │ │ │ ├── GUISystem.cs │ │ │ │ │ ├── GUISystem.cs.meta │ │ │ │ │ ├── GenericControl.cs │ │ │ │ │ ├── GenericControl.cs.meta │ │ │ │ │ ├── GenericDefaultControl.cs │ │ │ │ │ ├── GenericDefaultControl.cs.meta │ │ │ │ │ ├── HoveredControlAction.cs │ │ │ │ │ ├── HoveredControlAction.cs.meta │ │ │ │ │ ├── IGUIState.cs │ │ │ │ │ ├── IGUIState.cs.meta │ │ │ │ │ ├── LayoutData.cs │ │ │ │ │ ├── LayoutData.cs.meta │ │ │ │ │ ├── SliderAction.cs │ │ │ │ │ └── SliderAction.cs.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ │ ├── Path.meta │ │ │ │ │ ├── Path │ │ │ │ │ │ ├── pointHovered.png │ │ │ │ │ │ ├── pointHovered.png.meta │ │ │ │ │ │ ├── pointNormal.png │ │ │ │ │ │ ├── pointNormal.png.meta │ │ │ │ │ │ ├── pointPreview.png │ │ │ │ │ │ ├── pointPreview.png.meta │ │ │ │ │ │ ├── pointRemovePreview.png │ │ │ │ │ │ ├── pointRemovePreview.png.meta │ │ │ │ │ │ ├── pointSelected.png │ │ │ │ │ │ ├── pointSelected.png.meta │ │ │ │ │ │ ├── tangentNormal.png │ │ │ │ │ │ └── tangentNormal.png.meta │ │ │ │ │ ├── ShapeTool.png │ │ │ │ │ ├── ShapeTool.png.meta │ │ │ │ │ ├── ShapeToolPro.png │ │ │ │ │ ├── ShapeToolPro.png.meta │ │ │ │ │ ├── TangentBroken.png │ │ │ │ │ ├── TangentBroken.png.meta │ │ │ │ │ ├── TangentBrokenPro.png │ │ │ │ │ ├── TangentBrokenPro.png.meta │ │ │ │ │ ├── TangentContinuous.png │ │ │ │ │ ├── TangentContinuous.png.meta │ │ │ │ │ ├── TangentContinuousPro.png │ │ │ │ │ ├── TangentContinuousPro.png.meta │ │ │ │ │ ├── TangentLinear.png │ │ │ │ │ ├── TangentLinear.png.meta │ │ │ │ │ ├── TangentLinearPro.png │ │ │ │ │ └── TangentLinearPro.png.meta │ │ │ │ ├── Selection.meta │ │ │ │ ├── Selection │ │ │ │ │ ├── ISelectable.cs │ │ │ │ │ ├── ISelectable.cs.meta │ │ │ │ │ ├── ISelection.cs │ │ │ │ │ ├── ISelection.cs.meta │ │ │ │ │ ├── ISelector.cs │ │ │ │ │ ├── ISelector.cs.meta │ │ │ │ │ ├── IndexedSelection.cs │ │ │ │ │ ├── IndexedSelection.cs.meta │ │ │ │ │ ├── PointRectSelector.cs │ │ │ │ │ ├── PointRectSelector.cs.meta │ │ │ │ │ ├── RectSelector.cs │ │ │ │ │ ├── RectSelector.cs.meta │ │ │ │ │ ├── SerializableSelection.cs │ │ │ │ │ └── SerializableSelection.cs.meta │ │ │ │ ├── Shapes.meta │ │ │ │ ├── Shapes │ │ │ │ │ ├── IShape.cs │ │ │ │ │ ├── IShape.cs.meta │ │ │ │ │ ├── Polygon.cs │ │ │ │ │ ├── Polygon.cs.meta │ │ │ │ │ ├── ShapeExtensions.cs │ │ │ │ │ ├── ShapeExtensions.cs.meta │ │ │ │ │ ├── Spline.cs │ │ │ │ │ └── Spline.cs.meta │ │ │ │ ├── View.meta │ │ │ │ └── View │ │ │ │ │ ├── CreatePointAction.cs │ │ │ │ │ ├── CreatePointAction.cs.meta │ │ │ │ │ ├── Drawer.cs │ │ │ │ │ ├── Drawer.cs.meta │ │ │ │ │ ├── EditablePathView.cs │ │ │ │ │ ├── EditablePathView.cs.meta │ │ │ │ │ ├── IDrawer.cs │ │ │ │ │ ├── IDrawer.cs.meta │ │ │ │ │ ├── IEditablePathView.cs │ │ │ │ │ └── IEditablePathView.cs.meta │ │ │ ├── SortingLayerDropDown.cs │ │ │ └── SortingLayerDropDown.cs.meta │ │ ├── AssetPostProcessors.meta │ │ ├── AssetPostProcessors │ │ │ ├── AutodeskInteractiveMaterialImport.cs │ │ │ ├── AutodeskInteractiveMaterialImport.cs.meta │ │ │ ├── FBXMaterialDescriptionPreprocessor.cs │ │ │ ├── FBXMaterialDescriptionPreprocessor.cs.meta │ │ │ ├── SketchupMaterialDescriptionPostprocessor.cs │ │ │ ├── SketchupMaterialDescriptionPostprocessor.cs.meta │ │ │ ├── ThreeDSMaterialDescriptionPostprocessor.cs │ │ │ └── ThreeDSMaterialDescriptionPostprocessor.cs.meta │ │ ├── AssetVersion.cs │ │ ├── AssetVersion.cs.meta │ │ ├── Deprecated.cs │ │ ├── Deprecated.cs.meta │ │ ├── EditorUtils.cs │ │ ├── EditorUtils.cs.meta │ │ ├── ForwardRendererDataEditor.cs │ │ ├── ForwardRendererDataEditor.cs.meta │ │ ├── Gizmos.meta │ │ ├── Gizmos │ │ │ ├── Camera_Base.png │ │ │ ├── Camera_Base.png.meta │ │ │ ├── Camera_Offscreen.png │ │ │ ├── Camera_Offscreen.png.meta │ │ │ ├── Camera_Overlay.png │ │ │ ├── Camera_Overlay.png.meta │ │ │ ├── Camera_PostProcessing.png │ │ │ ├── Camera_PostProcessing.png.meta │ │ │ ├── Camera_UI.png │ │ │ └── Camera_UI.png.meta │ │ ├── LightExplorer.cs │ │ ├── LightExplorer.cs.meta │ │ ├── MaterialPostprocessor.cs │ │ ├── MaterialPostprocessor.cs.meta │ │ ├── Overrides.meta │ │ ├── Overrides │ │ │ ├── BloomEditor.cs │ │ │ ├── BloomEditor.cs.meta │ │ │ ├── ChannelMixerEditor.cs │ │ │ ├── ChannelMixerEditor.cs.meta │ │ │ ├── ColorCurvesEditor.cs │ │ │ ├── ColorCurvesEditor.cs.meta │ │ │ ├── ColorLookupEditor.cs │ │ │ ├── ColorLookupEditor.cs.meta │ │ │ ├── DepthOfFieldEditor.cs │ │ │ ├── DepthOfFieldEditor.cs.meta │ │ │ ├── FilmGrainEditor.cs │ │ │ ├── FilmGrainEditor.cs.meta │ │ │ ├── LiftGammaGainEditor.cs │ │ │ ├── LiftGammaGainEditor.cs.meta │ │ │ ├── MotionBlurEditor.cs │ │ │ ├── MotionBlurEditor.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── CurveBackground.shader │ │ │ │ ├── CurveBackground.shader.meta │ │ │ │ ├── ShadowsMidtonesHighlightsCurves.shader │ │ │ │ ├── ShadowsMidtonesHighlightsCurves.shader.meta │ │ │ │ ├── TrackballEditor.shader │ │ │ │ └── TrackballEditor.shader.meta │ │ │ ├── ShadowsMidtonesHighlightsEditor.cs │ │ │ ├── ShadowsMidtonesHighlightsEditor.cs.meta │ │ │ ├── TonemappingEditor.cs │ │ │ └── TonemappingEditor.cs.meta │ │ ├── PostProcessDataEditor.cs │ │ ├── PostProcessDataEditor.cs.meta │ │ ├── RenderStateDataEditor.cs │ │ ├── RenderStateDataEditor.cs.meta │ │ ├── RendererFeatures.meta │ │ ├── RendererFeatures │ │ │ ├── NewRendererFeature.cs.txt │ │ │ ├── NewRendererFeature.cs.txt.meta │ │ │ ├── NewRendererFeatureDropdownItem.cs │ │ │ ├── NewRendererFeatureDropdownItem.cs.meta │ │ │ ├── RenderObjectsPassFeatureEditor.cs │ │ │ └── RenderObjectsPassFeatureEditor.cs.meta │ │ ├── SavedParameter.cs │ │ ├── SavedParameter.cs.meta │ │ ├── ScriptableRendererDataEditor.cs │ │ ├── ScriptableRendererDataEditor.cs.meta │ │ ├── ShaderGUI.meta │ │ ├── ShaderGUI │ │ │ ├── BaseShaderGUI.cs │ │ │ ├── BaseShaderGUI.cs.meta │ │ │ ├── ParticleGUI.cs │ │ │ ├── ParticleGUI.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── BakedLitShader.cs │ │ │ │ ├── BakedLitShader.cs.meta │ │ │ │ ├── LitShader.cs │ │ │ │ ├── LitShader.cs.meta │ │ │ │ ├── ParticlesLitShader.cs │ │ │ │ ├── ParticlesLitShader.cs.meta │ │ │ │ ├── ParticlesSimpleLitShader.cs │ │ │ │ ├── ParticlesSimpleLitShader.cs.meta │ │ │ │ ├── ParticlesUnlitShader.cs │ │ │ │ ├── ParticlesUnlitShader.cs.meta │ │ │ │ ├── SimpleLitShader.cs │ │ │ │ ├── SimpleLitShader.cs.meta │ │ │ │ ├── UnlitShader.cs │ │ │ │ └── UnlitShader.cs.meta │ │ │ ├── ShadingModels.meta │ │ │ ├── ShadingModels │ │ │ │ ├── BakedLitGUI.cs │ │ │ │ ├── BakedLitGUI.cs.meta │ │ │ │ ├── LitGUI.cs │ │ │ │ ├── LitGUI.cs.meta │ │ │ │ ├── SimpleLitGUI.cs │ │ │ │ └── SimpleLitGUI.cs.meta │ │ │ ├── TerrainLitShaderGUI.cs │ │ │ └── TerrainLitShaderGUI.cs.meta │ │ ├── ShaderGraph.meta │ │ ├── ShaderGraph │ │ │ ├── AssetCallbacks.meta │ │ │ ├── AssetCallbacks │ │ │ │ ├── CreateSpriteLitShaderGraph.cs │ │ │ │ ├── CreateSpriteLitShaderGraph.cs.meta │ │ │ │ ├── CreateSpriteUnlitShaderGraph.cs │ │ │ │ └── CreateSpriteUnlitShaderGraph.cs.meta │ │ │ ├── Includes.meta │ │ │ ├── Includes │ │ │ │ ├── DepthOnlyPass.hlsl │ │ │ │ ├── DepthOnlyPass.hlsl.meta │ │ │ │ ├── LightingMetaPass.hlsl │ │ │ │ ├── LightingMetaPass.hlsl.meta │ │ │ │ ├── PBR2DPass.hlsl │ │ │ │ ├── PBR2DPass.hlsl.meta │ │ │ │ ├── PBRForwardPass.hlsl │ │ │ │ ├── PBRForwardPass.hlsl.meta │ │ │ │ ├── ShadowCasterPass.hlsl │ │ │ │ ├── ShadowCasterPass.hlsl.meta │ │ │ │ ├── SpriteForwardPass.hlsl │ │ │ │ ├── SpriteForwardPass.hlsl.meta │ │ │ │ ├── SpriteLitPass.hlsl │ │ │ │ ├── SpriteLitPass.hlsl.meta │ │ │ │ ├── SpriteNormalPass.hlsl │ │ │ │ ├── SpriteNormalPass.hlsl.meta │ │ │ │ ├── SpriteUnlitPass.hlsl │ │ │ │ ├── SpriteUnlitPass.hlsl.meta │ │ │ │ ├── UnlitPass.hlsl │ │ │ │ ├── UnlitPass.hlsl.meta │ │ │ │ ├── Varyings.hlsl │ │ │ │ └── Varyings.hlsl.meta │ │ │ ├── Interfaces.meta │ │ │ ├── Interfaces │ │ │ │ ├── ISpriteLitSubShader.cs │ │ │ │ ├── ISpriteLitSubShader.cs.meta │ │ │ │ ├── ISpriteUnlitSubShader.cs │ │ │ │ └── ISpriteUnlitSubShader.cs.meta │ │ │ ├── MasterNodes.meta │ │ │ ├── MasterNodes │ │ │ │ ├── SpriteLitMasterNode.cs │ │ │ │ ├── SpriteLitMasterNode.cs.meta │ │ │ │ ├── SpriteUnlitMasterNode.cs │ │ │ │ └── SpriteUnlitMasterNode.cs.meta │ │ │ ├── SubShaders.meta │ │ │ ├── SubShaders │ │ │ │ ├── UniversalPBRSubShader.cs │ │ │ │ ├── UniversalPBRSubShader.cs.meta │ │ │ │ ├── UniversalSpriteLitSubShader.cs │ │ │ │ ├── UniversalSpriteLitSubShader.cs.meta │ │ │ │ ├── UniversalSpriteUnlitSubShader.cs │ │ │ │ ├── UniversalSpriteUnlitSubShader.cs.meta │ │ │ │ ├── UniversalUnlitSubShader.cs │ │ │ │ └── UniversalUnlitSubShader.cs.meta │ │ │ ├── Templates.meta │ │ │ ├── Templates │ │ │ │ ├── BuildSurfaceDescriptionInputs.template.hlsl │ │ │ │ ├── BuildSurfaceDescriptionInputs.template.hlsl.meta │ │ │ │ ├── BuildVertexDescriptionInputs.template.hlsl │ │ │ │ └── BuildVertexDescriptionInputs.template.hlsl.meta │ │ │ ├── UniversalShaderGraphResources.cs │ │ │ ├── UniversalShaderGraphResources.cs.meta │ │ │ ├── UniversalShaderGraphUtils.cs │ │ │ └── UniversalShaderGraphUtils.cs.meta │ │ ├── ShaderPreprocessor.cs │ │ ├── ShaderPreprocessor.cs.meta │ │ ├── Shadow.meta │ │ ├── Shadow │ │ │ ├── ShadowCascadeSplitGUI.cs │ │ │ └── ShadowCascadeSplitGUI.cs.meta │ │ ├── TrackballUIDrawer.cs │ │ ├── TrackballUIDrawer.cs.meta │ │ ├── Unity.RenderPipelines.Universal.Editor.asmdef │ │ ├── Unity.RenderPipelines.Universal.Editor.asmdef.meta │ │ ├── UniversalAdditionalCameraDataEditor.cs │ │ ├── UniversalAdditionalCameraDataEditor.cs.meta │ │ ├── UniversalAdditionalLightDataEditor.cs │ │ ├── UniversalAdditionalLightDataEditor.cs.meta │ │ ├── UniversalRenderPipelineAssetEditor.cs │ │ ├── UniversalRenderPipelineAssetEditor.cs.meta │ │ ├── UniversalRenderPipelineCameraEditor.cs │ │ ├── UniversalRenderPipelineCameraEditor.cs.meta │ │ ├── UniversalRenderPipelineLightEditor.cs │ │ ├── UniversalRenderPipelineLightEditor.cs.meta │ │ ├── UniversalRenderPipelineMaterialUpgrader.cs │ │ ├── UniversalRenderPipelineMaterialUpgrader.cs.meta │ │ ├── UpgradeCommon.cs │ │ └── UpgradeCommon.cs.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── CinemachineUniversalPixelPerfect.cs │ │ │ ├── CinemachineUniversalPixelPerfect.cs.meta │ │ │ ├── CompositeShadowCaster2D.cs │ │ │ ├── CompositeShadowCaster2D.cs.meta │ │ │ ├── Light2D.cs │ │ │ ├── Light2D.cs.meta │ │ │ ├── Light2DBlendStyle.cs │ │ │ ├── Light2DBlendStyle.cs.meta │ │ │ ├── Light2DPoint.cs │ │ │ ├── Light2DPoint.cs.meta │ │ │ ├── Light2DShape.cs │ │ │ ├── Light2DShape.cs.meta │ │ │ ├── Light2DStub.cs │ │ │ ├── Light2DStub.cs.meta │ │ │ ├── LightUtility.cs │ │ │ ├── LightUtility.cs.meta │ │ │ ├── Passes.meta │ │ │ ├── Passes │ │ │ │ ├── Render2DLightingPass.cs │ │ │ │ ├── Render2DLightingPass.cs.meta │ │ │ │ ├── Utility.meta │ │ │ │ └── Utility │ │ │ │ │ ├── Light2DLookupTexture.cs │ │ │ │ │ ├── Light2DLookupTexture.cs.meta │ │ │ │ │ ├── RendererLighting.cs │ │ │ │ │ └── RendererLighting.cs.meta │ │ │ ├── PixelPerfectCamera.cs │ │ │ ├── PixelPerfectCamera.cs.meta │ │ │ ├── PixelPerfectCameraInternal.cs │ │ │ ├── PixelPerfectCameraInternal.cs.meta │ │ │ ├── Renderer2D.cs │ │ │ ├── Renderer2D.cs.meta │ │ │ ├── Renderer2DData.cs │ │ │ ├── Renderer2DData.cs.meta │ │ │ ├── ShadowCaster2D.cs │ │ │ ├── ShadowCaster2D.cs.meta │ │ │ ├── Shadows.meta │ │ │ └── Shadows │ │ │ │ ├── ShadowCasterGroup2D.cs │ │ │ │ ├── ShadowCasterGroup2D.cs.meta │ │ │ │ ├── ShadowCasterGroup2DManager.cs │ │ │ │ ├── ShadowCasterGroup2DManager.cs.meta │ │ │ │ ├── ShadowUtility.cs │ │ │ │ └── ShadowUtility.cs.meta │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.cs.meta │ │ ├── CustomDrawing.cs │ │ ├── CustomDrawing.cs.meta │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── ForwardRendererData.asset │ │ │ ├── ForwardRendererData.asset.meta │ │ │ ├── PostProcessData.asset │ │ │ ├── PostProcessData.asset.meta │ │ │ ├── PostProcessData.cs │ │ │ ├── PostProcessData.cs.meta │ │ │ ├── RenderStateData.cs │ │ │ ├── RenderStateData.cs.meta │ │ │ ├── UniversalRenderPipelineAsset.cs │ │ │ ├── UniversalRenderPipelineAsset.cs.meta │ │ │ ├── UniversalRenderPipelineEditorResources.asset │ │ │ ├── UniversalRenderPipelineEditorResources.asset.meta │ │ │ ├── UniversalRenderPipelineEditorResources.cs │ │ │ └── UniversalRenderPipelineEditorResources.cs.meta │ │ ├── Drawing.cs │ │ ├── Drawing.cs.meta │ │ ├── External.meta │ │ ├── External │ │ │ ├── LibTessDotNet.meta │ │ │ └── LibTessDotNet │ │ │ │ ├── Dict.cs │ │ │ │ ├── Dict.cs.meta │ │ │ │ ├── Geom.cs │ │ │ │ ├── Geom.cs.meta │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── LICENSE.txt.meta │ │ │ │ ├── Mesh.cs │ │ │ │ ├── Mesh.cs.meta │ │ │ │ ├── MeshUtils.cs │ │ │ │ ├── MeshUtils.cs.meta │ │ │ │ ├── PriorityHeap.cs │ │ │ │ ├── PriorityHeap.cs.meta │ │ │ │ ├── PriorityQueue.cs │ │ │ │ ├── PriorityQueue.cs.meta │ │ │ │ ├── Sweep.cs │ │ │ │ ├── Sweep.cs.meta │ │ │ │ ├── Tess.cs │ │ │ │ └── Tess.cs.meta │ │ ├── ForwardLights.cs │ │ ├── ForwardLights.cs.meta │ │ ├── ForwardRenderer.cs │ │ ├── ForwardRenderer.cs.meta │ │ ├── ForwardRendererData.cs │ │ ├── ForwardRendererData.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Lit.mat │ │ │ ├── Lit.mat.meta │ │ │ ├── ParticlesLit.mat │ │ │ ├── ParticlesLit.mat.meta │ │ │ ├── SimpleLit.mat │ │ │ ├── SimpleLit.mat.meta │ │ │ ├── Sprite-Lit-Default.mat │ │ │ ├── Sprite-Lit-Default.mat.meta │ │ │ ├── TerrainLit.mat │ │ │ └── TerrainLit.mat.meta │ │ ├── Overrides.meta │ │ ├── Overrides │ │ │ ├── Bloom.cs │ │ │ ├── Bloom.cs.meta │ │ │ ├── ChannelMixer.cs │ │ │ ├── ChannelMixer.cs.meta │ │ │ ├── ChromaticAberration.cs │ │ │ ├── ChromaticAberration.cs.meta │ │ │ ├── ColorAdjustments.cs │ │ │ ├── ColorAdjustments.cs.meta │ │ │ ├── ColorCurves.cs │ │ │ ├── ColorCurves.cs.meta │ │ │ ├── ColorLookup.cs │ │ │ ├── ColorLookup.cs.meta │ │ │ ├── DepthOfField.cs │ │ │ ├── DepthOfField.cs.meta │ │ │ ├── FilmGrain.cs │ │ │ ├── FilmGrain.cs.meta │ │ │ ├── LensDistortion.cs │ │ │ ├── LensDistortion.cs.meta │ │ │ ├── LiftGammaGain.cs │ │ │ ├── LiftGammaGain.cs.meta │ │ │ ├── MotionBlur.cs │ │ │ ├── MotionBlur.cs.meta │ │ │ ├── PaniniProjection.cs │ │ │ ├── PaniniProjection.cs.meta │ │ │ ├── ShadowsMidtonesHighlights.cs │ │ │ ├── ShadowsMidtonesHighlights.cs.meta │ │ │ ├── SplitToning.cs │ │ │ ├── SplitToning.cs.meta │ │ │ ├── Tonemapping.cs │ │ │ ├── Tonemapping.cs.meta │ │ │ ├── Vignette.cs │ │ │ ├── Vignette.cs.meta │ │ │ ├── WhiteBalance.cs │ │ │ └── WhiteBalance.cs.meta │ │ ├── Passes.meta │ │ ├── Passes │ │ │ ├── AdditionalLightsShadowCasterPass.cs │ │ │ ├── AdditionalLightsShadowCasterPass.cs.meta │ │ │ ├── CapturePass.cs │ │ │ ├── CapturePass.cs.meta │ │ │ ├── ColorGradingLutPass.cs │ │ │ ├── ColorGradingLutPass.cs.meta │ │ │ ├── CopyColorPass.cs │ │ │ ├── CopyColorPass.cs.meta │ │ │ ├── CopyDepthPass.cs │ │ │ ├── CopyDepthPass.cs.meta │ │ │ ├── DepthOnlyPass.cs │ │ │ ├── DepthOnlyPass.cs.meta │ │ │ ├── DrawObjectsPass.cs │ │ │ ├── DrawObjectsPass.cs.meta │ │ │ ├── DrawSkyboxPass.cs │ │ │ ├── DrawSkyboxPass.cs.meta │ │ │ ├── FinalBlitPass.cs │ │ │ ├── FinalBlitPass.cs.meta │ │ │ ├── InvokeOnRenderObjectCallbackPass.cs │ │ │ ├── InvokeOnRenderObjectCallbackPass.cs.meta │ │ │ ├── MainLightShadowCasterPass.cs │ │ │ ├── MainLightShadowCasterPass.cs.meta │ │ │ ├── PostProcessPass.cs │ │ │ ├── PostProcessPass.cs.meta │ │ │ ├── RenderObjectsPass.cs │ │ │ ├── RenderObjectsPass.cs.meta │ │ │ ├── SceneViewDepthCopy.cs │ │ │ ├── SceneViewDepthCopy.cs.meta │ │ │ ├── ScreenSpaceShadowResolvePass.cs │ │ │ ├── ScreenSpaceShadowResolvePass.cs.meta │ │ │ ├── ScriptableRenderPass.cs │ │ │ ├── ScriptableRenderPass.cs.meta │ │ │ ├── TransparentSettingsPass.cs │ │ │ └── TransparentSettingsPass.cs.meta │ │ ├── PostProcessUtils.cs │ │ ├── PostProcessUtils.cs.meta │ │ ├── RenderTargetHandle.cs │ │ ├── RenderTargetHandle.cs.meta │ │ ├── RendererFeatures.meta │ │ ├── RendererFeatures │ │ │ ├── RenderObjects.cs │ │ │ └── RenderObjects.cs.meta │ │ ├── RenderingUtils.cs │ │ ├── RenderingUtils.cs.meta │ │ ├── SampleCount.cs │ │ ├── SampleCount.cs.meta │ │ ├── SceneViewDrawMode.cs │ │ ├── SceneViewDrawMode.cs.meta │ │ ├── ScriptableRenderer.cs │ │ ├── ScriptableRenderer.cs.meta │ │ ├── ScriptableRendererData.cs │ │ ├── ScriptableRendererData.cs.meta │ │ ├── ScriptableRendererFeature.cs │ │ ├── ScriptableRendererFeature.cs.meta │ │ ├── ShaderData.cs │ │ ├── ShaderData.cs.meta │ │ ├── ShaderUtils.cs │ │ ├── ShaderUtils.cs.meta │ │ ├── ShadowUtils.cs │ │ ├── ShadowUtils.cs.meta │ │ ├── Unity.RenderPipelines.Universal.Runtime.asmdef │ │ ├── Unity.RenderPipelines.Universal.Runtime.asmdef.meta │ │ ├── UniversalAdditionalCameraData.cs │ │ ├── UniversalAdditionalCameraData.cs.meta │ │ ├── UniversalAdditionalLightData.cs │ │ ├── UniversalAdditionalLightData.cs.meta │ │ ├── UniversalRenderPipeline.cs │ │ ├── UniversalRenderPipeline.cs.meta │ │ ├── UniversalRenderPipelineCore.cs │ │ └── UniversalRenderPipelineCore.cs.meta │ ├── ShaderLibrary.meta │ ├── ShaderLibrary │ │ ├── Core.hlsl │ │ ├── Core.hlsl.meta │ │ ├── DeclareDepthTexture.hlsl │ │ ├── DeclareDepthTexture.hlsl.meta │ │ ├── DeclareOpaqueTexture.hlsl │ │ ├── DeclareOpaqueTexture.hlsl.meta │ │ ├── Deprecated.hlsl │ │ ├── Deprecated.hlsl.meta │ │ ├── Input.hlsl │ │ ├── Input.hlsl.meta │ │ ├── Lighting.hlsl │ │ ├── Lighting.hlsl.meta │ │ ├── MetaInput.hlsl │ │ ├── MetaInput.hlsl.meta │ │ ├── Particles.hlsl │ │ ├── Particles.hlsl.meta │ │ ├── ShaderGraphFunctions.hlsl │ │ ├── ShaderGraphFunctions.hlsl.meta │ │ ├── ShaderTypes.cs │ │ ├── ShaderTypes.cs.hlsl │ │ ├── ShaderTypes.cs.hlsl.meta │ │ ├── ShaderTypes.cs.meta │ │ ├── Shadows.hlsl │ │ ├── Shadows.hlsl.meta │ │ ├── SurfaceInput.hlsl │ │ ├── SurfaceInput.hlsl.meta │ │ ├── Unity.RenderPipelines.Universal.ShaderLibrary.asmdef │ │ ├── Unity.RenderPipelines.Universal.ShaderLibrary.asmdef.meta │ │ ├── UnityInput.hlsl │ │ └── UnityInput.hlsl.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── 2D.meta │ │ ├── 2D │ │ │ ├── Include.meta │ │ │ ├── Include │ │ │ │ ├── CombinedShapeLightShared.hlsl │ │ │ │ ├── CombinedShapeLightShared.hlsl.meta │ │ │ │ ├── LightingUtility.hlsl │ │ │ │ ├── LightingUtility.hlsl.meta │ │ │ │ ├── NormalsRenderingShared.hlsl │ │ │ │ └── NormalsRenderingShared.hlsl.meta │ │ │ ├── Light2D-Point-Volumetric.shader │ │ │ ├── Light2D-Point-Volumetric.shader.meta │ │ │ ├── Light2D-Point.shader │ │ │ ├── Light2D-Point.shader.meta │ │ │ ├── Light2D-Shape-Volumetric.shader │ │ │ ├── Light2D-Shape-Volumetric.shader.meta │ │ │ ├── Light2D-Shape.shader │ │ │ ├── Light2D-Shape.shader.meta │ │ │ ├── Shadow2DRemoveSelf.shader │ │ │ ├── Shadow2DRemoveSelf.shader.meta │ │ │ ├── ShadowGroup2D.shader │ │ │ ├── ShadowGroup2D.shader.meta │ │ │ ├── Sprite-Lit-Default.shader │ │ │ └── Sprite-Lit-Default.shader.meta │ │ ├── Autodesk Interactive.meta │ │ ├── Autodesk Interactive │ │ │ ├── Autodesk Interactive Masked.shadergraph │ │ │ ├── Autodesk Interactive Masked.shadergraph.meta │ │ │ ├── Autodesk Interactive Transparent.shadergraph │ │ │ ├── Autodesk Interactive Transparent.shadergraph.meta │ │ │ ├── Autodesk Interactive.shadergraph │ │ │ └── Autodesk Interactive.shadergraph.meta │ │ ├── BakedLit.shader │ │ ├── BakedLit.shader.meta │ │ ├── BakedLitInput.hlsl │ │ ├── BakedLitInput.hlsl.meta │ │ ├── BakedLitMetaPass.hlsl │ │ ├── BakedLitMetaPass.hlsl.meta │ │ ├── DepthOnlyPass.hlsl │ │ ├── DepthOnlyPass.hlsl.meta │ │ ├── Lit.shader │ │ ├── Lit.shader.meta │ │ ├── LitForwardPass.hlsl │ │ ├── LitForwardPass.hlsl.meta │ │ ├── LitInput.hlsl │ │ ├── LitInput.hlsl.meta │ │ ├── LitMetaPass.hlsl │ │ ├── LitMetaPass.hlsl.meta │ │ ├── Nature.meta │ │ ├── Nature │ │ │ ├── SpeedTree7.shader │ │ │ ├── SpeedTree7.shader.meta │ │ │ ├── SpeedTree7Billboard.shader │ │ │ ├── SpeedTree7Billboard.shader.meta │ │ │ ├── SpeedTree7BillboardInput.hlsl │ │ │ ├── SpeedTree7BillboardInput.hlsl.meta │ │ │ ├── SpeedTree7BillboardPasses.hlsl │ │ │ ├── SpeedTree7BillboardPasses.hlsl.meta │ │ │ ├── SpeedTree7CommonInput.hlsl │ │ │ ├── SpeedTree7CommonInput.hlsl.meta │ │ │ ├── SpeedTree7CommonPasses.hlsl │ │ │ ├── SpeedTree7CommonPasses.hlsl.meta │ │ │ ├── SpeedTree7Input.hlsl │ │ │ ├── SpeedTree7Input.hlsl.meta │ │ │ ├── SpeedTree7Passes.hlsl │ │ │ ├── SpeedTree7Passes.hlsl.meta │ │ │ ├── SpeedTree8.shader │ │ │ ├── SpeedTree8.shader.meta │ │ │ ├── SpeedTree8Input.hlsl │ │ │ ├── SpeedTree8Input.hlsl.meta │ │ │ ├── SpeedTree8Passes.hlsl │ │ │ └── SpeedTree8Passes.hlsl.meta │ │ ├── Particles.meta │ │ ├── Particles │ │ │ ├── ParticlesLit.shader │ │ │ ├── ParticlesLit.shader.meta │ │ │ ├── ParticlesLitForwardPass.hlsl │ │ │ ├── ParticlesLitForwardPass.hlsl.meta │ │ │ ├── ParticlesLitInput.hlsl │ │ │ ├── ParticlesLitInput.hlsl.meta │ │ │ ├── ParticlesSimpleLit.shader │ │ │ ├── ParticlesSimpleLit.shader.meta │ │ │ ├── ParticlesSimpleLitForwardPass.hlsl │ │ │ ├── ParticlesSimpleLitForwardPass.hlsl.meta │ │ │ ├── ParticlesSimpleLitInput.hlsl │ │ │ ├── ParticlesSimpleLitInput.hlsl.meta │ │ │ ├── ParticlesUnlit.shader │ │ │ ├── ParticlesUnlit.shader.meta │ │ │ ├── ParticlesUnlitForwardPass.hlsl │ │ │ ├── ParticlesUnlitForwardPass.hlsl.meta │ │ │ ├── ParticlesUnlitInput.hlsl │ │ │ └── ParticlesUnlitInput.hlsl.meta │ │ ├── PostProcessing.meta │ │ ├── PostProcessing │ │ │ ├── Bloom.shader │ │ │ ├── Bloom.shader.meta │ │ │ ├── BokehDepthOfField.shader │ │ │ ├── BokehDepthOfField.shader.meta │ │ │ ├── CameraMotionBlur.shader │ │ │ ├── CameraMotionBlur.shader.meta │ │ │ ├── Common.hlsl │ │ │ ├── Common.hlsl.meta │ │ │ ├── FinalPost.shader │ │ │ ├── FinalPost.shader.meta │ │ │ ├── GaussianDepthOfField.shader │ │ │ ├── GaussianDepthOfField.shader.meta │ │ │ ├── LutBuilderHdr.shader │ │ │ ├── LutBuilderHdr.shader.meta │ │ │ ├── LutBuilderLdr.shader │ │ │ ├── LutBuilderLdr.shader.meta │ │ │ ├── PaniniProjection.shader │ │ │ ├── PaniniProjection.shader.meta │ │ │ ├── StopNaN.shader │ │ │ ├── StopNaN.shader.meta │ │ │ ├── SubpixelMorphologicalAntialiasing.hlsl │ │ │ ├── SubpixelMorphologicalAntialiasing.hlsl.meta │ │ │ ├── SubpixelMorphologicalAntialiasing.shader │ │ │ ├── SubpixelMorphologicalAntialiasing.shader.meta │ │ │ ├── SubpixelMorphologicalAntialiasingBridge.hlsl │ │ │ ├── SubpixelMorphologicalAntialiasingBridge.hlsl.meta │ │ │ ├── UberPost.shader │ │ │ └── UberPost.shader.meta │ │ ├── Shaders.cs │ │ ├── Shaders.cs.meta │ │ ├── ShadowCasterPass.hlsl │ │ ├── ShadowCasterPass.hlsl.meta │ │ ├── SimpleLit.shader │ │ ├── SimpleLit.shader.meta │ │ ├── SimpleLitForwardPass.hlsl │ │ ├── SimpleLitForwardPass.hlsl.meta │ │ ├── SimpleLitInput.hlsl │ │ ├── SimpleLitInput.hlsl.meta │ │ ├── SimpleLitMetaPass.hlsl │ │ ├── SimpleLitMetaPass.hlsl.meta │ │ ├── Terrain.meta │ │ ├── Terrain │ │ │ ├── TerrainDetailLit.shader │ │ │ ├── TerrainDetailLit.shader.meta │ │ │ ├── TerrainLit.shader │ │ │ ├── TerrainLit.shader.meta │ │ │ ├── TerrainLitAdd.shader │ │ │ ├── TerrainLitAdd.shader.meta │ │ │ ├── TerrainLitBase.shader │ │ │ ├── TerrainLitBase.shader.meta │ │ │ ├── TerrainLitBasemapGen.shader │ │ │ ├── TerrainLitBasemapGen.shader.meta │ │ │ ├── TerrainLitInput.hlsl │ │ │ ├── TerrainLitInput.hlsl.meta │ │ │ ├── TerrainLitMetaPass.hlsl │ │ │ ├── TerrainLitMetaPass.hlsl.meta │ │ │ ├── TerrainLitPasses.hlsl │ │ │ ├── TerrainLitPasses.hlsl.meta │ │ │ ├── WavingGrass.shader │ │ │ ├── WavingGrass.shader.meta │ │ │ ├── WavingGrassBillboard.shader │ │ │ ├── WavingGrassBillboard.shader.meta │ │ │ ├── WavingGrassInput.hlsl │ │ │ ├── WavingGrassInput.hlsl.meta │ │ │ ├── WavingGrassPasses.hlsl │ │ │ └── WavingGrassPasses.hlsl.meta │ │ ├── Unity.RenderPipelines.Universal.Shaders.asmdef │ │ ├── Unity.RenderPipelines.Universal.Shaders.asmdef.meta │ │ ├── Unlit.shader │ │ ├── Unlit.shader.meta │ │ ├── UnlitInput.hlsl │ │ ├── UnlitInput.hlsl.meta │ │ ├── UnlitMetaPass.hlsl │ │ ├── UnlitMetaPass.hlsl.meta │ │ ├── Utils.meta │ │ └── Utils │ │ │ ├── Blit.shader │ │ │ ├── Blit.shader.meta │ │ │ ├── CopyDepth.shader │ │ │ ├── CopyDepth.shader.meta │ │ │ ├── CopyDepthPass.hlsl │ │ │ ├── CopyDepthPass.hlsl.meta │ │ │ ├── FallbackError.shader │ │ │ ├── FallbackError.shader.meta │ │ │ ├── Sampling.shader │ │ │ ├── Sampling.shader.meta │ │ │ ├── ScreenSpaceShadows.shader │ │ │ ├── ScreenSpaceShadows.shader.meta │ │ │ ├── Universal2D.hlsl │ │ │ └── Universal2D.hlsl.meta │ ├── Tests.meta │ ├── Tests │ │ ├── .tests.json │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorTests.cs │ │ │ ├── EditorTests.cs.meta │ │ │ ├── Unity.RenderPipelines.Universal.Editor.Tests.asmdef │ │ │ └── Unity.RenderPipelines.Universal.Editor.Tests.asmdef.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── Light2DTests.cs │ │ │ ├── Light2DTests.cs.meta │ │ │ ├── PixelPerfectCameraTests.cs │ │ │ ├── PixelPerfectCameraTests.cs.meta │ │ │ ├── RuntimeTests.cs │ │ │ ├── RuntimeTests.cs.meta │ │ │ ├── Unity.RenderPipelines.Universal.Runtime.Tests.asmdef │ │ │ └── Unity.RenderPipelines.Universal.Runtime.Tests.asmdef.meta │ ├── Textures.meta │ ├── Textures │ │ ├── BlueNoise16.meta │ │ ├── BlueNoise16 │ │ │ ├── L.meta │ │ │ └── L │ │ │ │ ├── LDR_LLL1_0.png │ │ │ │ ├── LDR_LLL1_0.png.meta │ │ │ │ ├── LDR_LLL1_1.png │ │ │ │ ├── LDR_LLL1_1.png.meta │ │ │ │ ├── LDR_LLL1_10.png │ │ │ │ ├── LDR_LLL1_10.png.meta │ │ │ │ ├── LDR_LLL1_11.png │ │ │ │ ├── LDR_LLL1_11.png.meta │ │ │ │ ├── LDR_LLL1_12.png │ │ │ │ ├── LDR_LLL1_12.png.meta │ │ │ │ ├── LDR_LLL1_13.png │ │ │ │ ├── LDR_LLL1_13.png.meta │ │ │ │ ├── LDR_LLL1_14.png │ │ │ │ ├── LDR_LLL1_14.png.meta │ │ │ │ ├── LDR_LLL1_15.png │ │ │ │ ├── LDR_LLL1_15.png.meta │ │ │ │ ├── LDR_LLL1_16.png │ │ │ │ ├── LDR_LLL1_16.png.meta │ │ │ │ ├── LDR_LLL1_17.png │ │ │ │ ├── LDR_LLL1_17.png.meta │ │ │ │ ├── LDR_LLL1_18.png │ │ │ │ ├── LDR_LLL1_18.png.meta │ │ │ │ ├── LDR_LLL1_19.png │ │ │ │ ├── LDR_LLL1_19.png.meta │ │ │ │ ├── LDR_LLL1_2.png │ │ │ │ ├── LDR_LLL1_2.png.meta │ │ │ │ ├── LDR_LLL1_20.png │ │ │ │ ├── LDR_LLL1_20.png.meta │ │ │ │ ├── LDR_LLL1_21.png │ │ │ │ ├── LDR_LLL1_21.png.meta │ │ │ │ ├── LDR_LLL1_22.png │ │ │ │ ├── LDR_LLL1_22.png.meta │ │ │ │ ├── LDR_LLL1_23.png │ │ │ │ ├── LDR_LLL1_23.png.meta │ │ │ │ ├── LDR_LLL1_24.png │ │ │ │ ├── LDR_LLL1_24.png.meta │ │ │ │ ├── LDR_LLL1_25.png │ │ │ │ ├── LDR_LLL1_25.png.meta │ │ │ │ ├── LDR_LLL1_26.png │ │ │ │ ├── LDR_LLL1_26.png.meta │ │ │ │ ├── LDR_LLL1_27.png │ │ │ │ ├── LDR_LLL1_27.png.meta │ │ │ │ ├── LDR_LLL1_28.png │ │ │ │ ├── LDR_LLL1_28.png.meta │ │ │ │ ├── LDR_LLL1_29.png │ │ │ │ ├── LDR_LLL1_29.png.meta │ │ │ │ ├── LDR_LLL1_3.png │ │ │ │ ├── LDR_LLL1_3.png.meta │ │ │ │ ├── LDR_LLL1_30.png │ │ │ │ ├── LDR_LLL1_30.png.meta │ │ │ │ ├── LDR_LLL1_31.png │ │ │ │ ├── LDR_LLL1_31.png.meta │ │ │ │ ├── LDR_LLL1_4.png │ │ │ │ ├── LDR_LLL1_4.png.meta │ │ │ │ ├── LDR_LLL1_5.png │ │ │ │ ├── LDR_LLL1_5.png.meta │ │ │ │ ├── LDR_LLL1_6.png │ │ │ │ ├── LDR_LLL1_6.png.meta │ │ │ │ ├── LDR_LLL1_7.png │ │ │ │ ├── LDR_LLL1_7.png.meta │ │ │ │ ├── LDR_LLL1_8.png │ │ │ │ ├── LDR_LLL1_8.png.meta │ │ │ │ ├── LDR_LLL1_9.png │ │ │ │ └── LDR_LLL1_9.png.meta │ │ ├── FilmGrain.meta │ │ ├── FilmGrain │ │ │ ├── Large01.png │ │ │ ├── Large01.png.meta │ │ │ ├── Large02.png │ │ │ ├── Large02.png.meta │ │ │ ├── Medium01.png │ │ │ ├── Medium01.png.meta │ │ │ ├── Medium02.png │ │ │ ├── Medium02.png.meta │ │ │ ├── Medium03.png │ │ │ ├── Medium03.png.meta │ │ │ ├── Medium04.png │ │ │ ├── Medium04.png.meta │ │ │ ├── Medium05.png │ │ │ ├── Medium05.png.meta │ │ │ ├── Medium06.png │ │ │ ├── Medium06.png.meta │ │ │ ├── Thin01.png │ │ │ ├── Thin01.png.meta │ │ │ ├── Thin02.png │ │ │ └── Thin02.png.meta │ │ ├── SMAA.meta │ │ └── SMAA │ │ │ ├── AreaTex.tga │ │ │ ├── AreaTex.tga.meta │ │ │ ├── SearchTex.tga │ │ │ └── SearchTex.tga.meta │ ├── package.json │ └── package.json.meta │ └── com.unity.shadergraph │ ├── .npmignore │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ ├── Absolute-Node.md │ ├── Add-Node.md │ ├── All-Node.md │ ├── Ambient-Node.md │ ├── And-Node.md │ ├── Any-Node.md │ ├── Arccosine-Node.md │ ├── Arcsine-Node.md │ ├── Arctangent-Node.md │ ├── Arctangent2-Node.md │ ├── Artistic-Nodes.md │ ├── Baked-GI-Node.md │ ├── Bitangent-Vector-Node.md │ ├── Blackboard.md │ ├── Blend-Node.md │ ├── Boolean-Node.md │ ├── Branch-Node.md │ ├── Camera-Node.md │ ├── Ceiling-Node.md │ ├── Channel-Mask-Node.md │ ├── Channel-Mixer-Node.md │ ├── Channel-Nodes.md │ ├── Checkerboard-Node.md │ ├── Clamp-Node.md │ ├── Color-Mask-Node.md │ ├── Color-Modes.md │ ├── Color-Node.md │ ├── Colorspace-Conversion-Node.md │ ├── Combine-Node.md │ ├── Comparison-Node.md │ ├── Constant-Node.md │ ├── Contrast-Node.md │ ├── Cosine-Node.md │ ├── Create-Node-Menu.md │ ├── Create-Shader-Graph.md │ ├── Cross-Product-Node.md │ ├── Cubemap-Asset-Node.md │ ├── Custom-Function-Node.md │ ├── Custom-Port-Menu.md │ ├── DDX-Node.md │ ├── DDXY-Node.md │ ├── DDY-Node.md │ ├── Data-Types.md │ ├── Degrees-To-Radians-Node.md │ ├── Dielectric-Specular-Node.md │ ├── Distance-Node.md │ ├── Dither-Node.md │ ├── Divide-Node.md │ ├── Dot-Product-Node.md │ ├── Edge.md │ ├── Ellipse-Node.md │ ├── Exponential-Node.md │ ├── First-Shader-Graph.md │ ├── Flip-Node.md │ ├── Flipbook-Node.md │ ├── Floor-Node.md │ ├── Fog-Node.md │ ├── Fraction-Node.md │ ├── Fresnel-Effect-Node.md │ ├── Getting-Started.md │ ├── Gradient-Node.md │ ├── Gradient-Noise-Node.md │ ├── Hue-Node.md │ ├── Hyperbolic-Cosine-Node.md │ ├── Hyperbolic-Sine-Node.md │ ├── Hyperbolic-Tangent-Node.md │ ├── Input-Nodes.md │ ├── Integer-Node.md │ ├── Inverse-Lerp-Node.md │ ├── Invert-Colors-Node.md │ ├── Is-Front-Face.md │ ├── Is-Infinite-Node.md │ ├── Is-NaN-Node.md │ ├── Keyword-Node.md │ ├── Keywords.md │ ├── Length-Node.md │ ├── Lerp-Node.md │ ├── Log-Node.md │ ├── Master-Node.md │ ├── Master-Nodes.md │ ├── Master-Preview.md │ ├── Math-Nodes.md │ ├── Matrix-2x2-Node.md │ ├── Matrix-3x3-Node.md │ ├── Matrix-4x4-Node.md │ ├── Matrix-Construction-Node.md │ ├── Matrix-Determinant-Node.md │ ├── Matrix-Split-Node.md │ ├── Matrix-Transpose-Node.md │ ├── Maximum-Node.md │ ├── Metal-Reflectance-Node.md │ ├── Minimum-Node.md │ ├── Modulo-Node.md │ ├── Multiply-Node.md │ ├── Nand-Node.md │ ├── Negate-Node.md │ ├── Node-Library.md │ ├── Node.md │ ├── Noise-Sine-Wave-Node.md │ ├── Normal-Blend-Node.md │ ├── Normal-From-Height-Node.md │ ├── Normal-From-Texture-Node.md │ ├── Normal-Reconstruct-Z-Node.md │ ├── Normal-Strength-Node.md │ ├── Normal-Unpack-Node.md │ ├── Normal-Vector-Node.md │ ├── Normalize-Node.md │ ├── Not-Node.md │ ├── Object-Node.md │ ├── One-Minus-Node.md │ ├── Or-Node.md │ ├── PBR-Master-Node.md │ ├── Polar-Coordinates-Node.md │ ├── Polygon-Node.md │ ├── Port-Bindings.md │ ├── Port.md │ ├── Position-Node.md │ ├── Posterize-Node.md │ ├── Power-Node.md │ ├── Precision-Modes.md │ ├── Precision-Types.md │ ├── Preview-Node.md │ ├── Procedural-Nodes.md │ ├── Projection-Node.md │ ├── Property-Types.md │ ├── Radial-Shear-Node.md │ ├── Radians-To-Degrees-Node.md │ ├── Random-Range-Node.md │ ├── Reciprocal-Node.md │ ├── Reciprocal-Square-Root-Node.md │ ├── Rectangle-Node.md │ ├── Reflection-Node.md │ ├── Reflection-Probe-Node.md │ ├── Rejection-Node.md │ ├── Remap-Node.md │ ├── Replace-Color-Node.md │ ├── Rotate-About-Axis-Node.md │ ├── Rotate-Node.md │ ├── Round-Node.md │ ├── Rounded-Polygon-Node.md │ ├── Rounded-Rectangle-Node.md │ ├── Sample-Cubemap-Node.md │ ├── Sample-Gradient-Node.md │ ├── Sample-Texture-2D-Array-Node.md │ ├── Sample-Texture-2D-LOD-Node.md │ ├── Sample-Texture-2D-Node.md │ ├── Sample-Texture-3D-Node.md │ ├── Sampler-State-Node.md │ ├── Saturate-Node.md │ ├── Saturation-Node.md │ ├── Sawtooth-Wave-Node.md │ ├── Scene-Color-Node.md │ ├── Scene-Depth-Node.md │ ├── Screen-Node.md │ ├── Screen-Position-Node.md │ ├── Shader-Graph-Asset.md │ ├── Shader-Graph-Window.md │ ├── Shader-Stage.md │ ├── ShaderGraph-Samples.md │ ├── Sign-Node.md │ ├── Simple-Noise-Node.md │ ├── Sine-Node.md │ ├── Slider-Node.md │ ├── Smoothstep-Node.md │ ├── Sphere-Mask-Node.md │ ├── Spherize-Node.md │ ├── Split-Node.md │ ├── Square-Root-Node.md │ ├── Square-Wave-Node.md │ ├── Step-Node.md │ ├── Sub-graph-Asset.md │ ├── Sub-graph-Node.md │ ├── Sub-graph.md │ ├── Subtract-Node.md │ ├── Swizzle-Node.md │ ├── TableOfContents.md │ ├── Tangent-Node.md │ ├── Tangent-Vector-Node.md │ ├── Texel-Size-Node.md │ ├── Texture-2D-Array-Asset-Node.md │ ├── Texture-2D-Asset-Node.md │ ├── Texture-3D-Asset-Node.md │ ├── Tiling-And-Offset-Node.md │ ├── Time-Node.md │ ├── Transform-Node.md │ ├── Transformation-Matrix-Node.md │ ├── Triange-Wave-Node.md │ ├── Triplanar-Node.md │ ├── Truncate-Node.md │ ├── Twirl-Node.md │ ├── UV-Node.md │ ├── UV-Nodes.md │ ├── Unlit-Master-Node.md │ ├── Utility-Nodes.md │ ├── Vector-1-Node.md │ ├── Vector-2-Node.md │ ├── Vector-3-Node.md │ ├── Vector-4-Node.md │ ├── Vertex-Color-Node.md │ ├── View-Direction-Node.md │ ├── Voronoi-Node.md │ ├── White-Balance-Node.md │ ├── images │ │ ├── AbsoluteNodeThumb.png │ │ ├── AddNodePage01.png │ │ ├── AddNodeThumb.png │ │ ├── AllNodeThumb.png │ │ ├── AmbientNodeThumb.png │ │ ├── AndNodeThumb.png │ │ ├── AnyNodeThumb.png │ │ ├── ArccosineNodeThumb.png │ │ ├── ArcsineNodeThumb.png │ │ ├── Arctangent2NodeThumb.png │ │ ├── ArctangentNodeThumb.png │ │ ├── BitangentVectorNodeThumb.png │ │ ├── Blackboard.png │ │ ├── BlendNodeThumb.png │ │ ├── BooleanNodeThumb.png │ │ ├── BranchNodeThumb.png │ │ ├── CameraNodeThumb.png │ │ ├── CeilingNodeThumb.png │ │ ├── ChannelMaskNodeThumb.png │ │ ├── ChannelMixerNodeThumb.png │ │ ├── CheckerboardNodeThumb.png │ │ ├── ClampNodeThumb.png │ │ ├── Color-Mode-Category.PNG │ │ ├── Color-Mode-Precision.PNG │ │ ├── Color-Mode-User-Defined.png │ │ ├── ColorMaskNodeThumb.png │ │ ├── ColorNodeThumb.png │ │ ├── ColorspaceConversionNodeThumb.png │ │ ├── CombineNodeThumb.png │ │ ├── ComparisonNodeThumb.png │ │ ├── ConstantNodeThumb.png │ │ ├── ContrastNodeThumb.png │ │ ├── CosineNodeThumb.png │ │ ├── CrossProductNodeThumb.png │ │ ├── CubemapAssetNodeThumb.png │ │ ├── Custom-Function-Node-File-Function-01.png │ │ ├── Custom-Function-Node-File-Function-02.png │ │ ├── Custom-Function-Node-File-Function-03.png │ │ ├── Custom-Function-Node-File-Function-04.png │ │ ├── Custom-Function-Node-File-wFunction.png │ │ ├── Custom-Function-Node-File.png │ │ ├── Custom-Function-Node-String-Output.png │ │ ├── Custom-Function-Node-String-wFunction.png │ │ ├── Custom-Function-Node-String.png │ │ ├── Custom-Function-Node-Subgraph.png │ │ ├── Custom-Function-Node.png │ │ ├── Custom-Port-Menu-Add.png │ │ ├── Custom-Port-Menu-Empty.png │ │ ├── Custom-Port-Menu-Remove.png │ │ ├── Custom-Port-Menu-Rename.png │ │ ├── Custom-Port-Menu-Type.png │ │ ├── DDXNodeThumb.png │ │ ├── DDXYNodeThumb.png │ │ ├── DDYNodeThumb.png │ │ ├── DegreesToRadiansNodeThumb.png │ │ ├── DielectricSpecularNodeThumb.png │ │ ├── DistanceNodeThumb.png │ │ ├── DitherNodeThumb.png │ │ ├── DivideNodeThumb.png │ │ ├── DotProductNodeThumb.png │ │ ├── EllipseNodeThumb.png │ │ ├── ExponentialNodeThumb.png │ │ ├── FlipNodeThumb.png │ │ ├── FlipbookNodeThumb.png │ │ ├── FloorNodeThumb.png │ │ ├── FogNodeThumb.png │ │ ├── FractionNodeThumb.png │ │ ├── FresnelEffectNodeThumb.png │ │ ├── GradientNodeThumb.png │ │ ├── GradientNoiseNodeThumb.png │ │ ├── HueNodeThumb.png │ │ ├── HyperbolicCosineNodeThumb.png │ │ ├── HyperbolicSineNodeThumb.png │ │ ├── HyperbolicTangentNodeThumb.png │ │ ├── IntegerNodeThumb.png │ │ ├── InverseLerpNodeThumb.png │ │ ├── InvertColorsNodeThumb.png │ │ ├── IsFrontFaceNodeThumb.png │ │ ├── IsInfiniteNodeThumb.png │ │ ├── IsNaNNodeThumb.png │ │ ├── LengthNodePage02.png │ │ ├── LengthNodePage03.png │ │ ├── LengthNodeThumb.png │ │ ├── LerpNodeThumb.png │ │ ├── LightProbeNodeThumb.png │ │ ├── LogNodePage01.png │ │ ├── LogNodePage02.png │ │ ├── LogNodeThumb.png │ │ ├── MainPreview.png │ │ ├── MasterNode.png │ │ ├── Matrix2x2NodeThumb.png │ │ ├── Matrix3x3NodeThumb.png │ │ ├── Matrix4x4NodeThumb.png │ │ ├── MatrixConstructionNodeThumb.png │ │ ├── MatrixDeterminantNodeThumb.png │ │ ├── MatrixSplitNodeThumb.png │ │ ├── MatrixTransposeNodeThumb.png │ │ ├── MaximumNodeThumb.png │ │ ├── MetalReflectanceNodeThumb.png │ │ ├── MinimumNodeThumb.png │ │ ├── ModuloNodeThumb.png │ │ ├── MultiplyNodeThumb.png │ │ ├── MyFirstShaderGraph_01.png │ │ ├── MyFirstShaderGraph_02.png │ │ ├── MyFirstShaderGraph_03.png │ │ ├── MyFirstShaderGraph_04.png │ │ ├── MyFirstShaderGraph_05.png │ │ ├── MyFirstShaderGraph_06.png │ │ ├── MyFirstShaderGraph_07.png │ │ ├── MyFirstShaderGraph_08.png │ │ ├── MyFirstShaderGraph_09.png │ │ ├── MyFirstShaderGraph_10.png │ │ ├── MyFirstShaderGraph_11.png │ │ ├── NandNodeThumb.png │ │ ├── NegateNodeThumb.png │ │ ├── NoiseSineWaveNodeThumb.png │ │ ├── NormalBlendNodeThumb.png │ │ ├── NormalFromHeightNodeThumb.png │ │ ├── NormalFromTextureNodeThumb.png │ │ ├── NormalReconstructZNodeThumb.png │ │ ├── NormalStrengthNodeThumb.png │ │ ├── NormalUnpackNodeThumb.png │ │ ├── NormalVectorNodeThumb.png │ │ ├── NormalizeNodeThumb.png │ │ ├── NotNodeThumb.png │ │ ├── ObjectNodeThumb.png │ │ ├── OneMinusNodeThumb.png │ │ ├── OrNodeThumb.png │ │ ├── PBRMasterNodeThumb.png │ │ ├── PatternSamples_01.png │ │ ├── PatternSamples_02.png │ │ ├── Patterns_Page.PNG │ │ ├── PolarCoordinatesNodeThumb.png │ │ ├── PolygonNodeThumb.png │ │ ├── PositionNodeThumb.png │ │ ├── PosterizeNodeThumb.png │ │ ├── PowerNodeThumb.png │ │ ├── Precision_DropDown.png │ │ ├── Precision_Inheritance_01.png │ │ ├── Precision_Inheritance_02.png │ │ ├── Precision_Inheritance_03.png │ │ ├── Precision_Inheritance_04.png │ │ ├── Precision_Per_Node.png │ │ ├── Precision_SubGraph_01.png │ │ ├── Precision_SubGraph_02.png │ │ ├── Precision_SubGraph_03.png │ │ ├── PreviewNodeThumb.png │ │ ├── ProjectionNodeThumb.png │ │ ├── RadialShearNodeThumb.png │ │ ├── RadiansToDegreesNodeThumb.png │ │ ├── RandomRangeNodeThumb.png │ │ ├── ReciprocalNodeThumb.png │ │ ├── ReciprocalSquareRootNodeThumb.png │ │ ├── RectangleNodeThumb.png │ │ ├── ReflectionNodeThumb.png │ │ ├── ReflectionProbeNodeThumb.png │ │ ├── RejectionNodeThumb.png │ │ ├── RemapNodeThumb.png │ │ ├── ReplaceColorNodeThumb.png │ │ ├── RotateAboutAxisNodeThumb.png │ │ ├── RotateNodeThumb.png │ │ ├── RoundNodeThumb.png │ │ ├── RoundedPolygonNodeThumb.png │ │ ├── RoundedRectangleNodeThumb.png │ │ ├── SampleCubemapNodeThumb.png │ │ ├── SampleGradientNodeThumb.png │ │ ├── SampleTexture2DArrayNodeThumb.png │ │ ├── SampleTexture2DLODNodeThumb.png │ │ ├── SampleTexture2DNodeThumb.png │ │ ├── SampleTexture3DNodeThumb.png │ │ ├── SamplerStateNodeThumb.png │ │ ├── SaturateNodeThumb.png │ │ ├── SaturationNodeThumb.png │ │ ├── SawtoothWaveNodeThumb.png │ │ ├── SceneColorNodeThumb.png │ │ ├── SceneDepthNodeThumb.png │ │ ├── ScreenNodeThumb.png │ │ ├── ScreenPositionNodeThumb.png │ │ ├── Shader-Graph-Toolbar.png │ │ ├── ShaderGraphWindow.png │ │ ├── SignNodeThumb.png │ │ ├── SimpleNoiseNodeThumb.png │ │ ├── SineNodeThumb.png │ │ ├── SliderNodeThumb.png │ │ ├── SmoothstepNodeThumb.png │ │ ├── SphereMaskNodeThumb.png │ │ ├── SpherizeNodeThumb.png │ │ ├── SplitNodeThumb.png │ │ ├── SquareRootNodeThumb.png │ │ ├── SquareWaveNodeThumb.png │ │ ├── StepNodeThumb.png │ │ ├── SubgraphNodeThumb.png │ │ ├── SubtractNodeThumb.png │ │ ├── SwizzleNodeThumb.png │ │ ├── TangentNodeThumb.png │ │ ├── TangentVectorNodeThumb.png │ │ ├── TexelSizeNodeThumb.png │ │ ├── Texture2DArrayAssetNodeThumb.png │ │ ├── Texture2DAssetNodeThumb.png │ │ ├── Texture3DAssetNodeThumb.png │ │ ├── TilingAndOffsetNodeThumb.png │ │ ├── TimeNodeThumb.png │ │ ├── TransformNodeThumb.png │ │ ├── TransformationMatrixNodeThumb.png │ │ ├── TriangleWaveNodeThumb.png │ │ ├── TriplanarNodeThumb.png │ │ ├── TruncateNodeThumb.png │ │ ├── TwirlNodeThumb.png │ │ ├── UVNodeThumb.png │ │ ├── UnlitMasterNodeThumb.png │ │ ├── Vector1NodeThumb.png │ │ ├── Vector2NodeThumb.png │ │ ├── Vector3NodeThumb.png │ │ ├── Vector4NodeThumb.png │ │ ├── VertexColorNodeThumb.png │ │ ├── ViewDirectionNodeThumb.png │ │ ├── VoronoiNodeThumb.png │ │ ├── WhiteBalanceNodeThumb.png │ │ ├── blackboard_shadergraph_path.png │ │ ├── blackboard_subgraph_path.png │ │ ├── keywords_boolean.png │ │ ├── keywords_built-in.png │ │ └── keywords_enum.png │ └── index.md │ ├── Editor.meta │ ├── Editor │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.cs.meta │ ├── AssetCallbacks.meta │ ├── AssetCallbacks │ │ ├── CreateShaderGraph.cs │ │ ├── CreateShaderGraph.cs.meta │ │ ├── CreateShaderSubGraph.cs │ │ └── CreateShaderSubGraph.cs.meta │ ├── CodeGen.meta │ ├── CodeGen │ │ ├── ActiveFields.cs │ │ ├── ActiveFields.cs.meta │ │ ├── GenerationResults.cs │ │ ├── GenerationResults.cs.meta │ │ ├── GenerationUtils.cs │ │ ├── GenerationUtils.cs.meta │ │ ├── GraphCompilationResult.cs │ │ ├── GraphCompilationResult.cs.meta │ │ ├── MatrixNames.cs │ │ ├── MatrixNames.cs.meta │ │ ├── PropertyCollector.cs │ │ ├── PropertyCollector.cs.meta │ │ ├── ShaderGenerator.cs │ │ ├── ShaderGenerator.cs.meta │ │ ├── ShaderGeneratorNames.cs │ │ ├── ShaderGeneratorNames.cs.meta │ │ ├── ShaderSourceMap.cs │ │ ├── ShaderSourceMap.cs.meta │ │ ├── ShaderSpliceUtil.cs │ │ ├── ShaderSpliceUtil.cs.meta │ │ ├── ShaderStringBuilder.cs │ │ ├── ShaderStringBuilder.cs.meta │ │ ├── SubShaderGenerator.cs │ │ └── SubShaderGenerator.cs.meta │ ├── Data.meta │ ├── Data │ │ ├── Attributes.meta │ │ ├── Attributes │ │ │ ├── BuiltinKeywordAttribute.cs │ │ │ └── BuiltinKeywordAttribute.cs.meta │ │ ├── Enumerations.meta │ │ ├── Enumerations │ │ │ ├── Precision.cs │ │ │ └── Precision.cs.meta │ │ ├── Graphs.meta │ │ ├── Graphs │ │ │ ├── AbstractMaterialGraphAsset.cs │ │ │ ├── AbstractMaterialGraphAsset.cs.meta │ │ │ ├── AbstractShaderProperty.cs │ │ │ ├── AbstractShaderProperty.cs.meta │ │ │ ├── BitangentMaterialSlot.cs │ │ │ ├── BitangentMaterialSlot.cs.meta │ │ │ ├── BooleanMaterialSlot.cs │ │ │ ├── BooleanMaterialSlot.cs.meta │ │ │ ├── BooleanShaderProperty.cs │ │ │ ├── BooleanShaderProperty.cs.meta │ │ │ ├── ColorMaterialSlot.cs │ │ │ ├── ColorMaterialSlot.cs.meta │ │ │ ├── ColorRGBMaterialSlot.cs │ │ │ ├── ColorRGBMaterialSlot.cs.meta │ │ │ ├── ColorShaderProperty.cs │ │ │ ├── ColorShaderProperty.cs.meta │ │ │ ├── CubemapInputMaterialSlot.cs │ │ │ ├── CubemapInputMaterialSlot.cs.meta │ │ │ ├── CubemapMaterialSlot.cs │ │ │ ├── CubemapMaterialSlot.cs.meta │ │ │ ├── CubemapShaderProperty.cs │ │ │ ├── CubemapShaderProperty.cs.meta │ │ │ ├── DynamicMatrixMaterialSlot.cs │ │ │ ├── DynamicMatrixMaterialSlot.cs.meta │ │ │ ├── DynamicValueMaterialSlot.cs │ │ │ ├── DynamicValueMaterialSlot.cs.meta │ │ │ ├── DynamicVectorMaterialSlot.cs │ │ │ ├── DynamicVectorMaterialSlot.cs.meta │ │ │ ├── GradientInputMaterialSlot.cs │ │ │ ├── GradientInputMaterialSlot.cs.meta │ │ │ ├── GradientMaterialSlot.cs │ │ │ ├── GradientMaterialSlot.cs.meta │ │ │ ├── GradientShaderProperty.cs │ │ │ ├── GradientShaderProperty.cs.meta │ │ │ ├── GraphData.cs │ │ │ ├── GraphData.cs.meta │ │ │ ├── GroupData.cs │ │ │ ├── GroupData.cs.meta │ │ │ ├── IMaterialGraphAsset.cs │ │ │ ├── IMaterialGraphAsset.cs.meta │ │ │ ├── IMaterialSlotHasValue.cs │ │ │ ├── IMaterialSlotHasValue.cs.meta │ │ │ ├── MaterialSlot.cs │ │ │ ├── MaterialSlot.cs.meta │ │ │ ├── Matrix2MaterialSlot.cs │ │ │ ├── Matrix2MaterialSlot.cs.meta │ │ │ ├── Matrix2ShaderProperty.cs │ │ │ ├── Matrix2ShaderProperty.cs.meta │ │ │ ├── Matrix3MaterialSlot.cs │ │ │ ├── Matrix3MaterialSlot.cs.meta │ │ │ ├── Matrix3ShaderProperty.cs │ │ │ ├── Matrix3ShaderProperty.cs.meta │ │ │ ├── Matrix4MaterialSlot.cs │ │ │ ├── Matrix4MaterialSlot.cs.meta │ │ │ ├── Matrix4ShaderProperty.cs │ │ │ ├── Matrix4ShaderProperty.cs.meta │ │ │ ├── MatrixShaderProperty.cs │ │ │ ├── MatrixShaderProperty.cs.meta │ │ │ ├── MinimalGraphData.cs │ │ │ ├── MinimalGraphData.cs.meta │ │ │ ├── NormalMaterialSlot.cs │ │ │ ├── NormalMaterialSlot.cs.meta │ │ │ ├── ParentGroupChange.cs │ │ │ ├── ParentGroupChange.cs.meta │ │ │ ├── PositionMaterialSlot.cs │ │ │ ├── PositionMaterialSlot.cs.meta │ │ │ ├── PreviewMode.cs │ │ │ ├── PreviewMode.cs.meta │ │ │ ├── PreviewProperty.cs │ │ │ ├── PreviewProperty.cs.meta │ │ │ ├── SamplerStateMaterialSlot.cs │ │ │ ├── SamplerStateMaterialSlot.cs.meta │ │ │ ├── SamplerStateShaderProperty.cs │ │ │ ├── SamplerStateShaderProperty.cs.meta │ │ │ ├── ScreenPositionMaterialSlot.cs │ │ │ ├── ScreenPositionMaterialSlot.cs.meta │ │ │ ├── SerializableCubemap.cs │ │ │ ├── SerializableCubemap.cs.meta │ │ │ ├── SerializableGuid.cs │ │ │ ├── SerializableGuid.cs.meta │ │ │ ├── SerializableMesh.cs │ │ │ ├── SerializableMesh.cs.meta │ │ │ ├── SerializableTexture.cs │ │ │ ├── SerializableTexture.cs.meta │ │ │ ├── SerializableTextureArray.cs │ │ │ ├── SerializableTextureArray.cs.meta │ │ │ ├── ShaderGraphRequirements.cs │ │ │ ├── ShaderGraphRequirements.cs.meta │ │ │ ├── ShaderInput.cs │ │ │ ├── ShaderInput.cs.meta │ │ │ ├── ShaderKeyword.cs │ │ │ ├── ShaderKeyword.cs.meta │ │ │ ├── SpaceMaterialSlot.cs │ │ │ ├── SpaceMaterialSlot.cs.meta │ │ │ ├── StickyNoteData.cs │ │ │ ├── StickyNoteData.cs.meta │ │ │ ├── TangentMaterialSlot.cs │ │ │ ├── TangentMaterialSlot.cs.meta │ │ │ ├── Texture2DArrayInputMaterialSlot.cs │ │ │ ├── Texture2DArrayInputMaterialSlot.cs.meta │ │ │ ├── Texture2DArrayMaterialSlot.cs │ │ │ ├── Texture2DArrayMaterialSlot.cs.meta │ │ │ ├── Texture2DArrayShaderProperty.cs │ │ │ ├── Texture2DArrayShaderProperty.cs.meta │ │ │ ├── Texture2DInputMaterialSlot.cs │ │ │ ├── Texture2DInputMaterialSlot.cs.meta │ │ │ ├── Texture2DMaterialSlot.cs │ │ │ ├── Texture2DMaterialSlot.cs.meta │ │ │ ├── Texture2DShaderProperty.cs │ │ │ ├── Texture2DShaderProperty.cs.meta │ │ │ ├── Texture3DInputMaterialSlot.cs │ │ │ ├── Texture3DInputMaterialSlot.cs.meta │ │ │ ├── Texture3DMaterialSlot.cs │ │ │ ├── Texture3DMaterialSlot.cs.meta │ │ │ ├── Texture3DShaderProperty.cs │ │ │ ├── Texture3DShaderProperty.cs.meta │ │ │ ├── TextureSamplerState.cs │ │ │ ├── TextureSamplerState.cs.meta │ │ │ ├── UVMaterialSlot.cs │ │ │ ├── UVMaterialSlot.cs.meta │ │ │ ├── Vector1MaterialSlot.cs │ │ │ ├── Vector1MaterialSlot.cs.meta │ │ │ ├── Vector1ShaderProperty.cs │ │ │ ├── Vector1ShaderProperty.cs.meta │ │ │ ├── Vector2MaterialSlot.cs │ │ │ ├── Vector2MaterialSlot.cs.meta │ │ │ ├── Vector2ShaderProperty.cs │ │ │ ├── Vector2ShaderProperty.cs.meta │ │ │ ├── Vector3MaterialSlot.cs │ │ │ ├── Vector3MaterialSlot.cs.meta │ │ │ ├── Vector3ShaderProperty.cs │ │ │ ├── Vector3ShaderProperty.cs.meta │ │ │ ├── Vector4MaterialSlot.cs │ │ │ ├── Vector4MaterialSlot.cs.meta │ │ │ ├── Vector4ShaderProperty.cs │ │ │ ├── Vector4ShaderProperty.cs.meta │ │ │ ├── VectorShaderProperty.cs │ │ │ ├── VectorShaderProperty.cs.meta │ │ │ ├── VertexColorMaterialSlot.cs │ │ │ ├── VertexColorMaterialSlot.cs.meta │ │ │ ├── ViewDirectionMaterialSlot.cs │ │ │ └── ViewDirectionMaterialSlot.cs.meta │ │ ├── Implementation.meta │ │ ├── Implementation │ │ │ ├── Edge.cs │ │ │ ├── Edge.cs.meta │ │ │ ├── GraphObject.cs │ │ │ ├── GraphObject.cs.meta │ │ │ ├── HasDependenciesAttribute.cs │ │ │ ├── HasDependenciesAttribute.cs.meta │ │ │ ├── IHasDependencies.cs │ │ │ ├── IHasDependencies.cs.meta │ │ │ ├── NodeUtils.cs │ │ │ ├── NodeUtils.cs.meta │ │ │ ├── SlotType.cs │ │ │ └── SlotType.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── GenerationMode.cs │ │ │ ├── GenerationMode.cs.meta │ │ │ ├── Graph.meta │ │ │ ├── Graph │ │ │ │ ├── DrawState.cs │ │ │ │ ├── DrawState.cs.meta │ │ │ │ ├── GraphDrawingData.cs │ │ │ │ ├── GraphDrawingData.cs.meta │ │ │ │ ├── IEdge.cs │ │ │ │ ├── IEdge.cs.meta │ │ │ │ ├── INode.cs │ │ │ │ ├── INode.cs.meta │ │ │ │ ├── IOnAssetEnabled.cs │ │ │ │ ├── IOnAssetEnabled.cs.meta │ │ │ │ ├── ISlot.cs │ │ │ │ ├── ISlot.cs.meta │ │ │ │ ├── SlotReference.cs │ │ │ │ └── SlotReference.cs.meta │ │ │ ├── IGeneratesBodyCode.cs │ │ │ ├── IGeneratesBodyCode.cs.meta │ │ │ ├── IGeneratesFunction.cs │ │ │ ├── IGeneratesFunction.cs.meta │ │ │ ├── IGroupItem.cs │ │ │ ├── IGroupItem.cs.meta │ │ │ ├── IHasSettings.cs │ │ │ ├── IHasSettings.cs.meta │ │ │ ├── IMayRequireBitangent.cs │ │ │ ├── IMayRequireBitangent.cs.meta │ │ │ ├── IMayRequireCameraOpaqueTexture.cs │ │ │ ├── IMayRequireCameraOpaqueTexture.cs.meta │ │ │ ├── IMayRequireDepthTexture.cs │ │ │ ├── IMayRequireDepthTexture.cs.meta │ │ │ ├── IMayRequireFaceSign.cs │ │ │ ├── IMayRequireFaceSign.cs.meta │ │ │ ├── IMayRequireMeshUV.cs │ │ │ ├── IMayRequireMeshUV.cs.meta │ │ │ ├── IMayRequireNormal.cs │ │ │ ├── IMayRequireNormal.cs.meta │ │ │ ├── IMayRequirePosition.cs │ │ │ ├── IMayRequirePosition.cs.meta │ │ │ ├── IMayRequireScreenPosition.cs │ │ │ ├── IMayRequireScreenPosition.cs.meta │ │ │ ├── IMayRequireTangent.cs │ │ │ ├── IMayRequireTangent.cs.meta │ │ │ ├── IMayRequireTime.cs │ │ │ ├── IMayRequireTime.cs.meta │ │ │ ├── IMayRequireVertexColor.cs │ │ │ ├── IMayRequireVertexColor.cs.meta │ │ │ ├── IMayRequireVertexSkinning.cs │ │ │ ├── IMayRequireVertexSkinning.cs.meta │ │ │ ├── IMayRequireViewDirection.cs │ │ │ ├── IMayRequireViewDirection.cs.meta │ │ │ ├── NeededCoordinateSpace.cs │ │ │ └── NeededCoordinateSpace.cs.meta │ │ ├── MasterNodes.meta │ │ ├── MasterNodes │ │ │ ├── AlphaMode.cs │ │ │ ├── AlphaMode.cs.meta │ │ │ ├── DistortionMode.cs │ │ │ ├── DistortionMode.cs.meta │ │ │ ├── DoubleSidedMode.cs │ │ │ ├── DoubleSidedMode.cs.meta │ │ │ ├── EmissionGIMode.cs │ │ │ ├── EmissionGIMode.cs.meta │ │ │ ├── IPBRSubShader.cs │ │ │ ├── IPBRSubShader.cs.meta │ │ │ ├── ISubShader.cs │ │ │ ├── ISubShader.cs.meta │ │ │ ├── IUnlitSubShader.cs │ │ │ ├── IUnlitSubShader.cs.meta │ │ │ ├── PBRMasterNode.cs │ │ │ ├── PBRMasterNode.cs.meta │ │ │ ├── SpecularOcclusionMode.cs │ │ │ ├── SpecularOcclusionMode.cs.meta │ │ │ ├── UnlitMasterNode.cs │ │ │ ├── UnlitMasterNode.cs.meta │ │ │ ├── VfxMasterNode.cs │ │ │ └── VfxMasterNode.cs.meta │ │ ├── Nodes.meta │ │ ├── Nodes │ │ │ ├── AbstractMaterialNode.cs │ │ │ ├── AbstractMaterialNode.cs.meta │ │ │ ├── Artistic.meta │ │ │ ├── Artistic │ │ │ │ ├── Adjustment.meta │ │ │ │ ├── Adjustment │ │ │ │ │ ├── ChannelMixerNode.cs │ │ │ │ │ ├── ChannelMixerNode.cs.meta │ │ │ │ │ ├── ContrastNode.cs │ │ │ │ │ ├── ContrastNode.cs.meta │ │ │ │ │ ├── HueNode.cs │ │ │ │ │ ├── HueNode.cs.meta │ │ │ │ │ ├── InvertColorsNode.cs │ │ │ │ │ ├── InvertColorsNode.cs.meta │ │ │ │ │ ├── ReplaceColorNode.cs │ │ │ │ │ ├── ReplaceColorNode.cs.meta │ │ │ │ │ ├── SaturationNode.cs │ │ │ │ │ ├── SaturationNode.cs.meta │ │ │ │ │ ├── WhiteBalanceNode.cs │ │ │ │ │ └── WhiteBalanceNode.cs.meta │ │ │ │ ├── Blend.meta │ │ │ │ ├── Blend │ │ │ │ │ ├── BlendMode.cs │ │ │ │ │ ├── BlendMode.cs.meta │ │ │ │ │ ├── BlendNode.cs │ │ │ │ │ └── BlendNode.cs.meta │ │ │ │ ├── Filter.meta │ │ │ │ ├── Filter │ │ │ │ │ ├── DitherNode.cs │ │ │ │ │ └── DitherNode.cs.meta │ │ │ │ ├── Mask.meta │ │ │ │ ├── Mask │ │ │ │ │ ├── ChannelMaskNode.cs │ │ │ │ │ ├── ChannelMaskNode.cs.meta │ │ │ │ │ ├── ColorMaskNode.cs │ │ │ │ │ └── ColorMaskNode.cs.meta │ │ │ │ ├── Normal.meta │ │ │ │ ├── Normal │ │ │ │ │ ├── NormalBlendNode.cs │ │ │ │ │ ├── NormalBlendNode.cs.meta │ │ │ │ │ ├── NormalFromHeightNode.cs │ │ │ │ │ ├── NormalFromHeightNode.cs.meta │ │ │ │ │ ├── NormalFromTextureNode.cs │ │ │ │ │ ├── NormalFromTextureNode.cs.meta │ │ │ │ │ ├── NormalReconstructZNode.cs │ │ │ │ │ ├── NormalReconstructZNode.cs.meta │ │ │ │ │ ├── NormalStrengthNode.cs │ │ │ │ │ ├── NormalStrengthNode.cs.meta │ │ │ │ │ ├── NormalUnpackNode.cs │ │ │ │ │ └── NormalUnpackNode.cs.meta │ │ │ │ ├── Utility.meta │ │ │ │ └── Utility │ │ │ │ │ ├── ColorspaceConversion.cs │ │ │ │ │ └── ColorspaceConversion.cs.meta │ │ │ ├── Channel.meta │ │ │ ├── Channel │ │ │ │ ├── CombineNode.cs │ │ │ │ ├── CombineNode.cs.meta │ │ │ │ ├── FlipNode.cs │ │ │ │ ├── FlipNode.cs.meta │ │ │ │ ├── SplitNode.cs │ │ │ │ ├── SplitNode.cs.meta │ │ │ │ ├── SwizzleNode.cs │ │ │ │ └── SwizzleNode.cs.meta │ │ │ ├── CodeFunctionNode.cs │ │ │ ├── CodeFunctionNode.cs.meta │ │ │ ├── FormerNameAttribute.cs │ │ │ ├── FormerNameAttribute.cs.meta │ │ │ ├── FunctionMultiInput.cs │ │ │ ├── FunctionMultiInput.cs.meta │ │ │ ├── GeometryNode.cs │ │ │ ├── GeometryNode.cs.meta │ │ │ ├── GuidEncoder.cs │ │ │ ├── GuidEncoder.cs.meta │ │ │ ├── IMasterNode.cs │ │ │ ├── IMasterNode.cs.meta │ │ │ ├── IPropertyFromNode.cs │ │ │ ├── IPropertyFromNode.cs.meta │ │ │ ├── Input.meta │ │ │ ├── Input │ │ │ │ ├── Basic.meta │ │ │ │ ├── Basic │ │ │ │ │ ├── BooleanNode.cs │ │ │ │ │ ├── BooleanNode.cs.meta │ │ │ │ │ ├── ColorNode.cs │ │ │ │ │ ├── ColorNode.cs.meta │ │ │ │ │ ├── ConstantNode.cs │ │ │ │ │ ├── ConstantNode.cs.meta │ │ │ │ │ ├── IntegerNode.cs │ │ │ │ │ ├── IntegerNode.cs.meta │ │ │ │ │ ├── SliderNode.cs │ │ │ │ │ ├── SliderNode.cs.meta │ │ │ │ │ ├── TimeNode.cs │ │ │ │ │ ├── TimeNode.cs.meta │ │ │ │ │ ├── Vector1Node.cs │ │ │ │ │ ├── Vector1Node.cs.meta │ │ │ │ │ ├── Vector2Node.cs │ │ │ │ │ ├── Vector2Node.cs.meta │ │ │ │ │ ├── Vector3Node.cs │ │ │ │ │ ├── Vector3Node.cs.meta │ │ │ │ │ ├── Vector4Node.cs │ │ │ │ │ └── Vector4Node.cs.meta │ │ │ │ ├── Geometry.meta │ │ │ │ ├── Geometry │ │ │ │ │ ├── BitangentVectorNode.cs │ │ │ │ │ ├── BitangentVectorNode.cs.meta │ │ │ │ │ ├── NormalVectorNode.cs │ │ │ │ │ ├── NormalVectorNode.cs.meta │ │ │ │ │ ├── PositionNode.cs │ │ │ │ │ ├── PositionNode.cs.meta │ │ │ │ │ ├── ScreenPositionNode.cs │ │ │ │ │ ├── ScreenPositionNode.cs.meta │ │ │ │ │ ├── TangentVectorNode.cs │ │ │ │ │ ├── TangentVectorNode.cs.meta │ │ │ │ │ ├── UVNode.cs │ │ │ │ │ ├── UVNode.cs.meta │ │ │ │ │ ├── VertexColorNode.cs │ │ │ │ │ ├── VertexColorNode.cs.meta │ │ │ │ │ ├── ViewDirectionNode.cs │ │ │ │ │ └── ViewDirectionNode.cs.meta │ │ │ │ ├── Gradient.meta │ │ │ │ ├── Gradient │ │ │ │ │ ├── GradientNode.cs │ │ │ │ │ ├── GradientNode.cs.meta │ │ │ │ │ ├── SampleGradientNode.cs │ │ │ │ │ └── SampleGradientNode.cs.meta │ │ │ │ ├── Lighting.meta │ │ │ │ ├── Lighting │ │ │ │ │ ├── AmbientNode.cs │ │ │ │ │ ├── AmbientNode.cs.meta │ │ │ │ │ ├── BakedGINode.cs │ │ │ │ │ ├── BakedGINode.cs.meta │ │ │ │ │ ├── ReflectionProbeNode.cs │ │ │ │ │ └── ReflectionProbeNode.cs.meta │ │ │ │ ├── Matrix.meta │ │ │ │ ├── Matrix │ │ │ │ │ ├── Matrix2Node.cs │ │ │ │ │ ├── Matrix2Node.cs.meta │ │ │ │ │ ├── Matrix3Node.cs │ │ │ │ │ ├── Matrix3Node.cs.meta │ │ │ │ │ ├── Matrix4Node.cs │ │ │ │ │ ├── Matrix4Node.cs.meta │ │ │ │ │ ├── TransformationMatrixNode.cs │ │ │ │ │ └── TransformationMatrixNode.cs.meta │ │ │ │ ├── PBR.meta │ │ │ │ ├── PBR │ │ │ │ │ ├── DielectricSpecularNode.cs │ │ │ │ │ ├── DielectricSpecularNode.cs.meta │ │ │ │ │ ├── MetalReflectanceNode.cs │ │ │ │ │ └── MetalReflectanceNode.cs.meta │ │ │ │ ├── PropertyNode.cs │ │ │ │ ├── PropertyNode.cs.meta │ │ │ │ ├── Scene.meta │ │ │ │ ├── Scene │ │ │ │ │ ├── CameraNode.cs │ │ │ │ │ ├── CameraNode.cs.meta │ │ │ │ │ ├── FogNode.cs │ │ │ │ │ ├── FogNode.cs.meta │ │ │ │ │ ├── ObjectNode.cs │ │ │ │ │ ├── ObjectNode.cs.meta │ │ │ │ │ ├── SceneColorNode.cs │ │ │ │ │ ├── SceneColorNode.cs.meta │ │ │ │ │ ├── SceneDepthNode.cs │ │ │ │ │ ├── SceneDepthNode.cs.meta │ │ │ │ │ ├── ScreenNode.cs │ │ │ │ │ └── ScreenNode.cs.meta │ │ │ │ ├── Texture.meta │ │ │ │ └── Texture │ │ │ │ │ ├── CubemapAssetNode.cs │ │ │ │ │ ├── CubemapAssetNode.cs.meta │ │ │ │ │ ├── SampleCubemapNode.cs │ │ │ │ │ ├── SampleCubemapNode.cs.meta │ │ │ │ │ ├── SampleTexture2DArrayNode.cs │ │ │ │ │ ├── SampleTexture2DArrayNode.cs.meta │ │ │ │ │ ├── SampleTexture2DLODNode.cs │ │ │ │ │ ├── SampleTexture2DLODNode.cs.meta │ │ │ │ │ ├── SampleTexture2DNode.cs │ │ │ │ │ ├── SampleTexture2DNode.cs.meta │ │ │ │ │ ├── SampleTexture3DNode.cs │ │ │ │ │ ├── SampleTexture3DNode.cs.meta │ │ │ │ │ ├── SamplerStateNode.cs │ │ │ │ │ ├── SamplerStateNode.cs.meta │ │ │ │ │ ├── TexelSizeNode.cs │ │ │ │ │ ├── TexelSizeNode.cs.meta │ │ │ │ │ ├── Texture2DArrayAssetNode.cs │ │ │ │ │ ├── Texture2DArrayAssetNode.cs.meta │ │ │ │ │ ├── Texture2DAssetNode.cs │ │ │ │ │ ├── Texture2DAssetNode.cs.meta │ │ │ │ │ ├── Texture3DAssetNode.cs │ │ │ │ │ └── Texture3DAssetNode.cs.meta │ │ │ ├── MasterNode.cs │ │ │ ├── MasterNode.cs.meta │ │ │ ├── Math.meta │ │ │ ├── Math │ │ │ │ ├── Advanced.meta │ │ │ │ ├── Advanced │ │ │ │ │ ├── AbsoluteNode.cs │ │ │ │ │ ├── AbsoluteNode.cs.meta │ │ │ │ │ ├── ExponentialNode.cs │ │ │ │ │ ├── ExponentialNode.cs.meta │ │ │ │ │ ├── LengthNode.cs │ │ │ │ │ ├── LengthNode.cs.meta │ │ │ │ │ ├── LogNode.cs │ │ │ │ │ ├── LogNode.cs.meta │ │ │ │ │ ├── ModuloNode.cs │ │ │ │ │ ├── ModuloNode.cs.meta │ │ │ │ │ ├── NegateNode.cs │ │ │ │ │ ├── NegateNode.cs.meta │ │ │ │ │ ├── NormalizeNode.cs │ │ │ │ │ ├── NormalizeNode.cs.meta │ │ │ │ │ ├── PosterizeNode.cs │ │ │ │ │ ├── PosterizeNode.cs.meta │ │ │ │ │ ├── ReciprocalNode.cs │ │ │ │ │ ├── ReciprocalNode.cs.meta │ │ │ │ │ ├── ReciprocalSquareRootNode.cs │ │ │ │ │ └── ReciprocalSquareRootNode.cs.meta │ │ │ │ ├── Basic.meta │ │ │ │ ├── Basic │ │ │ │ │ ├── AddNode.cs │ │ │ │ │ ├── AddNode.cs.meta │ │ │ │ │ ├── DivideNode.cs │ │ │ │ │ ├── DivideNode.cs.meta │ │ │ │ │ ├── MultiplyNode.cs │ │ │ │ │ ├── MultiplyNode.cs.meta │ │ │ │ │ ├── PowerNode.cs │ │ │ │ │ ├── PowerNode.cs.meta │ │ │ │ │ ├── SquareRootNode.cs │ │ │ │ │ ├── SquareRootNode.cs.meta │ │ │ │ │ ├── SubtractNode.cs │ │ │ │ │ └── SubtractNode.cs.meta │ │ │ │ ├── Derivative.meta │ │ │ │ ├── Derivative │ │ │ │ │ ├── DDXNode.cs │ │ │ │ │ ├── DDXNode.cs.meta │ │ │ │ │ ├── DDXYNode.cs │ │ │ │ │ ├── DDXYNode.cs.meta │ │ │ │ │ ├── DDYNode.cs │ │ │ │ │ └── DDYNode.cs.meta │ │ │ │ ├── Interpolation.meta │ │ │ │ ├── Interpolation │ │ │ │ │ ├── InverseLerpNode.cs │ │ │ │ │ ├── InverseLerpNode.cs.meta │ │ │ │ │ ├── LerpNode.cs │ │ │ │ │ ├── LerpNode.cs.meta │ │ │ │ │ ├── SmoothstepNode.cs │ │ │ │ │ └── SmoothstepNode.cs.meta │ │ │ │ ├── Matrix.meta │ │ │ │ ├── Matrix │ │ │ │ │ ├── MatrixConstructionNode.cs │ │ │ │ │ ├── MatrixConstructionNode.cs.meta │ │ │ │ │ ├── MatrixDeterminantNode.cs │ │ │ │ │ ├── MatrixDeterminantNode.cs.meta │ │ │ │ │ ├── MatrixSplitNode.cs │ │ │ │ │ ├── MatrixSplitNode.cs.meta │ │ │ │ │ ├── MatrixTransposeNode.cs │ │ │ │ │ └── MatrixTransposeNode.cs.meta │ │ │ │ ├── Range.meta │ │ │ │ ├── Range │ │ │ │ │ ├── ClampNode.cs │ │ │ │ │ ├── ClampNode.cs.meta │ │ │ │ │ ├── FractionNode.cs │ │ │ │ │ ├── FractionNode.cs.meta │ │ │ │ │ ├── MaximumNode.cs │ │ │ │ │ ├── MaximumNode.cs.meta │ │ │ │ │ ├── MinimumNode.cs │ │ │ │ │ ├── MinimumNode.cs.meta │ │ │ │ │ ├── OneMinusNode.cs │ │ │ │ │ ├── OneMinusNode.cs.meta │ │ │ │ │ ├── RandomRangeNode.cs │ │ │ │ │ ├── RandomRangeNode.cs.meta │ │ │ │ │ ├── RemapNode.cs │ │ │ │ │ ├── RemapNode.cs.meta │ │ │ │ │ ├── SaturateNode.cs │ │ │ │ │ └── SaturateNode.cs.meta │ │ │ │ ├── Round.meta │ │ │ │ ├── Round │ │ │ │ │ ├── CeilingNode.cs │ │ │ │ │ ├── CeilingNode.cs.meta │ │ │ │ │ ├── FloorNode.cs │ │ │ │ │ ├── FloorNode.cs.meta │ │ │ │ │ ├── RoundNode.cs │ │ │ │ │ ├── RoundNode.cs.meta │ │ │ │ │ ├── SignNode.cs │ │ │ │ │ ├── SignNode.cs.meta │ │ │ │ │ ├── StepNode.cs │ │ │ │ │ ├── StepNode.cs.meta │ │ │ │ │ ├── TruncateNode.cs │ │ │ │ │ └── TruncateNode.cs.meta │ │ │ │ ├── Trigonometry.meta │ │ │ │ ├── Trigonometry │ │ │ │ │ ├── ArccosineNode.cs │ │ │ │ │ ├── ArccosineNode.cs.meta │ │ │ │ │ ├── ArcsineNode.cs │ │ │ │ │ ├── ArcsineNode.cs.meta │ │ │ │ │ ├── Arctangent2Node.cs │ │ │ │ │ ├── Arctangent2Node.cs.meta │ │ │ │ │ ├── ArctangentNode.cs │ │ │ │ │ ├── ArctangentNode.cs.meta │ │ │ │ │ ├── CosineNode.cs │ │ │ │ │ ├── CosineNode.cs.meta │ │ │ │ │ ├── DegreesToRadiansNode.cs │ │ │ │ │ ├── DegreesToRadiansNode.cs.meta │ │ │ │ │ ├── HyperbolicCosineNode.cs │ │ │ │ │ ├── HyperbolicCosineNode.cs.meta │ │ │ │ │ ├── HyperbolicSineNode.cs │ │ │ │ │ ├── HyperbolicSineNode.cs.meta │ │ │ │ │ ├── HyperbolicTangentNode.cs │ │ │ │ │ ├── HyperbolicTangentNode.cs.meta │ │ │ │ │ ├── RadiansToDegreesNode.cs │ │ │ │ │ ├── RadiansToDegreesNode.cs.meta │ │ │ │ │ ├── SineNode.cs │ │ │ │ │ ├── SineNode.cs.meta │ │ │ │ │ ├── TangentNode.cs │ │ │ │ │ └── TangentNode.cs.meta │ │ │ │ ├── Vector.meta │ │ │ │ ├── Vector │ │ │ │ │ ├── CrossProductNode.cs │ │ │ │ │ ├── CrossProductNode.cs.meta │ │ │ │ │ ├── DistanceNode.cs │ │ │ │ │ ├── DistanceNode.cs.meta │ │ │ │ │ ├── DotProductNode.cs │ │ │ │ │ ├── DotProductNode.cs.meta │ │ │ │ │ ├── FresnelEffectNode.cs │ │ │ │ │ ├── FresnelEffectNode.cs.meta │ │ │ │ │ ├── ProjectionNode.cs │ │ │ │ │ ├── ProjectionNode.cs.meta │ │ │ │ │ ├── ReflectionNode.cs │ │ │ │ │ ├── ReflectionNode.cs.meta │ │ │ │ │ ├── RejectionNode.cs │ │ │ │ │ ├── RejectionNode.cs.meta │ │ │ │ │ ├── RotateAboutAxisNode.cs │ │ │ │ │ ├── RotateAboutAxisNode.cs.meta │ │ │ │ │ ├── SphereMaskNode.cs │ │ │ │ │ ├── SphereMaskNode.cs.meta │ │ │ │ │ ├── TransformNode.cs │ │ │ │ │ └── TransformNode.cs.meta │ │ │ │ ├── Wave.meta │ │ │ │ └── Wave │ │ │ │ │ ├── NoiseSineWaveNode.cs │ │ │ │ │ ├── NoiseSineWaveNode.cs.meta │ │ │ │ │ ├── SawtoothWaveNode.cs │ │ │ │ │ ├── SawtoothWaveNode.cs.meta │ │ │ │ │ ├── SquareWaveNode.cs │ │ │ │ │ ├── SquareWaveNode.cs.meta │ │ │ │ │ ├── TriangleWaveNode.cs │ │ │ │ │ └── TriangleWaveNode.cs.meta │ │ │ ├── NormalMapSpace.cs │ │ │ ├── NormalMapSpace.cs.meta │ │ │ ├── Procedural.meta │ │ │ ├── Procedural │ │ │ │ ├── CheckerboardNode.cs │ │ │ │ ├── CheckerboardNode.cs.meta │ │ │ │ ├── Noise.meta │ │ │ │ ├── Noise │ │ │ │ │ ├── GradientNoiseNode.cs │ │ │ │ │ ├── GradientNoiseNode.cs.meta │ │ │ │ │ ├── SimpleNoiseNode.cs │ │ │ │ │ ├── SimpleNoiseNode.cs.meta │ │ │ │ │ ├── VoronoiNode.cs │ │ │ │ │ └── VoronoiNode.cs.meta │ │ │ │ ├── Shape.meta │ │ │ │ └── Shape │ │ │ │ │ ├── EllipseNode.cs │ │ │ │ │ ├── EllipseNode.cs.meta │ │ │ │ │ ├── PolygonNode.cs │ │ │ │ │ ├── PolygonNode.cs.meta │ │ │ │ │ ├── RectangleNode.cs │ │ │ │ │ ├── RectangleNode.cs.meta │ │ │ │ │ ├── RoundedPolygonNode.cs │ │ │ │ │ ├── RoundedPolygonNode.cs.meta │ │ │ │ │ ├── RoundedRectangleNode.cs │ │ │ │ │ └── RoundedRectangleNode.cs.meta │ │ │ ├── ShaderStage.cs │ │ │ ├── ShaderStage.cs.meta │ │ │ ├── SlotValue.cs │ │ │ ├── SlotValue.cs.meta │ │ │ ├── TitleAttribute.cs │ │ │ ├── TitleAttribute.cs.meta │ │ │ ├── UV.meta │ │ │ ├── UV │ │ │ │ ├── FlipbookNode.cs │ │ │ │ ├── FlipbookNode.cs.meta │ │ │ │ ├── PolarCoordinatesNode.cs │ │ │ │ ├── PolarCoordinatesNode.cs.meta │ │ │ │ ├── RadialShearNode.cs │ │ │ │ ├── RadialShearNode.cs.meta │ │ │ │ ├── RotateNode.cs │ │ │ │ ├── RotateNode.cs.meta │ │ │ │ ├── SpherizeNode.cs │ │ │ │ ├── SpherizeNode.cs.meta │ │ │ │ ├── TilingAndOffsetNode.cs │ │ │ │ ├── TilingAndOffsetNode.cs.meta │ │ │ │ ├── TriplanarNode.cs │ │ │ │ ├── TriplanarNode.cs.meta │ │ │ │ ├── TwirlNode.cs │ │ │ │ └── TwirlNode.cs.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ │ ├── CustomFunctionNode.cs │ │ │ │ ├── CustomFunctionNode.cs.meta │ │ │ │ ├── KeywordNode.cs │ │ │ │ ├── KeywordNode.cs.meta │ │ │ │ ├── Logic.meta │ │ │ │ ├── Logic │ │ │ │ │ ├── AllNode.cs │ │ │ │ │ ├── AllNode.cs.meta │ │ │ │ │ ├── AndNode.cs │ │ │ │ │ ├── AndNode.cs.meta │ │ │ │ │ ├── AnyNode.cs │ │ │ │ │ ├── AnyNode.cs.meta │ │ │ │ │ ├── BranchNode.cs │ │ │ │ │ ├── BranchNode.cs.meta │ │ │ │ │ ├── ComparisonNode.cs │ │ │ │ │ ├── ComparisonNode.cs.meta │ │ │ │ │ ├── IsFrontFaceNode.cs │ │ │ │ │ ├── IsFrontFaceNode.cs.meta │ │ │ │ │ ├── IsInfiniteNode.cs │ │ │ │ │ ├── IsInfiniteNode.cs.meta │ │ │ │ │ ├── IsNanNode.cs │ │ │ │ │ ├── IsNanNode.cs.meta │ │ │ │ │ ├── NandNode.cs │ │ │ │ │ ├── NandNode.cs.meta │ │ │ │ │ ├── NotNode.cs │ │ │ │ │ ├── NotNode.cs.meta │ │ │ │ │ ├── OrNode.cs │ │ │ │ │ └── OrNode.cs.meta │ │ │ │ ├── PreviewNode.cs │ │ │ │ ├── PreviewNode.cs.meta │ │ │ │ ├── SubGraphNode.cs │ │ │ │ └── SubGraphNode.cs.meta │ │ │ ├── Vertex Skinning.meta │ │ │ └── Vertex Skinning │ │ │ │ ├── LinearBlendSkinningNode.cs │ │ │ │ └── LinearBlendSkinningNode.cs.meta │ │ ├── SubGraph.meta │ │ ├── SubGraph │ │ │ ├── SubGraphAsset.cs │ │ │ ├── SubGraphAsset.cs.meta │ │ │ ├── SubGraphOutputNode.cs │ │ │ └── SubGraphOutputNode.cs.meta │ │ ├── SurfaceModel.meta │ │ ├── SurfaceModel │ │ │ ├── SurfaceMaterialOptions.cs │ │ │ ├── SurfaceMaterialOptions.cs.meta │ │ │ ├── SurfaceMaterialTags.cs │ │ │ └── SurfaceMaterialTags.cs.meta │ │ ├── UniversalPipeline.meta │ │ ├── UniversalPipeline │ │ │ ├── UniversalFastBlinnMasterNode.cs │ │ │ └── UniversalFastBlinnMasterNode.cs.meta │ │ ├── Util.meta │ │ └── Util │ │ │ ├── DictionaryPool.cs │ │ │ ├── DictionaryPool.cs.meta │ │ │ ├── FunctionRegistry.cs │ │ │ ├── FunctionRegistry.cs.meta │ │ │ ├── GradientUtil.cs │ │ │ ├── GradientUtil.cs.meta │ │ │ ├── GraphUtil.cs │ │ │ ├── GraphUtil.cs.meta │ │ │ ├── Identifier.cs │ │ │ ├── Identifier.cs.meta │ │ │ ├── IndexSetPool.cs │ │ │ ├── IndexSetPool.cs.meta │ │ │ ├── KeywordCollector.cs │ │ │ ├── KeywordCollector.cs.meta │ │ │ ├── KeywordDependentCollection.cs │ │ │ ├── KeywordDependentCollection.cs.meta │ │ │ ├── KeywordUtil.cs │ │ │ ├── KeywordUtil.cs.meta │ │ │ ├── ListPool.cs │ │ │ ├── ListPool.cs.meta │ │ │ ├── Logging.cs │ │ │ ├── Logging.cs.meta │ │ │ ├── ObjectPool.cs │ │ │ ├── ObjectPool.cs.meta │ │ │ ├── PooledObject.cs │ │ │ ├── PooledObject.cs.meta │ │ │ ├── PrecisionUtil.cs │ │ │ ├── PrecisionUtil.cs.meta │ │ │ ├── PropertyUtil.cs │ │ │ ├── PropertyUtil.cs.meta │ │ │ ├── QueuePool.cs │ │ │ ├── QueuePool.cs.meta │ │ │ ├── ScreenSpaceType.cs │ │ │ ├── ScreenSpaceType.cs.meta │ │ │ ├── SerializationHelper.cs │ │ │ ├── SerializationHelper.cs.meta │ │ │ ├── ShaderGraphRequirementsPerKeyword.cs │ │ │ ├── ShaderGraphRequirementsPerKeyword.cs.meta │ │ │ ├── SlotValueTypeUtil.cs │ │ │ ├── SlotValueTypeUtil.cs.meta │ │ │ ├── StackPool.cs │ │ │ ├── StackPool.cs.meta │ │ │ ├── TextUtil.cs │ │ │ ├── TextUtil.cs.meta │ │ │ ├── UvChannel.cs │ │ │ └── UvChannel.cs.meta │ ├── DefaultShaderIncludes.cs │ ├── DefaultShaderIncludes.cs.meta │ ├── Drawing.meta │ ├── Drawing │ │ ├── Blackboard.meta │ │ ├── Blackboard │ │ │ ├── BlackboardFieldKeywordView.cs │ │ │ ├── BlackboardFieldKeywordView.cs.meta │ │ │ ├── BlackboardFieldPropertyView.cs │ │ │ ├── BlackboardFieldPropertyView.cs.meta │ │ │ ├── BlackboardFieldView.cs │ │ │ ├── BlackboardFieldView.cs.meta │ │ │ ├── BlackboardProvider.cs │ │ │ └── BlackboardProvider.cs.meta │ │ ├── Colors.meta │ │ ├── Colors │ │ │ ├── CategoryColors.cs │ │ │ ├── CategoryColors.cs.meta │ │ │ ├── ColorManager.cs │ │ │ ├── ColorManager.cs.meta │ │ │ ├── CustomColorData.cs │ │ │ ├── CustomColorData.cs.meta │ │ │ ├── IColorProvider.cs │ │ │ ├── IColorProvider.cs.meta │ │ │ ├── NoColors.cs │ │ │ ├── NoColors.cs.meta │ │ │ ├── PrecisionColors.cs │ │ │ ├── PrecisionColors.cs.meta │ │ │ ├── UserColors.cs │ │ │ └── UserColors.cs.meta │ │ ├── Controls.meta │ │ ├── Controls │ │ │ ├── ButtonControl.cs │ │ │ ├── ButtonControl.cs.meta │ │ │ ├── ChannelEnumControl.cs │ │ │ ├── ChannelEnumControl.cs.meta │ │ │ ├── ChannelEnumMaskControl.cs │ │ │ ├── ChannelEnumMaskControl.cs.meta │ │ │ ├── ChannelMixerControl.cs │ │ │ ├── ChannelMixerControl.cs.meta │ │ │ ├── ColorControl.cs │ │ │ ├── ColorControl.cs.meta │ │ │ ├── CubemapControl.cs │ │ │ ├── CubemapControl.cs.meta │ │ │ ├── DefaultControl.cs │ │ │ ├── DefaultControl.cs.meta │ │ │ ├── DielectricSpecularControl.cs │ │ │ ├── DielectricSpecularControl.cs.meta │ │ │ ├── EnumControl.cs │ │ │ ├── EnumControl.cs.meta │ │ │ ├── EnumConversionControl.cs │ │ │ ├── EnumConversionControl.cs.meta │ │ │ ├── GradientControl.cs │ │ │ ├── GradientControl.cs.meta │ │ │ ├── IControlAttribute.cs │ │ │ ├── IControlAttribute.cs.meta │ │ │ ├── IntegerControl.cs │ │ │ ├── IntegerControl.cs.meta │ │ │ ├── ObjectControl.cs │ │ │ ├── ObjectControl.cs.meta │ │ │ ├── PopupControl.cs │ │ │ ├── PopupControl.cs.meta │ │ │ ├── SliderControl.cs │ │ │ ├── SliderControl.cs.meta │ │ │ ├── Texture3DControl.cs │ │ │ ├── Texture3DControl.cs.meta │ │ │ ├── TextureArrayControl.cs │ │ │ ├── TextureArrayControl.cs.meta │ │ │ ├── TextureControl.cs │ │ │ ├── TextureControl.cs.meta │ │ │ ├── ToggleControl.cs │ │ │ ├── ToggleControl.cs.meta │ │ │ ├── VectorControl.cs │ │ │ └── VectorControl.cs.meta │ │ ├── EdgeConnectorListener.cs │ │ ├── EdgeConnectorListener.cs.meta │ │ ├── INodeModificationListener.cs │ │ ├── INodeModificationListener.cs.meta │ │ ├── Inspector.meta │ │ ├── Inspector │ │ │ ├── MasterPreviewView.cs │ │ │ ├── MasterPreviewView.cs.meta │ │ │ ├── WindowDockingLayout.cs │ │ │ └── WindowDockingLayout.cs.meta │ │ ├── Manipulators.meta │ │ ├── Manipulators │ │ │ ├── Draggable.cs │ │ │ ├── Draggable.cs.meta │ │ │ ├── ResizeBorderFrame.cs │ │ │ ├── ResizeBorderFrame.cs.meta │ │ │ ├── ResizeSideHandle.cs │ │ │ ├── ResizeSideHandle.cs.meta │ │ │ ├── Scrollable.cs │ │ │ ├── Scrollable.cs.meta │ │ │ ├── WindowDraggable.cs │ │ │ └── WindowDraggable.cs.meta │ │ ├── MaterialGraphEditWindow.cs │ │ ├── MaterialGraphEditWindow.cs.meta │ │ ├── MaterialGraphPreviewGenerator.cs │ │ ├── MaterialGraphPreviewGenerator.cs.meta │ │ ├── PreviewManager.cs │ │ ├── PreviewManager.cs.meta │ │ ├── PreviewRate.cs │ │ ├── PreviewRate.cs.meta │ │ ├── SearchWindowProvider.cs │ │ ├── SearchWindowProvider.cs.meta │ │ ├── Views.meta │ │ └── Views │ │ │ ├── FloatField.cs │ │ │ ├── FloatField.cs.meta │ │ │ ├── GradientEdge.cs │ │ │ ├── GradientEdge.cs.meta │ │ │ ├── GraphEditorView.cs │ │ │ ├── GraphEditorView.cs.meta │ │ │ ├── HlslFunctionView.cs │ │ │ ├── HlslFunctionView.cs.meta │ │ │ ├── IShaderNodeView.cs │ │ │ ├── IShaderNodeView.cs.meta │ │ │ ├── MaterialGraphView.cs │ │ │ ├── MaterialGraphView.cs.meta │ │ │ ├── MaterialNodeView.cs │ │ │ ├── MaterialNodeView.cs.meta │ │ │ ├── NodeSettingsView.cs │ │ │ ├── NodeSettingsView.cs.meta │ │ │ ├── PBRSettingsView.cs │ │ │ ├── PBRSettingsView.cs.meta │ │ │ ├── PortInputView.cs │ │ │ ├── PortInputView.cs.meta │ │ │ ├── PreviewSceneResources.cs │ │ │ ├── PreviewSceneResources.cs.meta │ │ │ ├── PropertyNodeView.cs │ │ │ ├── PropertyNodeView.cs.meta │ │ │ ├── PropertyRow.cs │ │ │ ├── PropertyRow.cs.meta │ │ │ ├── PropertySheet.cs │ │ │ ├── PropertySheet.cs.meta │ │ │ ├── ReorderableSlotListView.cs │ │ │ ├── ReorderableSlotListView.cs.meta │ │ │ ├── ShaderGroup.cs │ │ │ ├── ShaderGroup.cs.meta │ │ │ ├── ShaderPort.cs │ │ │ ├── ShaderPort.cs.meta │ │ │ ├── Slots.meta │ │ │ ├── Slots │ │ │ ├── BooleanSlotControlView.cs │ │ │ ├── BooleanSlotControlView.cs.meta │ │ │ ├── ColorRGBSlotControlView.cs │ │ │ ├── ColorRGBSlotControlView.cs.meta │ │ │ ├── ColorSlotControlView.cs │ │ │ ├── ColorSlotControlView.cs.meta │ │ │ ├── CubemapSlotControlView.cs │ │ │ ├── CubemapSlotControlView.cs.meta │ │ │ ├── GradientSlotControlView.cs │ │ │ ├── GradientSlotControlView.cs.meta │ │ │ ├── LabelSlotControlView.cs │ │ │ ├── LabelSlotControlView.cs.meta │ │ │ ├── MultiFloatSlotControlView.cs │ │ │ ├── MultiFloatSlotControlView.cs.meta │ │ │ ├── ScreenPositionSlotControlView.cs │ │ │ ├── ScreenPositionSlotControlView.cs.meta │ │ │ ├── Texture3DSlotControlView.cs │ │ │ ├── Texture3DSlotControlView.cs.meta │ │ │ ├── TextureArraySlotControlView.cs │ │ │ ├── TextureArraySlotControlView.cs.meta │ │ │ ├── TextureSlotControlView.cs │ │ │ ├── TextureSlotControlView.cs.meta │ │ │ ├── UVSlotControlView.cs │ │ │ └── UVSlotControlView.cs.meta │ │ │ ├── StickyNote.cs │ │ │ ├── StickyNote.cs.meta │ │ │ ├── UnlitSettingsView.cs │ │ │ └── UnlitSettingsView.cs.meta │ ├── Importers.meta │ ├── Importers │ │ ├── ShaderGraphAssetPostProcessor.cs │ │ ├── ShaderGraphAssetPostProcessor.cs.meta │ │ ├── ShaderGraphImporter.cs │ │ ├── ShaderGraphImporter.cs.meta │ │ ├── ShaderGraphImporterEditor.cs │ │ ├── ShaderGraphImporterEditor.cs.meta │ │ ├── ShaderGraphMetadata.cs │ │ ├── ShaderGraphMetadata.cs.meta │ │ ├── ShaderSubGraphImporter.cs │ │ ├── ShaderSubGraphImporter.cs.meta │ │ ├── ShaderSubGraphImporterEditor.cs │ │ ├── ShaderSubGraphImporterEditor.cs.meta │ │ ├── _.sgsubgraphdb │ │ └── _.sgsubgraphdb.meta │ ├── Internal.meta │ ├── Internal │ │ ├── Data.meta │ │ ├── Data │ │ │ ├── KeywordDescriptor.cs │ │ │ ├── KeywordDescriptor.cs.meta │ │ │ ├── KeywordEntry.cs │ │ │ ├── KeywordEntry.cs.meta │ │ │ ├── ShaderPass.cs │ │ │ └── ShaderPass.cs.meta │ │ ├── Enumerations.meta │ │ ├── Enumerations │ │ │ ├── KeywordDefinition.cs │ │ │ ├── KeywordDefinition.cs.meta │ │ │ ├── KeywordScope.cs │ │ │ ├── KeywordScope.cs.meta │ │ │ ├── KeywordType.cs │ │ │ ├── KeywordType.cs.meta │ │ │ ├── PropertyType.cs │ │ │ └── PropertyType.cs.meta │ │ ├── GraphCode.cs │ │ ├── GraphCode.cs.meta │ │ ├── OutputMetadata.cs │ │ ├── OutputMetadata.cs.meta │ │ ├── ShaderGraphVfxAsset.cs │ │ └── ShaderGraphVfxAsset.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── GraphView.meta │ │ ├── GraphView │ │ │ ├── Nodes.meta │ │ │ └── Nodes │ │ │ │ ├── BlackboardFieldExposed.png │ │ │ │ ├── BlackboardFieldExposed.png.meta │ │ │ │ ├── BlackboardFieldPillBackground.png │ │ │ │ ├── BlackboardFieldPillBackground.png.meta │ │ │ │ ├── NodeChevronDown.png │ │ │ │ ├── NodeChevronDown.png.meta │ │ │ │ ├── NodeChevronDown@2x.png │ │ │ │ ├── NodeChevronDown@2x.png.meta │ │ │ │ ├── NodeChevronLeft.png │ │ │ │ ├── NodeChevronLeft.png.meta │ │ │ │ ├── NodeChevronLeft@2x.png │ │ │ │ ├── NodeChevronLeft@2x.png.meta │ │ │ │ ├── NodeChevronRight.png │ │ │ │ ├── NodeChevronRight.png.meta │ │ │ │ ├── NodeChevronRight@2x.png │ │ │ │ ├── NodeChevronRight@2x.png.meta │ │ │ │ ├── NodeChevronUp.png │ │ │ │ ├── NodeChevronUp.png.meta │ │ │ │ ├── NodeChevronUp@2x.png │ │ │ │ ├── NodeChevronUp@2x.png.meta │ │ │ │ ├── PreviewCollapse.png │ │ │ │ ├── PreviewCollapse.png.meta │ │ │ │ ├── PreviewCollapse@2x.png │ │ │ │ ├── PreviewCollapse@2x.png.meta │ │ │ │ ├── PreviewExpand.png │ │ │ │ ├── PreviewExpand.png.meta │ │ │ │ ├── PreviewExpand@2x.png │ │ │ │ └── PreviewExpand@2x.png.meta │ │ ├── Icons.meta │ │ ├── Icons │ │ │ ├── SettingsIcons.png │ │ │ ├── SettingsIcons.png.meta │ │ │ ├── SettingsIcons@2x.png │ │ │ ├── SettingsIcons@2x.png.meta │ │ │ ├── SettingsIcons_hover.png │ │ │ ├── SettingsIcons_hover.png.meta │ │ │ ├── SettingsIcons_hover@2x.png │ │ │ ├── SettingsIcons_hover@2x.png.meta │ │ │ ├── Settings_Flyout_9slice.png │ │ │ ├── Settings_Flyout_9slice.png.meta │ │ │ ├── Settings_Flyout_9slice@2x.png │ │ │ ├── Settings_Flyout_9slice@2x.png.meta │ │ │ ├── settings_button.png │ │ │ ├── settings_button.png.meta │ │ │ ├── settingsbutton.png │ │ │ ├── settingsbutton.png.meta │ │ │ ├── sg_graph_icon@64.png │ │ │ ├── sg_graph_icon@64.png.meta │ │ │ ├── sg_graph_icon_gray_dark@16.png │ │ │ ├── sg_graph_icon_gray_dark@16.png.meta │ │ │ ├── sg_graph_icon_gray_light@16.png │ │ │ ├── sg_graph_icon_gray_light@16.png.meta │ │ │ ├── sg_subgraph_icon@64.png │ │ │ ├── sg_subgraph_icon@64.png.meta │ │ │ ├── sg_subgraph_icon_gray_dark@16.png │ │ │ ├── sg_subgraph_icon_gray_dark@16.png.meta │ │ │ ├── sg_subgraph_icon_gray_light@16.png │ │ │ └── sg_subgraph_icon_gray_light@16.png.meta │ │ ├── Resizable.uss │ │ ├── Resizable.uss.meta │ │ ├── Selectable.uss │ │ ├── Selectable.uss.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── BlitNoAlpha.shader │ │ │ ├── BlitNoAlpha.shader.meta │ │ │ ├── Checkerboard.shader │ │ │ ├── Checkerboard.shader.meta │ │ │ ├── FallbackError.shader │ │ │ └── FallbackError.shader.meta │ │ ├── StickyNote.uss │ │ ├── StickyNote.uss.meta │ │ ├── Styles.meta │ │ ├── Styles │ │ │ ├── Blackboard.uss │ │ │ ├── Blackboard.uss.meta │ │ │ ├── ColorMode.uss │ │ │ ├── ColorMode.uss.meta │ │ │ ├── Controls.meta │ │ │ ├── Controls │ │ │ │ ├── BooleanSlotControlView.uss │ │ │ │ ├── BooleanSlotControlView.uss.meta │ │ │ │ ├── ChannelEnumControlView.uss │ │ │ │ ├── ChannelEnumControlView.uss.meta │ │ │ │ ├── ChannelEnumMaskControlView.uss │ │ │ │ ├── ChannelEnumMaskControlView.uss.meta │ │ │ │ ├── ChannelMixerControlView.uss │ │ │ │ ├── ChannelMixerControlView.uss.meta │ │ │ │ ├── ColorControlView.uss │ │ │ │ ├── ColorControlView.uss.meta │ │ │ │ ├── ColorRGBASlotControlView.uss │ │ │ │ ├── ColorRGBASlotControlView.uss.meta │ │ │ │ ├── ColorRGBSlotControlView.uss │ │ │ │ ├── ColorRGBSlotControlView.uss.meta │ │ │ │ ├── CubemapSlotControlView.uss │ │ │ │ ├── CubemapSlotControlView.uss.meta │ │ │ │ ├── DielectricSpecularControlView.uss │ │ │ │ ├── DielectricSpecularControlView.uss.meta │ │ │ │ ├── EnumControlView.uss │ │ │ │ ├── EnumControlView.uss.meta │ │ │ │ ├── EnumConversionControlView.uss │ │ │ │ ├── EnumConversionControlView.uss.meta │ │ │ │ ├── GradientControlView.uss │ │ │ │ ├── GradientControlView.uss.meta │ │ │ │ ├── GradientSlotControlView.uss │ │ │ │ ├── GradientSlotControlView.uss.meta │ │ │ │ ├── IntegerControlView.uss │ │ │ │ ├── IntegerControlView.uss.meta │ │ │ │ ├── MultiFloatControlView.uss │ │ │ │ ├── MultiFloatControlView.uss.meta │ │ │ │ ├── MultiFloatSlotControlView.uss │ │ │ │ ├── MultiFloatSlotControlView.uss.meta │ │ │ │ ├── PopupControlView.uss │ │ │ │ ├── PopupControlView.uss.meta │ │ │ │ ├── ScreenPositionSlotControlView.uss │ │ │ │ ├── ScreenPositionSlotControlView.uss.meta │ │ │ │ ├── SliderControlView.uss │ │ │ │ ├── SliderControlView.uss.meta │ │ │ │ ├── Texture3DSlotControlView.uss │ │ │ │ ├── Texture3DSlotControlView.uss.meta │ │ │ │ ├── TextureArraySlotControlView.uss │ │ │ │ ├── TextureArraySlotControlView.uss.meta │ │ │ │ ├── TextureSlotControlView.uss │ │ │ │ ├── TextureSlotControlView.uss.meta │ │ │ │ ├── ToggleControlView.uss │ │ │ │ ├── ToggleControlView.uss.meta │ │ │ │ ├── UVSlotControlView.uss │ │ │ │ └── UVSlotControlView.uss.meta │ │ │ ├── GraphEditorView.uss │ │ │ ├── GraphEditorView.uss.meta │ │ │ ├── HlslFunctionView.uss │ │ │ ├── HlslFunctionView.uss.meta │ │ │ ├── MasterPreviewView.uss │ │ │ ├── MasterPreviewView.uss.meta │ │ │ ├── MaterialGraph.uss │ │ │ ├── MaterialGraph.uss.meta │ │ │ ├── MaterialGraphView.uss │ │ │ ├── MaterialGraphView.uss.meta │ │ │ ├── MaterialNodeView.uss │ │ │ ├── MaterialNodeView.uss.meta │ │ │ ├── NodeSettings.uss │ │ │ ├── NodeSettings.uss.meta │ │ │ ├── PixelCacheProfiler.uss │ │ │ ├── PixelCacheProfiler.uss.meta │ │ │ ├── PortInputView.uss │ │ │ ├── PortInputView.uss.meta │ │ │ ├── PropertyNameReferenceField.uss │ │ │ ├── PropertyNameReferenceField.uss.meta │ │ │ ├── PropertyNodeView.uss │ │ │ ├── PropertyNodeView.uss.meta │ │ │ ├── PropertyRow.uss │ │ │ ├── PropertyRow.uss.meta │ │ │ ├── PropertySheet.uss │ │ │ ├── PropertySheet.uss.meta │ │ │ ├── ReorderableSlotListView.uss │ │ │ ├── ReorderableSlotListView.uss.meta │ │ │ ├── ShaderGraphBlackboard.uss │ │ │ ├── ShaderGraphBlackboard.uss.meta │ │ │ ├── ShaderPort.uss │ │ │ ├── ShaderPort.uss.meta │ │ │ ├── ShaderPropertyView.uss │ │ │ └── ShaderPropertyView.uss.meta │ │ ├── UXML.meta │ │ └── UXML │ │ │ ├── GraphView.meta │ │ │ ├── GraphView │ │ │ ├── Blackboard.uxml │ │ │ ├── Blackboard.uxml.meta │ │ │ ├── BlackboardField.uxml │ │ │ ├── BlackboardField.uxml.meta │ │ │ ├── BlackboardRow.uxml │ │ │ ├── BlackboardRow.uxml.meta │ │ │ ├── BlackboardSection.uxml │ │ │ └── BlackboardSection.uxml.meta │ │ │ ├── NodeSettings.uxml │ │ │ ├── NodeSettings.uxml.meta │ │ │ ├── PixelCacheProfiler.uxml │ │ │ ├── PixelCacheProfiler.uxml.meta │ │ │ ├── Resizable.uxml │ │ │ ├── Resizable.uxml.meta │ │ │ ├── StickyNote.uxml │ │ │ └── StickyNote.uxml.meta │ ├── ShaderGUI.meta │ ├── ShaderGUI │ │ ├── PBRMasterGUI.cs │ │ └── PBRMasterGUI.cs.meta │ ├── ShaderGraphPreferences.cs │ ├── ShaderGraphPreferences.cs.meta │ ├── Templates.meta │ ├── Templates │ │ ├── PassMesh.template │ │ └── PassMesh.template.meta │ ├── Unity.ShaderGraph.Editor.asmdef │ ├── Unity.ShaderGraph.Editor.asmdef.meta │ ├── Util.meta │ ├── Util │ │ ├── CompatibilityExtensions.cs │ │ ├── CompatibilityExtensions.cs.meta │ │ ├── CopyPasteGraph.cs │ │ ├── CopyPasteGraph.cs.meta │ │ ├── CreateSerializableGraph.cs │ │ ├── CreateSerializableGraph.cs.meta │ │ ├── FileUtilities.cs │ │ ├── FileUtilities.cs.meta │ │ ├── IndexSet.cs │ │ ├── IndexSet.cs.meta │ │ ├── MessageManager.cs │ │ ├── MessageManager.cs.meta │ │ ├── TypeMapper.cs │ │ ├── TypeMapper.cs.meta │ │ ├── TypeMapping.cs │ │ ├── TypeMapping.cs.meta │ │ ├── UIUtilities.cs │ │ └── UIUtilities.cs.meta │ ├── Utilities.meta │ └── Utilities │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.cs.meta │ │ ├── EnumInfo.cs │ │ ├── EnumInfo.cs.meta │ │ ├── StringBuilderExtensions.cs │ │ ├── StringBuilderExtensions.cs.meta │ │ ├── Unity.ShaderGraph.Utilities.asmdef │ │ └── Unity.ShaderGraph.Utilities.asmdef.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Samples~ │ └── ProceduralPatterns │ │ ├── .sample.json │ │ ├── Bacteria.ShaderSubGraph │ │ ├── Bacteria.ShaderSubGraph.meta │ │ ├── BacteriaSmoothstep.shadersubgraph │ │ ├── BacteriaSmoothstep.shadersubgraph.meta │ │ ├── Brick.ShaderSubGraph │ │ ├── Brick.ShaderSubGraph.meta │ │ ├── Dots.ShaderSubGraph │ │ ├── Dots.ShaderSubGraph.meta │ │ ├── Grid.ShaderSubGraph │ │ ├── Grid.ShaderSubGraph.meta │ │ ├── Herringbone.ShaderSubGraph │ │ ├── Herringbone.ShaderSubGraph.meta │ │ ├── Hex Lattice.ShaderSubGraph │ │ ├── Hex Lattice.ShaderSubGraph.meta │ │ ├── Houndstooth.ShaderSubGraph │ │ ├── Houndstooth.ShaderSubGraph.meta │ │ ├── Smooth Wave.ShaderSubGraph │ │ ├── Smooth Wave.ShaderSubGraph.meta │ │ ├── Spiral.ShaderSubGraph │ │ ├── Spiral.ShaderSubGraph.meta │ │ ├── Stripes.ShaderSubGraph │ │ ├── Stripes.ShaderSubGraph.meta │ │ ├── Truchet.ShaderSubGraph │ │ ├── Truchet.ShaderSubGraph.meta │ │ ├── Whirl.ShaderSubGraph │ │ ├── Whirl.ShaderSubGraph.meta │ │ ├── Zig Zag.ShaderSubGraph │ │ └── Zig Zag.ShaderSubGraph.meta │ ├── ShaderGraphLibrary.meta │ ├── ShaderGraphLibrary │ ├── DummyShaderGraphLibrary.cs │ ├── DummyShaderGraphLibrary.cs.meta │ ├── Functions.hlsl │ ├── Functions.hlsl.meta │ ├── GeometricTools.hlsl │ ├── GeometricTools.hlsl.meta │ ├── ShaderConfig.cs.hlsl │ ├── ShaderConfig.cs.hlsl.meta │ ├── ShaderVariables.hlsl │ ├── ShaderVariables.hlsl.meta │ ├── ShaderVariablesFunctions.hlsl │ ├── ShaderVariablesFunctions.hlsl.meta │ ├── ShaderVariablesMatrixDefsLegacyUnity.hlsl │ ├── ShaderVariablesMatrixDefsLegacyUnity.hlsl.meta │ ├── Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.asmdef │ └── Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.asmdef.meta │ ├── Tests.meta │ ├── Tests │ ├── .tests.json │ ├── Editor.meta │ └── Editor │ │ ├── IntegrationTests.meta │ │ ├── IntegrationTests │ │ ├── SerializationTests.cs │ │ └── SerializationTests.cs.meta │ │ ├── TestNode.cs │ │ ├── TestNode.cs.meta │ │ ├── TestSlot.cs │ │ ├── TestSlot.cs.meta │ │ ├── UnitTests.meta │ │ ├── UnitTests │ │ ├── AbstractMaterialGraphTests.cs │ │ ├── AbstractMaterialGraphTests.cs.meta │ │ ├── DynamicSlotTests.cs │ │ ├── DynamicSlotTests.cs.meta │ │ ├── FixedSlotTests.cs │ │ ├── FixedSlotTests.cs.meta │ │ ├── MaterialGraphTests.cs │ │ ├── MaterialGraphTests.cs.meta │ │ ├── MaterialNodeTests.cs │ │ ├── MaterialNodeTests.cs.meta │ │ ├── MaterialSlotTests.cs │ │ ├── MaterialSlotTests.cs.meta │ │ ├── MessageManagerTests.cs │ │ ├── MessageManagerTests.cs.meta │ │ ├── PixelShaderNodeTests.cs │ │ ├── PixelShaderNodeTests.cs.meta │ │ ├── PropertyChunkTests.cs │ │ ├── PropertyChunkTests.cs.meta │ │ ├── PropertyGeneratorTests.cs │ │ ├── PropertyGeneratorTests.cs.meta │ │ ├── PropertyNodeTests.cs │ │ ├── PropertyNodeTests.cs.meta │ │ ├── SerializedGraphTests.cs │ │ ├── SerializedGraphTests.cs.meta │ │ ├── ShaderGeneratorTests.cs │ │ ├── ShaderGeneratorTests.cs.meta │ │ ├── ShaderSourceMapTests.cs │ │ └── ShaderSourceMapTests.cs.meta │ │ ├── Unity.ShaderGraph.Editor.Tests.asmdef │ │ └── Unity.ShaderGraph.Editor.Tests.asmdef.meta │ ├── package.json │ └── package.json.meta ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /Assets/ExampleAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 990f5c2df70993f4987a388ca178996a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffd318dbb37362c4f8d87863d082b2fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92ef32394b5f474385d74b565a7bdd7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Materials/OBS_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c438e5c679f1be040a135443008e2fce 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Materials/PlanarShadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33d7dfbb3e4fc5443ac63c039bf102b9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Materials/Stud_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 027cb3d3d7dc79d41ad763e01759de07 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa97895f3852bd44399ef0893bec4f5e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/ConstructionLight_Low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/Stud.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/Stud.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/Workbench.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/Workbench.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/Workbench_Low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/Workbench_Low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/Workshop_Set.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/Workshop_Set.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/brush_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/brush_low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/hammer_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/hammer_low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/jigsaw_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/jigsaw_low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/magneticlevel_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/magneticlevel_low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/paintbucket_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/paintbucket_low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/safetygoggles_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/safetygoggles_low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/safetyhat_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/safetyhat_low.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Models/small_plane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Models/small_plane.fbx -------------------------------------------------------------------------------- /Assets/ExampleAssets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e04804d4b233d04d92ef41852c3f676 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Prefabs/Construction Light Low.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf0a225a9ff184f2789f3036faaa9150 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Prefabs/Paint Supplies.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 283e6530a665e4513959d1cd4883682f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Prefabs/Props.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85dfab9623c67784fa7894de63cd1604 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Prefabs/Workbench.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8850d132797ff49298ba781e8e1c9bfe 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0adcaeba3022437293536832628fdf8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d5ecfa2b93c4095b4cc5d4a590e676 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb6819cbd279a3941a65f1689b2f621e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cc500c8cdb999142b9017ebf0cf407d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Concrete.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47c259102c9296845a85c9d7207b82f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Drywall.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0389f6104fd857940908a1705ab749f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Metal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c805204817006b648aa2d0cb8f7861d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64d6ecb2a87dd444b85a7ff79b149c04 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abf7b1f1f7dfcba4c9243d4679f56e71 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Construction_Light.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa8e348df46f41a40866e1358c46c58a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Hammer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65ba28c90924bf641b0800d7c3aa08eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/HardHat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d8107af768e1c54aab35a9245f96fb1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Jigsaw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f23328cbe6fee514b868007ab8567c3d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 661b3094cbb8d57488db75686cf31627 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Wood.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cebb473fb6009324ea0c85fcc4debbdf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0234ba368eeec9418390da711bfdad0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Skybox_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ffaa0b7117ba8c47a9d05ae701d4b4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Presets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 558255460b74ec04fa70b5570e9327bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Presets/AudioCompressedInMemory.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dd802e4d37c65149922028d3e973832 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Presets/Defaults.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71ea82b02df99c2439e0dc8e4e1ebc24 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Readme.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83c2ed844a8c74b779a4c823d16594b1 3 | timeCreated: 1484217493 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d2f4bc03fbb24749ace9bd8fbc290d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1c3109bdb54ad54c8a2b2838528e640 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02a3527b6b33a924e8ec66aa805ea717 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0735c275001a2c84dafdb30deced5d8d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Settings/ForwardRenderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a8e21d5c33334b11b34a596161b9360 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10fc4df2da32a41aaa32d77bc913491c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-HighQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19ba41d7c0026c3459d37c2fe90c55a0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-LowQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31e9f9f9c9d4b9429ed0d1234e22103 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-MediumQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d847b876476d3d6468f5dfcd34266f96 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/TutorialInfo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49110bb8dcada46328ad741970bce702 3 | folderAsset: yes 4 | timeCreated: 1475590612 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons/Help_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/TutorialInfo/Icons/Help_Icon.png -------------------------------------------------------------------------------- /Assets/TutorialInfo/Icons/UniversalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Assets/TutorialInfo/Icons/UniversalIcon.png -------------------------------------------------------------------------------- /Assets/TutorialInfo/Layout.wlt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eabc9546105bf4accac1fd62a63e88e6 3 | timeCreated: 1487337779 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/.npmignore: -------------------------------------------------------------------------------- 1 | sub-package.* 2 | upm-ci~/** 3 | .Editor/** 4 | .yamato/** 5 | *.zip* 6 | TestRunnerOptions.json 7 | .idea/** -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20456a2cc8a214f9d9846725cff9fea4 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Documentation~/Images/FreeCamera1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Documentation~/Images/FreeCamera1.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/Gizmo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bce47e7c42ffde449812bbbf027555d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d4bb8a5c15072e4baaabe7e161d42b6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Add.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Add@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera1.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera1@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera2.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Camera2@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/CenterLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/CenterLight.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/CenterLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/CenterLight@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Duplicate.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Duplicate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Duplicate@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Environment.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Environment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Environment@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout1.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout1@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout2.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Layout2@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LayoutCustom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LayoutCustom.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LayoutVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LayoutVertical.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LeftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LeftArrow.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LeftArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LeftArrow@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Link.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Link@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LookDev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LookDev.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LookDev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/LookDev@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Remove.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Remove@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/RenderDoc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/RenderDoc@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/RightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/RightArrow.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/RightArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/RightArrow@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Rotation.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Rotation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/Rotation@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/SunPosition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/SunPosition.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/SunPosition@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/SunPosition@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Add.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Add@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera1.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera1@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera2.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Camera2@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_CenterLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_CenterLight.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Duplicate.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Duplicate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Duplicate@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Environment.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout1.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout1@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout2.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Layout2@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LayoutCustom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LayoutCustom.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LeftArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LeftArrow.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LeftArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LeftArrow@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Link.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Link@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LookDev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LookDev.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LookDev@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_LookDev@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Remove.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Remove@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_RenderDoc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_RenderDoc@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_RightArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_RightArrow.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Rotation.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Rotation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_Rotation@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_SunPosition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_SunPosition.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_renderdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/d_renderdoc.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/renderdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.core/Editor/LookDev/Icons/renderdoc.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Editor/Volume.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 138c0b127ef07fd428612196694d782f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba4b5cdf8466e485ab792e0e4e45af25 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89c766a6aa0579c4b9f01bbbe5a45dfd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Runtime/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e58bd4f13d26cde488393d3a2e9bf9cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Runtime/Inputs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab163df5559af4efdb19baea5917049c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Runtime/Script.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d268f48e28034e498a927bb0e47c59e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Runtime/Volume.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1189cbf559a12c64e92584c52d17a4a0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/ShaderLibrary/Unity.RenderPipelines.Core.ShaderLibrary.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Unity.RenderPipelines.Core.ShaderLibrary" 3 | } -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c67acbbc1ebd5a479b3bef04c939d02 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": false 3 | } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 278a7d565ddb1e840ac57ad1bb121e56 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/Tests/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a189334a4e37b1247af4cfcedc20802c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.core/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 753d1ac2429a21a44ac5f937cbbb409f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/.npmignore: -------------------------------------------------------------------------------- 1 | sub-package.* -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5926773f2795e814cb3941ce80c064f8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Documentation~/Getting-Started.md: -------------------------------------------------------------------------------- 1 | #Please use the Universal Render Pipeline -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c1a72948ea95ac4c81b36b7def23d2f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/Core.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.lightweight/ShaderLibrary/Version.hlsl" 2 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Core.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/Input.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Input.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/Lighting.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Lighting.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/MetaInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/MetaInput.hlsl" 2 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/Particles.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Particles.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/ShaderGraphFunctions.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/ShaderGraphFunctions.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/Shadows.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/Shadows.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/SurfaceInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/SurfaceInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/ShaderLibrary/UnityInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/ShaderLibrary/UnityInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5939fa865f4067b428b3aaab42ce5a3f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/2D/Include/CombinedShapeLightShared.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/CombindedShapeLightShared.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/2D/Include/LightingUtility.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/LightingUtility.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/2D/Include/NormalsRenderingShared.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/2D/Include/NormalsRenderingShared.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/BakedLitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/BakedLitInput.hlsl" 2 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/BakedLitMetaPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/BakedLitMetaPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/DepthOnlyPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/DepthOnlyPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/LitForwardPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/LitForwardPass.hlsl" 2 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/LitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/LitInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/LitMetaPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/LitMetaPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree7BillboardInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree7BillboardInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree7BillboardPasses.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree7BillboardPasses.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree7CommonInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree7CommonInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree7CommonPasses.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree7CommonPasses.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree7Input.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree7Input.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree7Passes.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree7Passes.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree8Input.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree8Input.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Nature/SpeedTree8Passes.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Nature/SpeedTree8Passes.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Particles/ParticlesLitForwardPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesLitForwardPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Particles/ParticlesLitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesLitInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Particles/ParticlesSimpleLitForwardPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesSimpleLitForwardPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Particles/ParticlesSimpleLitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesSimpleLitInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Particles/ParticlesUnlitForwardPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesUnlitForwardPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Particles/ParticlesUnlitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Particles/ParticlesUnlitInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/ShadowCasterPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/ShadowCasterPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/SimpleLitForwardPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/SimpleLitForwardPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/SimpleLitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/SimpleLitInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/SimpleLitMetaPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/SimpleLitMetaPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Terrain/TerrainLitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Terrain/TerrainLitInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Terrain/TerrainLitMetaPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Terrain/TerrainLitMetaPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Terrain/TerrainLitPasses.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Terrain/TerrainLitPasses.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Terrain/WavingGrassInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Terrain/WavingGrassInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Terrain/WavingGrassPasses.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Terrain/WavingGrassPasses.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/UnlitInput.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/UnlitInput.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/UnlitMetaPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/UnlitMetaPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Utils/CopyDepthPass.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Utils/CopyDepthPass.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Shaders/Utils/Lightweight2D.hlsl: -------------------------------------------------------------------------------- 1 | #include "Packages/com.unity.render-pipelines.universal/Shaders/Utils/Universal2D.hlsl" -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe7b37595653fb4f933f0294d538782 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.lightweight/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f43814c2d05a6e14886a10140b08aa92 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/.npmignore: -------------------------------------------------------------------------------- 1 | sub-package.* -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16b5d2a7d862f49ffb9453600e8ee776 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_0.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_1.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_10.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_11.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_12.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_13.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_14.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_15.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_16.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_17.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_18.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_19.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_2.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_20.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_21.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_22.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_23.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_24.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_25.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_26.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_27.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_28.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_29.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_3.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_30.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_31.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_32.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_33.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_34.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_35.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_36.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_37.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_38.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_39.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_4.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_40.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_41.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_42.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_43.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_44.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_45.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_46.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_47.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_48.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_49.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_5.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_50.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_51.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_52.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_53.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_54.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_6.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_7.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_8.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Documentation~/Images/image_9.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/camera-inspector.md: -------------------------------------------------------------------------------- 1 | **Important:** This page is still a work in progress. To read our most current documentation, open the [*TableOfContents.md*](TableOfContents.md) file to see the linked pages. -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/camera.md: -------------------------------------------------------------------------------- 1 | **Important:** This page is still a work in progress. To read our most current documentation, open the [*TableOfContents.md*](TableOfContents.md) file to see the linked pages. -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/forward-renderer.md: -------------------------------------------------------------------------------- 1 | **Important:** This page is still a work in progress. To read our most current documentation, open the [*TableOfContents.md*](TableOfContents.md) file to see the linked pages. -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Documentation~/light-inspector.md: -------------------------------------------------------------------------------- 1 | **Important:** This page is still a work in progress. To read our most current documentation, open the [*TableOfContents.md*](TableOfContents.md) file to see the linked pages. -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53c20613ce8ac478dba8507359e02516 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3fb8b56aca55544ca9b8d53bc19e031 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/2D/Resources/LightCapUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Editor/2D/Resources/LightCapUp.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/2D/ShapeEditor/Selection/ISelector.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Experimental.Rendering.Universal.Path2D 2 | { 3 | internal interface ISelector 4 | { 5 | bool Select(T element); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/AssetVersion.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace UnityEditor.Rendering.Universal 4 | { 5 | class AssetVersion : ScriptableObject 6 | { 7 | public int version; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_Base.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_Offscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_Offscreen.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_Overlay.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Editor/Gizmos/Camera_UI.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eecaac92122b4407f8bf4998e8708aee 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79e8584360be43649ad60cb0f180e904 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 248877dd7078443d6b51abf21ee7d52a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Shaders/Shaders.cs: -------------------------------------------------------------------------------- 1 | // UniversalPR Shaders folder need an Assembly Definition files to create a .cs project 2 | // This is a dummy shader file so the Shaders assembly is not empty. 3 | class ShadersDummy { } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90821e75f62bb9e4ea9d6111201e1d90 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": false 3 | } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6970e3730c799f44ab472c8aa6c4b431 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Large01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Large01.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Large02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Large02.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium01.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium02.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium03.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium04.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium05.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Medium06.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Thin01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Thin01.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Thin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/FilmGrain/Thin02.png -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/SMAA/AreaTex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/SMAA/AreaTex.tga -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/Textures/SMAA/SearchTex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.render-pipelines.universal/Textures/SMAA/SearchTex.tga -------------------------------------------------------------------------------- /Packages/src/com.unity.render-pipelines.universal/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30648b8d550465f4bb77f1e1afd0b37d 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/.npmignore: -------------------------------------------------------------------------------- 1 | artifacts/** 2 | build/** 3 | /Editor/Testing* 4 | /.collabignore 5 | /.gitignore 6 | /.gitmodules 7 | .npmignore 8 | upm-ci~/** 9 | .Editor/** 10 | .yamato/** 11 | *.zip* 12 | TestRunnerOptions.json 13 | .idea/** -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d652dd37e32b64cc9b4e36a1e7ddf1b8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/AbsoluteNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/AbsoluteNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/AddNodePage01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/AddNodePage01.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/AddNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/AddNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/AllNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/AllNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/AmbientNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/AmbientNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/AndNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/AndNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/AnyNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/AnyNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ArccosineNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ArccosineNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ArcsineNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ArcsineNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Arctangent2NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Arctangent2NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ArctangentNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ArctangentNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Blackboard.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/BlendNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/BlendNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/BooleanNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/BooleanNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/BranchNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/BranchNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/CameraNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/CameraNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/CeilingNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/CeilingNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ChannelMaskNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ChannelMaskNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ChannelMixerNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ChannelMixerNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/CheckerboardNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/CheckerboardNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ClampNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ClampNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Color-Mode-Category.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Color-Mode-Category.PNG -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Color-Mode-Precision.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Color-Mode-Precision.PNG -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Color-Mode-User-Defined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Color-Mode-User-Defined.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ColorMaskNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ColorMaskNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ColorNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ColorNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/CombineNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/CombineNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ComparisonNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ComparisonNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ConstantNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ConstantNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ContrastNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ContrastNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/CosineNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/CosineNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/CrossProductNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/CrossProductNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/CubemapAssetNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/CubemapAssetNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Function-Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Function-Node.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Add.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Empty.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Remove.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Custom-Port-Menu-Rename.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/DDXNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/DDXNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/DDXYNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/DDXYNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/DDYNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/DDYNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/DistanceNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/DistanceNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/DitherNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/DitherNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/DivideNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/DivideNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/DotProductNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/DotProductNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/EllipseNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/EllipseNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ExponentialNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ExponentialNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/FlipNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/FlipNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/FlipbookNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/FlipbookNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/FloorNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/FloorNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/FogNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/FogNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/FractionNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/FractionNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/GradientNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/GradientNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/HueNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/HueNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/IntegerNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/IntegerNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/InverseLerpNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/InverseLerpNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/IsFrontFaceNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/IsFrontFaceNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/IsInfiniteNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/IsInfiniteNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/IsNaNNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/IsNaNNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LengthNodePage02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LengthNodePage02.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LengthNodePage03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LengthNodePage03.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LengthNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LengthNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LerpNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LerpNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LightProbeNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LightProbeNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LogNodePage01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LogNodePage01.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LogNodePage02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LogNodePage02.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/LogNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/LogNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/MainPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/MainPreview.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/MasterNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/MasterNode.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Matrix2x2NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Matrix2x2NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Matrix3x3NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Matrix3x3NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Matrix4x4NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Matrix4x4NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/MatrixSplitNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/MatrixSplitNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/MaximumNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/MaximumNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/MinimumNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/MinimumNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ModuloNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ModuloNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/MultiplyNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/MultiplyNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/NandNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/NandNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/NegateNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/NegateNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/NormalBlendNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/NormalBlendNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/NormalizeNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/NormalizeNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/NotNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/NotNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ObjectNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ObjectNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/OneMinusNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/OneMinusNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/OrNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/OrNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PBRMasterNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PBRMasterNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PatternSamples_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PatternSamples_01.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PatternSamples_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PatternSamples_02.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Patterns_Page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Patterns_Page.PNG -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PolygonNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PolygonNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PositionNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PositionNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PosterizeNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PosterizeNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PowerNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PowerNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Precision_DropDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Precision_DropDown.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Precision_Per_Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Precision_Per_Node.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/PreviewNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/PreviewNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ProjectionNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ProjectionNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/RadialShearNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/RadialShearNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/RandomRangeNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/RandomRangeNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ReciprocalNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ReciprocalNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/RectangleNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/RectangleNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ReflectionNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ReflectionNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/RejectionNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/RejectionNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/RemapNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/RemapNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/RotateNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/RotateNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/RoundNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/RoundNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SaturateNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SaturateNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SaturationNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SaturationNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SceneColorNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SceneColorNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SceneDepthNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SceneDepthNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ScreenNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ScreenNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Shader-Graph-Toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Shader-Graph-Toolbar.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/ShaderGraphWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/ShaderGraphWindow.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SignNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SignNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SimpleNoiseNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SimpleNoiseNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SineNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SineNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SliderNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SliderNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SmoothstepNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SmoothstepNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SphereMaskNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SphereMaskNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SpherizeNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SpherizeNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SplitNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SplitNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SquareRootNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SquareRootNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SquareWaveNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SquareWaveNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/StepNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/StepNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SubgraphNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SubgraphNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SubtractNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SubtractNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/SwizzleNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/SwizzleNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/TangentNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/TangentNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/TexelSizeNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/TexelSizeNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/TimeNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/TimeNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/TransformNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/TransformNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/TriplanarNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/TriplanarNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/TruncateNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/TruncateNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/TwirlNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/TwirlNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/UVNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/UVNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/UnlitMasterNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/UnlitMasterNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Vector1NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Vector1NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Vector2NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Vector2NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Vector3NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Vector3NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/Vector4NodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/Vector4NodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/VertexColorNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/VertexColorNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/VoronoiNodeThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/VoronoiNodeThumb.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/keywords_boolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/keywords_boolean.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/keywords_built-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/keywords_built-in.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Documentation~/images/keywords_enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Documentation~/images/keywords_enum.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af35822cb60c9a44cba3e3f0317ac0ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/CodeGen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4a2b3d2dd6f5468a8423947316be163 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/CodeGen/GenerationResults.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c922293e622b43f4a1cd25a1246a17dc 3 | timeCreated: 1513866299 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/CodeGen/ShaderSourceMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6c222989d9946e8a85c01ba541f4b41 3 | timeCreated: 1513867574 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/CodeGen/ShaderStringBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e64ba38b003f49bdb6ae4a2259be61c6 3 | timeCreated: 1513172221 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f56929b05da66c942ad2e3fe376346fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f329b5b280b7f6f449659f05937ac2f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/AbstractMaterialGraphAsset.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/AbstractShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1411039ed1342fa8efff6fa8a4c179d 3 | timeCreated: 1505346915 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/BooleanShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8891f9466e6b01c498c3f4b2c6abc0eb 3 | timeCreated: 1505346922 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/ColorMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89d670f0d46a47d08be1209a78765617 3 | timeCreated: 1510659340 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/ColorRGBMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a29c1f6321a430d439c5623e2a44f397 3 | timeCreated: 1510659340 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/ColorShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47cf9e64b21b48b09320f42eb82ac3c3 3 | timeCreated: 1505346940 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/CubemapInputMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b961f6f7e2617446afb6a8e329d84d4 3 | timeCreated: 1509276977 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/CubemapShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca5ddce766d5ae24f8be282b4f7a21bd 3 | timeCreated: 1505346949 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/GradientShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 544078fab8a6b410f907cc3ae58d977f 3 | timeCreated: 1505346949 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/IMaterialGraphAsset.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/IMaterialSlotHasValue.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | interface IMaterialSlotHasValue 4 | { 5 | T defaultValue { get; } 6 | T value { get; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Matrix2ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0755d7f7a7e11cb4294563bbd0d434cc 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Matrix3ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95c9c50f50c70c8479180b855a3bd255 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Matrix4ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6379ce3fb15957343ba875d18f87efbc 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/MatrixShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79075442664faac49b00b4c93d28e08b 3 | timeCreated: 1505408377 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/PreviewMode.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | enum PreviewMode 4 | { 5 | Preview2D, 6 | Preview3D, 7 | Wireframe 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/SamplerStateShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b48a2e97e3e24303833a0062f90f4f13 3 | timeCreated: 1505436387 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/SerializableCubemap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01e80e004e94f5e48ad1cb83d5701300 3 | timeCreated: 1505346945 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/SerializableGuid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb9a23efd2bc46e9a5e34bf5ff0c9768 3 | timeCreated: 1507479217 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/SerializableTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4a4ff926ce74b059400bb049aefcba2 3 | timeCreated: 1505346945 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/SerializableTextureArray.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9807a630579843d5a2e956e776b0d3d 3 | timeCreated: 1505346945 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/ShaderGraphRequirements.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b80c0c5cd7f940d7bc0f37b22c454d40 3 | timeCreated: 1505698038 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/SpaceMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66199806246c45e493afdfc09208cbdc 3 | timeCreated: 1509290088 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Texture2DArrayInputMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56d6d3c32403e4aa1af1fc8b307c0133 3 | timeCreated: 1509276977 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Texture2DArrayShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e63504c5144748fd844c188e96e941b 3 | timeCreated: 1505346949 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Texture2DInputMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebeb3a21d05d49caa5d3318fb49b7612 3 | timeCreated: 1509276977 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Texture3DInputMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa82e95b6172d4aafaed3656eb9d0a03 3 | timeCreated: 1509276977 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Texture3DShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa05c5d2d4d374703b6c59248a30fca3 3 | timeCreated: 1505346949 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/TextureSamplerState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0238123ffe44c05bc05acf347c4d52d 3 | timeCreated: 1505436371 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Vector1ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 572cce24ed76430db4c21dfe82d01252 3 | timeCreated: 1505346922 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Vector2ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbd5691737554a15ab0b098fca999382 3 | timeCreated: 1505346926 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Vector3ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34a68571f5ae4ebe8221824597dc0675 3 | timeCreated: 1505346931 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/Vector4ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3989871719194dbdba09613ac74761b3 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Graphs/VectorShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f83ebb04c5c4df184601ef18aa7d89d 3 | timeCreated: 1505408377 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Implementation/GraphObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 463ff292c8554dc18fb52fb725707a21 3 | timeCreated: 1508144011 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Implementation/SlotType.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | enum SlotType 4 | { 5 | Input, 6 | Output 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/Graph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20d63795c62940409089af61496db945 3 | timeCreated: 1513348939 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/Graph/IOnAssetEnabled.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | interface IOnAssetEnabled 4 | { 5 | void OnEnable(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/IGroupItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | interface IGroupItem 6 | { 7 | Guid groupGuid { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireFaceSign.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23f5d9c2f1ec442a7b8c59e893a6724d 3 | timeCreated: 1512469767 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireMeshUV.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c23e123c3ff140c997d68b663b484f29 3 | timeCreated: 1512469718 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireNormal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51bb8f11fbcf43f9bcec6418f1991397 3 | timeCreated: 1504092018 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireScreenPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7223ad4b07146cc98966aad000f017d 3 | timeCreated: 1512469767 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireVertexColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04d654703054418c8db537b52ae070dc 3 | timeCreated: 1512469863 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Interfaces/NeededCoordinateSpace.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ad845bb8ef34e4589bcf630a8a8a31a 3 | timeCreated: 1505627582 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/MasterNodes/IPBRSubShader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | interface IPBRSubShader : ISubShader 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/MasterNodes/IUnlitSubShader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | interface IUnlitSubShader : ISubShader 6 | {} 7 | } 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Nodes/FormerNameAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae5b0289aecc42c2b6f5b5b08b80bdd9 3 | timeCreated: 1513592955 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Nodes/NormalMapSpace.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | enum NormalMapSpace 6 | { 7 | Tangent, 8 | Object 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Nodes/ShaderStage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02d8af4c3fb9404ba3d6689c815c18d2 3 | timeCreated: 1504863207 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Util/DictionaryPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7624128bb110449387b7142499b45c91 3 | timeCreated: 1504252645 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Util/FunctionRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4fc6f4e30c408f9c0304cbed39a076 3 | timeCreated: 1513609614 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Util/GraphUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 130a64d32c054c5fb51b1e5e13f93fc2 3 | timeCreated: 1513590591 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Util/Identifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 084958a703164b0fa26e0667aaa1767f 3 | timeCreated: 1513937833 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Util/QueuePool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e895afeaf2a438195fbc4de17a4bedc 3 | timeCreated: 1505278549 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Data/Util/StackPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93c41a4331c94d09a7561ea6b4983439 3 | timeCreated: 1505275069 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardFieldKeywordView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 760efc4b9b9e58d4bb8ab27436fcf9e5 3 | timeCreated: 1516704904 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardFieldPropertyView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d71f7c86172344198783dacd26515c28 3 | timeCreated: 1516704904 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardFieldView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f95ec15efc1ae634295035b47def7ec5 3 | timeCreated: 1516704904 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bfb865d7a5e403682e681321336d241 3 | timeCreated: 1516713025 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29309be0e1004fad967256187775c528 3 | timeCreated: 1507642261 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/ChannelEnumControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74fdde12d8253bd4c874acc555be0585 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/ChannelEnumMaskControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c32d860c6f767f14fa889dffac527bc5 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/DefaultControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20e01cb163f347c7819ae286c33baf85 3 | timeCreated: 1507642280 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/DielectricSpecularControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20b1492eed8154d8f9a454e3563d9c01 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/EnumControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a1e13c5e67541d7ad7ae18ea5a834e4 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/EnumConversionControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50c6ddf46f8445fba2689962d438c227 3 | timeCreated: 1512640228 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/IControlAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f008211c3394775bdefde0b20e5c8ff 3 | timeCreated: 1507642348 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/IntegerControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57d18a57866821542806ab5253cf4310 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/ObjectControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f483132ae7b4689b20fd6b8c59633b5 3 | timeCreated: 1507900115 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/ToggleControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e83ab8eb10c20c4fbed2700d4f4f11c 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Controls/VectorControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a515dc1bacc453b870777d8da9a7211 3 | timeCreated: 1507642288 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/EdgeConnectorListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c61698900b42c9a6b5e28c3651249a 3 | timeCreated: 1512740035 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/INodeModificationListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22f268830a014848b3a8bfdd5142a2d0 3 | timeCreated: 1510751718 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Inspector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d1f4aaa81084a13aaeb78dfaf7d35d7 3 | timeCreated: 1503663057 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Manipulators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abc41fae76b14617ae2f7d38d3ebef3a 3 | timeCreated: 1502866309 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/PreviewManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa2238545a2849ecb0a6285b5a632a69 3 | timeCreated: 1505525146 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/PreviewRate.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph.Drawing 2 | { 3 | enum PreviewRate 4 | { 5 | Full, 6 | Throttled, 7 | Off 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/PreviewRate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa070520993a4b839e705dcd7f22e4d6 3 | timeCreated: 1506421104 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/SearchWindowProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cc3fd443c2a4dcc95b30a8ef3eaa6d3 3 | timeCreated: 1512377373 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a24ff57a99e64e33b4f88b1e81d84e97 3 | timeCreated: 1502955833 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/FloatField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1ab7cad0fa94639990c801ecf80bff2 3 | timeCreated: 1512568655 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/GradientEdge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 161180898f1d444880080d666ab7be1d 3 | timeCreated: 1509019463 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/PortInputView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f69414f1afe45f794ec4b5d5bc2bcb5 3 | timeCreated: 1509629683 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/PreviewSceneResources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37873c3b010e40d1ac1e6aace3c0fb10 3 | timeCreated: 1510662606 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/PropertyRow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 917a1d0b14b14ca0861b93792b550f83 3 | timeCreated: 1521637416 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/PropertySheet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 145d8ce4e0814506803af49f799cdb02 3 | timeCreated: 1521645038 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/ShaderPort.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96f5a3d0303d4d9395a450dcce906110 3 | timeCreated: 1512739794 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56e544af973b458ea7e8051cd0848d24 3 | timeCreated: 1509718923 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/BooleanSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fc29d436587748dcaaefd8669c3d946 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/ColorRGBSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a184620cc50fd2e40a845d6ebb39529e 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/ColorSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07332ea5e51a4bd3b6fb63e8e07cc30b 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/CubemapSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b54f542a9d5f7b84e974b54d625d73ea 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/GradientSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5c808b828bf44895b35be954f0906e5 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/LabelSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7e0bdc2deb5a43aca74fd1e84c94cfa 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/MultiFloatSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6511e850402b445298bdb3256d9a131b 3 | timeCreated: 1509721796 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/Texture3DSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 843052fb41ee94a92b93c2070c1bf577 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/TextureArraySlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b65e883d3170e4edca841ea6a8fca626 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/TextureSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49f18880b4854ccc8f383c55a7bc47b3 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Drawing/Views/Slots/UVSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f19b65893a414156825079dfc9a6dea3 3 | timeCreated: 1509961226 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Importers/_.sgsubgraphdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Importers/_.sgsubgraphdb -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc9fded2eff184ab1837ea4f15024c65 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Internal/Enumerations/KeywordScope.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph.Internal 2 | { 3 | public enum KeywordScope 4 | { 5 | Local, 6 | Global 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Internal/Enumerations/KeywordType.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph.Internal 2 | { 3 | public enum KeywordType 4 | { 5 | Boolean, 6 | Enum 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64c9c5df0004c44f0896e816c69c7aa1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/GraphView/Nodes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d93b12df2d043f9876fa00095ab8c99 3 | timeCreated: 1516704856 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons@2x.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons_hover.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Icons/settings_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Icons/settings_button.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Icons/settingsbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Icons/settingsbutton.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Icons/sg_graph_icon@64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Icons/sg_graph_icon@64.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Icons/sg_subgraph_icon@64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Icons/sg_subgraph_icon@64.png -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Styles/MaterialGraph.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sienaiwun/Unity_PlanarShadow/16c691dd1abd8f5f475adbc77fd3db20d833bdc4/Packages/src/com.unity.shadergraph/Editor/Resources/Styles/MaterialGraph.uss -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Styles/MaterialGraphView.uss: -------------------------------------------------------------------------------- 1 | MaterialGraphView { 2 | background-color: #202020; 3 | } 4 | 5 | .subgraph{ 6 | } 7 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Styles/PropertyNameReferenceField.uss: -------------------------------------------------------------------------------- 1 | TextField.modified { 2 | -unity-font-style: bold; 3 | } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Resources/Styles/ReorderableSlotListView.uss: -------------------------------------------------------------------------------- 1 | .unity-imgui-container { 2 | margin-top: 4; 3 | margin-bottom: 4; 4 | margin-left: 8; 5 | margin-right: 8; 6 | } 7 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/ShaderGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf98f2305896d48cd92f7f68d48060d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Templates/PassMesh.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d356e56081caed46bb576bcdf392666 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Util/CompatibilityExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c1717b624ad45ccbb3fa6bec28af711 3 | timeCreated: 1519741123 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Util/CreateSerializableGraph.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Util/IndexSet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41c67c52dd54464fa78d8ab286eb501b 3 | timeCreated: 1514376310 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f09c1bd643b38480bba505d3a9023457 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Editor/Utilities/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Unity.ShaderGraph.Editor")] 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3627da0ec84594020b79e02cec8d0b41 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08534868baca5cc4092711da8c94e981 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/ShaderGraphLibrary.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1bc9b92d5eaa40f8a85c1f48ba87de9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b67edcfd84add6e4a97f27f155b61a7b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": false 3 | } 4 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8453a00e344fd7e408223e92fc924cc2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests/Editor/TestNode.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | class TestNode : AbstractMaterialNode 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests/Editor/TestNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b3ff0f8519f4c0aa38ae4251a329e34 3 | timeCreated: 1513341923 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests/Editor/TestSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e4d50a46ff471096f3c60fb06a364d 3 | timeCreated: 1513346708 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests/Editor/UnitTests/MessageManagerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06b7bb8c7ec14b8b96d1849adfa33493 3 | timeCreated: 1542406927 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/Tests/Editor/UnitTests/ShaderSourceMapTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41f79f32c97b4258a777fa8f61d0eab7 3 | timeCreated: 1539205409 -------------------------------------------------------------------------------- /Packages/src/com.unity.shadergraph/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5ac453c34e359d439de9d724772ed3d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.3.0f1 2 | m_EditorVersionWithRevision: 2019.3.0f1 (ffacea4b84e7) 3 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } --------------------------------------------------------------------------------