├── .gitignore ├── .gitmodules ├── README.md ├── assets ├── main-menu.meta ├── main-menu │ ├── ListItem.prefab │ ├── ListItem.prefab.meta │ ├── scripts.meta │ ├── scripts │ │ ├── backbutton.ts │ │ ├── backbutton.ts.meta │ │ ├── listitem.ts │ │ ├── listitem.ts.meta │ │ ├── scenelist.ts │ │ └── scenelist.ts.meta │ ├── testlist.meta │ ├── testlist.scene │ ├── testlist.scene.meta │ ├── textures.meta │ └── textures │ │ ├── exitLeft.png │ │ ├── exitLeft.png.meta │ │ ├── left.png │ │ ├── left.png.meta │ │ ├── panelBG.png │ │ ├── panelBG.png.meta │ │ ├── right.png │ │ └── right.png.meta ├── migrate-canvas.ts ├── migrate-canvas.ts.meta ├── tests.meta └── tests │ ├── Herringbone.effect.meta │ ├── Herringbone.mtl.meta │ ├── Hex Lattice.effect.meta │ ├── Hex Lattice.mtl.meta │ ├── Houndstooth.effect.meta │ ├── Houndstooth.mtl.meta │ ├── Shader Graph.effect.meta │ ├── Shader Graph.mtl.meta │ ├── Smooth Wave.effect.meta │ ├── Smooth Wave.mtl.meta │ ├── Spiral.effect.meta │ ├── Spiral.mtl.meta │ ├── Stripes.effect.meta │ ├── Stripes.mtl.meta │ ├── Truchet.effect.meta │ ├── Truchet.mtl.meta │ ├── Whirl.effect.meta │ ├── Whirl.mtl.meta │ ├── Zig Zag.effect.meta │ ├── Zig Zag.mtl.meta │ ├── bacteria.effect.meta │ ├── bacteria.mtl.meta │ ├── barrel.meta │ ├── barrel │ ├── Barrel.effect │ ├── Barrel.mtl │ ├── Barrel.mtl.meta │ ├── VikingVillage.meta │ ├── VikingVillage │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── prop_barrel_01.fbx │ │ │ └── prop_barrel_01.fbx.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── prop_barrel_01_a.jpg │ │ │ ├── prop_barrel_01_a.jpg.meta │ │ │ ├── prop_barrel_01_m.jpg │ │ │ ├── prop_barrel_01_m.jpg.meta │ │ │ ├── prop_barrel_01_n.jpg │ │ │ └── prop_barrel_01_n.jpg.meta │ ├── barrel.effect.meta │ ├── barrel.scene │ ├── barrel.scene.meta │ ├── material-pbr.mtl │ ├── material-pbr.mtl.meta │ ├── material.mtl │ └── material.mtl.meta │ ├── brick.effect.meta │ ├── brick.mtl.meta │ ├── cubmap.meta │ ├── cubmap │ ├── cubemap.effect │ ├── cubemap.effect.meta │ ├── cubemap.mtl │ ├── cubemap.mtl.meta │ ├── cubemap.scene │ ├── cubemap.scene.meta │ ├── daytime.png │ └── daytime.png.meta │ ├── dots.effect.meta │ ├── dots.mtl.meta │ ├── eyeball.meta │ ├── eyeball │ ├── Eyeballs.effect │ ├── Eyeballs.effect.meta │ ├── Foam 1.png │ ├── Foam 1.png.meta │ ├── GustNoise.png │ ├── GustNoise.png.meta │ ├── eyeball.mtl │ ├── eyeball.mtl.meta │ ├── eyeball.scene │ ├── eyeball.scene.meta │ ├── eyeball2.mtl │ ├── eyeball2.mtl.meta │ ├── flower.jpg │ ├── flower.jpg.meta │ ├── glint3.jpg │ ├── glint3.jpg.meta │ ├── heart.jpg │ └── heart.jpg.meta │ ├── flame.meta │ ├── flame │ ├── Flame.effect │ ├── Flame.effect.meta │ ├── Flame.png │ ├── Flame.png.meta │ ├── Ramp.png │ ├── Ramp.png.meta │ ├── flame.mtl │ ├── flame.mtl.meta │ ├── flame.scene │ └── flame.scene.meta │ ├── globe.meta │ ├── globe │ ├── Globe.effect │ ├── Globe.effect.meta │ ├── gebco_08_rev_bath.png │ ├── gebco_08_rev_bath.png.meta │ ├── globe.mtl │ ├── globe.mtl.meta │ ├── globe.scene │ └── globe.scene.meta │ ├── grid.effect.meta │ ├── grid.mtl.meta │ ├── rim.meta │ ├── rim │ ├── rim.effect │ ├── rim.effect.meta │ ├── rim.mtl │ ├── rim.mtl.meta │ ├── rim.scene │ └── rim.scene.meta │ ├── shape.meta │ ├── shape │ ├── Herringbone.effect │ ├── Herringbone.effect.meta │ ├── Herringbone.mtl │ ├── Herringbone.mtl.meta │ ├── Hex Lattice.effect │ ├── Hex Lattice.effect.meta │ ├── Hex Lattice.mtl │ ├── Hex Lattice.mtl.meta │ ├── Houndstooth.effect │ ├── Houndstooth.effect.meta │ ├── Houndstooth.mtl │ ├── Houndstooth.mtl.meta │ ├── Smooth Wave.effect │ ├── Smooth Wave.effect.meta │ ├── Smooth Wave.mtl │ ├── Smooth Wave.mtl.meta │ ├── Spiral.effect │ ├── Spiral.effect.meta │ ├── Spiral.mtl │ ├── Spiral.mtl.meta │ ├── Stripes.effect │ ├── Stripes.effect.meta │ ├── Stripes.mtl │ ├── Stripes.mtl.meta │ ├── Truchet.effect │ ├── Truchet.effect.meta │ ├── Truchet.mtl │ ├── Truchet.mtl.meta │ ├── Whirl.effect │ ├── Whirl.effect.meta │ ├── Whirl.mtl │ ├── Whirl.mtl.meta │ ├── Zig Zag.effect │ ├── Zig Zag.effect.meta │ ├── Zig Zag.mtl │ ├── Zig Zag.mtl.meta │ ├── bacteria.effect │ ├── bacteria.effect.meta │ ├── bacteria.mtl │ ├── bacteria.mtl.meta │ ├── brick.effect │ ├── brick.effect.meta │ ├── brick.mtl │ ├── brick.mtl.meta │ ├── dots.effect │ ├── dots.effect.meta │ ├── dots.mtl │ ├── dots.mtl.meta │ ├── grid.effect │ ├── grid.effect.meta │ ├── grid.mtl │ ├── grid.mtl.meta │ ├── shape.scene │ └── shape.scene.meta │ ├── tv.meta │ └── tv │ ├── Poly.meta │ ├── Poly │ ├── Commodore 64 Texture.png │ ├── Commodore 64 Texture.png.meta │ ├── MonaLisa.jpg │ ├── MonaLisa.jpg.meta │ ├── Monitor.fbx │ └── Monitor.fbx.meta │ ├── TV.effect │ ├── TV.effect.meta │ ├── TV.mtl │ ├── TV.mtl.meta │ ├── TV.scene │ └── TV.scene.meta ├── package-lock.json ├── package.json ├── settings ├── 1.2.0 │ └── packages │ │ ├── builder.json │ │ ├── engine.json │ │ └── project.json └── v2 │ └── packages │ ├── builder.json │ ├── cocos-service.json │ ├── engine.json │ └── project.json ├── tests └── ushader │ ├── Assembly-CSharp-Editor.csproj │ ├── Assembly-CSharp.csproj │ ├── Assets │ ├── ExampleAssets.meta │ ├── ExampleAssets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── ConstructionLight_Mat.mat │ │ │ ├── ConstructionLight_Mat.mat.meta │ │ │ ├── DryWallPainted_Mat.mat │ │ │ ├── DryWallPainted_Mat.mat.meta │ │ │ ├── DryWall_Mat.mat │ │ │ ├── DryWall_Mat.mat.meta │ │ │ ├── Ground_Mat.mat │ │ │ ├── Ground_Mat.mat.meta │ │ │ ├── Hammer_Mat.mat │ │ │ ├── Hammer_Mat.mat.meta │ │ │ ├── HardHat_Mat.mat │ │ │ ├── HardHat_Mat.mat.meta │ │ │ ├── Jigsaw_Mat.mat │ │ │ ├── Jigsaw_Mat.mat.meta │ │ │ ├── LightBulb_Mat.mat │ │ │ ├── LightBulb_Mat.mat.meta │ │ │ ├── Liquid_Mat.mat │ │ │ ├── Liquid_Mat.mat.meta │ │ │ ├── Metal_Blue_Simple_Mat.mat │ │ │ ├── Metal_Blue_Simple_Mat.mat.meta │ │ │ ├── Metal_Simple_Mat.mat │ │ │ ├── Metal_Simple_Mat.mat.meta │ │ │ ├── OBS_Mat.mat │ │ │ ├── OBS_Mat.mat.meta │ │ │ ├── Paint1G_WAnim_Material.mat │ │ │ ├── Paint1G_WAnim_Material.mat.meta │ │ │ ├── PaintBrush_Mat.mat │ │ │ ├── PaintBrush_Mat.mat.meta │ │ │ ├── PaintLabel_Mat.mat │ │ │ ├── PaintLabel_Mat.mat.meta │ │ │ ├── Plastic_Black_Mat.mat │ │ │ ├── Plastic_Black_Mat.mat.meta │ │ │ ├── Plastic_Gray_Mat.mat │ │ │ ├── Plastic_Gray_Mat.mat.meta │ │ │ ├── Plastic_Ridges_Mat.mat │ │ │ ├── Plastic_Ridges_Mat.mat.meta │ │ │ ├── Plastic_Rough_Mat.mat │ │ │ ├── Plastic_Rough_Mat.mat.meta │ │ │ ├── Plastic_Transparent.mat │ │ │ ├── Plastic_Transparent.mat.meta │ │ │ ├── Plastic_White_Mat.mat │ │ │ ├── Plastic_White_Mat.mat.meta │ │ │ ├── Plastic_Yellow_Mat.mat │ │ │ ├── Plastic_Yellow_Mat.mat.meta │ │ │ ├── Strap_Mat.mat │ │ │ ├── Strap_Mat.mat.meta │ │ │ ├── Stud_Mat.mat │ │ │ └── Stud_Mat.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── ConstructionLight_Low.fbx │ │ │ ├── ConstructionLight_Low.fbx.meta │ │ │ ├── Stud.fbx │ │ │ ├── Stud.fbx.meta │ │ │ ├── Workbench.fbx │ │ │ ├── Workbench.fbx.meta │ │ │ ├── Workbench_Low.fbx │ │ │ ├── Workbench_Low.fbx.meta │ │ │ ├── Workshop_Set.fbx │ │ │ ├── Workshop_Set.fbx.meta │ │ │ ├── brush_low.fbx │ │ │ ├── brush_low.fbx.meta │ │ │ ├── hammer_low.fbx │ │ │ ├── hammer_low.fbx.meta │ │ │ ├── jigsaw_low.fbx │ │ │ ├── jigsaw_low.fbx.meta │ │ │ ├── magneticlevel_low.fbx │ │ │ ├── magneticlevel_low.fbx.meta │ │ │ ├── paintbucket_low.fbx │ │ │ ├── paintbucket_low.fbx.meta │ │ │ ├── safetygoggles_low.fbx │ │ │ ├── safetygoggles_low.fbx.meta │ │ │ ├── safetyhat_low.fbx │ │ │ ├── safetyhat_low.fbx.meta │ │ │ ├── small_plane.fbx │ │ │ └── small_plane.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Construction Light Low.prefab │ │ │ ├── Construction Light Low.prefab.meta │ │ │ ├── Paint Supplies.prefab │ │ │ ├── Paint Supplies.prefab.meta │ │ │ ├── Props.prefab │ │ │ ├── Props.prefab.meta │ │ │ ├── Workbench.prefab │ │ │ ├── Workbench.prefab.meta │ │ │ ├── Workbench_LOD0.prefab │ │ │ ├── Workbench_LOD0.prefab.meta │ │ │ ├── Workbench_LOD1.prefab │ │ │ ├── Workbench_LOD1.prefab.meta │ │ │ ├── Workshop Set.prefab │ │ │ └── Workshop Set.prefab.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── Paint1G_WAnim_Shader.ShaderGraph │ │ │ └── Paint1G_WAnim_Shader.ShaderGraph.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Concrete.meta │ │ │ ├── Concrete │ │ │ ├── Ground_Albedo.tif │ │ │ ├── Ground_Albedo.tif.meta │ │ │ ├── Ground_MetallicOcculusionSmoothness.tif │ │ │ ├── Ground_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Ground_Normal.tif │ │ │ └── Ground_Normal.tif.meta │ │ │ ├── Drywall.meta │ │ │ ├── Drywall │ │ │ ├── DrywallPainted_Normal.tif │ │ │ ├── DrywallPainted_Normal.tif.meta │ │ │ ├── Drywall_Albedo.tif │ │ │ ├── Drywall_Albedo.tif.meta │ │ │ ├── Drywall_AlbedoSmoothness.tif │ │ │ ├── Drywall_AlbedoSmoothness.tif.meta │ │ │ ├── Drywall_Normal.tif │ │ │ └── Drywall_Normal.tif.meta │ │ │ ├── Metal.meta │ │ │ ├── Metal │ │ │ ├── Metal_Albedo.tif │ │ │ ├── Metal_Albedo.tif.meta │ │ │ ├── Metal_MetallicSmoothness.tif │ │ │ ├── Metal_MetallicSmoothness.tif.meta │ │ │ ├── Metal_Normal.tif │ │ │ └── Metal_Normal.tif.meta │ │ │ ├── Plastic.meta │ │ │ ├── Plastic │ │ │ ├── Elastic_MetallicOcculusionSmoothness.tif │ │ │ ├── Elastic_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Elastic_Normal.tif │ │ │ ├── Elastic_Normal.tif.meta │ │ │ ├── PlasticRidges_Albedo.tif │ │ │ ├── PlasticRidges_Albedo.tif.meta │ │ │ ├── PlasticRidges_MetallicOcculusionSmoothness.tif │ │ │ ├── PlasticRidges_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── PlasticRidges_Normal.tif │ │ │ ├── PlasticRidges_Normal.tif.meta │ │ │ ├── PlasticRough_Albedo.tif │ │ │ ├── PlasticRough_Albedo.tif.meta │ │ │ ├── PlasticRough_MetallicOcculusionSmoothness.tif │ │ │ ├── PlasticRough_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Plastic_AlbedoSmoothness.tif │ │ │ ├── Plastic_AlbedoSmoothness.tif.meta │ │ │ ├── Plastic_Normal.tif │ │ │ └── Plastic_Normal.tif.meta │ │ │ ├── Props.meta │ │ │ ├── Props │ │ │ ├── Construction_Light.meta │ │ │ ├── Construction_Light │ │ │ │ ├── ConstructionLight_Albedo.tif │ │ │ │ ├── ConstructionLight_Albedo.tif.meta │ │ │ │ ├── ConstructionLight_MetallicOcculusionSmoothness.tif │ │ │ │ └── ConstructionLight_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Hammer.meta │ │ │ ├── Hammer │ │ │ │ ├── Hammer_Albedo.tif │ │ │ │ ├── Hammer_Albedo.tif.meta │ │ │ │ ├── Hammer_MetallicOcculusionSmoothness.tif │ │ │ │ ├── Hammer_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── Hammer_Normal.tif │ │ │ │ └── Hammer_Normal.tif.meta │ │ │ ├── HardHat.meta │ │ │ ├── HardHat │ │ │ │ ├── SafetyHat_Albedo.tif │ │ │ │ ├── SafetyHat_Albedo.tif.meta │ │ │ │ ├── SafetyHat_MetallicOcculusionSmoothness.tif │ │ │ │ ├── SafetyHat_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── SafetyHat_Normal.tif │ │ │ │ └── SafetyHat_Normal.tif.meta │ │ │ ├── Jigsaw.meta │ │ │ ├── Jigsaw │ │ │ │ ├── Jigsaw_Albedo.tif │ │ │ │ ├── Jigsaw_Albedo.tif.meta │ │ │ │ ├── Jigsaw_MetallicOcculusionSmoothness.tif │ │ │ │ ├── Jigsaw_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── Jigsaw_Normal.tif │ │ │ │ └── Jigsaw_Normal.tif.meta │ │ │ ├── Paint.meta │ │ │ └── Paint │ │ │ │ ├── Paint1G_Albedo.tif │ │ │ │ ├── Paint1G_Albedo.tif.meta │ │ │ │ ├── Paint1G_MetallicOcculusionRoughness.tif │ │ │ │ ├── Paint1G_MetallicOcculusionRoughness.tif.meta │ │ │ │ ├── Paint1G_Normal.tif │ │ │ │ ├── Paint1G_Normal.tif.meta │ │ │ │ ├── Paint5G_AlbedoSmoothness.tif │ │ │ │ ├── Paint5G_AlbedoSmoothness.tif.meta │ │ │ │ ├── PaintAnimMask.tif │ │ │ │ ├── PaintAnimMask.tif.meta │ │ │ │ ├── PaintLabel.tif │ │ │ │ ├── PaintLabel.tif.meta │ │ │ │ ├── Paintbrush_Albedo.tif │ │ │ │ ├── Paintbrush_Albedo.tif.meta │ │ │ │ ├── Paintbrush_MetallicOcculusionSmoothness.tif │ │ │ │ ├── Paintbrush_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── Paintbrush_Normal.tif │ │ │ │ └── Paintbrush_Normal.tif.meta │ │ │ ├── Wood.meta │ │ │ └── Wood │ │ │ ├── OBS_Albedo.tif │ │ │ ├── OBS_Albedo.tif.meta │ │ │ ├── OBS_MetallicOcculusionSmoothness.tif │ │ │ ├── OBS_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── OBS_Normal.tif │ │ │ ├── OBS_Normal.tif.meta │ │ │ ├── Plywood_Albedo.tif │ │ │ ├── Plywood_Albedo.tif.meta │ │ │ ├── Plywood_MetallicOcculusionSmoothness.tif │ │ │ ├── Plywood_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Plywood_Normal.tif │ │ │ └── Plywood_Normal.tif.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Skybox_Mat.mat │ │ └── Skybox_Mat.mat.meta │ ├── Presets.meta │ ├── Presets │ │ ├── AudioCompressedInMemory.preset │ │ ├── AudioCompressedInMemory.preset.meta │ │ ├── AudioStreaming.preset │ │ ├── AudioStreaming.preset.meta │ │ ├── Defaults.meta │ │ ├── Defaults │ │ │ ├── AlbedoTexture_Default.preset │ │ │ ├── AlbedoTexture_Default.preset.meta │ │ │ ├── AudioDecompressOnLoad.preset │ │ │ ├── AudioDecompressOnLoad.preset.meta │ │ │ ├── DirectionalLight_Default.preset │ │ │ └── DirectionalLight_Default.preset.meta │ │ ├── NormalTexture.preset │ │ ├── NormalTexture.preset.meta │ │ ├── UtilityTexture.preset │ │ └── UtilityTexture.preset.meta │ ├── Readme.asset │ ├── Readme.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ ├── SampleScene.unity.meta │ │ ├── SampleSceneLightingSettings.lighting │ │ └── SampleSceneLightingSettings.lighting.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── SimpleCameraController.cs │ │ └── SimpleCameraController.cs.meta │ ├── Settings.meta │ ├── Settings │ │ ├── ForwardRenderer.asset │ │ ├── ForwardRenderer.asset.meta │ │ ├── SampleSceneProfile.asset │ │ ├── SampleSceneProfile.asset.meta │ │ ├── UniversalRP-HighQuality.asset │ │ ├── UniversalRP-HighQuality.asset.meta │ │ ├── UniversalRP-LowQuality.asset │ │ ├── UniversalRP-LowQuality.asset.meta │ │ ├── UniversalRP-MediumQuality.asset │ │ └── UniversalRP-MediumQuality.asset.meta │ ├── TutorialInfo.meta │ ├── TutorialInfo │ │ ├── Icons.meta │ │ ├── Icons │ │ │ ├── Help_Icon.png │ │ │ ├── Help_Icon.png.meta │ │ │ ├── UniversalIcon.png │ │ │ └── UniversalIcon.png.meta │ │ ├── Layout.wlt │ │ ├── Layout.wlt.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── ReadmeEditor.cs │ │ │ └── ReadmeEditor.cs.meta │ │ │ ├── Readme.cs │ │ │ └── Readme.cs.meta │ ├── shadedr-graphs.meta │ └── shadedr-graphs │ │ ├── sample.unity │ │ ├── sample.unity.meta │ │ ├── tests.meta │ │ └── tests │ │ ├── barrel.meta │ │ ├── barrel │ │ ├── Barrel.ShaderGraph │ │ └── Barrel.ShaderGraph.meta │ │ ├── cubmap.meta │ │ ├── cubmap │ │ ├── cubemap.shadergraph │ │ └── cubemap.shadergraph.meta │ │ ├── eyeball.meta │ │ ├── eyeball │ │ ├── Eyeballs.shadergraph │ │ └── Eyeballs.shadergraph.meta │ │ ├── flame.meta │ │ ├── flame │ │ ├── Flame.ShaderGraph │ │ └── Flame.ShaderGraph.meta │ │ ├── globe.meta │ │ ├── globe │ │ ├── Globe.ShaderGraph │ │ └── Globe.ShaderGraph.meta │ │ ├── shape.meta │ │ ├── shape │ │ ├── Herringbone.shadergraph │ │ ├── Herringbone.shadergraph.meta │ │ ├── Hex Lattice.shadergraph │ │ ├── Hex Lattice.shadergraph.meta │ │ ├── Houndstooth.shadergraph │ │ ├── Houndstooth.shadergraph.meta │ │ ├── Procedural Patterns.meta │ │ ├── Procedural Patterns │ │ │ ├── .sample.json │ │ │ ├── Bacteria.ShaderSubGraph │ │ │ ├── Bacteria.ShaderSubGraph.meta │ │ │ ├── BacteriaSmoothstep.shadersubgraph │ │ │ ├── BacteriaSmoothstep.shadersubgraph.meta │ │ │ ├── Brick.ShaderSubGraph │ │ │ ├── Brick.ShaderSubGraph.meta │ │ │ ├── Dots.ShaderSubGraph │ │ │ ├── Dots.ShaderSubGraph.meta │ │ │ ├── Grid.ShaderSubGraph │ │ │ ├── Grid.ShaderSubGraph.meta │ │ │ ├── Herringbone.ShaderSubGraph │ │ │ ├── Herringbone.ShaderSubGraph.meta │ │ │ ├── Hex Lattice.ShaderSubGraph │ │ │ ├── Hex Lattice.ShaderSubGraph.meta │ │ │ ├── Houndstooth.ShaderSubGraph │ │ │ ├── Houndstooth.ShaderSubGraph.meta │ │ │ ├── Smooth Wave.ShaderSubGraph │ │ │ ├── Smooth Wave.ShaderSubGraph.meta │ │ │ ├── Spiral.ShaderSubGraph │ │ │ ├── Spiral.ShaderSubGraph.meta │ │ │ ├── Stripes.ShaderSubGraph │ │ │ ├── Stripes.ShaderSubGraph.meta │ │ │ ├── Truchet.ShaderSubGraph │ │ │ ├── Truchet.ShaderSubGraph.meta │ │ │ ├── Whirl.ShaderSubGraph │ │ │ ├── Whirl.ShaderSubGraph.meta │ │ │ ├── Zig Zag.ShaderSubGraph │ │ │ └── Zig Zag.ShaderSubGraph.meta │ │ ├── Smooth Wave.shadergraph │ │ ├── Smooth Wave.shadergraph.meta │ │ ├── Spiral.shadergraph │ │ ├── Spiral.shadergraph.meta │ │ ├── Stripes.shadergraph │ │ ├── Stripes.shadergraph.meta │ │ ├── Truchet.shadergraph │ │ ├── Truchet.shadergraph.meta │ │ ├── Whirl.shadergraph │ │ ├── Whirl.shadergraph.meta │ │ ├── Zig Zag.shadergraph │ │ ├── Zig Zag.shadergraph.meta │ │ ├── bacteria.shadergraph │ │ ├── bacteria.shadergraph.meta │ │ ├── brick.shadergraph │ │ ├── brick.shadergraph.meta │ │ ├── dots.shadergraph │ │ ├── dots.shadergraph.meta │ │ ├── grid.shadergraph │ │ └── grid.shadergraph.meta │ │ ├── tv.meta │ │ └── tv │ │ ├── TV.ShaderGraph │ │ └── TV.ShaderGraph.meta │ ├── Logs │ ├── AssetImportWorker0-prev.log │ ├── AssetImportWorker0.log │ └── Packages-Update.log │ ├── Packages │ ├── manifest.json │ └── packages-lock.json │ ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── URPProjectSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset │ ├── UserSettings │ └── EditorUserSettings.asset │ └── ushader.sln └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | #/////////////////////////// 2 | # Cocos Creator 3D Project 3 | #/////////////////////////// 4 | library/ 5 | temp/ 6 | local/ 7 | build/ 8 | profiles/ 9 | 10 | #////////////////////////// 11 | # NPM 12 | #////////////////////////// 13 | node_modules/ 14 | 15 | #////////////////////////// 16 | # VSCode 17 | #////////////////////////// 18 | .vscode/ 19 | 20 | #////////////////////////// 21 | # WebStorm 22 | #////////////////////////// 23 | .idea/ 24 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Shader Graph Examples 2 | 3 | Examples for https://github.com/2youyou2/shader-graph based on Cocos Creator 3D v3.4. 4 | 5 | The origin example ***.ShaderGraph files** are in the **tests\ushader\Assets\shadedr-graphs** folder。 6 | 7 | # Install 8 | 9 | 1. git clone git@github.com:2youyou2/shader-graph-examples.git 10 | 4. npm install 11 | 12 | # Usage 13 | 14 | 1. Click the **shader-graph** menu on the top bar. 15 | 16 | ![image](https://user-images.githubusercontent.com/1862402/90206720-fb00c580-de16-11ea-8f20-40989e3d6196.png) 17 | 18 | 2. Add the src folder and dst folder to configuration. 19 | - The src folder should contains the *.ShaderGraph files and the relative *.ShaderSubGraph files. 20 | - Shader Graph will generate the effect files to the dst folder. 21 | 22 | 3. Click **generate** button 23 | 24 | 25 | # Screenshots 26 | 27 | ![image](https://user-images.githubusercontent.com/1862402/90206312-f1c32900-de15-11ea-9db6-2cbb5df9df36.png) 28 | 29 | ![image](https://user-images.githubusercontent.com/1862402/90207181-2fc14c80-de18-11ea-88a5-6c16c45fd331.png) 30 | 31 | ![image](https://user-images.githubusercontent.com/1862402/90206362-09021680-de16-11ea-93e5-8890e0b9ce4d.png) 32 | 33 | ![image](https://user-images.githubusercontent.com/1862402/90206424-26cf7b80-de16-11ea-95f2-dbb1993ff9d8.png) 34 | -------------------------------------------------------------------------------- /assets/main-menu.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "040d7b7e-43f4-4e2e-9081-fcb433977575", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/main-menu/ListItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "576c8694-8c35-4537-9711-30b8d26a6dc8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "ListItem" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/main-menu/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e40ba74c-8687-422d-8045-debd019b34e3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/main-menu/scripts/backbutton.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b20ed616-639a-4ca3-abfd-9efa57c03b1b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "moduleId": "project:///assets/main-menu/scripts/backbutton.js", 10 | "importerSettings": 7, 11 | "simulateGlobals": [] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/main-menu/scripts/listitem.ts: -------------------------------------------------------------------------------- 1 | import { _decorator, ButtonComponent, Component, director, LabelComponent, Node } from 'cc'; 2 | import { BackButton } from './backbutton'; 3 | import { sceneArray } from './scenelist'; 4 | const { ccclass, property } = _decorator; 5 | 6 | @ccclass('ListItem') 7 | export class ListItem extends Component { 8 | 9 | public index = -1; 10 | public _name = ''; 11 | public label: LabelComponent | null = null; 12 | public button: ButtonComponent | null = null; 13 | 14 | public onload () { 15 | 16 | } 17 | 18 | public start () { 19 | // Your initialization goes here. 20 | this.index = this.node.getSiblingIndex(); 21 | this._name = ''; 22 | if (this.node){ 23 | this.label = this.node.getComponentInChildren(LabelComponent) as LabelComponent; 24 | this.button = this.node.getComponent(ButtonComponent) as ButtonComponent; 25 | } 26 | this.updateItem(this.index, sceneArray[this.index]); 27 | } 28 | 29 | public loadScene () { 30 | BackButton.saveOffset(); 31 | BackButton.saveIndex(this.index); 32 | this.button.interactable = false; 33 | director.loadScene(this._name, BackButton.refreshButton); 34 | } 35 | 36 | public updateItem (idx: number, name: string) { 37 | this.index = idx; 38 | this._name = name; 39 | this.label.string = name; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/main-menu/scripts/listitem.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "dfb24d20-524e-45cc-b256-dbe19b1c946f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "moduleId": "project:///assets/main-menu/scripts/listitem.js", 10 | "importerSettings": 7, 11 | "simulateGlobals": [] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/main-menu/scripts/scenelist.ts: -------------------------------------------------------------------------------- 1 | import { _decorator, Component, instantiate, Node, Prefab } from 'cc'; 2 | const { ccclass, property } = _decorator; 3 | 4 | export const sceneArray: string[] = []; 5 | 6 | @ccclass('SceneManager') 7 | export class SceneManager extends Component { 8 | 9 | @property ({ type: Prefab }) 10 | public itemPrefab: Prefab | null = null; 11 | 12 | public onLoad () { 13 | if (this.itemPrefab){ 14 | sceneArray.sort((a, b) => { 15 | if (a.indexOf('test')) { 16 | return -1; 17 | } 18 | else if (b.indexOf('test')) { 19 | return 1; 20 | } 21 | 22 | return 0; 23 | }) 24 | 25 | for (let i = 0; i < sceneArray.length; i++ ) { 26 | const item = instantiate(this.itemPrefab); 27 | this.node.addChild(item); 28 | } 29 | } 30 | } 31 | 32 | public start () { 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /assets/main-menu/scripts/scenelist.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "56ce0300-7432-47da-a05e-c3232e4d09d6", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "moduleId": "project:///assets/main-menu/scripts/scenelist.js", 10 | "importerSettings": 7, 11 | "simulateGlobals": [] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/main-menu/testlist.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "0.0.1", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "39db08e0-b7aa-40fd-96d4-a063f8dc2508", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/main-menu/testlist.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "72497614-6ff8-4b16-951c-68f9994e5a1e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/main-menu/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "883ddd75-7126-4fb4-94a2-1e440a7e56ed", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/main-menu/textures/exitLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/main-menu/textures/exitLeft.png -------------------------------------------------------------------------------- /assets/main-menu/textures/exitLeft.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "ef1ece82-46e5-43f3-b7ae-f8ca066eb041", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "ef1ece82-46e5-43f3-b7ae-f8ca066eb041@6c48a", 14 | "displayName": "exitLeft", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "clamp-to-edge", 25 | "wrapModeT": "clamp-to-edge", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "ef1ece82-46e5-43f3-b7ae-f8ca066eb041" 33 | } 34 | }, 35 | "f9941": { 36 | "ver": "1.0.9", 37 | "importer": "sprite-frame", 38 | "name": "spriteFrame", 39 | "id": "f9941", 40 | "displayName": "exitLeft", 41 | "uuid": "ef1ece82-46e5-43f3-b7ae-f8ca066eb041@f9941", 42 | "imported": true, 43 | "files": [ 44 | ".json" 45 | ], 46 | "subMetas": {}, 47 | "userData": { 48 | "wrapModeS": "repeat", 49 | "wrapModeT": "repeat", 50 | "minfilter": "linear", 51 | "magfilter": "linear", 52 | "mipfilter": "none", 53 | "premultiplyAlpha": false, 54 | "anisotropy": 1, 55 | "trimType": "auto", 56 | "trimThreshold": 1, 57 | "rotated": false, 58 | "offsetX": -1, 59 | "offsetY": -4, 60 | "trimX": 18, 61 | "trimY": 26, 62 | "width": 62, 63 | "height": 56, 64 | "rawWidth": 100, 65 | "rawHeight": 100, 66 | "borderTop": 0, 67 | "borderBottom": 0, 68 | "borderLeft": 0, 69 | "borderRight": 0, 70 | "isUuid": true, 71 | "imageUuidOrDatabaseUri": "ef1ece82-46e5-43f3-b7ae-f8ca066eb041@6c48a", 72 | "atlasUuid": "", 73 | "packable": true 74 | } 75 | } 76 | }, 77 | "userData": { 78 | "type": "sprite-frame", 79 | "redirect": "ef1ece82-46e5-43f3-b7ae-f8ca066eb041@f9941", 80 | "hasAlpha": true 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /assets/main-menu/textures/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/main-menu/textures/left.png -------------------------------------------------------------------------------- /assets/main-menu/textures/left.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "0d68e115-799b-4fc4-a809-d2db26efa613", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "0d68e115-799b-4fc4-a809-d2db26efa613@6c48a", 14 | "displayName": "left", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "clamp-to-edge", 25 | "wrapModeT": "clamp-to-edge", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "0d68e115-799b-4fc4-a809-d2db26efa613" 33 | } 34 | }, 35 | "f9941": { 36 | "ver": "1.0.9", 37 | "importer": "sprite-frame", 38 | "name": "spriteFrame", 39 | "id": "f9941", 40 | "displayName": "left", 41 | "uuid": "0d68e115-799b-4fc4-a809-d2db26efa613@f9941", 42 | "imported": true, 43 | "files": [ 44 | ".json" 45 | ], 46 | "subMetas": {}, 47 | "userData": { 48 | "wrapModeS": "repeat", 49 | "wrapModeT": "repeat", 50 | "minfilter": "linear", 51 | "magfilter": "linear", 52 | "mipfilter": "none", 53 | "premultiplyAlpha": false, 54 | "anisotropy": 1, 55 | "trimType": "auto", 56 | "trimThreshold": 1, 57 | "rotated": false, 58 | "offsetX": 0, 59 | "offsetY": 0, 60 | "trimX": 30, 61 | "trimY": 18, 62 | "width": 40, 63 | "height": 64, 64 | "rawWidth": 100, 65 | "rawHeight": 100, 66 | "borderTop": 0, 67 | "borderBottom": 0, 68 | "borderLeft": 0, 69 | "borderRight": 0, 70 | "isUuid": true, 71 | "imageUuidOrDatabaseUri": "0d68e115-799b-4fc4-a809-d2db26efa613@6c48a", 72 | "atlasUuid": "", 73 | "packable": true 74 | } 75 | } 76 | }, 77 | "userData": { 78 | "type": "sprite-frame", 79 | "redirect": "0d68e115-799b-4fc4-a809-d2db26efa613@f9941", 80 | "hasAlpha": true 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /assets/main-menu/textures/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/main-menu/textures/panelBG.png -------------------------------------------------------------------------------- /assets/main-menu/textures/panelBG.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "18abe283-bda0-4c34-820a-eacb447b8d55", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "18abe283-bda0-4c34-820a-eacb447b8d55@6c48a", 14 | "displayName": "panelBG", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "clamp-to-edge", 25 | "wrapModeT": "clamp-to-edge", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "18abe283-bda0-4c34-820a-eacb447b8d55" 33 | } 34 | }, 35 | "f9941": { 36 | "ver": "1.0.9", 37 | "importer": "sprite-frame", 38 | "name": "spriteFrame", 39 | "id": "f9941", 40 | "displayName": "panelBG", 41 | "uuid": "18abe283-bda0-4c34-820a-eacb447b8d55@f9941", 42 | "imported": true, 43 | "files": [ 44 | ".json" 45 | ], 46 | "subMetas": {}, 47 | "userData": { 48 | "wrapModeS": "repeat", 49 | "wrapModeT": "repeat", 50 | "minfilter": "linear", 51 | "magfilter": "linear", 52 | "mipfilter": "none", 53 | "premultiplyAlpha": false, 54 | "anisotropy": 1, 55 | "trimType": "auto", 56 | "trimThreshold": 1, 57 | "rotated": false, 58 | "offsetX": 0, 59 | "offsetY": 0, 60 | "trimX": 0, 61 | "trimY": 0, 62 | "width": 27, 63 | "height": 30, 64 | "rawWidth": 27, 65 | "rawHeight": 30, 66 | "borderTop": 12, 67 | "borderBottom": 15, 68 | "borderLeft": 11, 69 | "borderRight": 11, 70 | "isUuid": true, 71 | "imageUuidOrDatabaseUri": "18abe283-bda0-4c34-820a-eacb447b8d55@6c48a", 72 | "atlasUuid": "", 73 | "packable": true 74 | } 75 | } 76 | }, 77 | "userData": { 78 | "type": "sprite-frame", 79 | "redirect": "18abe283-bda0-4c34-820a-eacb447b8d55@f9941", 80 | "hasAlpha": true 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /assets/main-menu/textures/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/main-menu/textures/right.png -------------------------------------------------------------------------------- /assets/main-menu/textures/right.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "aa2f4b86-f9f6-4434-94ff-10165c4e9780", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "aa2f4b86-f9f6-4434-94ff-10165c4e9780@6c48a", 14 | "displayName": "right", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "clamp-to-edge", 25 | "wrapModeT": "clamp-to-edge", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "aa2f4b86-f9f6-4434-94ff-10165c4e9780" 33 | } 34 | }, 35 | "f9941": { 36 | "ver": "1.0.9", 37 | "importer": "sprite-frame", 38 | "name": "spriteFrame", 39 | "id": "f9941", 40 | "displayName": "right", 41 | "uuid": "aa2f4b86-f9f6-4434-94ff-10165c4e9780@f9941", 42 | "imported": true, 43 | "files": [ 44 | ".json" 45 | ], 46 | "subMetas": {}, 47 | "userData": { 48 | "wrapModeS": "repeat", 49 | "wrapModeT": "repeat", 50 | "minfilter": "linear", 51 | "magfilter": "linear", 52 | "mipfilter": "none", 53 | "premultiplyAlpha": false, 54 | "anisotropy": 1, 55 | "trimType": "auto", 56 | "trimThreshold": 1, 57 | "rotated": false, 58 | "offsetX": 0, 59 | "offsetY": 0, 60 | "trimX": 30, 61 | "trimY": 18, 62 | "width": 40, 63 | "height": 64, 64 | "rawWidth": 100, 65 | "rawHeight": 100, 66 | "borderTop": 0, 67 | "borderBottom": 0, 68 | "borderLeft": 0, 69 | "borderRight": 0, 70 | "isUuid": true, 71 | "imageUuidOrDatabaseUri": "aa2f4b86-f9f6-4434-94ff-10165c4e9780@6c48a", 72 | "atlasUuid": "", 73 | "packable": true 74 | } 75 | } 76 | }, 77 | "userData": { 78 | "type": "sprite-frame", 79 | "redirect": "aa2f4b86-f9f6-4434-94ff-10165c4e9780@f9941", 80 | "hasAlpha": true 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /assets/migrate-canvas.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a38dec43-1195-4bff-a126-07a60e62096f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/tests.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "27655f50-a57f-4fd8-bd60-d61c3aa37c52", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/Herringbone.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "5a71a8b3-b9d7-41d8-ad08-fce9cd3069c1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Herringbone.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "0ca9e0de-d347-4cf2-857a-3a2f57ea4fed", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Hex Lattice.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "a0ded267-e3d7-4be3-bef5-0cf89113a3bf", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Hex Lattice.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "7c6032c1-f30b-4c4f-81d2-c3f5f7e14f89", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Houndstooth.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "64090020-e5e6-4815-acc8-c54149f21edd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Houndstooth.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "cd70c57a-728d-4e09-877d-ee7d3d208c05", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Shader Graph.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "4aeedb11-6fab-40e6-b7ce-b688fa0010de", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Shader Graph.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "3dadb32f-9324-4e23-8655-976a7bde68b8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Smooth Wave.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "f9314517-1d5b-4189-8472-905560cd84c4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Smooth Wave.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "88f37cd7-ae47-49fb-8889-6a4a3b29be7b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Spiral.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "aafa3c85-8c38-4b0f-9188-d7ca600a599e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Spiral.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "bc9d49ab-bc5e-41ef-a9cc-1f4740181584", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Stripes.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "55affad9-52d6-423b-a626-97f6645e2110", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Stripes.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "1b29e975-961a-4884-af8d-6e545895c26d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Truchet.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "8603e606-94ce-4237-8713-8a8c4326bc08", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Truchet.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "6adfb5e8-fa94-409e-9169-430d77f2b627", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Whirl.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "4ea2d3bd-f4bb-47be-bd2e-8b15eb77d322", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Whirl.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "523feaa8-4e7d-4d7b-a0ed-e25cc9023140", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Zig Zag.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "56a2e52c-02c3-4887-83dd-de2162f057cc", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/Zig Zag.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "74ab6cd9-9f22-414e-ae55-cd0d04a1056f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/bacteria.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "b1437163-4d04-4190-9e40-23ac0b04c8e3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/bacteria.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "6eb46d71-8eb4-4bda-87e0-83653ca1ca5a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/barrel.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "26550dac-5a7f-413d-8f97-4eb9acf193e2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/barrel/Barrel.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "41e1b033-742e-49ca-ae3b-4c60ac4b268e" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_NORMAL_MAP": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | { 28 | "albedo": { 29 | "__uuid__": "ae6a59fd-3662-49f1-a648-4b9122126324@6c48a" 30 | }, 31 | "metallicaAndSmooth": { 32 | "__uuid__": "b99d609a-23cd-46fd-a9bc-29ce8466c964@6c48a" 33 | }, 34 | "normal": { 35 | "__uuid__": "eca5eb84-ae21-4dd7-b92e-0755a3b2bbfb@6c48a" 36 | } 37 | } 38 | ] 39 | } -------------------------------------------------------------------------------- /assets/tests/barrel/Barrel.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "fd448e4a-9553-4376-aa5f-276e44ada62f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f5a468b3-dbd5-446f-ac80-50f4b9af5744", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Models.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3123dd77-c0a9-4e30-bbaf-7b577a2add24", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Models/prop_barrel_01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/barrel/VikingVillage/Models/prop_barrel_01.fbx -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Models/prop_barrel_01.fbx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.1.10", 3 | "importer": "fbx", 4 | "imported": true, 5 | "uuid": "4fbd941d-cd66-4f6d-bb4d-403454948ce6", 6 | "files": [], 7 | "subMetas": { 8 | "72da9": { 9 | "importer": "gltf-mesh", 10 | "uuid": "4fbd941d-cd66-4f6d-bb4d-403454948ce6@72da9", 11 | "displayName": "", 12 | "id": "72da9", 13 | "name": "prop_barrel_01.mesh", 14 | "ver": "1.1.0", 15 | "imported": true, 16 | "files": [ 17 | ".bin", 18 | ".json" 19 | ], 20 | "subMetas": {}, 21 | "userData": { 22 | "gltfIndex": 0 23 | } 24 | }, 25 | "77bca": { 26 | "importer": "gltf-material", 27 | "uuid": "4fbd941d-cd66-4f6d-bb4d-403454948ce6@77bca", 28 | "displayName": "", 29 | "id": "77bca", 30 | "name": "mat_barrel_01.material", 31 | "ver": "1.0.14", 32 | "imported": true, 33 | "files": [ 34 | ".json" 35 | ], 36 | "subMetas": {}, 37 | "userData": { 38 | "gltfIndex": 0 39 | } 40 | }, 41 | "d5d36": { 42 | "importer": "gltf-scene", 43 | "uuid": "4fbd941d-cd66-4f6d-bb4d-403454948ce6@d5d36", 44 | "displayName": "", 45 | "id": "d5d36", 46 | "name": "prop_barrel_01.prefab", 47 | "ver": "1.0.12", 48 | "imported": true, 49 | "files": [ 50 | ".json" 51 | ], 52 | "subMetas": {}, 53 | "userData": { 54 | "gltfIndex": 0 55 | } 56 | } 57 | }, 58 | "userData": { 59 | "imageMetas": [], 60 | "redirect": "4fbd941d-cd66-4f6d-bb4d-403454948ce6@d5d36", 61 | "assetFinder": { 62 | "meshes": [ 63 | "4fbd941d-cd66-4f6d-bb4d-403454948ce6@72da9" 64 | ], 65 | "skeletons": [], 66 | "textures": [], 67 | "materials": [ 68 | "4fbd941d-cd66-4f6d-bb4d-403454948ce6@77bca" 69 | ], 70 | "scenes": [ 71 | "4fbd941d-cd66-4f6d-bb4d-403454948ce6@d5d36" 72 | ] 73 | }, 74 | "legacyFbxImporter": true 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "effa0384-ab50-4b36-9ac4-2b0aad7ce05b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_a.jpg -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_a.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "ae6a59fd-3662-49f1-a648-4b9122126324", 6 | "files": [ 7 | ".jpg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "ae6a59fd-3662-49f1-a648-4b9122126324@6c48a", 14 | "displayName": "prop_barrel_01_a", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "ae6a59fd-3662-49f1-a648-4b9122126324" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "ae6a59fd-3662-49f1-a648-4b9122126324@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_m.jpg -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_m.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "b99d609a-23cd-46fd-a9bc-29ce8466c964", 6 | "files": [ 7 | ".jpg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "b99d609a-23cd-46fd-a9bc-29ce8466c964@6c48a", 14 | "displayName": "prop_barrel_01_m", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "b99d609a-23cd-46fd-a9bc-29ce8466c964" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "b99d609a-23cd-46fd-a9bc-29ce8466c964@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_n.jpg -------------------------------------------------------------------------------- /assets/tests/barrel/VikingVillage/Textures/prop_barrel_01_n.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "eca5eb84-ae21-4dd7-b92e-0755a3b2bbfb", 6 | "files": [ 7 | ".jpg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "eca5eb84-ae21-4dd7-b92e-0755a3b2bbfb@6c48a", 14 | "displayName": "prop_barrel_01_n", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "eca5eb84-ae21-4dd7-b92e-0755a3b2bbfb" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "eca5eb84-ae21-4dd7-b92e-0755a3b2bbfb@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/barrel/barrel.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "41e1b033-742e-49ca-ae3b-4c60ac4b268e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/barrel/barrel.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "489e1c3f-4f13-4523-9fe6-9498efcb5475", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/barrel/material-pbr.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "1baf0fc9-befa-459c-8bdd-af1a450a0319" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_NORMAL_MAP": true, 13 | "USE_ALBEDO_MAP": true 14 | } 15 | ], 16 | "_states": [ 17 | { 18 | "blendState": { 19 | "targets": [ 20 | {} 21 | ] 22 | }, 23 | "depthStencilState": {}, 24 | "rasterizerState": {} 25 | } 26 | ], 27 | "_props": [ 28 | { 29 | "mainTexture": { 30 | "__uuid__": "ae6a59fd-3662-49f1-a648-4b9122126324@6c48a" 31 | }, 32 | "normalMap": { 33 | "__uuid__": "eca5eb84-ae21-4dd7-b92e-0755a3b2bbfb@6c48a" 34 | } 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /assets/tests/barrel/material-pbr.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e1d94d63-7f98-4f6c-9a21-29810162b07f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/barrel/material.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "a3cd009f-0ab0-420d-9278-b9fdab939bbc" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_TEXTURE": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | { 28 | "mainTexture": { 29 | "__uuid__": "ae6a59fd-3662-49f1-a648-4b9122126324@6c48a" 30 | } 31 | } 32 | ] 33 | } -------------------------------------------------------------------------------- /assets/tests/barrel/material.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "0627c5ad-cb47-4559-aa85-41dae4f3a5fb", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/brick.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "d201e02d-55d4-4ee4-bbd4-bc772e74dd7f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/brick.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "df0a85c7-750c-4a19-af38-413ff888dd2a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/cubmap.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ad1c8d0b-e42f-4a4e-b4ad-975893f62735", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/cubmap/cubemap.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "5245785b-8cd9-40e6-882a-88da0a235d9e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/cubmap/cubemap.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "5245785b-8cd9-40e6-882a-88da0a235d9e" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | {} 12 | ], 13 | "_states": [ 14 | { 15 | "blendState": { 16 | "targets": [ 17 | {} 18 | ] 19 | }, 20 | "depthStencilState": {}, 21 | "rasterizerState": {} 22 | } 23 | ], 24 | "_props": [ 25 | { 26 | "Cubemap": { 27 | "__uuid__": "f88b5bc1-d698-415e-a73f-f406408bc96f@b47c0" 28 | } 29 | } 30 | ] 31 | } -------------------------------------------------------------------------------- /assets/tests/cubmap/cubemap.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "78a2628a-30fa-4f46-b593-6938e9f0b875", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/cubmap/cubemap.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "178cf128-2b6d-4127-a2cd-958febbed81e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/cubmap/daytime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/cubmap/daytime.png -------------------------------------------------------------------------------- /assets/tests/dots.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "2998a9e1-3934-4346-8a9d-c916e4498bb7", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/dots.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "606d200f-0659-4566-8c82-fce74067adaf", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/eyeball.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "12cb6c5f-c933-4a64-914d-9660caf04a2a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/eyeball/Eyeballs.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "bed0131c-7def-4cb1-91ab-9601d040e1f7", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/eyeball/Foam 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/eyeball/Foam 1.png -------------------------------------------------------------------------------- /assets/tests/eyeball/Foam 1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "6c1a4b59-a647-4a71-8639-08d825f63ca7", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "6c1a4b59-a647-4a71-8639-08d825f63ca7@6c48a", 14 | "displayName": "Foam 1", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "6c1a4b59-a647-4a71-8639-08d825f63ca7" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "6c1a4b59-a647-4a71-8639-08d825f63ca7@6c48a", 39 | "hasAlpha": true 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/eyeball/GustNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/eyeball/GustNoise.png -------------------------------------------------------------------------------- /assets/tests/eyeball/GustNoise.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "933ed185-a1be-478f-b177-ffb7753573ff", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "933ed185-a1be-478f-b177-ffb7753573ff@6c48a", 14 | "displayName": "GustNoise", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "933ed185-a1be-478f-b177-ffb7753573ff" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "933ed185-a1be-478f-b177-ffb7753573ff@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/eyeball/eyeball.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "bed0131c-7def-4cb1-91ab-9601d040e1f7" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | {} 12 | ], 13 | "_states": [ 14 | { 15 | "blendState": { 16 | "targets": [ 17 | {} 18 | ] 19 | }, 20 | "depthStencilState": {}, 21 | "rasterizerState": {} 22 | } 23 | ], 24 | "_props": [ 25 | { 26 | "Iris_Texture": { 27 | "__uuid__": "933ed185-a1be-478f-b177-ffb7753573ff@6c48a" 28 | }, 29 | "Pupil_Texture": { 30 | "__uuid__": "b64c4477-596b-4798-bfc3-c7e2de98d096@6c48a" 31 | }, 32 | "Glint_Texture": { 33 | "__uuid__": "3a24aee4-1e1c-4d04-bf7d-29d1b8057faa@6c48a" 34 | }, 35 | "Iris_Color_Outer": { 36 | "__type__": "cc.Color", 37 | "r": 209, 38 | "g": 59, 39 | "b": 59, 40 | "a": 0 41 | }, 42 | "Pupil_Color_Outer": { 43 | "__type__": "cc.Color", 44 | "r": 233, 45 | "g": 22, 46 | "b": 22, 47 | "a": 0 48 | }, 49 | "Iris_Edge_Width": 0.1, 50 | "Pupil_Radius": 0.1, 51 | "Pupil_Texture_Scale": 0.2, 52 | "Glint_Scale": 1.1, 53 | "Speed": 0.3 54 | } 55 | ] 56 | } -------------------------------------------------------------------------------- /assets/tests/eyeball/eyeball.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "dbd28cbd-3ad2-47ed-9cc2-0c3c7bf9981c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/eyeball/eyeball.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "c3c97927-9c70-409b-ae80-f0ddcc1ae230", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/eyeball/eyeball2.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "bed0131c-7def-4cb1-91ab-9601d040e1f7" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | {} 12 | ], 13 | "_states": [ 14 | { 15 | "blendState": { 16 | "targets": [ 17 | {} 18 | ] 19 | }, 20 | "depthStencilState": {}, 21 | "rasterizerState": {} 22 | } 23 | ], 24 | "_props": [ 25 | { 26 | "Iris_Texture": { 27 | "__uuid__": "6c1a4b59-a647-4a71-8639-08d825f63ca7@6c48a" 28 | }, 29 | "Pupil_Texture": { 30 | "__uuid__": "cb811758-d2b6-4812-86c0-899b2039fa74@6c48a" 31 | }, 32 | "Glint_Texture": { 33 | "__uuid__": "3a24aee4-1e1c-4d04-bf7d-29d1b8057faa@6c48a" 34 | }, 35 | "Iris_Color_Inner": { 36 | "__type__": "cc.Color", 37 | "r": 152, 38 | "g": 192, 39 | "b": 65, 40 | "a": 0 41 | }, 42 | "Iris_Color_Outer": { 43 | "__type__": "cc.Color", 44 | "r": 102, 45 | "g": 255, 46 | "b": 0, 47 | "a": 0 48 | }, 49 | "Iris_Edge_Color": { 50 | "__type__": "cc.Color", 51 | "r": 111, 52 | "g": 100, 53 | "b": 170, 54 | "a": 0 55 | }, 56 | "Pupil_Color_Outer": { 57 | "__type__": "cc.Color", 58 | "r": 233, 59 | "g": 22, 60 | "b": 22, 61 | "a": 0 62 | }, 63 | "Iris_Radius": 0.3, 64 | "Iris_Texture_Distortion": 1, 65 | "Iris_Texture_Brightness": 5, 66 | "Iris_Edge_Width": 0.08, 67 | "Pupil_Radius": 0.15, 68 | "Pupil_Texture_Scale": 0.3, 69 | "Glint_Scale": 1.1, 70 | "Speed": 0.3 71 | } 72 | ] 73 | } -------------------------------------------------------------------------------- /assets/tests/eyeball/eyeball2.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e3acab2a-083e-42eb-afd5-13f94843f9ba", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/eyeball/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/eyeball/flower.jpg -------------------------------------------------------------------------------- /assets/tests/eyeball/flower.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "cb811758-d2b6-4812-86c0-899b2039fa74", 6 | "files": [ 7 | ".jpg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "cb811758-d2b6-4812-86c0-899b2039fa74@6c48a", 14 | "displayName": "flower", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "cb811758-d2b6-4812-86c0-899b2039fa74" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "cb811758-d2b6-4812-86c0-899b2039fa74@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/eyeball/glint3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/eyeball/glint3.jpg -------------------------------------------------------------------------------- /assets/tests/eyeball/glint3.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "3a24aee4-1e1c-4d04-bf7d-29d1b8057faa", 6 | "files": [ 7 | ".jpg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "3a24aee4-1e1c-4d04-bf7d-29d1b8057faa@6c48a", 14 | "displayName": "glint3", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "3a24aee4-1e1c-4d04-bf7d-29d1b8057faa" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "3a24aee4-1e1c-4d04-bf7d-29d1b8057faa@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/eyeball/heart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/eyeball/heart.jpg -------------------------------------------------------------------------------- /assets/tests/eyeball/heart.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "b64c4477-596b-4798-bfc3-c7e2de98d096", 6 | "files": [ 7 | ".jpg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "b64c4477-596b-4798-bfc3-c7e2de98d096@6c48a", 14 | "displayName": "heart", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "b64c4477-596b-4798-bfc3-c7e2de98d096" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "b64c4477-596b-4798-bfc3-c7e2de98d096@6c48a", 39 | "flipVertical": true, 40 | "hasAlpha": false 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/tests/flame.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0b36c9bb-1d1d-4550-9491-4274c68045e4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/flame/Flame.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "dba4c9db-e19c-40bd-ab62-853518f822cd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/flame/Flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/flame/Flame.png -------------------------------------------------------------------------------- /assets/tests/flame/Flame.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "0dca59f9-0cc8-4181-b52b-540b0072080c", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "0dca59f9-0cc8-4181-b52b-540b0072080c@6c48a", 14 | "displayName": "Flame", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "0dca59f9-0cc8-4181-b52b-540b0072080c" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "0dca59f9-0cc8-4181-b52b-540b0072080c@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/flame/Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/flame/Ramp.png -------------------------------------------------------------------------------- /assets/tests/flame/Ramp.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "aabfb2ed-96f1-4f35-8573-f3aa57c261ff", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "aabfb2ed-96f1-4f35-8573-f3aa57c261ff@6c48a", 14 | "displayName": "Ramp", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "aabfb2ed-96f1-4f35-8573-f3aa57c261ff" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "aabfb2ed-96f1-4f35-8573-f3aa57c261ff@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/flame/flame.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "dba4c9db-e19c-40bd-ab62-853518f822cd" 8 | }, 9 | "_techIdx": 1, 10 | "_defines": [ 11 | {} 12 | ], 13 | "_states": [ 14 | { 15 | "blendState": { 16 | "targets": [ 17 | {} 18 | ] 19 | }, 20 | "depthStencilState": {}, 21 | "rasterizerState": {} 22 | } 23 | ], 24 | "_props": [ 25 | { 26 | "FlameeTexture": { 27 | "__uuid__": "0dca59f9-0cc8-4181-b52b-540b0072080c@6c48a" 28 | }, 29 | "RampTexture": { 30 | "__uuid__": "aabfb2ed-96f1-4f35-8573-f3aa57c261ff@6c48a" 31 | } 32 | } 33 | ] 34 | } -------------------------------------------------------------------------------- /assets/tests/flame/flame.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "92c9a8b7-2267-4c78-b6e1-c8f00cf248c1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/flame/flame.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "2c3330d4-57e1-477f-8936-42132b90ff21", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/globe.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "534eb776-c694-48aa-9afc-08a270a0e6b5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/globe/Globe.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "c3a795b0-4ff1-4a4d-8084-2b1530c52c45", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/globe/gebco_08_rev_bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/globe/gebco_08_rev_bath.png -------------------------------------------------------------------------------- /assets/tests/globe/gebco_08_rev_bath.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "12d71723-1e37-4e05-af5d-e5c33c7e01b1", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "12d71723-1e37-4e05-af5d-e5c33c7e01b1@6c48a", 14 | "displayName": "gebco_08_rev_bath", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "12d71723-1e37-4e05-af5d-e5c33c7e01b1" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "12d71723-1e37-4e05-af5d-e5c33c7e01b1@6c48a", 39 | "hasAlpha": true 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/globe/globe.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "c3a795b0-4ff1-4a4d-8084-2b1530c52c45" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | { 28 | "Map": { 29 | "__uuid__": "12d71723-1e37-4e05-af5d-e5c33c7e01b1@6c48a" 30 | } 31 | } 32 | ] 33 | } -------------------------------------------------------------------------------- /assets/tests/globe/globe.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "206c5916-44eb-4984-8336-7afb2ef1d972", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/globe/globe.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "ac111cdb-0d6c-493f-9955-2e7326601939", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/grid.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "ffbc832b-417b-42ba-95e2-98280e19bfaa", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/grid.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.9", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "ce5a91d3-2142-42ca-82d3-9652bcd135ae", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/rim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f414d43b-e7a0-45b0-bd1e-d86c50b1bba7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/rim/rim.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": false, 5 | "uuid": "9e817652-c7af-4cc7-a46c-fe8afc50e1b8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/tests/rim/rim.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "9e817652-c7af-4cc7-a46c-fe8afc50e1b8" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | {} 12 | ], 13 | "_states": [ 14 | { 15 | "blendState": { 16 | "targets": [ 17 | {} 18 | ] 19 | }, 20 | "depthStencilState": {}, 21 | "rasterizerState": {} 22 | } 23 | ], 24 | "_props": [ 25 | { 26 | "rimColor": { 27 | "__type__": "cc.Color", 28 | "r": 169, 29 | "g": 158, 30 | "b": 245, 31 | "a": 0 32 | }, 33 | "power": 3 34 | } 35 | ] 36 | } -------------------------------------------------------------------------------- /assets/tests/rim/rim.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": false, 5 | "uuid": "ec2fd7da-78e2-4cf3-863c-8baa7f20d24f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/tests/rim/rim.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "d4698d55-a4d6-4b38-9ec9-4b3441b0f4df", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f724763e-da14-46c4-a103-fe3c0d419a78", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/shape/Herringbone.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "1c9ba8c2-64ee-482e-8108-503c5179f1ae", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Herringbone.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "1c9ba8c2-64ee-482e-8108-503c5179f1ae" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Herringbone.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "00fe978d-5d16-4940-bc3b-1923c58cb2c0", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Hex Lattice.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "e7db6199-d9e7-45e4-ae4e-7e832c46d700", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Hex Lattice.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "e7db6199-d9e7-45e4-ae4e-7e832c46d700" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Hex Lattice.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "c135c78c-da13-408a-b89b-5eac660bc594", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Houndstooth.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "5c8651ef-9437-413c-b067-67572358bedc", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Houndstooth.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "5c8651ef-9437-413c-b067-67572358bedc" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Houndstooth.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "5cb4aa0d-d960-4f2b-b1e6-68ff3e7d9f2e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Smooth Wave.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "2e4e38f3-50f9-455b-837b-7520a933d887", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Smooth Wave.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "2e4e38f3-50f9-455b-837b-7520a933d887" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Smooth Wave.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "6218cca0-063a-4928-ac8b-3c32bdc5e1cb", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Spiral.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "beef69e9-4b94-4702-8ed5-436147a4c5b6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Spiral.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "beef69e9-4b94-4702-8ed5-436147a4c5b6" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | {} 12 | ], 13 | "_states": [ 14 | { 15 | "blendState": { 16 | "targets": [ 17 | {} 18 | ] 19 | }, 20 | "depthStencilState": {}, 21 | "rasterizerState": {} 22 | } 23 | ], 24 | "_props": [ 25 | {} 26 | ] 27 | } -------------------------------------------------------------------------------- /assets/tests/shape/Spiral.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "20c93829-2bfc-4ef3-8d8f-b746f0455a34", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Stripes.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "e59d038f-c44e-434a-aab0-0a2582b37357", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Stripes.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "e59d038f-c44e-434a-aab0-0a2582b37357" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Stripes.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "626d3fd5-931b-4c5b-a413-8143bd009dde", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Truchet.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "98efa3c1-2415-42ea-a1c4-921c9d71180d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Truchet.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "98efa3c1-2415-42ea-a1c4-921c9d71180d" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Truchet.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "39688e16-204e-4514-99c7-c980730f784b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Whirl.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "42ed9c2a-a57b-4bf6-b3c9-95a512d6e798", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Whirl.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "42ed9c2a-a57b-4bf6-b3c9-95a512d6e798" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Whirl.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "eca99363-7a5d-454a-89fa-fde94776d71c", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Zig Zag.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "ccf1e2c1-2774-4122-80eb-c6d7d07ef3c6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/Zig Zag.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "ccf1e2c1-2774-4122-80eb-c6d7d07ef3c6" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/Zig Zag.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "4f0442f6-b5b0-4eb5-9851-4890034f49a4", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/bacteria.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "84be1470-96f4-44ff-9533-d03436794060", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/bacteria.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "84be1470-96f4-44ff-9533-d03436794060" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/bacteria.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "447961c9-24af-4fa0-9a1b-c1046346639b", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/brick.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "647d393d-694f-4412-bd88-4af0c8b3bc20", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/brick.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "647d393d-694f-4412-bd88-4af0c8b3bc20" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/brick.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "286e3ac5-0cf6-4426-9056-216a4ca415d0", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/dots.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "084490cd-7472-41a8-8b7e-6502837d68a2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/dots.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "084490cd-7472-41a8-8b7e-6502837d68a2" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/dots.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "04768657-94a4-4134-969c-da12d2f7b4ad", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/grid.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "8432799e-47f2-4043-9e8a-ce11a1813de6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/grid.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "8432799e-47f2-4043-9e8a-ce11a1813de6" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | { 12 | "USE_standard_derivatives": true 13 | } 14 | ], 15 | "_states": [ 16 | { 17 | "blendState": { 18 | "targets": [ 19 | {} 20 | ] 21 | }, 22 | "depthStencilState": {}, 23 | "rasterizerState": {} 24 | } 25 | ], 26 | "_props": [ 27 | {} 28 | ] 29 | } -------------------------------------------------------------------------------- /assets/tests/shape/grid.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "4b1df210-d95b-4d60-8a51-ab5e5c3091b5", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/shape/shape.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "6b011c7d-0326-489b-9fbb-a0758595103f", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/tv.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "22df3e2e-8a62-4cc0-a870-ac394c1b0010", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/tv/Poly.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b2b8e9bc-bf08-4b94-a83c-685458f2f9e7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/tests/tv/Poly/Commodore 64 Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/tv/Poly/Commodore 64 Texture.png -------------------------------------------------------------------------------- /assets/tests/tv/Poly/Commodore 64 Texture.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "94d6ec2e-7188-477e-9139-0c4acecc2347", 6 | "files": [ 7 | ".png", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "94d6ec2e-7188-477e-9139-0c4acecc2347@6c48a", 14 | "displayName": "Commodore 64 Texture", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "94d6ec2e-7188-477e-9139-0c4acecc2347" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "94d6ec2e-7188-477e-9139-0c4acecc2347@6c48a", 39 | "hasAlpha": true 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/tv/Poly/MonaLisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/assets/tests/tv/Poly/MonaLisa.jpg -------------------------------------------------------------------------------- /assets/tests/tv/Poly/MonaLisa.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.22", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "984f87ec-8a74-4a40-84ff-7d188f6fba3a", 6 | "files": [ 7 | ".jpg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "984f87ec-8a74-4a40-84ff-7d188f6fba3a@6c48a", 14 | "displayName": "MonaLisa", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "ver": "1.0.21", 18 | "imported": true, 19 | "files": [ 20 | ".json" 21 | ], 22 | "subMetas": {}, 23 | "userData": { 24 | "wrapModeS": "repeat", 25 | "wrapModeT": "repeat", 26 | "minfilter": "linear", 27 | "magfilter": "linear", 28 | "mipfilter": "none", 29 | "premultiplyAlpha": false, 30 | "anisotropy": 0, 31 | "isUuid": true, 32 | "imageUuidOrDatabaseUri": "984f87ec-8a74-4a40-84ff-7d188f6fba3a" 33 | } 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "redirect": "984f87ec-8a74-4a40-84ff-7d188f6fba3a@6c48a", 39 | "hasAlpha": false 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /assets/tests/tv/TV.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.4.7", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "41a471e3-87a5-4627-97ef-c1e680a888e5", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/tv/TV.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "41a471e3-87a5-4627-97ef-c1e680a888e5" 8 | }, 9 | "_techIdx": 0, 10 | "_defines": [ 11 | {} 12 | ], 13 | "_states": [ 14 | { 15 | "blendState": { 16 | "targets": [ 17 | {} 18 | ] 19 | }, 20 | "depthStencilState": {}, 21 | "rasterizerState": {} 22 | } 23 | ], 24 | "_props": [ 25 | { 26 | "Texture": { 27 | "__uuid__": "984f87ec-8a74-4a40-84ff-7d188f6fba3a@6c48a" 28 | } 29 | } 30 | ] 31 | } -------------------------------------------------------------------------------- /assets/tests/tv/TV.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.11", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "72657f0f-e964-45a8-a991-473d6b06df92", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/tests/tv/TV.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.35", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "2a8381b0-5753-43ac-83e4-927cf4e367fc", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "shader-graph", 3 | "type": "3d", 4 | "version": "3.4.0", 5 | "dependencies": { 6 | "repo-helper": "github:2youyou2/repo-helper#0.0.7" 7 | }, 8 | "uuid": "158fd149-1d86-484a-af59-2dc724b34e71", 9 | "creator": { 10 | "version": "3.4.0" 11 | }, 12 | "repos": { 13 | "extensions/shader-graph": { 14 | "branch": "v3.4", 15 | "url": "git@github.com:2youyou2/shader-graph.git" 16 | } 17 | }, 18 | "scripts": { 19 | "postinstall": "repo-helper && cd extensions/shader-graph && npm install" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /settings/1.2.0/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.2.4" 3 | } 4 | -------------------------------------------------------------------------------- /settings/1.2.0/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "modules": { 3 | "cache": {}, 4 | "includeModules": [ 5 | "base", 6 | "gfx-webgl", 7 | "gfx-webgl2", 8 | "ui", 9 | "particle", 10 | "physics-cannon", 11 | "physics-framework", 12 | "audio", 13 | "tween", 14 | "terrain" 15 | ] 16 | }, 17 | "__version__": "1.0.1" 18 | } 19 | -------------------------------------------------------------------------------- /settings/1.2.0/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1", 3 | "script": { 4 | "useDefineForClassFields": false, 5 | "allowDeclareFields": false 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.0" 3 | } 4 | -------------------------------------------------------------------------------- /settings/v2/packages/cocos-service.json: -------------------------------------------------------------------------------- 1 | { 2 | "game": { 3 | "name": "UNKNOW GAME", 4 | "app_id": "UNKNOW", 5 | "c_id": "0" 6 | }, 7 | "appConfigMaps": [ 8 | { 9 | "app_id": "UNKNOW", 10 | "config_id": "7de762" 11 | } 12 | ], 13 | "configs": [ 14 | { 15 | "app_id": "UNKNOW", 16 | "config_id": "7de762", 17 | "config_name": "Default", 18 | "config_remarks": "", 19 | "services": [] 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "modules": { 3 | "cache": {}, 4 | "includeModules": [ 5 | "base", 6 | "gfx-webgl", 7 | "gfx-webgl2", 8 | "3d", 9 | "2d", 10 | "ui", 11 | "particle", 12 | "physics-ammo", 13 | "physics-2d-box2d", 14 | "intersection-2d", 15 | "primitive", 16 | "profiler", 17 | "particle-2d", 18 | "audio", 19 | "video", 20 | "webview", 21 | "tween", 22 | "terrain", 23 | "tiled-map", 24 | "spine", 25 | "dragon-bones", 26 | "marionette" 27 | ] 28 | }, 29 | "__version__": "1.0.5" 30 | } 31 | -------------------------------------------------------------------------------- /settings/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1", 3 | "layer": [ 4 | { 5 | "name": "canvas_18", 6 | "value": 262144 7 | }, 8 | { 9 | "name": "canvas_19", 10 | "value": 524288 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 990f5c2df70993f4987a388ca178996a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffd318dbb37362c4f8d87863d082b2fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/ConstructionLight_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49076442eeb7e054b8e8869f8b40656d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/DryWallPainted_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b8eadc4de0544646b75ddcc43f8fd06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/DryWall_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a68228c24abfa2f4b8954d7b0148f799 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92ef32394b5f474385d74b565a7bdd7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Hammer_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4efcffd7ae23f1e41943fd914b18da10 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/HardHat_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e93789f0a5d66df4a81613935579642b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Jigsaw_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 801db2d997a562b4ea333aa4593ce0f0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/LightBulb_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec739259ec61f5d4ba3ed6d34fd802a6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Liquid_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c532880e607f8c84d8b9bf0c46a522ad 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Metal_Blue_Simple_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd71291c91c8cce499cb663b5db9970e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Metal_Simple_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0427cf339e5891468d5f2b433b2d44a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/OBS_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c438e5c679f1be040a135443008e2fce 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Paint1G_WAnim_Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55c183dc45153be48a45c4e530127fb3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/PaintBrush_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 539165557a9d3744680bb21164bea45e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/PaintLabel_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3da4aad06945bbf4baf801c2aacbc01e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Plastic_Black_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e745492728544aa488aa0429b6068e71 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Plastic_Gray_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dad30bbe2213eb4d8312f7bb6190866 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Plastic_Ridges_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c05de7c865075334786e6a47a543af72 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Plastic_Rough_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5aaee4111611af43b5abbff184fe5fa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Plastic_Transparent.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a38b7350df9a9c438e568993a00e5c5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Plastic_White_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cfe423139c361a459da7ed9831d4b1c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Plastic_Yellow_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd2d742ee2ce7a740ae0cf992a38be74 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Strap_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81c1860e7800e5340bf8a54c565ba9ea 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Materials/Stud_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 027cb3d3d7dc79d41ad763e01759de07 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa97895f3852bd44399ef0893bec4f5e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/Stud.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/Stud.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/Workbench.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/Workbench.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/Workbench_Low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/Workbench_Low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/Workshop_Set.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/Workshop_Set.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/brush_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/brush_low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/brush_low.fbx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aed8c47425ab91f4eb06ce6fe47c3e4e 3 | ModelImporter: 4 | serializedVersion: 23 5 | fileIDToRecycleName: 6 | 100000: //RootNode 7 | 400000: //RootNode 8 | 2100000: paintbrush 9 | 2300000: //RootNode 10 | 3300000: //RootNode 11 | 4300000: brush_low 12 | externalObjects: {} 13 | materials: 14 | importMaterials: 1 15 | materialName: 0 16 | materialSearch: 1 17 | materialLocation: 1 18 | animations: 19 | legacyGenerateAnimations: 4 20 | bakeSimulation: 0 21 | resampleCurves: 1 22 | optimizeGameObjects: 0 23 | motionNodeName: 24 | rigImportErrors: 25 | rigImportWarnings: 26 | animationImportErrors: 27 | animationImportWarnings: 28 | animationRetargetingWarnings: 29 | animationDoRetargetingWarnings: 0 30 | importAnimatedCustomProperties: 0 31 | importConstraints: 0 32 | animationCompression: 1 33 | animationRotationError: 0.5 34 | animationPositionError: 0.5 35 | animationScaleError: 0.5 36 | animationWrapMode: 0 37 | extraExposedTransformPaths: [] 38 | extraUserProperties: [] 39 | clipAnimations: [] 40 | isReadable: 0 41 | meshes: 42 | lODScreenPercentages: [] 43 | globalScale: 1 44 | meshCompression: 0 45 | addColliders: 0 46 | importVisibility: 1 47 | importBlendShapes: 0 48 | importCameras: 0 49 | importLights: 0 50 | swapUVChannels: 0 51 | generateSecondaryUV: 0 52 | useFileUnits: 1 53 | optimizeMeshForGPU: 1 54 | keepQuads: 0 55 | weldVertices: 1 56 | preserveHierarchy: 0 57 | indexFormat: 0 58 | secondaryUVAngleDistortion: 8 59 | secondaryUVAreaDistortion: 15.000001 60 | secondaryUVHardAngle: 88 61 | secondaryUVPackMargin: 4 62 | useFileScale: 1 63 | previousCalculatedGlobalScale: 1 64 | hasPreviousCalculatedGlobalScale: 0 65 | tangentSpace: 66 | normalSmoothAngle: 60 67 | normalImportMode: 0 68 | tangentImportMode: 3 69 | normalCalculationMode: 4 70 | importAnimation: 0 71 | copyAvatar: 0 72 | humanDescription: 73 | serializedVersion: 2 74 | human: [] 75 | skeleton: [] 76 | armTwist: 0.5 77 | foreArmTwist: 0.5 78 | upperLegTwist: 0.5 79 | legTwist: 0.5 80 | armStretch: 0.05 81 | legStretch: 0.05 82 | feetSpacing: 0 83 | rootMotionBoneName: 84 | rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} 85 | hasTranslationDoF: 0 86 | hasExtraRoot: 0 87 | skeletonHasParents: 1 88 | lastHumanDescriptionAvatarSource: {instanceID: 0} 89 | animationType: 0 90 | humanoidOversampling: 1 91 | additionalBone: 0 92 | userData: 93 | assetBundleName: 94 | assetBundleVariant: 95 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/hammer_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/hammer_low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/hammer_low.fbx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68a66fb5a71f8204a8dcb613c97d1fa8 3 | ModelImporter: 4 | serializedVersion: 23 5 | fileIDToRecycleName: 6 | 100000: //RootNode 7 | 400000: //RootNode 8 | 2100000: lambert1 9 | 2300000: //RootNode 10 | 3300000: //RootNode 11 | 4300000: hammer_low 12 | externalObjects: {} 13 | materials: 14 | importMaterials: 1 15 | materialName: 0 16 | materialSearch: 1 17 | materialLocation: 1 18 | animations: 19 | legacyGenerateAnimations: 4 20 | bakeSimulation: 0 21 | resampleCurves: 1 22 | optimizeGameObjects: 0 23 | motionNodeName: 24 | rigImportErrors: 25 | rigImportWarnings: 26 | animationImportErrors: 27 | animationImportWarnings: 28 | animationRetargetingWarnings: 29 | animationDoRetargetingWarnings: 0 30 | importAnimatedCustomProperties: 0 31 | importConstraints: 0 32 | animationCompression: 1 33 | animationRotationError: 0.5 34 | animationPositionError: 0.5 35 | animationScaleError: 0.5 36 | animationWrapMode: 0 37 | extraExposedTransformPaths: [] 38 | extraUserProperties: [] 39 | clipAnimations: [] 40 | isReadable: 0 41 | meshes: 42 | lODScreenPercentages: [] 43 | globalScale: 1 44 | meshCompression: 0 45 | addColliders: 0 46 | importVisibility: 1 47 | importBlendShapes: 0 48 | importCameras: 0 49 | importLights: 0 50 | swapUVChannels: 0 51 | generateSecondaryUV: 0 52 | useFileUnits: 1 53 | optimizeMeshForGPU: 1 54 | keepQuads: 0 55 | weldVertices: 1 56 | preserveHierarchy: 0 57 | indexFormat: 0 58 | secondaryUVAngleDistortion: 8 59 | secondaryUVAreaDistortion: 15.000001 60 | secondaryUVHardAngle: 88 61 | secondaryUVPackMargin: 4 62 | useFileScale: 1 63 | previousCalculatedGlobalScale: 1 64 | hasPreviousCalculatedGlobalScale: 0 65 | tangentSpace: 66 | normalSmoothAngle: 60 67 | normalImportMode: 0 68 | tangentImportMode: 3 69 | normalCalculationMode: 4 70 | importAnimation: 0 71 | copyAvatar: 0 72 | humanDescription: 73 | serializedVersion: 2 74 | human: [] 75 | skeleton: [] 76 | armTwist: 0.5 77 | foreArmTwist: 0.5 78 | upperLegTwist: 0.5 79 | legTwist: 0.5 80 | armStretch: 0.05 81 | legStretch: 0.05 82 | feetSpacing: 0 83 | rootMotionBoneName: 84 | rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} 85 | hasTranslationDoF: 0 86 | hasExtraRoot: 0 87 | skeletonHasParents: 1 88 | lastHumanDescriptionAvatarSource: {instanceID: 0} 89 | animationType: 0 90 | humanoidOversampling: 1 91 | additionalBone: 0 92 | userData: 93 | assetBundleName: 94 | assetBundleVariant: 95 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/jigsaw_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/jigsaw_low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/jigsaw_low.fbx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b73e8872ca76104bbca4ee2b704a1b4 3 | ModelImporter: 4 | serializedVersion: 23 5 | fileIDToRecycleName: 6 | 100000: //RootNode 7 | 400000: //RootNode 8 | 2100000: jigsaw 9 | 2300000: //RootNode 10 | 3300000: //RootNode 11 | 4300000: power_jigsaw_low 12 | externalObjects: {} 13 | materials: 14 | importMaterials: 1 15 | materialName: 0 16 | materialSearch: 1 17 | materialLocation: 1 18 | animations: 19 | legacyGenerateAnimations: 4 20 | bakeSimulation: 0 21 | resampleCurves: 1 22 | optimizeGameObjects: 0 23 | motionNodeName: 24 | rigImportErrors: 25 | rigImportWarnings: 26 | animationImportErrors: 27 | animationImportWarnings: 28 | animationRetargetingWarnings: 29 | animationDoRetargetingWarnings: 0 30 | importAnimatedCustomProperties: 0 31 | importConstraints: 0 32 | animationCompression: 1 33 | animationRotationError: 0.5 34 | animationPositionError: 0.5 35 | animationScaleError: 0.5 36 | animationWrapMode: 0 37 | extraExposedTransformPaths: [] 38 | extraUserProperties: [] 39 | clipAnimations: [] 40 | isReadable: 0 41 | meshes: 42 | lODScreenPercentages: [] 43 | globalScale: 1 44 | meshCompression: 0 45 | addColliders: 0 46 | importVisibility: 1 47 | importBlendShapes: 0 48 | importCameras: 0 49 | importLights: 0 50 | swapUVChannels: 0 51 | generateSecondaryUV: 0 52 | useFileUnits: 1 53 | optimizeMeshForGPU: 1 54 | keepQuads: 0 55 | weldVertices: 1 56 | preserveHierarchy: 0 57 | indexFormat: 0 58 | secondaryUVAngleDistortion: 8 59 | secondaryUVAreaDistortion: 15.000001 60 | secondaryUVHardAngle: 88 61 | secondaryUVPackMargin: 4 62 | useFileScale: 1 63 | previousCalculatedGlobalScale: 1 64 | hasPreviousCalculatedGlobalScale: 0 65 | tangentSpace: 66 | normalSmoothAngle: 60 67 | normalImportMode: 0 68 | tangentImportMode: 3 69 | normalCalculationMode: 4 70 | importAnimation: 0 71 | copyAvatar: 0 72 | humanDescription: 73 | serializedVersion: 2 74 | human: [] 75 | skeleton: [] 76 | armTwist: 0.5 77 | foreArmTwist: 0.5 78 | upperLegTwist: 0.5 79 | legTwist: 0.5 80 | armStretch: 0.05 81 | legStretch: 0.05 82 | feetSpacing: 0 83 | rootMotionBoneName: 84 | rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} 85 | hasTranslationDoF: 0 86 | hasExtraRoot: 0 87 | skeletonHasParents: 1 88 | lastHumanDescriptionAvatarSource: {instanceID: 0} 89 | animationType: 0 90 | humanoidOversampling: 1 91 | additionalBone: 0 92 | userData: 93 | assetBundleName: 94 | assetBundleVariant: 95 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/magneticlevel_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/magneticlevel_low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/paintbucket_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/paintbucket_low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/safetygoggles_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/safetygoggles_low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/safetyhat_low.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/safetyhat_low.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/small_plane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Models/small_plane.fbx -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Models/small_plane.fbx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aeaee610429f51f44981e141eb2a3545 3 | ModelImporter: 4 | serializedVersion: 23 5 | fileIDToRecycleName: 6 | 100000: //RootNode 7 | 400000: //RootNode 8 | 2100000: lambert1 9 | 2300000: //RootNode 10 | 3300000: //RootNode 11 | 4300000: pPlane1 12 | externalObjects: {} 13 | materials: 14 | importMaterials: 1 15 | materialName: 0 16 | materialSearch: 1 17 | materialLocation: 1 18 | animations: 19 | legacyGenerateAnimations: 4 20 | bakeSimulation: 0 21 | resampleCurves: 1 22 | optimizeGameObjects: 0 23 | motionNodeName: 24 | rigImportErrors: 25 | rigImportWarnings: 26 | animationImportErrors: 27 | animationImportWarnings: 28 | animationRetargetingWarnings: 29 | animationDoRetargetingWarnings: 0 30 | importAnimatedCustomProperties: 0 31 | importConstraints: 0 32 | animationCompression: 1 33 | animationRotationError: 0.5 34 | animationPositionError: 0.5 35 | animationScaleError: 0.5 36 | animationWrapMode: 0 37 | extraExposedTransformPaths: [] 38 | extraUserProperties: [] 39 | clipAnimations: [] 40 | isReadable: 0 41 | meshes: 42 | lODScreenPercentages: [] 43 | globalScale: 1 44 | meshCompression: 0 45 | addColliders: 0 46 | importVisibility: 1 47 | importBlendShapes: 0 48 | importCameras: 0 49 | importLights: 0 50 | swapUVChannels: 0 51 | generateSecondaryUV: 0 52 | useFileUnits: 1 53 | optimizeMeshForGPU: 1 54 | keepQuads: 0 55 | weldVertices: 1 56 | preserveHierarchy: 0 57 | indexFormat: 0 58 | secondaryUVAngleDistortion: 8 59 | secondaryUVAreaDistortion: 15.000001 60 | secondaryUVHardAngle: 88 61 | secondaryUVPackMargin: 4 62 | useFileScale: 1 63 | previousCalculatedGlobalScale: 1 64 | hasPreviousCalculatedGlobalScale: 0 65 | tangentSpace: 66 | normalSmoothAngle: 60 67 | normalImportMode: 0 68 | tangentImportMode: 3 69 | normalCalculationMode: 4 70 | importAnimation: 0 71 | copyAvatar: 0 72 | humanDescription: 73 | serializedVersion: 2 74 | human: [] 75 | skeleton: [] 76 | armTwist: 0.5 77 | foreArmTwist: 0.5 78 | upperLegTwist: 0.5 79 | legTwist: 0.5 80 | armStretch: 0.05 81 | legStretch: 0.05 82 | feetSpacing: 0 83 | rootMotionBoneName: 84 | rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} 85 | hasTranslationDoF: 0 86 | hasExtraRoot: 0 87 | skeletonHasParents: 1 88 | lastHumanDescriptionAvatarSource: {instanceID: 0} 89 | animationType: 0 90 | humanoidOversampling: 1 91 | additionalBone: 0 92 | userData: 93 | assetBundleName: 94 | assetBundleVariant: 95 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e04804d4b233d04d92ef41852c3f676 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs/Construction Light Low.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf0a225a9ff184f2789f3036faaa9150 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs/Paint Supplies.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 283e6530a665e4513959d1cd4883682f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs/Props.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85dfab9623c67784fa7894de63cd1604 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs/Workbench.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8850d132797ff49298ba781e8e1c9bfe 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0adcaeba3022437293536832628fdf8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38d5ecfa2b93c4095b4cc5d4a590e676 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Prefabs/Workshop Set.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a87f0180d46fd334b9025d0314a0dc70 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 100100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb6819cbd279a3941a65f1689b2f621e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Shaders/Paint1G_WAnim_Shader.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e5eca56e1993e741b41ac9c687d01a5 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 4800000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cc500c8cdb999142b9017ebf0cf407d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Concrete.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47c259102c9296845a85c9d7207b82f2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Drywall.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0389f6104fd857940908a1705ab749f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Metal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c805204817006b648aa2d0cb8f7861d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64d6ecb2a87dd444b85a7ff79b149c04 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abf7b1f1f7dfcba4c9243d4679f56e71 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Construction_Light.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa8e348df46f41a40866e1358c46c58a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Hammer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65ba28c90924bf641b0800d7c3aa08eb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/HardHat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d8107af768e1c54aab35a9245f96fb1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Jigsaw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f23328cbe6fee514b868007ab8567c3d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 661b3094cbb8d57488db75686cf31627 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Wood.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cebb473fb6009324ea0c85fcc4debbdf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif -------------------------------------------------------------------------------- /tests/ushader/Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0234ba368eeec9418390da711bfdad0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Materials/Skybox_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ffaa0b7117ba8c47a9d05ae701d4b4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 558255460b74ec04fa70b5570e9327bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/AudioCompressedInMemory.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dd802e4d37c65149922028d3e973832 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/AudioStreaming.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86bcce7f5575b54408aa0f3a7d321039 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/Defaults.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71ea82b02df99c2439e0dc8e4e1ebc24 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8537455c6c08bd4e8bf0be3707da685 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7689051185d12f4298e1ebb2693a29f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 463065d4f17d1d94d848aa127b94dd43 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/NormalTexture.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14a57cf3b9fa1c74b884aa7e0dcf1faa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Presets/UtilityTexture.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45f7b2e3c78185248b3adbb14429c2ab 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Readme.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83c2ed844a8c74b779a4c823d16594b1 3 | timeCreated: 1484217493 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e8b113aef216604686060560ad4a7d3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1c3109bdb54ad54c8a2b2838528e640 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Scenes/SampleSceneLightingSettings.lighting: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!850595691 &4890085278179872738 4 | LightingSettings: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: SampleSceneLightingSettings 10 | serializedVersion: 2 11 | m_GIWorkflowMode: 0 12 | m_EnableBakedLightmaps: 1 13 | m_EnableRealtimeLightmaps: 0 14 | m_RealtimeEnvironmentLighting: 0 15 | m_BounceScale: 1 16 | m_AlbedoBoost: 1 17 | m_IndirectOutputScale: 1 18 | m_UsingShadowmask: 0 19 | m_BakeBackend: 1 20 | m_LightmapMaxSize: 512 21 | m_BakeResolution: 32 22 | m_Padding: 2 23 | m_TextureCompression: 1 24 | m_AO: 1 25 | m_AOMaxDistance: 1 26 | m_CompAOExponent: 1 27 | m_CompAOExponentDirect: 0.3 28 | m_ExtractAO: 0 29 | m_MixedBakeMode: 0 30 | m_LightmapsBakeMode: 1 31 | m_FilterMode: 1 32 | m_LightmapParameters: {fileID: 0} 33 | m_ExportTrainingData: 0 34 | m_TrainingDataDestination: TrainingData 35 | m_RealtimeResolution: 2 36 | m_ForceWhiteAlbedo: 0 37 | m_ForceUpdates: 0 38 | m_FinalGather: 0 39 | m_FinalGatherRayCount: 256 40 | m_FinalGatherFiltering: 1 41 | m_PVRCulling: 1 42 | m_PVRSampling: 1 43 | m_PVRDirectSampleCount: 32 44 | m_PVRSampleCount: 256 45 | m_PVREnvironmentSampleCount: 256 46 | m_PVREnvironmentReferencePointCount: 2048 47 | m_LightProbeSampleCountMultiplier: 4 48 | m_PVRBounces: 2 49 | m_PVRRussianRouletteStartBounce: 2 50 | m_PVREnvironmentMIS: 0 51 | m_PVRFilteringMode: 1 52 | m_PVRDenoiserTypeDirect: 0 53 | m_PVRDenoiserTypeIndirect: 0 54 | m_PVRDenoiserTypeAO: 0 55 | m_PVRFilterTypeDirect: 0 56 | m_PVRFilterTypeIndirect: 0 57 | m_PVRFilterTypeAO: 0 58 | m_PVRFilteringGaussRadiusDirect: 1 59 | m_PVRFilteringGaussRadiusIndirect: 5 60 | m_PVRFilteringGaussRadiusAO: 2 61 | m_PVRFilteringAtrousPositionSigmaDirect: 0.548 62 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 63 | m_PVRFilteringAtrousPositionSigmaAO: 1 64 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Scenes/SampleSceneLightingSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 477cc4148fad3449482a3bc3178594e2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02a3527b6b33a924e8ec66aa805ea717 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Scripts/SimpleCameraController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be76e5f14cfee674cb30b491fb72b09b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0735c275001a2c84dafdb30deced5d8d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/ForwardRenderer.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} 13 | m_Name: ForwardRenderer 14 | m_EditorClassIdentifier: 15 | m_RendererFeatures: [] 16 | m_RendererFeatureMap: 17 | postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} 18 | xrSystemData: {fileID: 11400000, guid: 60e1133243b97e347b653163a8c01b64, type: 2} 19 | shaders: 20 | blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3} 21 | copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} 22 | screenSpaceShadowPS: {fileID: 4800000, guid: 0f854b35a0cf61a429bd5dcfea30eddd, type: 3} 23 | samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} 24 | tileDepthInfoPS: {fileID: 0} 25 | tileDeferredPS: {fileID: 0} 26 | stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} 27 | fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} 28 | materialErrorPS: {fileID: 4800000, guid: 5fd9a8feb75a4b5894c241777f519d4e, type: 3} 29 | m_OpaqueLayerMask: 30 | serializedVersion: 2 31 | m_Bits: 4294967295 32 | m_TransparentLayerMask: 33 | serializedVersion: 2 34 | m_Bits: 4294967295 35 | m_DefaultStencilState: 36 | overrideStencilState: 0 37 | stencilReference: 0 38 | stencilCompareFunction: 8 39 | passOperation: 0 40 | failOperation: 0 41 | zFailOperation: 0 42 | m_ShadowTransparentReceive: 1 43 | m_RenderingMode: 0 44 | m_AccurateGbufferNormals: 0 45 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/ForwardRenderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a8e21d5c33334b11b34a596161b9360 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10fc4df2da32a41aaa32d77bc913491c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/UniversalRP-HighQuality.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} 13 | m_Name: UniversalRP-HighQuality 14 | m_EditorClassIdentifier: 15 | k_AssetVersion: 5 16 | k_AssetPreviousVersion: 5 17 | m_RendererType: 1 18 | m_RendererData: {fileID: 0} 19 | m_RendererDataList: 20 | - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} 21 | m_DefaultRendererIndex: 0 22 | m_RequireDepthTexture: 0 23 | m_RequireOpaqueTexture: 0 24 | m_OpaqueDownsampling: 1 25 | m_SupportsHDR: 1 26 | m_MSAA: 2 27 | m_RenderScale: 1 28 | m_MainLightRenderingMode: 1 29 | m_MainLightShadowsSupported: 1 30 | m_MainLightShadowmapResolution: 2048 31 | m_AdditionalLightsRenderingMode: 1 32 | m_AdditionalLightsPerObjectLimit: 4 33 | m_AdditionalLightShadowsSupported: 1 34 | m_AdditionalLightsShadowmapResolution: 512 35 | m_ShadowDistance: 50 36 | m_ShadowCascades: 1 37 | m_Cascade2Split: 0.25 38 | m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} 39 | m_ShadowDepthBias: 1 40 | m_ShadowNormalBias: 1 41 | m_SoftShadowsSupported: 1 42 | m_UseSRPBatcher: 1 43 | m_SupportsDynamicBatching: 0 44 | m_MixedLightingSupported: 1 45 | m_DebugLevel: 0 46 | m_ColorGradingMode: 0 47 | m_ColorGradingLutSize: 32 48 | m_ShadowType: 1 49 | m_LocalShadowsSupported: 0 50 | m_LocalShadowsAtlasResolution: 256 51 | m_MaxPixelLights: 0 52 | m_ShadowAtlasResolution: 256 53 | m_ShaderVariantLogLevel: 0 54 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/UniversalRP-HighQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19ba41d7c0026c3459d37c2fe90c55a0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/UniversalRP-LowQuality.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} 13 | m_Name: UniversalRP-LowQuality 14 | m_EditorClassIdentifier: 15 | k_AssetVersion: 5 16 | k_AssetPreviousVersion: 5 17 | m_RendererType: 1 18 | m_RendererData: {fileID: 0} 19 | m_RendererDataList: 20 | - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} 21 | m_DefaultRendererIndex: 0 22 | m_RequireDepthTexture: 0 23 | m_RequireOpaqueTexture: 0 24 | m_OpaqueDownsampling: 1 25 | m_SupportsHDR: 0 26 | m_MSAA: 1 27 | m_RenderScale: 1 28 | m_MainLightRenderingMode: 1 29 | m_MainLightShadowsSupported: 0 30 | m_MainLightShadowmapResolution: 2048 31 | m_AdditionalLightsRenderingMode: 0 32 | m_AdditionalLightsPerObjectLimit: 4 33 | m_AdditionalLightShadowsSupported: 0 34 | m_AdditionalLightsShadowmapResolution: 512 35 | m_ShadowDistance: 50 36 | m_ShadowCascades: 0 37 | m_Cascade2Split: 0.25 38 | m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} 39 | m_ShadowDepthBias: 1 40 | m_ShadowNormalBias: 1 41 | m_SoftShadowsSupported: 0 42 | m_UseSRPBatcher: 1 43 | m_SupportsDynamicBatching: 0 44 | m_MixedLightingSupported: 1 45 | m_DebugLevel: 0 46 | m_ColorGradingMode: 0 47 | m_ColorGradingLutSize: 16 48 | m_ShadowType: 1 49 | m_LocalShadowsSupported: 0 50 | m_LocalShadowsAtlasResolution: 256 51 | m_MaxPixelLights: 0 52 | m_ShadowAtlasResolution: 256 53 | m_ShaderVariantLogLevel: 0 54 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/UniversalRP-LowQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31e9f9f9c9d4b9429ed0d1234e22103 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/UniversalRP-MediumQuality.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} 13 | m_Name: UniversalRP-MediumQuality 14 | m_EditorClassIdentifier: 15 | k_AssetVersion: 5 16 | k_AssetPreviousVersion: 5 17 | m_RendererType: 1 18 | m_RendererData: {fileID: 0} 19 | m_RendererDataList: 20 | - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} 21 | m_DefaultRendererIndex: 0 22 | m_RequireDepthTexture: 0 23 | m_RequireOpaqueTexture: 0 24 | m_OpaqueDownsampling: 1 25 | m_SupportsHDR: 0 26 | m_MSAA: 1 27 | m_RenderScale: 1 28 | m_MainLightRenderingMode: 1 29 | m_MainLightShadowsSupported: 1 30 | m_MainLightShadowmapResolution: 2048 31 | m_AdditionalLightsRenderingMode: 1 32 | m_AdditionalLightsPerObjectLimit: 4 33 | m_AdditionalLightShadowsSupported: 0 34 | m_AdditionalLightsShadowmapResolution: 512 35 | m_ShadowDistance: 50 36 | m_ShadowCascades: 0 37 | m_Cascade2Split: 0.25 38 | m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} 39 | m_ShadowDepthBias: 1 40 | m_ShadowNormalBias: 1 41 | m_SoftShadowsSupported: 0 42 | m_UseSRPBatcher: 1 43 | m_SupportsDynamicBatching: 0 44 | m_MixedLightingSupported: 1 45 | m_DebugLevel: 0 46 | m_ColorGradingMode: 0 47 | m_ColorGradingLutSize: 32 48 | m_ShadowType: 1 49 | m_LocalShadowsSupported: 0 50 | m_LocalShadowsAtlasResolution: 256 51 | m_MaxPixelLights: 0 52 | m_ShadowAtlasResolution: 256 53 | m_ShaderVariantLogLevel: 0 54 | -------------------------------------------------------------------------------- /tests/ushader/Assets/Settings/UniversalRP-MediumQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d847b876476d3d6468f5dfcd34266f96 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49110bb8dcada46328ad741970bce702 3 | folderAsset: yes 4 | timeCreated: 1475590612 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Icons.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a0c9218a650547d98138cd835033977 3 | folderAsset: yes 4 | timeCreated: 1484670163 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Icons/Help_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/TutorialInfo/Icons/Help_Icon.png -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Icons/UniversalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2youyou2/shader-graph-examples/f6e85c18502a7b1e55bef979754ca88504934c60/tests/ushader/Assets/TutorialInfo/Icons/UniversalIcon.png -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Layout.wlt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eabc9546105bf4accac1fd62a63e88e6 3 | timeCreated: 1487337779 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a9bcd70e6a4b4b05badaa72e827d8e0 3 | folderAsset: yes 4 | timeCreated: 1475835190 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad9b87dffba344c89909c6d1b1c17e1 3 | folderAsset: yes 4 | timeCreated: 1475593892 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 476cc7d7cd9874016adc216baab94a0a 3 | timeCreated: 1484146680 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Scripts/Readme.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using UnityEngine; 3 | 4 | public class Readme : ScriptableObject { 5 | public Texture2D icon; 6 | public string title; 7 | public Section[] sections; 8 | public bool loadedLayout; 9 | 10 | [Serializable] 11 | public class Section { 12 | public string heading, text, linkText, url; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tests/ushader/Assets/TutorialInfo/Scripts/Readme.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcf7219bab7fe46a1ad266029b2fee19 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: 7 | - icon: {fileID: 2800000, guid: d4743ba2e2a59f946b2125c074582ce7, type: 3} 8 | executionOrder: 0 9 | icon: {fileID: 2800000, guid: a186f8a87ca4f4d3aa864638ad5dfb65, type: 3} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d70cba2a4046ec74189eec0d7bf1cd3a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/sample.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc789e8b74f0676469181a8448417b8a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80ea55aa20fa96844bbe57fae4bdd7a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/barrel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cead44d573ff7d14d869b5722b1a17ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/barrel/Barrel.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f08ca2cc61b0dd34d832e799cecc9a70 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/cubmap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1b5fcdc43fd5bd429cd65f60b609797 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/cubmap/cubemap.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5e8356935c8e2b4da9472dae94f2c1d 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/eyeball.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 323d9e546a5fac143b32b72d62acf6f5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/eyeball/Eyeballs.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 316bd26af663750429ca85230f4b4630 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/flame.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d38b3bda7419c074cab124ae34c626ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/flame/Flame.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfb88b91b458c7b499d369bc0a013590 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/globe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 985ba98ec7af545488d32fafad469177 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/globe/Globe.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d32bec64eaa8f8041ac8766c146a09f1 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e60ed17f5f540ef47918b0f052683641 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Herringbone.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6ab438c79d1e8142a61b61c5bcd72d8 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Hex Lattice.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cec1b135538a90041a282431a1f94b59 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Houndstooth.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9e77e6a33014a94297b6c482a0eeb0d 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfece6cd6e59d164497677397142994e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/.sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "displayName":"Procedural Patterns Subgraph Examples", 3 | "interactiveImport": "false", 4 | "description":"This collection of subgraphs showcases various procedural techniques possible with shadergraph. Use them in your project or edit them to create other procedural pattens. Subgraph patterns: Bacteria, Brick, Dots, Grid, Herringbone, Hex Lattice, Houndstooth, Smooth Wave, Spiral, Stripes, Truchet, Whirl, Zig Zag", 5 | "createSeparatePackage": true 6 | } 7 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Bacteria.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 804c76ccbe9643147a24f07885bb47ba 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/BacteriaSmoothstep.shadersubgraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3991c0bfe9e06945833b46fb6e56055 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Brick.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa594629bd691e649abe52f379f329b1 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Dots.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5c7000f861f300458b9a07bbecac164 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Grid.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2ff61a18444547458ea8849584f6bec 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Herringbone.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2779352ef2443b545b86854fa838b877 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Hex Lattice.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae6f2edd46e88d5459d149f7a35446e1 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Houndstooth.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67a22abd94d077a4282e47a4cc312992 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Smooth Wave.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f450689a19af5fd4a98b097aa9136722 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Spiral.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a26cc160e0fc0a4b9c1a14cfd3d392f 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Stripes.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1957c4e211f004e43b5a2040d7082630 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Truchet.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 443a06ee36571b848aa0cc4eb4f681b4 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Whirl.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44f87539b2be2d24d86b8843f98ad277 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Procedural Patterns/Zig Zag.ShaderSubGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1de2640525189284b8e549fd02f813f1 3 | ScriptedImporter: 4 | fileIDToRecycleName: 5 | 11400000: MainAsset 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Smooth Wave.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5069a721dac494e458481b97ab9b5bd2 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Spiral.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8903eb3eaa940e1468286750fee81e8f 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Stripes.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b2db00c5b96d4e4cb758e8e273cb350 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Truchet.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 354b744dd62b3fc48b519bbd09959cfe 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Whirl.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a36f889aee69513428319561a88958da 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/Zig Zag.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92b9071462398ec4297cc8d90de040da 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/bacteria.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3284da390fb2a945bc589a9aabf4481 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/brick.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d372c35310df04946b7657f1a9ce0b5f 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/dots.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 976ae6e672646c24e90084381b8fc285 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/shape/grid.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cd6869e6bd8a7f48b2b0455d6a3be4b 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/tv.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 474aa88abd85a274a9900585c3f12235 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /tests/ushader/Assets/shadedr-graphs/tests/tv/TV.ShaderGraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48816493fa7d4654184a770b3aded94b 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /tests/ushader/Logs/Packages-Update.log: -------------------------------------------------------------------------------- 1 | 2 | === Thu Nov 25 15:07:03 2021 3 | 4 | Packages were changed. 5 | Update Mode: mergeDefaultDependencies 6 | 7 | The following packages were added: 8 | com.unity.collab-proxy@1.3.9 9 | com.unity.ide.rider@2.0.7 10 | com.unity.ide.visualstudio@2.0.5 11 | com.unity.ide.vscode@1.2.3 12 | com.unity.modules.ai@1.0.0 13 | com.unity.modules.androidjni@1.0.0 14 | com.unity.modules.animation@1.0.0 15 | com.unity.modules.assetbundle@1.0.0 16 | com.unity.modules.audio@1.0.0 17 | com.unity.modules.cloth@1.0.0 18 | com.unity.modules.director@1.0.0 19 | com.unity.modules.imageconversion@1.0.0 20 | com.unity.modules.imgui@1.0.0 21 | com.unity.modules.jsonserialize@1.0.0 22 | com.unity.modules.particlesystem@1.0.0 23 | com.unity.modules.physics@1.0.0 24 | com.unity.modules.physics2d@1.0.0 25 | com.unity.modules.screencapture@1.0.0 26 | com.unity.modules.terrain@1.0.0 27 | com.unity.modules.terrainphysics@1.0.0 28 | com.unity.modules.tilemap@1.0.0 29 | com.unity.modules.ui@1.0.0 30 | com.unity.modules.uielements@1.0.0 31 | com.unity.modules.umbra@1.0.0 32 | com.unity.modules.unityanalytics@1.0.0 33 | com.unity.modules.unitywebrequest@1.0.0 34 | com.unity.modules.unitywebrequestassetbundle@1.0.0 35 | com.unity.modules.unitywebrequestaudio@1.0.0 36 | com.unity.modules.unitywebrequesttexture@1.0.0 37 | com.unity.modules.unitywebrequestwww@1.0.0 38 | com.unity.modules.vehicles@1.0.0 39 | com.unity.modules.video@1.0.0 40 | com.unity.modules.vr@1.0.0 41 | com.unity.modules.wind@1.0.0 42 | com.unity.modules.xr@1.0.0 43 | com.unity.test-framework@1.1.20 44 | com.unity.textmeshpro@3.0.1 45 | com.unity.timeline@1.4.5 46 | com.unity.ugui@1.0.0 47 | -------------------------------------------------------------------------------- /tests/ushader/Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.collab-proxy": "1.3.9", 4 | "com.unity.ide.rider": "2.0.7", 5 | "com.unity.ide.visualstudio": "2.0.5", 6 | "com.unity.ide.vscode": "1.2.3", 7 | "com.unity.render-pipelines.universal": "10.2.2", 8 | "com.unity.test-framework": "1.1.20", 9 | "com.unity.textmeshpro": "3.0.1", 10 | "com.unity.timeline": "1.4.5", 11 | "com.unity.ugui": "1.0.0", 12 | "com.unity.modules.ai": "1.0.0", 13 | "com.unity.modules.androidjni": "1.0.0", 14 | "com.unity.modules.animation": "1.0.0", 15 | "com.unity.modules.assetbundle": "1.0.0", 16 | "com.unity.modules.audio": "1.0.0", 17 | "com.unity.modules.cloth": "1.0.0", 18 | "com.unity.modules.director": "1.0.0", 19 | "com.unity.modules.imageconversion": "1.0.0", 20 | "com.unity.modules.imgui": "1.0.0", 21 | "com.unity.modules.jsonserialize": "1.0.0", 22 | "com.unity.modules.particlesystem": "1.0.0", 23 | "com.unity.modules.physics": "1.0.0", 24 | "com.unity.modules.physics2d": "1.0.0", 25 | "com.unity.modules.screencapture": "1.0.0", 26 | "com.unity.modules.terrain": "1.0.0", 27 | "com.unity.modules.terrainphysics": "1.0.0", 28 | "com.unity.modules.tilemap": "1.0.0", 29 | "com.unity.modules.ui": "1.0.0", 30 | "com.unity.modules.uielements": "1.0.0", 31 | "com.unity.modules.umbra": "1.0.0", 32 | "com.unity.modules.unityanalytics": "1.0.0", 33 | "com.unity.modules.unitywebrequest": "1.0.0", 34 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 35 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 36 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 37 | "com.unity.modules.unitywebrequestwww": "1.0.0", 38 | "com.unity.modules.vehicles": "1.0.0", 39 | "com.unity.modules.video": "1.0.0", 40 | "com.unity.modules.vr": "1.0.0", 41 | "com.unity.modules.wind": "1.0.0", 42 | "com.unity.modules.xr": "1.0.0" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 0 20 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 13 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0.1 18 | m_ClothInterCollisionStiffness: 0.2 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ClothGravity: {x: 0, y: -9.81, z: 0} 26 | m_ContactPairsMode: 0 27 | m_BroadphaseType: 0 28 | m_WorldBounds: 29 | m_Center: {x: 0, y: 0, z: 0} 30 | m_Extent: {x: 250, y: 250, z: 250} 31 | m_WorldSubdivisions: 8 32 | m_FrictionType: 0 33 | m_EnableEnhancedDeterminism: 0 34 | m_EnableUnifiedHeightmaps: 1 35 | m_SolverType: 0 36 | m_DefaultMaxAngularSpeed: 7 37 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scenes/SampleScene.unity 10 | guid: d1c3109bdb54ad54c8a2b2838528e640 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_AssetPipelineMode: 1 6 | m_ObjectHideFlags: 0 7 | serializedVersion: 10 8 | m_ExternalVersionControlSupport: Visible Meta Files 9 | m_SerializationMode: 2 10 | m_LineEndingsForNewScripts: 0 11 | m_DefaultBehaviorMode: 0 12 | m_PrefabRegularEnvironment: {fileID: 0} 13 | m_PrefabUIEnvironment: {fileID: 0} 14 | m_SpritePackerMode: 0 15 | m_SpritePackerPaddingPower: 1 16 | m_EtcTextureCompressorBehavior: 1 17 | m_EtcTextureFastCompressor: 1 18 | m_EtcTextureNormalCompressor: 2 19 | m_EtcTextureBestCompressor: 4 20 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;asmref;rsp 21 | m_ProjectGenerationRootNamespace: 22 | m_CollabEditorSettings: 23 | inProgressEnabled: 1 24 | m_EnableTextureStreamingInEditMode: 1 25 | m_EnableTextureStreamingInPlayMode: 1 26 | m_AsyncShaderCompilation: 1 27 | m_EnterPlayModeOptionsEnabled: 0 28 | m_EnterPlayModeOptions: 3 29 | m_ShowLightmapResolutionOverlay: 1 30 | m_UseLegacyProbeSampleCount: 0 31 | m_SerializeInlineMappingsOnOneLine: 1 32 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreviewPackages: 0 16 | m_EnablePackageDependencies: 0 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | oneTimeWarningShown: 0 20 | m_Registries: 21 | - m_Id: main 22 | m_Name: 23 | m_Url: https://packages.unity.com 24 | m_Scopes: [] 25 | m_IsDefault: 1 26 | m_Capabilities: 7 27 | m_UserSelectedRegistryName: 28 | m_UserAddingNewScopedRegistry: 0 29 | m_RegistryInfoDraft: 30 | m_ErrorMessage: 31 | m_Original: 32 | m_Id: 33 | m_Name: 34 | m_Url: 35 | m_Scopes: [] 36 | m_IsDefault: 0 37 | m_Capabilities: 0 38 | m_Modified: 0 39 | m_Name: 40 | m_Url: 41 | m_Scopes: 42 | - 43 | m_SelectedScopeIndex: 0 44 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: 7 | - type: 8 | m_NativeTypeID: 108 9 | m_ManagedTypePPtr: {fileID: 0} 10 | m_ManagedTypeFallback: 11 | defaultPresets: 12 | - m_Preset: {fileID: 2655988077585873504, guid: 463065d4f17d1d94d848aa127b94dd43, 13 | type: 2} 14 | - type: 15 | m_NativeTypeID: 1020 16 | m_ManagedTypePPtr: {fileID: 0} 17 | m_ManagedTypeFallback: 18 | defaultPresets: 19 | - m_Preset: {fileID: 2655988077585873504, guid: e7689051185d12f4298e1ebb2693a29f, 20 | type: 2} 21 | - type: 22 | m_NativeTypeID: 1006 23 | m_ManagedTypePPtr: {fileID: 0} 24 | m_ManagedTypeFallback: 25 | defaultPresets: 26 | - m_Preset: {fileID: 2655988077585873504, guid: e8537455c6c08bd4e8bf0be3707da685, 27 | type: 2} 28 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.2.1f1 2 | m_EditorVersionWithRevision: 2020.2.1f1 (270dd8c3da1c) 3 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_LastMaterialVersion: 4 16 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /tests/ushader/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /tests/ushader/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!162 &1 4 | EditorUserSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_ConfigSettings: 8 | RecentlyUsedScenePath-0: 9 | value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d 10 | flags: 0 11 | RecentlyUsedScenePath-1: 12 | value: 2242470311464648050f082714311217041608223f67353120391136acf53a31f6fe 13 | flags: 0 14 | UnityEditor.ShaderGraph.FloatingWindowsLayout2: 15 | value: 181344140043005e1a220d3b1f364b524c0c5a27130c293326201334cee5322ca0bd30e8eb293a707b0fd0180b3d0a36fc0d3d04e649500d1002ee0b5dbd1d2c27c00ad113cb1e10e41f1addc80993b98d9884a69ae6d8f0d1cda9e8fbfefaf9f9dea3fdb9ade882f0f7b0e1e380cafbf2c3adc18e9cd285a2908b82ec869c8395949c9483d68a8e97ddbd90eed2a5a892a2af949aa48bafb19f85bd75a7ed3a7d25658598b7b58bb4b76aaf777690ca2863946c72c6cd81b6b6708f9f879f88769589d91c8f888e64d20f935e796571755c6b546677696a486c781c07356f23696429450074652134203e56454c514e4352305f7862141e6a730c0c00615e4e54185d4f1e4e1b0d5872716d5e6f603a6b7c4176795978363400 16 | flags: 0 17 | UnityEditor.ShaderGraph.InspectorWindow: 18 | value: 18135939215a0a5004000b0e15254b524c1119263f2d6a722016393ce1eb3d36e5d339f9a5602b2e2c07a37e0901373ae01e0008f707250d171df81a53a5485d41895ac825e0100ec20313c0d91cddccd3d0c7efcca9bd80908fecb0f9cfddf1eff4e7a1b1eae482f0fcaee1e1928b86d888ed909c968797a7cf 19 | flags: 0 20 | vcSharedLogLevel: 21 | value: 0d5e400f0650 22 | flags: 0 23 | m_VCAutomaticAdd: 1 24 | m_VCDebugCom: 0 25 | m_VCDebugCmd: 0 26 | m_VCDebugOut: 0 27 | m_SemanticMergeMode: 2 28 | m_VCShowFailedCheckout: 1 29 | m_VCOverwriteFailedCheckoutAssets: 1 30 | m_VCProjectOverlayIcons: 1 31 | m_VCHierarchyOverlayIcons: 1 32 | m_VCOtherOverlayIcons: 1 33 | m_VCAllowAsyncUpdate: 1 34 | -------------------------------------------------------------------------------- /tests/ushader/ushader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{da014e43-78b5-0079-bd77-ace87610b4d0}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{28cfc740-c675-51a5-9bd8-deb89df99c4c}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | EndGlobalSection 12 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 13 | {da014e43-78b5-0079-bd77-ace87610b4d0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 14 | {da014e43-78b5-0079-bd77-ace87610b4d0}.Debug|Any CPU.Build.0 = Debug|Any CPU 15 | {28cfc740-c675-51a5-9bd8-deb89df99c4c}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 16 | {28cfc740-c675-51a5-9bd8-deb89df99c4c}.Debug|Any CPU.Build.0 = Debug|Any CPU 17 | EndGlobalSection 18 | GlobalSection(SolutionProperties) = preSolution 19 | HideSolutionNode = FALSE 20 | EndGlobalSection 21 | EndGlobal 22 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | /* Base configuration. Do not edit this field. */ 3 | "extends": "./temp/tsconfig.cocos.json" 4 | 5 | /* Add your custom configuration here. */ 6 | } 7 | --------------------------------------------------------------------------------