├── .data ├── change_path.gif ├── editable_property_references.gif ├── gradient_node.png ├── menu_settings.png └── use_path.gif ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── CONTRIBUTIONS.md ├── CONTRIBUTIONS.md.meta ├── HDPipeline.meta ├── HDPipeline ├── HDUnlitSubShader.cs └── HDUnlitSubShader.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── TestbedAssets.meta ├── TestbedAssets ├── BW_logo.png ├── BW_logo.png.meta ├── Beachball.ShaderGraph ├── Beachball.ShaderGraph.meta ├── Clouds.png ├── Clouds.png.meta ├── ColorGuide.tif ├── ColorGuide.tif.meta ├── ColorTransparent.tif ├── ColorTransparent.tif.meta ├── Depth.mat ├── Depth.mat.meta ├── Gradient.png ├── Gradient.png.meta ├── Lava_flowmap.png ├── Lava_flowmap.png.meta ├── LightweightAsset.asset ├── LightweightAsset.asset.meta ├── Materials.meta ├── Materials │ ├── Default.mat │ └── Default.mat.meta ├── Oilish.ShaderGraph ├── Oilish.ShaderGraph.meta ├── PartyPreview.ShaderGraph ├── PartyPreview.ShaderGraph.meta ├── Rock_Pack_01.meta ├── Rock_Pack_01 │ ├── Rocks_Models.meta │ ├── Rocks_Models │ │ ├── Rock_A_01.OBJ │ │ └── Rock_A_01.OBJ.meta │ ├── Rocks_Textures.meta │ └── Rocks_Textures │ │ ├── Rock_A_01.meta │ │ ├── Rock_A_01 │ │ ├── Rock_A_01_Diffuse.png │ │ ├── Rock_A_01_Diffuse.png.meta │ │ ├── Rock_A_01_Normal.png │ │ └── Rock_A_01_Normal.png.meta │ │ ├── Tileable_Rock_A.meta │ │ └── Tileable_Rock_A │ │ ├── Tileable_Rock_A_D.png │ │ ├── Tileable_Rock_A_D.png.meta │ │ ├── Tileable_Rock_A_H.png │ │ ├── Tileable_Rock_A_H.png.meta │ │ ├── Tileable_Rock_A_NM.png │ │ └── Tileable_Rock_A_NM.png.meta ├── Scene.unity ├── Scene.unity.meta ├── Sky1.jpg ├── Sky1.jpg.meta ├── Swirl.tga ├── Swirl.tga.meta ├── TangentMap1.jpg ├── TangentMap1.jpg.meta ├── TangentMap2.jpg ├── TangentMap2.jpg.meta ├── TangentMap3.jpg ├── TangentMap3.jpg.meta ├── Teapot.fbx ├── Teapot.fbx.meta ├── Vector1PropGraph.ShaderGraph ├── Vector1PropGraph.ShaderGraph.meta ├── an_gradient.png ├── an_gradient.png.meta ├── bricks_height.png ├── bricks_height.png.meta ├── bricks_normal.tga ├── bricks_normal.tga.meta ├── flowmap.png ├── flowmap.png.meta ├── flowmap2.jpg ├── flowmap2.jpg.meta ├── graphs_PartyPreview.mat ├── graphs_PartyPreview.mat.meta ├── ground_cracked_ground_basecolor.png ├── ground_cracked_ground_basecolor.png.meta ├── ground_cracked_ground_height.png ├── ground_cracked_ground_height.png.meta ├── ground_cracked_ground_roughness.png ├── ground_cracked_ground_roughness.png.meta ├── normal.png ├── normal.png.meta ├── portrait_mask.png ├── portrait_mask.png.meta ├── sfn_vertexcolor.png └── sfn_vertexcolor.png.meta ├── Testing.meta ├── Testing ├── Editor.meta ├── Editor │ ├── IntegrationTests.meta │ ├── IntegrationTests │ │ ├── PropertyNodeTests.cs │ │ ├── PropertyNodeTests.cs.meta │ │ ├── SerializationTests.cs │ │ ├── SerializationTests.cs.meta │ │ ├── ShaderGenerationTest.cs │ │ ├── ShaderGenerationTest.cs.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── BrushedMetalNormal.tif │ │ │ ├── BrushedMetalNormal.tif.meta │ │ │ ├── BrushedMetalSpecular.tif │ │ │ ├── BrushedMetalSpecular.tif.meta │ │ │ ├── CanvasDiffuse.tif │ │ │ ├── CanvasDiffuse.tif.meta │ │ │ ├── CanvasNormal.tif │ │ │ ├── CanvasNormal.tif.meta │ │ │ ├── CanvasSpecular.tif │ │ │ ├── CanvasSpecular.tif.meta │ │ │ ├── LeatherNormal.tif │ │ │ ├── LeatherNormal.tif.meta │ │ │ ├── MudDiffuse.tif │ │ │ ├── MudDiffuse.tif.meta │ │ │ ├── MudHeight.tif │ │ │ ├── MudHeight.tif.meta │ │ │ ├── MudNormal.tif │ │ │ ├── MudNormal.tif.meta │ │ │ ├── MudOcclusion.tif │ │ │ ├── MudOcclusion.tif.meta │ │ │ ├── MudSpecular.tif │ │ │ ├── MudSpecular.tif.meta │ │ │ ├── PlasticRoughDiffuse.tif │ │ │ ├── PlasticRoughDiffuse.tif.meta │ │ │ ├── PlasticRoughNormal.tif │ │ │ ├── PlasticRoughNormal.tif.meta │ │ │ ├── RubberDiffuse.tif │ │ │ ├── RubberDiffuse.tif.meta │ │ │ ├── RubberNormal.tif │ │ │ ├── RubberNormal.tif.meta │ │ │ ├── RubberOcclusion.tif │ │ │ ├── RubberOcclusion.tif.meta │ │ │ ├── RubberSpecular.tif │ │ │ ├── RubberSpecular.tif.meta │ │ │ ├── SkinDiffuse.tif │ │ │ ├── SkinDiffuse.tif.meta │ │ │ ├── SkinNormal.tif │ │ │ ├── SkinNormal.tif.meta │ │ │ ├── SkinOcclusion.tif │ │ │ ├── SkinOcclusion.tif.meta │ │ │ ├── TarpDiffuse.tif │ │ │ ├── TarpDiffuse.tif.meta │ │ │ ├── TarpHeight.tif │ │ │ ├── TarpHeight.tif.meta │ │ │ ├── TarpNormal.tif │ │ │ ├── TarpNormal.tif.meta │ │ │ ├── TarpSpecular.tif │ │ │ ├── TarpSpecular.tif.meta │ │ │ ├── WoodDiffuse.tif │ │ │ ├── WoodDiffuse.tif.meta │ │ │ ├── WoodNormal.tif │ │ │ ├── WoodNormal.tif.meta │ │ │ ├── WoodOcclusion.tif │ │ │ ├── WoodOcclusion.tif.meta │ │ │ ├── WoodSpecular.tif │ │ │ └── WoodSpecular.tif.meta │ ├── TestMaterialGraph.cs │ ├── TestMaterialGraph.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 │ │ ├── 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 │ ├── Unity.ShaderGraph.EditorTests.asmdef │ └── Unity.ShaderGraph.EditorTests.asmdef.meta ├── IntegrationTests.meta └── IntegrationTests │ ├── .ShaderTemplates │ └── Math │ │ ├── Advanced │ │ ├── Absolute.png │ │ ├── Absolute.shader │ │ ├── Exponential.png │ │ ├── Exponential.shader │ │ ├── Length.png │ │ ├── Length.shader │ │ ├── Log.png │ │ ├── Log.shader │ │ ├── Modulo.png │ │ ├── Modulo.shader │ │ ├── Negate.png │ │ ├── Negate.shader │ │ ├── Normalize.png │ │ ├── Normalize.shader │ │ ├── Posterize.png │ │ ├── Posterize.shader │ │ ├── Reciprocal Square Root.png │ │ ├── Reciprocal Square Root.shader │ │ ├── Reciprocal.png │ │ └── Reciprocal.shader │ │ ├── Basic │ │ ├── Add.png │ │ ├── Add.shader │ │ ├── Divide.png │ │ ├── Divide.shader │ │ ├── Multiply.png │ │ ├── Multiply.shader │ │ ├── Power.png │ │ ├── Power.shader │ │ ├── Square Root.png │ │ ├── Square Root.shader │ │ ├── Subtract.png │ │ └── Subtract.shader │ │ ├── Derivative │ │ ├── DDX.png │ │ ├── DDX.shader │ │ ├── DDXY.png │ │ ├── DDXY.shader │ │ ├── DDY.png │ │ └── DDY.shader │ │ ├── Interpolation │ │ ├── Inverse Lerp.png │ │ ├── Inverse Lerp.shader │ │ ├── Lerp.png │ │ ├── Lerp.shader │ │ ├── Smoothstep.png │ │ └── Smoothstep.shader │ │ ├── Matrix │ │ ├── Matrix Construction.png │ │ ├── Matrix Construction.shader │ │ ├── Matrix Determinant.png │ │ ├── Matrix Determinant.shader │ │ ├── Matrix Split.png │ │ ├── Matrix Split.shader │ │ ├── Matrix Transpose.png │ │ └── Matrix Transpose.shader │ │ ├── Range │ │ ├── Clamp.png │ │ ├── Clamp.shader │ │ ├── Fraction.png │ │ ├── Fraction.shader │ │ ├── Maximum.png │ │ ├── Maximum.shader │ │ ├── Minimum.png │ │ ├── Minimum.shader │ │ ├── One Minus.png │ │ ├── One Minus.shader │ │ ├── Random Range.png │ │ ├── Random Range.shader │ │ ├── Remap.png │ │ ├── Remap.shader │ │ ├── Saturate.png │ │ └── Saturate.shader │ │ ├── Round │ │ ├── Ceiling.png │ │ ├── Ceiling.shader │ │ ├── Floor.png │ │ ├── Floor.shader │ │ ├── Round.png │ │ ├── Round.shader │ │ ├── Sign.png │ │ ├── Sign.shader │ │ ├── Step.png │ │ ├── Step.shader │ │ ├── Truncate.png │ │ └── Truncate.shader │ │ ├── Trigonometry │ │ ├── Arccosine.png │ │ ├── Arccosine.shader │ │ ├── Arcsine.png │ │ ├── Arcsine.shader │ │ ├── Arctangent.png │ │ ├── Arctangent.shader │ │ ├── Arctangent2.png │ │ ├── Arctangent2.shader │ │ ├── Cosine.png │ │ ├── Cosine.shader │ │ ├── Degrees To Radians.png │ │ ├── Degrees To Radians.shader │ │ ├── Hyporbolic Cosine.png │ │ ├── Hyporbolic Cosine.shader │ │ ├── Hyporbolic Sine.png │ │ ├── Hyporbolic Sine.shader │ │ ├── Hyporbolic Tangent.png │ │ ├── Hyporbolic Tangent.shader │ │ ├── Radians To Degrees.png │ │ ├── Radians To Degrees.shader │ │ ├── Sine.png │ │ ├── Sine.shader │ │ ├── Tangent.png │ │ └── Tangent.shader │ │ └── Vector │ │ ├── Cross Product.png │ │ ├── Cross Product.shader │ │ ├── Distance.png │ │ ├── Distance.shader │ │ ├── Dot Product.png │ │ ├── Dot Product.shader │ │ ├── Fresnel Effect.png │ │ ├── Fresnel Effect.shader │ │ ├── Projection.png │ │ ├── Projection.shader │ │ ├── Rejection.png │ │ ├── Rejection.shader │ │ ├── Transform.png │ │ └── Transform.shader │ ├── Graphs.meta │ └── Graphs │ ├── Math.meta │ └── Math │ ├── Advanced.meta │ ├── Advanced │ ├── Absolute.ShaderGraph │ ├── Absolute.ShaderGraph.meta │ ├── Exponential.ShaderGraph │ ├── Exponential.ShaderGraph.meta │ ├── Length.ShaderGraph │ ├── Length.ShaderGraph.meta │ ├── Log.ShaderGraph │ ├── Log.ShaderGraph.meta │ ├── Modulo.ShaderGraph │ ├── Modulo.ShaderGraph.meta │ ├── Negate.ShaderGraph │ ├── Negate.ShaderGraph.meta │ ├── Normalize.ShaderGraph │ ├── Normalize.ShaderGraph.meta │ ├── Posterize.ShaderGraph │ ├── Posterize.ShaderGraph.meta │ ├── Reciprocal Square Root.ShaderGraph │ ├── Reciprocal Square Root.ShaderGraph.meta │ ├── Reciprocal.ShaderGraph │ └── Reciprocal.ShaderGraph.meta │ ├── Basic.meta │ ├── Basic │ ├── Add.ShaderGraph │ ├── Add.ShaderGraph.meta │ ├── Divide.ShaderGraph │ ├── Divide.ShaderGraph.meta │ ├── Multiply.ShaderGraph │ ├── Multiply.ShaderGraph.meta │ ├── Power.ShaderGraph │ ├── Power.ShaderGraph.meta │ ├── Square Root.ShaderGraph │ ├── Square Root.ShaderGraph.meta │ ├── Subtract.ShaderGraph │ └── Subtract.ShaderGraph.meta │ ├── Derivative.meta │ ├── Derivative │ ├── DDX.ShaderGraph │ ├── DDX.ShaderGraph.meta │ ├── DDXY.ShaderGraph │ ├── DDXY.ShaderGraph.meta │ ├── DDY.ShaderGraph │ └── DDY.ShaderGraph.meta │ ├── Interpolation.meta │ ├── Interpolation │ ├── Inverse Lerp.ShaderGraph │ ├── Inverse Lerp.ShaderGraph.meta │ ├── Lerp.ShaderGraph │ ├── Lerp.ShaderGraph.meta │ ├── Smoothstep.ShaderGraph │ └── Smoothstep.ShaderGraph.meta │ ├── Matrix.meta │ ├── Matrix │ ├── Matrix Construction.ShaderGraph │ ├── Matrix Construction.ShaderGraph.meta │ ├── Matrix Determinant.ShaderGraph │ ├── Matrix Determinant.ShaderGraph.meta │ ├── Matrix Split.ShaderGraph │ ├── Matrix Split.ShaderGraph.meta │ ├── Matrix Transpose.ShaderGraph │ └── Matrix Transpose.ShaderGraph.meta │ ├── Range.meta │ ├── Range │ ├── Clamp.ShaderGraph │ ├── Clamp.ShaderGraph.meta │ ├── Fraction.ShaderGraph │ ├── Fraction.ShaderGraph.meta │ ├── Maximum.ShaderGraph │ ├── Maximum.ShaderGraph.meta │ ├── Minimum.ShaderGraph │ ├── Minimum.ShaderGraph.meta │ ├── One Minus.ShaderGraph │ ├── One Minus.ShaderGraph.meta │ ├── Random Range.ShaderGraph │ ├── Random Range.ShaderGraph.meta │ ├── Remap.ShaderGraph │ ├── Remap.ShaderGraph.meta │ ├── Saturate.ShaderGraph │ └── Saturate.ShaderGraph.meta │ ├── Round.meta │ ├── Round │ ├── Ceiling.ShaderGraph │ ├── Ceiling.ShaderGraph.meta │ ├── Floor.ShaderGraph │ ├── Floor.ShaderGraph.meta │ ├── Round.ShaderGraph │ ├── Round.ShaderGraph.meta │ ├── Sign.ShaderGraph │ ├── Sign.ShaderGraph.meta │ ├── Step.ShaderGraph │ ├── Step.ShaderGraph.meta │ ├── Truncate.ShaderGraph │ └── Truncate.ShaderGraph.meta │ ├── Trigonometry.meta │ ├── Trigonometry │ ├── Arccosine.ShaderGraph │ ├── Arccosine.ShaderGraph.meta │ ├── Arcsine.ShaderGraph │ ├── Arcsine.ShaderGraph.meta │ ├── Arctangent.ShaderGraph │ ├── Arctangent.ShaderGraph.meta │ ├── Arctangent2.ShaderGraph │ ├── Arctangent2.ShaderGraph.meta │ ├── Cosine.ShaderGraph │ ├── Cosine.ShaderGraph.meta │ ├── Degrees To Radians.ShaderGraph │ ├── Degrees To Radians.ShaderGraph.meta │ ├── Hyporbolic Cosine.ShaderGraph │ ├── Hyporbolic Cosine.ShaderGraph.meta │ ├── Hyporbolic Sine.ShaderGraph │ ├── Hyporbolic Sine.ShaderGraph.meta │ ├── Hyporbolic Tangent.ShaderGraph │ ├── Hyporbolic Tangent.ShaderGraph.meta │ ├── Radians To Degrees.ShaderGraph │ ├── Radians To Degrees.ShaderGraph.meta │ ├── Sine.ShaderGraph │ ├── Sine.ShaderGraph.meta │ ├── Tangent.ShaderGraph │ └── Tangent.ShaderGraph.meta │ ├── Vector.meta │ └── Vector │ ├── Cross Product.ShaderGraph │ ├── Cross Product.ShaderGraph.meta │ ├── Distance.ShaderGraph │ ├── Distance.ShaderGraph.meta │ ├── Dot Product.ShaderGraph │ ├── Dot Product.ShaderGraph.meta │ ├── Fresnel Effect.ShaderGraph │ ├── Fresnel Effect.ShaderGraph.meta │ ├── Projection.ShaderGraph │ ├── Projection.ShaderGraph.meta │ ├── Rejection.ShaderGraph │ ├── Rejection.ShaderGraph.meta │ ├── Transform.ShaderGraph │ └── Transform.ShaderGraph.meta ├── Unity.ShaderGraph.Unreleased.Editor.asmdef ├── Unity.ShaderGraph.Unreleased.Editor.asmdef.meta ├── build.py ├── build.py.meta ├── com.unity.shadergraph.meta └── com.unity.shadergraph ├── .npmignore ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Documentation.meta ├── Documentation ├── ShaderGraph.md └── ShaderGraph.md.meta ├── Editor.meta ├── Editor ├── AssetCallbacks.meta ├── AssetCallbacks │ ├── CreatePBRShaderGraph.cs │ ├── CreatePBRShaderGraph.cs.meta │ ├── CreateShaderSubGraph.cs │ ├── CreateShaderSubGraph.cs.meta │ ├── CreateUnlitShaderGraph.cs │ └── CreateUnlitShaderGraph.cs.meta ├── Data.meta ├── Data │ ├── Graphs.meta │ ├── Graphs │ │ ├── AbstractMaterialGraph.cs │ │ ├── AbstractMaterialGraph.cs.meta │ │ ├── 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 │ │ ├── IMaterialGraphAsset.cs │ │ ├── IMaterialGraphAsset.cs.meta │ │ ├── IMaterialSlotHasValue.cs │ │ ├── IMaterialSlotHasValue.cs.meta │ │ ├── IShaderGraph.cs │ │ ├── IShaderGraph.cs.meta │ │ ├── IShaderProperty.cs │ │ ├── IShaderProperty.cs.meta │ │ ├── MaterialGraph.cs │ │ ├── MaterialGraph.cs.meta │ │ ├── MaterialGraphAsset.cs │ │ ├── MaterialGraphAsset.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 │ │ ├── NormalMaterialSlot.cs │ │ ├── NormalMaterialSlot.cs.meta │ │ ├── PositionMaterialSlot.cs │ │ ├── PositionMaterialSlot.cs.meta │ │ ├── Precision.cs │ │ ├── Precision.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 │ │ ├── ShaderGraphRequirements.cs │ │ ├── ShaderGraphRequirements.cs.meta │ │ ├── SpaceMaterialSlot.cs │ │ ├── SpaceMaterialSlot.cs.meta │ │ ├── TangentMaterialSlot.cs │ │ ├── TangentMaterialSlot.cs.meta │ │ ├── Texture2DInputMaterialSlot.cs │ │ ├── Texture2DInputMaterialSlot.cs.meta │ │ ├── Texture2DMaterialSlot.cs │ │ ├── Texture2DMaterialSlot.cs.meta │ │ ├── TextureSamplerState.cs │ │ ├── TextureSamplerState.cs.meta │ │ ├── TextureShaderProperty.cs │ │ ├── TextureShaderProperty.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 │ │ ├── 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 │ │ │ ├── IGraph.cs │ │ │ ├── IGraph.cs.meta │ │ │ ├── IGraphAsset.cs │ │ │ ├── IGraphAsset.cs.meta │ │ │ ├── IGraphObject.cs │ │ │ ├── IGraphObject.cs.meta │ │ │ ├── INode.cs │ │ │ ├── INode.cs.meta │ │ │ ├── IOnAssetEnabled.cs │ │ │ ├── IOnAssetEnabled.cs.meta │ │ │ ├── ISlot.cs │ │ │ ├── ISlot.cs.meta │ │ │ ├── SlotReference.cs │ │ │ └── SlotReference.cs.meta │ │ ├── IGenerateProperties.cs │ │ ├── IGenerateProperties.cs.meta │ │ ├── IGeneratesBodyCode.cs │ │ ├── IGeneratesBodyCode.cs.meta │ │ ├── IGeneratesFunction.cs │ │ ├── IGeneratesFunction.cs.meta │ │ ├── IHasSettings.cs │ │ ├── IHasSettings.cs.meta │ │ ├── IMayRequireBitangent.cs │ │ ├── IMayRequireBitangent.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 │ │ ├── IMayRequireViewDirection.cs │ │ ├── IMayRequireViewDirection.cs.meta │ │ ├── NeededCoordinateSpace.cs │ │ └── NeededCoordinateSpace.cs.meta │ ├── LightweightPipeline.meta │ ├── LightweightPipeline │ │ ├── LightweightFastBlinnMasterNode.cs │ │ └── LightweightFastBlinnMasterNode.cs.meta │ ├── MasterNodes.meta │ ├── MasterNodes │ │ ├── AlphaMode.cs │ │ ├── AlphaMode.cs.meta │ │ ├── IPBRSubShader.cs │ │ ├── IPBRSubShader.cs.meta │ │ ├── ISubShader.cs │ │ ├── ISubShader.cs.meta │ │ ├── IUnlitSubShader.cs │ │ ├── IUnlitSubShader.cs.meta │ │ ├── PBRMasterNode.cs │ │ ├── PBRMasterNode.cs.meta │ │ ├── UnlitMasterNode.cs │ │ └── UnlitMasterNode.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 │ │ │ │ ├── NormalCreateNode.cs │ │ │ │ ├── NormalCreateNode.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 │ │ │ ├── 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 │ │ │ │ ├── AmbientNode.cs │ │ │ │ ├── AmbientNode.cs.meta │ │ │ │ ├── CameraNode.cs │ │ │ │ ├── CameraNode.cs.meta │ │ │ │ ├── FogNode.cs │ │ │ │ ├── FogNode.cs.meta │ │ │ │ ├── LightProbeNode.cs │ │ │ │ ├── LightProbeNode.cs.meta │ │ │ │ ├── ObjectNode.cs │ │ │ │ ├── ObjectNode.cs.meta │ │ │ │ ├── ReflectionProbeNode.cs │ │ │ │ ├── ReflectionProbeNode.cs.meta │ │ │ │ ├── ScreenNode.cs │ │ │ │ └── ScreenNode.cs.meta │ │ │ ├── Texture.meta │ │ │ └── Texture │ │ │ │ ├── CubemapAssetNode.cs │ │ │ │ ├── CubemapAssetNode.cs.meta │ │ │ │ ├── SampleCubemapNode.cs │ │ │ │ ├── SampleCubemapNode.cs.meta │ │ │ │ ├── SampleTexture2DNode.cs │ │ │ │ ├── SampleTexture2DNode.cs.meta │ │ │ │ ├── SamplerStateNode.cs │ │ │ │ ├── SamplerStateNode.cs.meta │ │ │ │ ├── Texture2DAssetNode.cs │ │ │ │ └── Texture2DAssetNode.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 │ │ │ │ ├── TransformNode.cs │ │ │ │ └── TransformNode.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 │ │ │ │ ├── RoundedRectangleNode.cs │ │ │ │ └── RoundedRectangleNode.cs.meta │ │ ├── PropertyType.cs │ │ ├── PropertyType.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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── SubGraph.meta │ ├── SubGraph │ │ ├── MaterialSubGraphAsset.cs │ │ ├── MaterialSubGraphAsset.cs.meta │ │ ├── SubGraph.cs │ │ ├── SubGraph.cs.meta │ │ ├── SubGraphOutputNode.cs │ │ └── SubGraphOutputNode.cs.meta │ ├── SurfaceModel.meta │ ├── SurfaceModel │ │ ├── SurfaceMaterialOptions.cs │ │ └── SurfaceMaterialOptions.cs.meta │ ├── Util.meta │ └── Util │ │ ├── CubemapPropertyChunk.cs │ │ ├── CubemapPropertyChunk.cs.meta │ │ ├── DictionaryPool.cs │ │ ├── DictionaryPool.cs.meta │ │ ├── FunctionRegistry.cs │ │ ├── FunctionRegistry.cs.meta │ │ ├── GenerationResults.cs │ │ ├── GenerationResults.cs.meta │ │ ├── GraphUtil.cs │ │ ├── GraphUtil.cs.meta │ │ ├── Identifier.cs │ │ ├── Identifier.cs.meta │ │ ├── ListPool.cs │ │ ├── ListPool.cs.meta │ │ ├── Logging.cs │ │ ├── Logging.cs.meta │ │ ├── MatrixNames.cs │ │ ├── MatrixNames.cs.meta │ │ ├── ObjectPool.cs │ │ ├── ObjectPool.cs.meta │ │ ├── PooledObject.cs │ │ ├── PooledObject.cs.meta │ │ ├── PropertyCollector.cs │ │ ├── PropertyCollector.cs.meta │ │ ├── QueuePool.cs │ │ ├── QueuePool.cs.meta │ │ ├── ScreenSpaceType.cs │ │ ├── ScreenSpaceType.cs.meta │ │ ├── SerializationHelper.cs │ │ ├── SerializationHelper.cs.meta │ │ ├── ShaderGenerator.cs │ │ ├── ShaderGenerator.cs.meta │ │ ├── ShaderGeneratorNames.cs │ │ ├── ShaderGeneratorNames.cs.meta │ │ ├── ShaderSourceMap.cs │ │ ├── ShaderSourceMap.cs.meta │ │ ├── ShaderStringBuilder.cs │ │ ├── ShaderStringBuilder.cs.meta │ │ ├── StackPool.cs │ │ ├── StackPool.cs.meta │ │ ├── TextureType.cs │ │ ├── TextureType.cs.meta │ │ ├── UvChannel.cs │ │ └── UvChannel.cs.meta ├── DefaultShaderIncludes.cs ├── DefaultShaderIncludes.cs.meta ├── Drawing.meta ├── Drawing │ ├── Blackboard.meta │ ├── Blackboard │ │ ├── Blackboard.cs │ │ ├── Blackboard.cs.meta │ │ ├── BlackboardField.cs │ │ ├── BlackboardField.cs.meta │ │ ├── BlackboardFieldPropertyView.cs │ │ ├── BlackboardFieldPropertyView.cs.meta │ │ ├── BlackboardProvider.cs │ │ ├── BlackboardProvider.cs.meta │ │ ├── BlackboardRow.cs │ │ ├── BlackboardRow.cs.meta │ │ ├── BlackboardSection.cs │ │ └── BlackboardSection.cs.meta │ ├── Controls.meta │ ├── Controls │ │ ├── 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 │ │ ├── SliderControl.cs │ │ ├── SliderControl.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 │ │ ├── GraphDropTarget.cs │ │ ├── GraphDropTarget.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 │ │ ├── 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 │ │ ├── PropertyRow.cs │ │ ├── PropertyRow.cs.meta │ │ ├── PropertySheet.cs │ │ ├── PropertySheet.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 │ │ ├── TextureSlotControlView.cs │ │ ├── TextureSlotControlView.cs.meta │ │ ├── UVSlotControlView.cs │ │ └── UVSlotControlView.cs.meta │ │ ├── UnlitSettingsView.cs │ │ └── UnlitSettingsView.cs.meta ├── Importers.meta ├── Importers │ ├── ShaderGraphImporter.cs │ ├── ShaderGraphImporter.cs.meta │ ├── ShaderGraphImporterEditor.cs │ ├── ShaderGraphImporterEditor.cs.meta │ ├── ShaderSubGraphImporter.cs │ ├── ShaderSubGraphImporter.cs.meta │ ├── ShaderSubGraphImporterEditor.cs │ └── ShaderSubGraphImporterEditor.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 │ ├── Shaders.meta │ ├── Shaders │ │ ├── BlitNoAlpha.shader │ │ ├── BlitNoAlpha.shader.meta │ │ ├── Checkerboard.shader │ │ └── Checkerboard.shader.meta │ ├── Styles.meta │ ├── Styles │ │ ├── Blackboard.uss │ │ ├── Blackboard.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 │ │ │ ├── ScreenPositionSlotControlView.uss │ │ │ ├── ScreenPositionSlotControlView.uss.meta │ │ │ ├── SliderControlView.uss │ │ │ ├── SliderControlView.uss.meta │ │ │ ├── TextureSlotControlView.uss │ │ │ ├── TextureSlotControlView.uss.meta │ │ │ ├── ToggleControlView.uss │ │ │ ├── ToggleControlView.uss.meta │ │ │ ├── UVSlotControlView.uss │ │ │ └── UVSlotControlView.uss.meta │ │ ├── GraphEditorView.uss │ │ ├── GraphEditorView.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 │ │ ├── PropertyRow.uss │ │ ├── PropertyRow.uss.meta │ │ ├── PropertySheet.uss │ │ ├── PropertySheet.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 ├── Templates.meta ├── Templates │ ├── HDUnlitPassForward.template │ ├── HDUnlitPassForward.template.meta │ ├── shader.template │ ├── shader.template.meta │ ├── subshader.template │ ├── subshader.template.meta │ ├── tesselationSubshader.template │ └── tesselationSubshader.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 │ ├── IndexSet.cs │ ├── IndexSet.cs.meta │ ├── TypeMapper.cs │ ├── TypeMapper.cs.meta │ ├── TypeMapping.cs │ ├── TypeMapping.cs.meta │ ├── UIUtilities.cs │ └── UIUtilities.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── ShaderGraphLibrary.meta ├── ShaderGraphLibrary ├── 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 ├── package.json └── package.json.meta /.data/change_path.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d711e11a671b6eb237761b8ef56c47d523a71a710a6650e4a70c1642f08c3893 3 | size 21875 4 | -------------------------------------------------------------------------------- /.data/editable_property_references.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7d0960110016f6fc5413b9ae8b2e7289798ebebe8b6b8866d722296041e3c16 3 | size 66046 4 | -------------------------------------------------------------------------------- /.data/gradient_node.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0777a3132c99124cb827c8d1d8539d27bbcd903a88179dba22ce26b0c29d71af 3 | size 327254 4 | -------------------------------------------------------------------------------- /.data/menu_settings.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5cf6750c4e57c8867fef65f78604bf7b9cd972c2f8ffd910175bd1d69c2d8904 3 | size 27931 4 | -------------------------------------------------------------------------------- /.data/use_path.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a35ca3a25872fa36f9943b8c7f9e41959024c92d6a563d209c86e6e02dda73b 3 | size 146920 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.png filter=lfs diff=lfs merge=lfs -text 2 | *.gif filter=lfs diff=lfs merge=lfs -text 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | artifacts/** 2 | build/** 3 | .vs 4 | .vscode 5 | .idea 6 | .DS_Store 7 | .npmrc 8 | DebugOutput.meta 9 | DebugOutput/** 10 | Testing/IntegrationTests/.Failed -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a432963c0c501d489f74905a4c41a13 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /CONTRIBUTIONS.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b1e4e7d7a7bd564dab213b3b4bda399 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /HDPipeline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 621b9da5e0cd5cc449775c0394b63d58 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /HDPipeline/HDUnlitSubShader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292c6a3c80161fa4cb49a9d11d35cbe9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccd80e6f5d1fa7e4dbe10a0163abd393 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # We've moved! 2 | 3 | Come visit us in the [ScriptableRenderPipeline](https://github.com/Unity-Technologies/ScriptableRenderPipeline) repository. 4 | -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08534868baca5cc4092711da8c94e981 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /TestbedAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f65c08d6acb9e794699bb04e8db778f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TestbedAssets/BW_logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f0912a3cd9f6333d43a8abb2b289327fd0405ebc9579382e30b96273b1ca8c6 3 | size 36647 4 | -------------------------------------------------------------------------------- /TestbedAssets/Beachball.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b141c720617d37f45a2fd27af59ccf42 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 4800000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /TestbedAssets/Clouds.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:322cf345e583b0c30dbb5352e55572d4ab50137c22a7f84ac1a02979819e06f2 3 | size 92366 4 | -------------------------------------------------------------------------------- /TestbedAssets/ColorGuide.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/ColorGuide.tif -------------------------------------------------------------------------------- /TestbedAssets/ColorTransparent.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/ColorTransparent.tif -------------------------------------------------------------------------------- /TestbedAssets/Depth.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90f0a6e5e54aa494f9119a79d1071c65 3 | timeCreated: 1490977286 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Gradient.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31b6d5e01a0a3245a6a2e8bf77fb068bb8c9af155665649792f527e4d8c0e8fc 3 | size 16459 4 | -------------------------------------------------------------------------------- /TestbedAssets/Lava_flowmap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:caadf39d270b2c60007baa20b3f71f71a5439e7a4fd32efda417ef1834f72f94 3 | size 1695552 4 | -------------------------------------------------------------------------------- /TestbedAssets/LightweightAsset.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c068d834ef325345b87395bd103e074 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TestbedAssets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79dd2e059d3d74748a6dcb0927e95373 3 | folderAsset: yes 4 | timeCreated: 1495555479 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Materials/Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0a566ca02d8d44968a96aa06a2b861b 3 | timeCreated: 1495555479 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | mainObjectFileID: 2100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Oilish.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abcabb4945a2d6c4aa605f870d393d02 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 4800000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /TestbedAssets/PartyPreview.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e67b8be7b087145ab87b7ae0a690c35e 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 4800000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce290fb34a3bd4894833d4ad76648a71 3 | folderAsset: yes 4 | timeCreated: 1495564204 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97a4c58b432ae4f5f9d7a3d81c5530ad 3 | folderAsset: yes 4 | timeCreated: 1495564204 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f14453ebe68b44248019c7a333df739 3 | folderAsset: yes 4 | timeCreated: 1495564204 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures/Rock_A_01.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaf3e71fc2530425da150299326de1ce 3 | folderAsset: yes 4 | timeCreated: 1495564204 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures/Rock_A_01/Rock_A_01_Diffuse.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39ba4a31232d41dcd3bdac4295aa89b4884e5cff8917d98f0019179359abd94d 3 | size 9808713 4 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures/Rock_A_01/Rock_A_01_Normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d30a3df5204e52bddab7506dbb581b70e7cef0cfbe3fd08e65f9fb3b6b72892 3 | size 7034802 4 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures/Tileable_Rock_A.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bdce88353cf645659bb158074da9822 3 | folderAsset: yes 4 | timeCreated: 1495564204 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures/Tileable_Rock_A/Tileable_Rock_A_D.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ec822d5f6d932176c86e9999235b87c22b37f1484d9795946bde06830e81c98 3 | size 7125598 4 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures/Tileable_Rock_A/Tileable_Rock_A_H.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5911e0d35d57d2320d6dab490891f910e7a88af241e68634c21cf9dfdfcde92c 3 | size 1169021 4 | -------------------------------------------------------------------------------- /TestbedAssets/Rock_Pack_01/Rocks_Textures/Tileable_Rock_A/Tileable_Rock_A_NM.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00956f026bc9c6791e93d37905ca3b5a49d328e6ad9d187e7ab462787c6bedba 3 | size 6879066 4 | -------------------------------------------------------------------------------- /TestbedAssets/Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 939d670ecd2da174e8d96189a2164415 3 | timeCreated: 1490975341 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TestbedAssets/Sky1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/Sky1.jpg -------------------------------------------------------------------------------- /TestbedAssets/Swirl.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/Swirl.tga -------------------------------------------------------------------------------- /TestbedAssets/TangentMap1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/TangentMap1.jpg -------------------------------------------------------------------------------- /TestbedAssets/TangentMap2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/TangentMap2.jpg -------------------------------------------------------------------------------- /TestbedAssets/TangentMap3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/TangentMap3.jpg -------------------------------------------------------------------------------- /TestbedAssets/Vector1PropGraph.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d765c30286182d4a9e23edbdaf01865 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 4800000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /TestbedAssets/an_gradient.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e45419023831eb645d2b8ffea598f2244d9159edf012b1713134f6d0d0ba9982 3 | size 76548 4 | -------------------------------------------------------------------------------- /TestbedAssets/bricks_height.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f26db26dda56b0bdd9d4cf27e2288b629cfe64a7a34db9546b13398b324e0cc4 3 | size 77328 4 | -------------------------------------------------------------------------------- /TestbedAssets/bricks_normal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/bricks_normal.tga -------------------------------------------------------------------------------- /TestbedAssets/flowmap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:159252220887a1defc53e5e99392f59660916665385def517a228b2c00f1e414 3 | size 173228 4 | -------------------------------------------------------------------------------- /TestbedAssets/flowmap2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/TestbedAssets/flowmap2.jpg -------------------------------------------------------------------------------- /TestbedAssets/graphs_PartyPreview.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8745a7a276da8b4fa388ec0f8c421ab 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /TestbedAssets/ground_cracked_ground_basecolor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4752485c29cf9d0371b5d64abb15d42fb117238b48c6c234e30a94fdd8986d90 3 | size 5885957 4 | -------------------------------------------------------------------------------- /TestbedAssets/ground_cracked_ground_height.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:476c74fbc6a5934675ea493cb5bbebfbc8a398a61f21483c833553fca88fc987 3 | size 5623952 4 | -------------------------------------------------------------------------------- /TestbedAssets/ground_cracked_ground_roughness.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5df912be106c9b04a50bbcb6f7bc22b41010c2ccc0ee9b4132cf272adc84d83 3 | size 2651319 4 | -------------------------------------------------------------------------------- /TestbedAssets/normal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bf7f32ae3f85aa7790e6a3dd4667114e4ad86a01ad0a163ccec42cf12df14f0 3 | size 2562138 4 | -------------------------------------------------------------------------------- /TestbedAssets/portrait_mask.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9456b1cc124ec60eb57ecd18c3b1a8fa50a884720407e8b13f6b9bb9bef6ec88 3 | size 29846 4 | -------------------------------------------------------------------------------- /TestbedAssets/sfn_vertexcolor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acb794d91572da5343ec0570d8aaee57ba2d024e7dcb048267c2614b624fb9c5 3 | size 10172 4 | -------------------------------------------------------------------------------- /Testing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0191f2183190488449b2ef17660f2593 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ec6bb6cbe5f7d64fafc86c030ea8684 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e636bcaad60bb8e4da48c07cdcb938b5 3 | folderAsset: yes 4 | timeCreated: 1454665103 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/PropertyNodeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e121200f28196db44a1204c4189c01bb 3 | timeCreated: 1470743942 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/SerializationTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dd57d4b408ec4c4580937b45862efbb 3 | timeCreated: 1466602040 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/ShaderGenerationTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b92cd1c42e17f34282083f5ce50c51e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cf1d40de4a83a541aea1eae77ff0735 3 | folderAsset: yes 4 | timeCreated: 1470900516 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/BrushedMetalNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/BrushedMetalNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/BrushedMetalSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/BrushedMetalSpecular.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/CanvasDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/CanvasDiffuse.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/CanvasNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/CanvasNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/CanvasSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/CanvasSpecular.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/LeatherNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/LeatherNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/MudDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/MudDiffuse.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/MudHeight.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/MudHeight.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/MudNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/MudNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/MudOcclusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/MudOcclusion.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/MudSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/MudSpecular.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/PlasticRoughDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/PlasticRoughDiffuse.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/PlasticRoughNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/PlasticRoughNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/RubberDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/RubberDiffuse.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/RubberNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/RubberNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/RubberOcclusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/RubberOcclusion.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/RubberSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/RubberSpecular.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/SkinDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/SkinDiffuse.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/SkinNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/SkinNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/SkinOcclusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/SkinOcclusion.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/TarpDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/TarpDiffuse.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/TarpHeight.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/TarpHeight.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/TarpNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/TarpNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/TarpSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/TarpSpecular.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/WoodDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/WoodDiffuse.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/WoodNormal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/WoodNormal.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/WoodOcclusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/WoodOcclusion.tif -------------------------------------------------------------------------------- /Testing/Editor/IntegrationTests/Textures/WoodSpecular.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/Testing/Editor/IntegrationTests/Textures/WoodSpecular.tif -------------------------------------------------------------------------------- /Testing/Editor/TestMaterialGraph.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | class TestMaterialGraph : AbstractMaterialGraph 4 | { 5 | 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Testing/Editor/TestMaterialGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 803f320a1aae4bb28cd8234a7623f9df 3 | timeCreated: 1513335106 -------------------------------------------------------------------------------- /Testing/Editor/TestNode.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | public class TestNode : AbstractMaterialNode 4 | { 5 | 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Testing/Editor/TestNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b3ff0f8519f4c0aa38ae4251a329e34 3 | timeCreated: 1513341923 -------------------------------------------------------------------------------- /Testing/Editor/TestSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e4d50a46ff471096f3c60fb06a364d 3 | timeCreated: 1513346708 -------------------------------------------------------------------------------- /Testing/Editor/UnitTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f85ac5340a5dff468e347347435cf68 3 | folderAsset: yes 4 | timeCreated: 1464096294 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/AbstractMaterialGraphTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 351a6b3ff7ef41c45938a78e94dd2a20 3 | timeCreated: 1464264924 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/DynamicSlotTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6e750ecfd4623440a02fd8252326d93 3 | timeCreated: 1466512880 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/FixedSlotTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fe1a12f346cde14f8ec5d42b2e4b70f 3 | timeCreated: 1469709562 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/MaterialGraphTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0675182a7c3e7464e977d09524877e2c 3 | timeCreated: 1464264924 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/MaterialNodeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f553306b9101064eb1010e15de5f567 3 | timeCreated: 1469179824 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/MaterialSlotTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a55bb4eb9ba26c846902a616c2ea29ff 3 | timeCreated: 1469709562 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/PixelShaderNodeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caaa2ea3bc3f57c429e630f9324ac930 3 | timeCreated: 1469792183 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/PropertyChunkTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 816037e003cccbc4b8a61ec1bf91ab0c 3 | timeCreated: 1469695793 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/PropertyGeneratorTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdcc4209e9d976d4e8644e2b9bcef10d 3 | timeCreated: 1470743942 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/PropertyNodeTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc814c257422bf1449688696b94fae44 3 | timeCreated: 1469792183 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/SerializedGraphTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28928f8f53abca94fbfaabf4d2c440af 3 | timeCreated: 1464096294 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/UnitTests/ShaderGeneratorTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf6df2fd463c5a3489c65eee884c8488 3 | timeCreated: 1466509587 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Testing/Editor/Unity.ShaderGraph.EditorTests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9005d55594f84038984f88a9ddaf3491 3 | timeCreated: 1512551893 -------------------------------------------------------------------------------- /Testing/IntegrationTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48e4573d1f98ead4d9519560b321f962 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Absolute.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Exponential.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Length.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Log.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Modulo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Negate.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Normalize.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Posterize.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Reciprocal Square Root.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Advanced/Reciprocal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Basic/Add.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3c41cb2f3f5c8ed62f1f17cd6a2d1f93716b6611fbcb4ab261f557aaf2ae9d3 3 | size 3902 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Basic/Divide.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Basic/Multiply.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Basic/Power.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Basic/Square Root.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Basic/Subtract.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Derivative/DDX.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Derivative/DDXY.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Derivative/DDY.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Interpolation/Inverse Lerp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Interpolation/Lerp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Interpolation/Smoothstep.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Matrix/Matrix Construction.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Matrix/Matrix Determinant.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Matrix/Matrix Split.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Matrix/Matrix Transpose.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/Clamp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/Fraction.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/Maximum.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/Minimum.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/One Minus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/Random Range.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/Remap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Range/Saturate.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Round/Ceiling.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Round/Floor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Round/Round.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Round/Sign.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Round/Step.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Round/Truncate.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Arccosine.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Arcsine.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Arctangent.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Arctangent2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Cosine.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Degrees To Radians.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Hyporbolic Cosine.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Hyporbolic Sine.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Hyporbolic Tangent.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Radians To Degrees.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Sine.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Trigonometry/Tangent.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Vector/Cross Product.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Vector/Distance.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Vector/Dot Product.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Vector/Fresnel Effect.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Vector/Projection.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Vector/Rejection.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/.ShaderTemplates/Math/Vector/Transform.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f92ecb4d4bb6be90c758b7c0f4a4aaf22601cd1cbbe6b65bdc01931ff74e072 3 | size 3895 4 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6a29d9d3fa10ca4dbc83d847ef342ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29e6c1cf36f76894d8dd6a73774f337b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Advanced.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c3711d4007ddf840b307fbe88c09cfa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Basic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7f46b07a69307041b1f73305d4d3ff1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Derivative.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b436b8829a79dd9448f0c71db630a6ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Interpolation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba480e3f58d5fd746ba8448a2263a011 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Matrix.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa02b51ad9177d94d955f354a43a3479 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Range.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c866e5824695364daeb059c77664177 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Round.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6d144260934702439f467eb83fbb2ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Trigonometry.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4581ac85b32df24bbb49c8192de8409 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Testing/IntegrationTests/Graphs/Math/Vector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0c408f5eb7b67e45bfa3b13b9d3e2c5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity.ShaderGraph.Unreleased.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Unity.ShaderGraph.Unreleased.Editor", 3 | "references": [ 4 | "Unity.ShaderGraph.Editor" 5 | ], 6 | "optionalUnityReferences": [], 7 | "includePlatforms": [ 8 | "Editor" 9 | ], 10 | "excludePlatforms": [], 11 | "allowUnsafeCode": false 12 | } -------------------------------------------------------------------------------- /Unity.ShaderGraph.Unreleased.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 553866256eeda4718819db70148cc3f8 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /build.py.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b1a0d0e4b2baea45969a56eca979c72 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b601fe23f0347ab8e4892edf2cf76d7 3 | timeCreated: 1513757926 -------------------------------------------------------------------------------- /com.unity.shadergraph/.npmignore: -------------------------------------------------------------------------------- 1 | artifacts/** 2 | build/** 3 | /Editor/Testing* 4 | /.collabignore 5 | /.gitignore 6 | /.gitmodules 7 | .npmignore -------------------------------------------------------------------------------- /com.unity.shadergraph/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d652dd37e32b64cc9b4e36a1e7ddf1b8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da6dbb8238c9e431aa4f75b711ecf1bc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Documentation/ShaderGraph.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5aeff55910e44180b7d1de9ac9b221c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af35822cb60c9a44cba3e3f0317ac0ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/AssetCallbacks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d0b60652dca71b49a137663137e38ea 3 | folderAsset: yes 4 | timeCreated: 1464264920 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/AssetCallbacks/CreatePBRShaderGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfd5ef109afbc724fb00ddcfc7b9d24e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/AssetCallbacks/CreateShaderSubGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beb456cc86fd0ea4a9943f78665a8ec2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/AssetCallbacks/CreateUnlitShaderGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f2488f286c4e264ba7984f8889461cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/AbstractMaterialGraphAsset.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/AbstractShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1411039ed1342fa8efff6fa8a4c179d 3 | timeCreated: 1505346915 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/BitangentMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67f66fefcaac3e04388ec470163bf127 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/BooleanMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efad93f5b8245a54fb4fee128fc0f3f6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/BooleanShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8891f9466e6b01c498c3f4b2c6abc0eb 3 | timeCreated: 1505346922 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/ColorMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89d670f0d46a47d08be1209a78765617 3 | timeCreated: 1510659340 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/ColorRGBMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a29c1f6321a430d439c5623e2a44f397 3 | timeCreated: 1510659340 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/ColorShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47cf9e64b21b48b09320f42eb82ac3c3 3 | timeCreated: 1505346940 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/CubemapInputMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b961f6f7e2617446afb6a8e329d84d4 3 | timeCreated: 1509276977 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/CubemapMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ada5a840e90db5e4d901c686dca382ab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/CubemapShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca5ddce766d5ae24f8be282b4f7a21bd 3 | timeCreated: 1505346949 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/DynamicMatrixMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e985385869ccee4ca3c6fd2fd15174c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/DynamicValueMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38b2d4645340d4274a793e2e12ec097c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/DynamicVectorMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5dfe8ebe34ab064fb2769846adaa6a3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/GradientInputMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1acbb0046e714669a0792cec877146c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/GradientMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e0de094fe34c4c099697bd8e8e6ee07 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/GradientShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 544078fab8a6b410f907cc3ae58d977f 3 | timeCreated: 1505346949 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/IMaterialGraphAsset.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/IMaterialSlotHasValue.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | public interface IMaterialSlotHasValue 4 | { 5 | T defaultValue { get; } 6 | T value { get; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/IMaterialSlotHasValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94492244ef44a2e48b3e7790d7ac681d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/IShaderGraph.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | public interface IShaderGraph 6 | { 7 | string GetShader(string name, GenerationMode mode, out List configuredTextures); 8 | void LoadedFromDisk(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/IShaderGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad9b7f8f562a4ee59873c8c222874ce7 3 | timeCreated: 1507398800 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/IShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7594463b49eb4d70a1b938f328f0c0b0 3 | timeCreated: 1505346909 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/MaterialGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb1baf5d764fd6543ae40a4772ed0299 3 | timeCreated: 1464601237 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/MaterialGraphAsset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 562bd27a5e73fc64d80a1d9d936ffbd5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d998d7fbd75b97459f63fb4931d14b5 3 | timeCreated: 1463560120 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Matrix2MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cba4fbdefbdfa04cb2f6f84376a1353 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Matrix2ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0755d7f7a7e11cb4294563bbd0d434cc 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Matrix3MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5afbdbfda75b8c24ab4c07b8b3deddbe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Matrix3ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95c9c50f50c70c8479180b855a3bd255 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Matrix4MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69e137d338a024949b0a96921f86ee50 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Matrix4ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6379ce3fb15957343ba875d18f87efbc 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/MatrixShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79075442664faac49b00b4c93d28e08b 3 | timeCreated: 1505408377 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/NormalMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08969711a3defe445a6803416d676b5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/PositionMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0612806deec2f154587fad5a1f7b060a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Precision.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | public enum Precision 4 | { 5 | Default = 0, // half 6 | Full = 1, 7 | Fixed = 2, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Precision.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b4e2f7da2357424ab19865ce322e8be 3 | timeCreated: 1463576280 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/PreviewMode.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | public enum PreviewMode 4 | { 5 | Preview2D, 6 | Preview3D 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/PreviewMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 084b4ac1c80bf4746bb42f8d424c058f 3 | timeCreated: 1463576280 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/PreviewProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61922288469cb5438e9b4118b11a4d9 3 | timeCreated: 1463576280 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/SamplerStateMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 095dad16f79a37b4d9aba1e9c31691f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/SamplerStateShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b48a2e97e3e24303833a0062f90f4f13 3 | timeCreated: 1505436387 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/ScreenPositionMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20a329ed82797b8459cd7b6e22787f2e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/SerializableCubemap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01e80e004e94f5e48ad1cb83d5701300 3 | timeCreated: 1505346945 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/SerializableGuid.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb9a23efd2bc46e9a5e34bf5ff0c9768 3 | timeCreated: 1507479217 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/SerializableMesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 944c4fc9d004e7845adb3f86843ab742 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/SerializableTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4a4ff926ce74b059400bb049aefcba2 3 | timeCreated: 1505346945 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/ShaderGraphRequirements.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b80c0c5cd7f940d7bc0f37b22c454d40 3 | timeCreated: 1505698038 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/SpaceMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66199806246c45e493afdfc09208cbdc 3 | timeCreated: 1509290088 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/TangentMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c42ea0d8f47bbb4c9933bd050602d04 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Texture2DInputMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebeb3a21d05d49caa5d3318fb49b7612 3 | timeCreated: 1509276977 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Texture2DMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af7e1a692e5050c4ca44bb5a0e4ae4ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/TextureSamplerState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0238123ffe44c05bc05acf347c4d52d 3 | timeCreated: 1505436371 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/TextureShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08e62564fb95471d9580619b660c6531 3 | timeCreated: 1505346949 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/UVMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33b78bbe7d29809499c4e314b196f3cf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector1MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 040094878824e9948a10bc97408f84f3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector1ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 572cce24ed76430db4c21dfe82d01252 3 | timeCreated: 1505346922 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector2MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a465b9562de8ef4eb8d8169e41b7e90 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector2ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbd5691737554a15ab0b098fca999382 3 | timeCreated: 1505346926 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector3MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb19b5420cdd2894c92c1683993bee49 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector3ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34a68571f5ae4ebe8221824597dc0675 3 | timeCreated: 1505346931 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector4MaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aad5b297ad24f804aa36b04329f70020 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/Vector4ShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3989871719194dbdba09613ac74761b3 3 | timeCreated: 1505346935 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/VectorShaderProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f83ebb04c5c4df184601ef18aa7d89d 3 | timeCreated: 1505408377 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/VertexColorMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d03029f14ab44744d948ca282e300cb3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Graphs/ViewDirectionMaterialSlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd41e705ec44f6a428a22f08da1b19b3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Implementation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 931ad3a4d181270419aa65ff77b3ec16 3 | folderAsset: yes 4 | timeCreated: 1464264924 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Implementation/GraphObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 463ff292c8554dc18fb52fb725707a21 3 | timeCreated: 1508144011 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Implementation/SlotType.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | public enum SlotType 4 | { 5 | Input, 6 | Output 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa6cfee2afcf9584b9e67fe405662d0e 3 | folderAsset: yes 4 | timeCreated: 1464264921 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/Graph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20d63795c62940409089af61496db945 3 | timeCreated: 1513348939 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/Graph/IEdge.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.Graphing 4 | { 5 | public interface IEdge : IEquatable 6 | { 7 | SlotReference outputSlot { get; } 8 | SlotReference inputSlot { get; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/Graph/IGraphAsset.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/Graph/IGraphObject.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | public interface IGraphObject 4 | { 5 | IGraph graph { get; set; } 6 | void RegisterCompleteObjectUndo(string name); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/Graph/IGraphObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59661073fa1046e9b3aa3fea5c7f5c54 3 | timeCreated: 1508144485 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/Graph/IOnAssetEnabled.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | public interface IOnAssetEnabled 4 | { 5 | void OnEnable(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IGenerateProperties.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | public interface IGenerateProperties 4 | { 5 | void CollectShaderProperties(PropertyCollector properties, GenerationMode generationMode); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IGeneratesBodyCode.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | public interface IGeneratesBodyCode 4 | { 5 | void GenerateNodeCode(ShaderGenerator visitor, GenerationMode generationMode); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IGeneratesFunction.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | public interface IGeneratesFunction 4 | { 5 | void GenerateNodeFunction(FunctionRegistry registry, GenerationMode generationMode); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IGeneratesFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd53f18c76af5ab40bad30c1af8e06a0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IHasSettings.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine.Experimental.UIElements; 2 | 3 | namespace UnityEditor.Graphing 4 | { 5 | public interface IHasSettings 6 | { 7 | VisualElement CreateSettingsElement(); 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IHasSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaccc11846e23c84093c0d6780172063 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireBitangent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d413641b2ef00944932ea717573480f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireMeshUV.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c23e123c3ff140c997d68b663b484f29 3 | timeCreated: 1512469718 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireNormal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51bb8f11fbcf43f9bcec6418f1991397 3 | timeCreated: 1504092018 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequirePosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ab44fbceb0a1074899755c19bcd75cd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireScreenPosition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7223ad4b07146cc98966aad000f017d 3 | timeCreated: 1512469767 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireTangent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab1ebec1bc4dee54c9b0df228d5f6609 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireVertexColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04d654703054418c8db537b52ae070dc 3 | timeCreated: 1512469863 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/IMayRequireViewDirection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d9d2a94c350c0d4791c2220a26a54b0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Interfaces/NeededCoordinateSpace.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ad845bb8ef34e4589bcf630a8a8a31a 3 | timeCreated: 1505627582 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/LightweightPipeline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 916528b44860a914c9ce5f4db133a19b 3 | folderAsset: yes 4 | timeCreated: 1505322757 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be7d4ec304eccd8489095f90e0909d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/AlphaMode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | public enum SurfaceType 6 | { 7 | Opaque, 8 | Transparent 9 | } 10 | 11 | public enum AlphaMode 12 | { 13 | Alpha, 14 | Premultiply, 15 | Additive, 16 | Multiply 17 | } 18 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/AlphaMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05d113c37ee6ad24cbd4b11bbaab371f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/IPBRSubShader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph { 4 | public interface IPBRSubShader : ISubShader 5 | { 6 | } 7 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/IPBRSubShader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ba3702335c91a140bc0ee4c0891b160 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/ISubShader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEditor.Graphing; 3 | using UnityEngine.Experimental.UIElements; 4 | 5 | namespace UnityEditor.ShaderGraph 6 | { 7 | public interface ISubShader 8 | { 9 | string GetSubshader(IMasterNode masterNode, GenerationMode mode); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/ISubShader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e131b3f1bf111d4caab49dcc291757b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/IUnlitSubShader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | public interface IUnlitSubShader : ISubShader 6 | {} 7 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/IUnlitSubShader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f0e14eed65d43342acaeb7f9e597621 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/PBRMasterNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea7519738e2a9b4469abbff8d5c4d657 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/MasterNodes/UnlitMasterNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50acf8d45249d486e9e5ee72178100f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0082d52fe349b94449238a3d0db01df0 3 | folderAsset: yes 4 | timeCreated: 1464264919 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/AbstractMaterialNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4da4d7c02dcbdd4f9ef2d3b1106879a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ee6f8ab31f6bf349a63fdd21fc88664 3 | folderAsset: yes 4 | timeCreated: 1495532491 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Adjustment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75cc6d701e07fe246ba5377a454f74c4 3 | folderAsset: yes 4 | timeCreated: 1495532497 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Adjustment/ChannelMixerNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8d3a2d8c96e5994696f30f658efebea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Adjustment/InvertColorsNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e16bd8daac9e4e42861472225b22405 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Adjustment/WhiteBalanceNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c09bf9b59c16e0d48b9a346376d28640 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Blend.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f85e7557d4bb9874882ec3fa3044a53e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Filter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e005d19f5315e44bc9f50b3f6f8e50b2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Filter/DitherNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40b83fe632985494f96d2211c1963835 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Mask.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdb8c403de0823942a95a464c32ad0f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Mask/ChannelMaskNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3fd76d77a796b641ba3e9149086efc2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Mask/ColorMaskNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19255c24842f72c4c94c21b682a3e170 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Normal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7f9e0995756c4a4896912f8873eb63c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Normal/NormalStrengthNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c003a641a03160e478f4ce7ee8ce8da6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Normal/NormalUnpackNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1295ed68a1115a64088fc9298766fde8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Artistic/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32bf6e8fcb46ec24a9db465ddec10a34 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Channel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e3d3d0ce68bbc843b9b8734ab8d4f02 3 | folderAsset: yes 4 | timeCreated: 1495531110 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Channel/CombineNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3738e97908dea1f4bbc5e5a7cf562ecc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Channel/FlipNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa443691530c547418e195e22597f2af 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Channel/SwizzleNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 408ee761513fda7449bb3e428095726a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/FormerNameAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae5b0289aecc42c2b6f5b5b08b80bdd9 3 | timeCreated: 1513592955 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/FunctionMultiInput.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 323a0eb1930dff241b4547716c8eb21f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/GeometryNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e30171d4f8dfdc44beee8926ed3a83e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/GuidEncoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cf71f51f0308524080bb4aba2c9bb81 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/IMasterNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 570cf3dfbfc001e46a74d5f1342a3cfc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/IPropertyFromNode.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph 2 | { 3 | interface IPropertyFromNode 4 | { 5 | IShaderProperty AsShaderProperty(); 6 | int outputSlotId { get; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/IPropertyFromNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01ab4daa0c099e24e90bbb8623a4198b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ab9e53346965db4a8ee81a2b978dca5 3 | folderAsset: yes 4 | timeCreated: 1495526789 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Basic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b43ef3944c134a74995e6582de94d21b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Basic/ColorNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 325c0e24c20746345a5f90dc201973f8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Basic/ConstantNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f48f68efc30ae334098ff30e88fbf9db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Basic/TimeNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66310de0dabd3074aa56ab7714324cc0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Basic/Vector4Node.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f34a640000e664d4f8b2e0795df7fad9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Geometry.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e9138df313dc9e4fa20f92625c26b59 3 | folderAsset: yes 4 | timeCreated: 1495527166 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Geometry/NormalVectorNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b34601661908b3499c4c5e2ecd61f75 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Geometry/PositionNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 137f6921c5ee7ca4dbffb34de10f52f5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Geometry/ScreenPositionNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e204c7999bfa0ee42a18d8a560a36244 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Geometry/UVNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c05002dbfc8cd14cb3b544630cf1017 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Geometry/ViewDirectionNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30cf94a5e32cd254eb6eadf45e5cdfe3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Gradient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c3178830acf943f8bf39e5a651057f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Gradient/GradientNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74a7bf7b417cd4fe4be8985888ddffae 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Gradient/SampleGradientNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b12835ccaa954dc3ad06e9958e1e740 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Matrix.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 278936628273864438e48ff64aa20e32 3 | folderAsset: yes 4 | timeCreated: 1495662409 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/PBR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc2d9fef9660c574dad26112f3061731 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/PBR/DielectricSpecularNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f33e635e375c6b841bf3452a8da24be6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/PBR/MetalReflectanceNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba3db6b7663a26244a3efba1203bad6e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/PropertyNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93d9190b7b5ceb44ca24874c991b8da9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad6f48f5ba4c9a24ab7b9df345b45d6f 3 | folderAsset: yes 4 | timeCreated: 1495527773 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Scene/AmbientNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f9e9a126b4ecf24d81258763ac4a64d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Scene/CameraNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd27728b9ce314209beef46e595204c5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Scene/FogNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f934acb3f675022448ac439d87d84a80 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Scene/ObjectNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 081b8aed5e33ba1418a6a80f7693b9b4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Scene/ScreenNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94b2801c66359164e93dc371fc6762e2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Texture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07cc6493671f2344089936cf4a0ab49b 3 | folderAsset: yes 4 | timeCreated: 1495528572 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Texture/CubemapAssetNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 968ed0a541658844486b1ac5ab57ee2d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Input/Texture/Texture2DAssetNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c629b78a2ec57749ab4f76f4f42f423 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/MasterNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38072936174514040b3e08813a3ec4e7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e63f07e66d070412bb6e9582ca1eba72 3 | folderAsset: yes 4 | timeCreated: 1495526358 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Advanced.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 198ec765a01574320a8199338d27d9f1 3 | folderAsset: yes 4 | timeCreated: 1495526831 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Advanced/AbsoluteNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b496ffd32c22d94bb525897d152da05 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Advanced/LengthNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52afae1b1271e864c9c6965dc738c2dd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Advanced/NormalizeNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eb73d726827e2c41ae4d68018bc97e1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Advanced/PosterizeNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4322ad8d0cd83df47afd741a6b97d57b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Basic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4120c70d7c1a34d92b74137bf0b1bc67 3 | folderAsset: yes 4 | timeCreated: 1495526365 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Basic/AddNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 357a15b35b0cd9e47a66e10c5b627fcd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Basic/DivideNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e9d13e64300d6942ad51651d39f9ac6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Basic/MultiplyNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 088fb5bde3ece0f4190136b3ab43f7c4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Basic/PowerNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2957c4e08e061444a7444a1a03fb584 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Basic/SubtractNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b251c305a044f49438dff356f1e7bb84 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Derivative.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c10838deaed74574a94a340e53c2b229 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Interpolation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 458e098c89ad64ed3a48cb5f63a5a498 3 | folderAsset: yes 4 | timeCreated: 1495529238 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Interpolation/SmoothstepNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9ced96a233d64541b3c5d374a057d6b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Matrix.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfc8dbcaa9711c945b8fd983b819335d 3 | folderAsset: yes 4 | timeCreated: 1495700996 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Matrix/MatrixConstructionNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f3857db61fc34eaabd871901ae5a2b6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Range.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2018cd81f24ba46748d8b85c8f289f4f 3 | folderAsset: yes 4 | timeCreated: 1495527047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Range/ClampNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b58e88ce87f05b241b7dc5d9a31bac69 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Range/MaximumNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1de46e012f3608843978529b36704c2b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Range/MinimumNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79ffed9a70f191f4c966a6eb3ae10d07 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Range/OneMinusNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea3f39b56fc9544ff80cbe84aa0753d0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Round.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4da29d4d0744f43f8aaa921918f1f879 3 | folderAsset: yes 4 | timeCreated: 1495530810 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Trigonometry.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28b2b06f6ff88404c8c0d855b9599203 3 | folderAsset: yes 4 | timeCreated: 1495529705 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Trigonometry/HyperbolicCosineNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84e391acd9374974581c6759dcd8c1c9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Trigonometry/HyperbolicSineNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aac1ed8451e23d34ab8a362ad52fce32 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Trigonometry/HyperbolicTangentNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31c266bc8d479994eb5f6371038c75d2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Trigonometry/SineNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b10d839969f5484cad9632519dc7324 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Vector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3becf597e5084fe8825c0ec59a22201 3 | folderAsset: yes 4 | timeCreated: 1495527930 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Vector/DotProductNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97e1d998eea5d644095671979ecf2e54 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Vector/FresnelEffectNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06ab35c1dfe05414787df3ea2772d507 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Math/Vector/ReflectionNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6af2205640e32994db6fd7de8aebf1de 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Procedural.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e74e11761cab2b446b96ce63e2d657b3 3 | folderAsset: yes 4 | timeCreated: 1495530729 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Procedural/Noise.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f074934a38b41c4ea34460933733201 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Procedural/Noise/GradientNoiseNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8e5f34a7e7cbfe4a9444e42ccfc7ea4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Procedural/Shape.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74f319061d92c11439d4f7e87c991e89 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Procedural/Shape/PolygonNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97e0f55e76f7d88449d41fe897188d67 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/PropertyType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a76ce662d41461449975822790f4da8 3 | timeCreated: 1463576280 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/ShaderStage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph 4 | { 5 | public enum ShaderStage 6 | { 7 | Dynamic, 8 | Vertex, 9 | Fragment 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/ShaderStage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02d8af4c3fb9404ba3d6689c815c18d2 3 | timeCreated: 1504863207 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/SlotValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 226fc3c1379acec4b921a0ac0f986089 3 | timeCreated: 1446027539 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/UV.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9c248f478f706147ba7b8a660035472 3 | folderAsset: yes 4 | timeCreated: 1495529881 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/UV/TwirlNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3933f2692da9060438719b86844dcc7e 3 | timeCreated: 1495718285 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3d12703f494d7147b7874aabe94ab18 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c5103f75b5ec7445bb4c7b5a36f6aec 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/AllNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa03a542537ab4fb4a01a004efa97f58 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/AndNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34929a6d0bb40407fb00206ab0a10fa1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/AnyNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3d072ddeeee848848f2e59dbb5cf1d9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/BranchNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15ad3dc0ff22d7748af5e82ef5503d32 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/ComparisonNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c66cc68d0d0862b4c8ddfc00093d0ae0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/IsInfiniteNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6eaf1bad910084b85ac9ead4319c7820 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/IsNanNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e15b8359c9db4d0ea27f4deab94137e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/NandNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4defde87a9d5e44d8b8900d3f8ef6440 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/NotNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acb4138f9cef644dfa59102e871d1820 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/Logic/OrNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f6f860c0f1e24214b5d2974cc624227 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Nodes/Utility/PreviewNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a9c3dd2c3b0c4347876f3e448be2046 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/SubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 605eb5c5a280c014fa0952cd022f2579 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/SubGraph/SubGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 347dc049158c28144a30e90a49435741 3 | timeCreated: 1465559218 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/SubGraph/SubGraphOutputNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec0207b061e270b4a96a01fbe11c18ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/SurfaceModel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b85f45ad1b4d8d4f8c69ebfbc08c3a1 3 | folderAsset: yes 4 | timeCreated: 1480587334 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32e29ba6d98ba0140a774b7804b02a28 3 | folderAsset: yes 4 | timeCreated: 1464264921 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/DictionaryPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7624128bb110449387b7142499b45c91 3 | timeCreated: 1504252645 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/FunctionRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4fc6f4e30c408f9c0304cbed39a076 3 | timeCreated: 1513609614 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/GenerationResults.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c922293e622b43f4a1cd25a1246a17dc 3 | timeCreated: 1513866299 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/GraphUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 130a64d32c054c5fb51b1e5e13f93fc2 3 | timeCreated: 1513590591 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/Identifier.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 084958a703164b0fa26e0667aaa1767f 3 | timeCreated: 1513937833 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/ListPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10e666e06d86d864d9d607de2f213fdc 3 | timeCreated: 1453393151 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/Logging.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffca76f71e6326344ad2ff5e823d02f9 3 | timeCreated: 1464264926 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/MatrixNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1358e9b39cd7e8442bece5b15a2a7c63 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/ObjectPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a47156f8a364c344d9a2cc4bd904afc8 3 | timeCreated: 1453393151 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/PooledObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c55d0bf939d8458d8a982fb96a32364 3 | timeCreated: 1483023793 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/QueuePool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e895afeaf2a438195fbc4de17a4bedc 3 | timeCreated: 1505278549 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/ScreenSpaceType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d296e8d1103ed5c49a267d57be0f4d96 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/ShaderGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8fc6d3c3c9b7bf429981a1a5cc03807 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/ShaderGeneratorNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33854ecfd53cd054a99d8cb17b260170 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/ShaderSourceMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6c222989d9946e8a85c01ba541f4b41 3 | timeCreated: 1513867574 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/ShaderStringBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e64ba38b003f49bdb6ae4a2259be61c6 3 | timeCreated: 1513172221 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/StackPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93c41a4331c94d09a7561ea6b4983439 3 | timeCreated: 1505275069 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/TextureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph/49288e5f4c6f989d5ab85e4cc025c8c34a04522c/com.unity.shadergraph/Editor/Data/Util/TextureType.cs -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/TextureType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70e84ad0d8e6f4947a8e6aa53984bf2a 3 | timeCreated: 1469695793 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/UvChannel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityEditor.ShaderGraph { 4 | public enum UVChannel 5 | { 6 | UV0 = 0, 7 | UV1 = 1, 8 | UV2 = 2, 9 | UV3 = 3, 10 | } 11 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Data/Util/UvChannel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d77363d2f0df1f544b21d9e8a05f01a1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/DefaultShaderIncludes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5c6fed447622d14cabac1b6abcdd8a9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 628a36608983fbe49bd5b01cc799f525 3 | folderAsset: yes 4 | timeCreated: 1464264920 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Blackboard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 465f456071d65c648a34adddf33057f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Blackboard/Blackboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4312a96008ca8754593210fc93a4575d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 353b195797b2ff24092e20c643077f2f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardFieldPropertyView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d71f7c86172344198783dacd26515c28 3 | timeCreated: 1516704904 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bfb865d7a5e403682e681321336d241 3 | timeCreated: 1516713025 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardRow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7532a1da2f917d54c800efef4149ae69 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Blackboard/BlackboardSection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7dcab10210c08a488ac46fee4811efd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29309be0e1004fad967256187775c528 3 | timeCreated: 1507642261 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/ChannelEnumControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74fdde12d8253bd4c874acc555be0585 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/ChannelEnumMaskControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c32d860c6f767f14fa889dffac527bc5 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/ChannelMixerControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74a26e3294ebad94fa5d78ee95751556 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/ColorControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34e77444559b414f9fe81f9775229abf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/CubemapControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abdad6e5c36e0994290fcacce2fab066 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/DefaultControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20e01cb163f347c7819ae286c33baf85 3 | timeCreated: 1507642280 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/DielectricSpecularControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20b1492eed8154d8f9a454e3563d9c01 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/EnumControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a1e13c5e67541d7ad7ae18ea5a834e4 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/EnumConversionControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50c6ddf46f8445fba2689962d438c227 3 | timeCreated: 1512640228 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/GradientControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd2268cf57344487791694f9f136712e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/IControlAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f008211c3394775bdefde0b20e5c8ff 3 | timeCreated: 1507642348 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/IntegerControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57d18a57866821542806ab5253cf4310 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/ObjectControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f483132ae7b4689b20fd6b8c59633b5 3 | timeCreated: 1507900115 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/SliderControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c74a50771637c2d49980f713bbb7f4ea 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/TextureControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12334ec97337f32408251974c4077033 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/ToggleControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e83ab8eb10c20c4fbed2700d4f4f11c 3 | timeCreated: 1507817885 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Controls/VectorControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a515dc1bacc453b870777d8da9a7211 3 | timeCreated: 1507642288 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/EdgeConnectorListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c61698900b42c9a6b5e28c3651249a 3 | timeCreated: 1512740035 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/INodeModificationListener.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor.Graphing; 2 | 3 | namespace UnityEditor.ShaderGraph.Drawing 4 | { 5 | public interface INodeModificationListener 6 | { 7 | void OnNodeModified(ModificationScope scope); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/INodeModificationListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22f268830a014848b3a8bfdd5142a2d0 3 | timeCreated: 1510751718 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Inspector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d1f4aaa81084a13aaeb78dfaf7d35d7 3 | timeCreated: 1503663057 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Inspector/MasterPreviewView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 546947d46a85b284a971a3f056495735 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Inspector/WindowDockingLayout.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f70875ecccbc924b8f9f0d58bbb37e8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Manipulators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abc41fae76b14617ae2f7d38d3ebef3a 3 | timeCreated: 1502866309 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Manipulators/Draggable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad4cd8fec883e80418e5427585b426db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Manipulators/GraphDropTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fd73fb7c6eb4a04978545358d5b55d5 3 | timeCreated: 1509089285 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Manipulators/ResizeBorderFrame.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1128492b211994d46be4acd2ccac15fb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Manipulators/ResizeSideHandle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b165bcb20989fa2428253e51bc4f440f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Manipulators/Scrollable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ea23c5e75fdbea49824261efe5fc133 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Manipulators/WindowDraggable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 604681490aa779348a355368c95cfcf5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/PreviewManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa2238545a2849ecb0a6285b5a632a69 3 | timeCreated: 1505525146 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/PreviewRate.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.ShaderGraph.Drawing 2 | { 3 | public enum PreviewRate 4 | { 5 | Full, 6 | Throttled, 7 | Off 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/PreviewRate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa070520993a4b839e705dcd7f22e4d6 3 | timeCreated: 1506421104 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/SearchWindowProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cc3fd443c2a4dcc95b30a8ef3eaa6d3 3 | timeCreated: 1512377373 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a24ff57a99e64e33b4f88b1e81d84e97 3 | timeCreated: 1502955833 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/FloatField.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor.Experimental.UIElements; 2 | 3 | namespace UnityEditor.ShaderGraph.Drawing 4 | { 5 | public class FloatField : DoubleField 6 | { 7 | protected override string ValueToString(double v) 8 | { 9 | return ((float)v).ToString(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/FloatField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1ab7cad0fa94639990c801ecf80bff2 3 | timeCreated: 1512568655 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/GradientEdge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 161180898f1d444880080d666ab7be1d 3 | timeCreated: 1509019463 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/NodeSettingsView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 827eeffd55f0ac94b9c13553edbe457b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/PBRSettingsView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f6aa10456b30264a9bd4aeded39530a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/PortInputView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f69414f1afe45f794ec4b5d5bc2bcb5 3 | timeCreated: 1509629683 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/PreviewSceneResources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37873c3b010e40d1ac1e6aace3c0fb10 3 | timeCreated: 1510662606 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/PropertyRow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 917a1d0b14b14ca0861b93792b550f83 3 | timeCreated: 1521637416 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/PropertySheet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 145d8ce4e0814506803af49f799cdb02 3 | timeCreated: 1521645038 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/ShaderPort.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96f5a3d0303d4d9395a450dcce906110 3 | timeCreated: 1512739794 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56e544af973b458ea7e8051cd0848d24 3 | timeCreated: 1509718923 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/BooleanSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fc29d436587748dcaaefd8669c3d946 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/ColorRGBSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a184620cc50fd2e40a845d6ebb39529e 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/ColorSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07332ea5e51a4bd3b6fb63e8e07cc30b 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/CubemapSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b54f542a9d5f7b84e974b54d625d73ea 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/GradientSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5c808b828bf44895b35be954f0906e5 3 | timeCreated: 1510659384 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/LabelSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7e0bdc2deb5a43aca74fd1e84c94cfa 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/MultiFloatSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6511e850402b445298bdb3256d9a131b 3 | timeCreated: 1509721796 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/TextureSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49f18880b4854ccc8f383c55a7bc47b3 3 | timeCreated: 1509718979 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/Slots/UVSlotControlView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f19b65893a414156825079dfc9a6dea3 3 | timeCreated: 1509961226 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Drawing/Views/UnlitSettingsView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66dcef8109abbfc4fa27499aaa708dd4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Importers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1485bce8acd0428fae1525629b9ed8b 3 | folderAsset: yes 4 | timeCreated: 1495357309 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f811e405d64564b1c671c9813ea9a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d93b12df2d043f9876fa00095ab8c99 3 | timeCreated: 1516704856 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/BlackboardFieldExposed.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e916108bd27d6ab3d6ca4e654123bbeb20e71c65b985bbcc824de24c40c89ff 3 | size 328 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/BlackboardFieldPillBackground.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5f29065e09570aad7270aee87f57faee911feca9c72117814c63d8cee07cd1b 3 | size 1773 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronDown.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd8f41740bcc44f6f9a3af9208d4420b8a8d9ff2ad4ca7ba6af390e186e22756 3 | size 206 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronDown@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71f227e2f15bbbb619a13fee06a60a00bca63dbbfea2492de351e6f956c44e23 3 | size 327 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronLeft.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fc0f3e6dd15224bb10d61dc3047b03b14df6aa15fec4f79b2c44061fab13ae3 3 | size 188 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronLeft@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec7ca6ba2937d9614b8b4efbd0c27da2822be672ef6110f2652610f1d27cdce1 3 | size 286 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronRight.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7a5f6af072e51f8998c0fd241f59fee1e74f83fdb1224d56fe1d43c76214a38 3 | size 218 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronRight@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b51d825c74ba34235c868aa25ea3c632216b2fdee9726c8d58a5c5a379dd566f 3 | size 278 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronUp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1fc5ae8d5ff81018ef9b81a4a8c33e8cefc8a658ed0b34ad2b2f1963088ee6f 3 | size 176 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/NodeChevronUp@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b703f182282f9f7e481f382d54e9e2521e8f523f465c7783ed79f5b11ff2634a 3 | size 326 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/PreviewCollapse.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b7e0424b7aca0daf1f2d9331eafea4cdcd306c30de690b7f4e2006c8c8e2441 3 | size 225 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/PreviewCollapse@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe9aad4db9e8bf5ad916d6fdc5ca78aad8a297eabc9858f3ed472ce2325e4a6f 3 | size 357 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/PreviewExpand.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e5f77b480d22b7324a6a531de35364788d586b7bf2c1b7aef741cc5e1906caf 3 | size 237 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/GraphView/Nodes/PreviewExpand@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:426f212f6d548ce60594d63c3cb1338b98121369ab4b3be983a33a75d84b4945 3 | size 382 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4d6d4aaf7f25a14fb15dabc0b24d7ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bb1ebd9a31dfccc2bbf117aeab310659b9f3070cc9b13888792a9fd2cc7712a 3 | size 407 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a32aec42374252c8e1496e9ecb786d05f97ecc98bd22a0a86e646171aaa6cfe 3 | size 868 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons_hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af25f27b7ae2e7090acc262568e9a1bd1c0467d4fe67368723a28554d0e97f42 3 | size 380 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/SettingsIcons_hover@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3deac69801719035d64f7d33fba8d302899f9f58053d5e17ded0749acb3396ac 3 | size 808 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/Settings_Flyout_9slice.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a74ea891a33bbd154d206ed1e7cedfab1d69d30a6c32831eba48ca9613a4e4f4 3 | size 1920 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/Settings_Flyout_9slice@2x.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cfdbf24d0839a3f991e67892e81ff1fbd71f46b185f8312b099dc2c66165f01 3 | size 4978 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/settings_button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35c991fe8259e0caa1ff74c226f7bfc4b0b0d0680d75afb1711da8cc96407f1a 3 | size 809 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Icons/settingsbutton.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f76e1a85f625a61ce4cf7670e2f7664d24335a02ca3033f05424124b44bd27b 3 | size 397 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95a0c8e39aaf7f3468cff72de2b7c094 3 | folderAsset: yes 4 | timeCreated: 1502110345 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Shaders/BlitNoAlpha.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50b406436c6214c49aaaa6011b71dde8 3 | timeCreated: 1502007198 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | nonModifiableTextures: [] 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Shaders/Checkerboard.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5caf62d8bd7c44596ace77ef9eb8ea31 3 | timeCreated: 1502007198 4 | licenseType: Pro 5 | ShaderImporter: 6 | externalObjects: {} 7 | defaultTextures: [] 8 | nonModifiableTextures: [] 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f393962fcae179489132b01f969bb6e 3 | folderAsset: yes 4 | timeCreated: 1485544760 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4de09b690b402c4bab6110751305df5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/BooleanSlotControlView.uss: -------------------------------------------------------------------------------- 1 | BooleanSlotControlView { 2 | flex-direction: row; 3 | align-items: center; 4 | } 5 | 6 | BooleanSlotControlView > Toggle { 7 | width: 20; 8 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/ChannelEnumMaskControlView.uss: -------------------------------------------------------------------------------- 1 | ChannelEnumMaskControlView { 2 | flex-direction: row; 3 | flex: 1; 4 | padding-left: 8; 5 | padding-right: 8; 6 | padding-top: 4; 7 | padding-bottom: 4; 8 | width: 200; 9 | } 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/ColorRGBASlotControlView.uss: -------------------------------------------------------------------------------- 1 | ColorRGBASlotControlView { 2 | flex-direction: row; 3 | align-items: center; 4 | } 5 | 6 | ColorRGBASlotControlView > ColorField { 7 | width: 41; 8 | margin-left: 0; 9 | margin-right: 0; 10 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/ColorRGBSlotControlView.uss: -------------------------------------------------------------------------------- 1 | ColorRGBSlotControlView { 2 | flex-direction: row; 3 | align-items: center; 4 | } 5 | 6 | ColorRGBSlotControlView > ColorField { 7 | width: 41; 8 | margin-left: 0; 9 | margin-right: 0; 10 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/CubemapSlotControlView.uss: -------------------------------------------------------------------------------- 1 | CubemapSlotControlView { 2 | flex-direction: row; 3 | align-items: center; 4 | } 5 | 6 | CubemapSlotControlView > ObjectField { 7 | margin-top: 0; 8 | margin-bottom: 0; 9 | margin-left: 0; 10 | margin-right: 0; 11 | width: 100; 12 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/GradientSlotControlView.uss: -------------------------------------------------------------------------------- 1 | GradientSlotControlView { 2 | flex-direction: row; 3 | align-items: center; 4 | } 5 | 6 | GradientSlotControlView > GradientField { 7 | margin-left: 0; 8 | margin-right: 0; 9 | width: 41; 10 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/ScreenPositionSlotControlView.uss: -------------------------------------------------------------------------------- 1 | ScreenPositionSlotControlView > EnumField { 2 | margin-top: 0; 3 | margin-bottom: 0; 4 | margin-left: 0; 5 | margin-right: 0; 6 | width: 54; 7 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/TextureSlotControlView.uss: -------------------------------------------------------------------------------- 1 | TextureSlotControlView { 2 | flex-direction: row; 3 | align-items: center; 4 | } 5 | 6 | TextureSlotControlView > ObjectField { 7 | margin-top: 0; 8 | margin-bottom: 0; 9 | margin-left: 0; 10 | margin-right: 0; 11 | width: 100; 12 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/Controls/UVSlotControlView.uss: -------------------------------------------------------------------------------- 1 | UVSlotControlView > EnumField { 2 | margin-top: 0; 3 | margin-bottom: 0; 4 | margin-left: 0; 5 | margin-right: 0; 6 | width: 40; 7 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/MaterialGraph.uss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/MaterialGraphView.uss: -------------------------------------------------------------------------------- 1 | MaterialGraphView { 2 | background-color: #202020; 3 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/PixelCacheProfiler.uss: -------------------------------------------------------------------------------- 1 | PixelCacheProfilerView > #content > #title { 2 | font-style: bold; 3 | } 4 | 5 | PixelCacheProfilerView > #content > .row { 6 | flex-direction: row; 7 | } 8 | 9 | PixelCacheProfilerView > #content > .indented { 10 | padding-left: 8; 11 | } 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/PropertyNameReferenceField.uss: -------------------------------------------------------------------------------- 1 | TextField.modified { 2 | font-style: bold; 3 | } 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/Styles/PropertySheet.uss: -------------------------------------------------------------------------------- 1 | PropertySheet { 2 | margin-top: 4; 3 | margin-bottom: 4; 4 | } 5 | PropertySheet > #content > #header{ 6 | margin-left: 4; 7 | } 8 | 9 | PropertySheet > #content > #header > Label{ 10 | text-color: #C1C1C1; 11 | font-size: 11; 12 | font-style: bold; 13 | } 14 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/UXML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e14441797a82fb84fb4e43064342bcb5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/UXML/GraphView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d50f8ede1b641034a8c4d807ac62b84d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Resources/UXML/NodeSettings.uxml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Templates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52f964a4069524b47bd98441cad69cd3 3 | folderAsset: yes 4 | timeCreated: 1444201081 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Templates/HDUnlitPassForward.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6eeaaca43ab129049ae23a1bd89420c4 3 | timeCreated: 1481194716 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Templates/shader.template: -------------------------------------------------------------------------------- 1 | Shader "${ShaderName}" 2 | { 3 | Properties 4 | { 5 | ${ShaderPropertiesHeader} 6 | } 7 | 8 | ${SubShader} 9 | 10 | FallBack "Hidden/InternalErrorShader" 11 | } 12 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Templates/shader.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0764d353083d2284380f64ca6d578a1e 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Templates/subshader.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46fccd2bfdbe29d4d8743ad5e2454927 3 | timeCreated: 1481194716 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Templates/tesselationSubshader.template.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71a3d46ddb1693340a7de3973be90309 3 | timeCreated: 1481194716 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Unity.ShaderGraph.Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Unity.ShaderGraph.Editor", 3 | "references": [], 4 | "optionalUnityReferences": [], 5 | "includePlatforms": [ 6 | "Editor" 7 | ], 8 | "excludePlatforms": [], 9 | "allowUnsafeCode": false 10 | } -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Unity.ShaderGraph.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be0903cd8e1546f498710afdc59db5eb 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e45006b8ac3b76f4aa0df05ea8514cbe 3 | folderAsset: yes 4 | timeCreated: 1464264920 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util/CompatibilityExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c1717b624ad45ccbb3fa6bec28af711 3 | timeCreated: 1519741123 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util/CopyPasteGraph.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 187365d075d49dc46a3e09b81f0d6fdd 3 | timeCreated: 1483699278 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util/CreateSerializableGraph.cs: -------------------------------------------------------------------------------- 1 | namespace UnityEditor.Graphing 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util/IndexSet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41c67c52dd54464fa78d8ab286eb501b 3 | timeCreated: 1514376310 -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util/TypeMapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9c0c57b328abb94982f26ec960996d2 3 | timeCreated: 1485161458 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util/TypeMapping.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53ba6b433697da6468377c205573f728 3 | timeCreated: 1485164640 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/Editor/Util/UIUtilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60ebb16e194464bce8a4975da8fd215a 3 | timeCreated: 1476782702 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /com.unity.shadergraph/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3627da0ec84594020b79e02cec8d0b41 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /com.unity.shadergraph/ShaderGraphLibrary/Functions.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76c5c0b7561134f0ca526e50f239a4a2 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/ShaderGraphLibrary/GeometricTools.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07d3f5482ecfe425f91b12cd32be4cbe 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/ShaderGraphLibrary/ShaderConfig.cs.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c6472a689b6ae34e806881d3066cfb3 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/ShaderGraphLibrary/ShaderVariables.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bc64066748469e48861ed835a8b806d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/ShaderGraphLibrary/ShaderVariablesFunctions.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7084c0669cdb2af4ab8c669b3139e0df 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/ShaderGraphLibrary/ShaderVariablesMatrixDefsLegacyUnity.hlsl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d85288be460c884bba7ec9ef5c6684d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /com.unity.shadergraph/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.unity.shadergraph", 3 | "description": "Shader Graph", 4 | "version": "0.1.19", 5 | "unity": "2018.1", 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /com.unity.shadergraph/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5ac453c34e359d439de9d724772ed3d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | --------------------------------------------------------------------------------