├── .gitattributes ├── .gitignore ├── Assets ├── 3DGamekit.meta ├── 3DGamekit │ ├── 3DGameKit_Third-PartyNotice.txt │ ├── 3DGameKit_Third-PartyNotice.txt.meta │ ├── Art.meta │ ├── Art │ │ ├── DemoMaterials.meta │ │ ├── DemoMaterials │ │ │ ├── GroudCover01.mat │ │ │ ├── GroudCover01.mat.meta │ │ │ ├── GroudCover02.mat │ │ │ ├── GroudCover02.mat.meta │ │ │ ├── Mud_Mat.mat │ │ │ ├── Mud_Mat.mat.meta │ │ │ ├── Rock_Chunk01.mat │ │ │ ├── Rock_Chunk01.mat.meta │ │ │ ├── Rock_CliffBig01.mat │ │ │ ├── Rock_CliffBig01.mat.meta │ │ │ ├── Rock_CliffBig02.mat │ │ │ ├── Rock_CliffBig02.mat.meta │ │ │ ├── Rock_CliffBig03.mat │ │ │ ├── Rock_CliffBig03.mat.meta │ │ │ ├── Rock_Floating04.mat │ │ │ ├── Rock_Floating04.mat.meta │ │ │ ├── Rock_Ledge01.mat │ │ │ ├── Rock_Ledge01.mat.meta │ │ │ ├── Rock_Small.mat │ │ │ ├── Rock_Small.mat.meta │ │ │ ├── Rock_Small_white.mat │ │ │ ├── Rock_Small_white.mat.meta │ │ │ ├── Rock_Swamp01.mat │ │ │ └── Rock_Swamp01.mat.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Skybox.meta │ │ │ └── Skybox │ │ │ │ ├── Clouds.meta │ │ │ │ └── Clouds │ │ │ │ ├── Cloud_01_Mat.mat │ │ │ │ ├── Cloud_01_Mat.mat.meta │ │ │ │ ├── Cloud_02_Mat.mat │ │ │ │ ├── Cloud_02_Mat.mat.meta │ │ │ │ ├── Cloud_03_Mat.mat │ │ │ │ ├── Cloud_03_Mat.mat.meta │ │ │ │ ├── Cloud_04_Mat.mat │ │ │ │ ├── Cloud_04_Mat.mat.meta │ │ │ │ ├── Cloud_05_Mat.mat │ │ │ │ └── Cloud_05_Mat.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Environment.meta │ │ │ ├── Environment │ │ │ │ ├── Monuments.meta │ │ │ │ ├── Monuments │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Monument01_Mat.mat │ │ │ │ │ │ └── Monument01_Mat.mat.meta │ │ │ │ │ ├── Monument01.fbx │ │ │ │ │ └── Monument01.fbx.meta │ │ │ │ ├── Rock.meta │ │ │ │ ├── Rock │ │ │ │ │ ├── CliffBig01.fbx │ │ │ │ │ ├── CliffBig01.fbx.meta │ │ │ │ │ ├── CliffBig02.fbx │ │ │ │ │ ├── CliffBig02.fbx.meta │ │ │ │ │ ├── CliffBig03.fbx │ │ │ │ │ ├── CliffBig03.fbx.meta │ │ │ │ │ ├── CliffEdge01.fbx │ │ │ │ │ ├── CliffEdge01.fbx.meta │ │ │ │ │ ├── CliffEdge02.fbx │ │ │ │ │ ├── CliffEdge02.fbx.meta │ │ │ │ │ ├── CliffEdge03.fbx │ │ │ │ │ ├── CliffEdge03.fbx.meta │ │ │ │ │ ├── CliffEdge04.fbx │ │ │ │ │ ├── CliffEdge04.fbx.meta │ │ │ │ │ ├── Ground_Chunk_01.fbx │ │ │ │ │ ├── Ground_Chunk_01.fbx.meta │ │ │ │ │ ├── Ground_Chunk_02.fbx │ │ │ │ │ ├── Ground_Chunk_02.fbx.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── CliffBig01_Mat.mat │ │ │ │ │ │ ├── CliffBig01_Mat.mat.meta │ │ │ │ │ │ ├── CliffBig02_Mat.mat │ │ │ │ │ │ ├── CliffBig02_Mat.mat.meta │ │ │ │ │ │ ├── CliffBig03_Mat.mat │ │ │ │ │ │ ├── CliffBig03_Mat.mat.meta │ │ │ │ │ │ ├── CliffEdge01_Mat.mat │ │ │ │ │ │ ├── CliffEdge01_Mat.mat.meta │ │ │ │ │ │ ├── CliffEdge02_Mat.mat │ │ │ │ │ │ ├── CliffEdge02_Mat.mat.meta │ │ │ │ │ │ ├── CliffEdge03_Mat.mat │ │ │ │ │ │ ├── CliffEdge03_Mat.mat.meta │ │ │ │ │ │ ├── CliffEdge04_Mat.mat │ │ │ │ │ │ ├── CliffEdge04_Mat.mat.meta │ │ │ │ │ │ ├── Ridge01_Mat.mat │ │ │ │ │ │ ├── Ridge01_Mat.mat.meta │ │ │ │ │ │ ├── Ridge02_Mat.mat │ │ │ │ │ │ ├── Ridge02_Mat.mat.meta │ │ │ │ │ │ ├── RockChunk01_mat.mat │ │ │ │ │ │ ├── RockChunk01_mat.mat.meta │ │ │ │ │ │ ├── RockFloating01_Mat.mat │ │ │ │ │ │ ├── RockFloating01_Mat.mat.meta │ │ │ │ │ │ ├── RockFloating02_Mat.mat │ │ │ │ │ │ ├── RockFloating02_Mat.mat.meta │ │ │ │ │ │ ├── RockFloating03_Mat.mat │ │ │ │ │ │ ├── RockFloating03_Mat.mat.meta │ │ │ │ │ │ ├── RockFloating04_Mat.mat │ │ │ │ │ │ ├── RockFloating04_Mat.mat.meta │ │ │ │ │ │ ├── RockLedge01_Mat.mat │ │ │ │ │ │ ├── RockLedge01_Mat.mat.meta │ │ │ │ │ │ ├── RockLedge02_Mat.mat │ │ │ │ │ │ ├── RockLedge02_Mat.mat.meta │ │ │ │ │ │ ├── RockSwamp01_Mat.mat │ │ │ │ │ │ └── RockSwamp01_Mat.mat.meta │ │ │ │ │ ├── Ridge01.fbx │ │ │ │ │ ├── Ridge01.fbx.meta │ │ │ │ │ ├── Ridge02.fbx │ │ │ │ │ ├── Ridge02.fbx.meta │ │ │ │ │ ├── RockChunk01.fbx │ │ │ │ │ ├── RockChunk01.fbx.meta │ │ │ │ │ ├── RockFloating01.fbx │ │ │ │ │ ├── RockFloating01.fbx.meta │ │ │ │ │ ├── RockFloating02.fbx │ │ │ │ │ ├── RockFloating02.fbx.meta │ │ │ │ │ ├── RockFloating03.fbx │ │ │ │ │ ├── RockFloating03.fbx.meta │ │ │ │ │ ├── RockFloating04.fbx │ │ │ │ │ ├── RockFloating04.fbx.meta │ │ │ │ │ ├── RockLedge01.fbx │ │ │ │ │ ├── RockLedge01.fbx.meta │ │ │ │ │ ├── RockLedge02.fbx │ │ │ │ │ ├── RockLedge02.fbx.meta │ │ │ │ │ ├── RockSwamp01.fbx │ │ │ │ │ ├── RockSwamp01.fbx.meta │ │ │ │ │ ├── SmallRock01.fbx │ │ │ │ │ ├── SmallRock01.fbx.meta │ │ │ │ │ ├── SmallRock01_white.fbx │ │ │ │ │ ├── SmallRock01_white.fbx.meta │ │ │ │ │ ├── SmallRock02.fbx │ │ │ │ │ ├── SmallRock02.fbx.meta │ │ │ │ │ ├── SmallRock02_white.fbx │ │ │ │ │ ├── SmallRock02_white.fbx.meta │ │ │ │ │ ├── SmallRock03.fbx │ │ │ │ │ ├── SmallRock03.fbx.meta │ │ │ │ │ ├── SmallRock03_white.fbx │ │ │ │ │ ├── SmallRock03_white.fbx.meta │ │ │ │ │ ├── waterFall_mesh01.obj │ │ │ │ │ └── waterFall_mesh01.obj.meta │ │ │ │ ├── Stonework.meta │ │ │ │ ├── Stonework │ │ │ │ │ ├── AlienStatue.fbx │ │ │ │ │ ├── AlienStatue.fbx.meta │ │ │ │ │ ├── Collision.meta │ │ │ │ │ ├── Collision │ │ │ │ │ │ ├── FloorCircular03Broken_COL.fbx │ │ │ │ │ │ ├── FloorCircular03Broken_COL.fbx.meta │ │ │ │ │ │ ├── FloorCircular03_COL.fbx │ │ │ │ │ │ ├── FloorCircular03_COL.fbx.meta │ │ │ │ │ │ ├── StairsCircular01_COL.fbx │ │ │ │ │ │ ├── StairsCircular01_COL.fbx.meta │ │ │ │ │ │ ├── StairsNarrow01_COL.fbx │ │ │ │ │ │ ├── StairsNarrow01_COL.fbx.meta │ │ │ │ │ │ ├── StairsWide_COL.fbx │ │ │ │ │ │ └── StairsWide_COL.fbx.meta │ │ │ │ │ ├── DoorHuge01.fbx │ │ │ │ │ ├── DoorHuge01.fbx.meta │ │ │ │ │ ├── FloorCircular01.fbx │ │ │ │ │ ├── FloorCircular01.fbx.meta │ │ │ │ │ ├── FloorCircular02.fbx │ │ │ │ │ ├── FloorCircular02.fbx.meta │ │ │ │ │ ├── FloorCircular03.fbx │ │ │ │ │ ├── FloorCircular03.fbx.meta │ │ │ │ │ ├── FloorCircular03Broken.fbx │ │ │ │ │ ├── FloorCircular03Broken.fbx.meta │ │ │ │ │ ├── FloorPanel1x1.fbx │ │ │ │ │ ├── FloorPanel1x1.fbx.meta │ │ │ │ │ ├── FloorPanel2x1.fbx │ │ │ │ │ ├── FloorPanel2x1.fbx.meta │ │ │ │ │ ├── FloorPanel2x2.fbx │ │ │ │ │ ├── FloorPanel2x2.fbx.meta │ │ │ │ │ ├── GateHuge01.fbx │ │ │ │ │ ├── GateHuge01.fbx.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── DoorHuge01_Mat.mat │ │ │ │ │ │ ├── DoorHuge01_Mat.mat.meta │ │ │ │ │ │ ├── FloorCircular01_Mat.mat │ │ │ │ │ │ ├── FloorCircular01_Mat.mat.meta │ │ │ │ │ │ ├── FloorCircular02_Mat.mat │ │ │ │ │ │ ├── FloorCircular02_Mat.mat.meta │ │ │ │ │ │ ├── FloorCircular03Broken_Mat.mat │ │ │ │ │ │ ├── FloorCircular03Broken_Mat.mat.meta │ │ │ │ │ │ ├── FloorCircular03_Mat.mat │ │ │ │ │ │ ├── FloorCircular03_Mat.mat.meta │ │ │ │ │ │ ├── FloorPanel03_Mat.mat │ │ │ │ │ │ ├── FloorPanel03_Mat.mat.meta │ │ │ │ │ │ ├── MovingPlatform_mat.mat │ │ │ │ │ │ ├── MovingPlatform_mat.mat.meta │ │ │ │ │ │ ├── Platform_mat.mat │ │ │ │ │ │ ├── Platform_mat.mat.meta │ │ │ │ │ │ ├── StairsCircular01_Mat.mat │ │ │ │ │ │ ├── StairsCircular01_Mat.mat.meta │ │ │ │ │ │ ├── StairsNarrow01Broken_Mat.mat │ │ │ │ │ │ ├── StairsNarrow01Broken_Mat.mat.meta │ │ │ │ │ │ ├── StairsNarrow01_Mat.mat │ │ │ │ │ │ ├── StairsNarrow01_Mat.mat.meta │ │ │ │ │ │ ├── StairsWideBroken_mat.mat │ │ │ │ │ │ ├── StairsWideBroken_mat.mat.meta │ │ │ │ │ │ ├── StairsWide_mat.mat │ │ │ │ │ │ ├── StairsWide_mat.mat.meta │ │ │ │ │ │ ├── Statue_mat.mat │ │ │ │ │ │ ├── Statue_mat.mat.meta │ │ │ │ │ │ ├── Wall01Broken_Mat.mat │ │ │ │ │ │ ├── Wall01Broken_Mat.mat.meta │ │ │ │ │ │ ├── Wall01_mat.mat │ │ │ │ │ │ ├── Wall01_mat.mat.meta │ │ │ │ │ │ ├── Wall02Broken_Mat.mat │ │ │ │ │ │ ├── Wall02Broken_Mat.mat.meta │ │ │ │ │ │ ├── Wall02_Mat.mat │ │ │ │ │ │ ├── Wall02_Mat.mat.meta │ │ │ │ │ │ ├── WallCornerBig01Broken_Mat.mat │ │ │ │ │ │ ├── WallCornerBig01Broken_Mat.mat.meta │ │ │ │ │ │ ├── WallHuge01_Mat.mat │ │ │ │ │ │ ├── WallHuge01_Mat.mat.meta │ │ │ │ │ │ ├── WallHuge02_Mat.mat │ │ │ │ │ │ ├── WallHuge02_Mat.mat.meta │ │ │ │ │ │ ├── WallTall_Corner_mat.mat │ │ │ │ │ │ ├── WallTall_Corner_mat.mat.meta │ │ │ │ │ │ ├── WallTall_Long_mat.mat │ │ │ │ │ │ ├── WallTall_Long_mat.mat.meta │ │ │ │ │ │ ├── WallTall_Short_mat.mat │ │ │ │ │ │ └── WallTall_Short_mat.mat.meta │ │ │ │ │ ├── MovingPlatformCorner.fbx │ │ │ │ │ ├── MovingPlatformCorner.fbx.meta │ │ │ │ │ ├── MovingPlatformMiddle.fbx │ │ │ │ │ ├── MovingPlatformMiddle.fbx.meta │ │ │ │ │ ├── MovingPlatformSide.fbx │ │ │ │ │ ├── MovingPlatformSide.fbx.meta │ │ │ │ │ ├── PlatformDetail.fbx │ │ │ │ │ ├── PlatformDetail.fbx.meta │ │ │ │ │ ├── PlatformEdge01.fbx │ │ │ │ │ ├── PlatformEdge01.fbx.meta │ │ │ │ │ ├── PlatformEdge02.fbx │ │ │ │ │ ├── PlatformEdge02.fbx.meta │ │ │ │ │ ├── PlatformLong.fbx │ │ │ │ │ ├── PlatformLong.fbx.meta │ │ │ │ │ ├── PlatformShort.fbx │ │ │ │ │ ├── PlatformShort.fbx.meta │ │ │ │ │ ├── PlatformSupportLong.fbx │ │ │ │ │ ├── PlatformSupportLong.fbx.meta │ │ │ │ │ ├── PlatformSupportShort.fbx │ │ │ │ │ ├── PlatformSupportShort.fbx.meta │ │ │ │ │ ├── SmallDoor.fbx │ │ │ │ │ ├── SmallDoor.fbx.meta │ │ │ │ │ ├── StairsCircular01.fbx │ │ │ │ │ ├── StairsCircular01.fbx.meta │ │ │ │ │ ├── StairsExtension.fbx │ │ │ │ │ ├── StairsExtension.fbx.meta │ │ │ │ │ ├── StairsExtensionR.fbx │ │ │ │ │ ├── StairsExtensionR.fbx.meta │ │ │ │ │ ├── StairsNarrow01.fbx │ │ │ │ │ ├── StairsNarrow01.fbx.meta │ │ │ │ │ ├── StairsNarrowBroken01.fbx │ │ │ │ │ ├── StairsNarrowBroken01.fbx.meta │ │ │ │ │ ├── StairsWide01.fbx │ │ │ │ │ ├── StairsWide01.fbx.meta │ │ │ │ │ ├── StairsWideBroken01.fbx │ │ │ │ │ ├── StairsWideBroken01.fbx.meta │ │ │ │ │ ├── WallCorner01Broken.fbx │ │ │ │ │ ├── WallCorner01Broken.fbx.meta │ │ │ │ │ ├── WallCorner02.fbx │ │ │ │ │ ├── WallCorner02.fbx.meta │ │ │ │ │ ├── WallCornerBig01Broken.fbx │ │ │ │ │ ├── WallCornerBig01Broken.fbx.meta │ │ │ │ │ ├── WallCornerBroken01.fbx │ │ │ │ │ ├── WallCornerBroken01.fbx.meta │ │ │ │ │ ├── WallCornerL01.fbx │ │ │ │ │ ├── WallCornerL01.fbx.meta │ │ │ │ │ ├── WallCornerR01.fbx │ │ │ │ │ ├── WallCornerR01.fbx.meta │ │ │ │ │ ├── WallHuge01.fbx │ │ │ │ │ ├── WallHuge01.fbx.meta │ │ │ │ │ ├── WallHuge02.fbx │ │ │ │ │ ├── WallHuge02.fbx.meta │ │ │ │ │ ├── WallLong01.fbx │ │ │ │ │ ├── WallLong01.fbx.meta │ │ │ │ │ ├── WallLong01Broken.fbx │ │ │ │ │ ├── WallLong01Broken.fbx.meta │ │ │ │ │ ├── WallLong02.fbx │ │ │ │ │ ├── WallLong02.fbx.meta │ │ │ │ │ ├── WallLong02Broken.fbx │ │ │ │ │ ├── WallLong02Broken.fbx.meta │ │ │ │ │ ├── WallLongBroken01.fbx │ │ │ │ │ ├── WallLongBroken01.fbx.meta │ │ │ │ │ ├── WallShort01.fbx │ │ │ │ │ ├── WallShort01.fbx.meta │ │ │ │ │ ├── WallShort02.fbx │ │ │ │ │ ├── WallShort02.fbx.meta │ │ │ │ │ ├── WallTallCorner01.fbx │ │ │ │ │ ├── WallTallCorner01.fbx.meta │ │ │ │ │ ├── WallTallLong01.fbx │ │ │ │ │ ├── WallTallLong01.fbx.meta │ │ │ │ │ ├── WallTallShort01.fbx │ │ │ │ │ └── WallTallShort01.fbx.meta │ │ │ │ ├── VegetationLarge.meta │ │ │ │ ├── VegetationLarge │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── VegetationLarge01_Mat.mat │ │ │ │ │ │ ├── VegetationLarge01_Mat.mat.meta │ │ │ │ │ │ ├── VegetationLarge02_Mat.mat │ │ │ │ │ │ ├── VegetationLarge02_Mat.mat.meta │ │ │ │ │ │ ├── VegetationLarge03_Mat.mat │ │ │ │ │ │ ├── VegetationLarge03_Mat.mat.meta │ │ │ │ │ │ ├── VegetationLarge04_Mat.mat │ │ │ │ │ │ ├── VegetationLarge04_Mat.mat.meta │ │ │ │ │ │ ├── VegetationLarge05_Mat.mat │ │ │ │ │ │ ├── VegetationLarge05_Mat.mat.meta │ │ │ │ │ │ ├── VegetationLarge06_Mat.mat │ │ │ │ │ │ ├── VegetationLarge06_Mat.mat.meta │ │ │ │ │ │ ├── VegetationLarge07_Mat.mat │ │ │ │ │ │ └── VegetationLarge07_Mat.mat.meta │ │ │ │ │ ├── VegetationLarge01.fbx │ │ │ │ │ ├── VegetationLarge01.fbx.meta │ │ │ │ │ ├── VegetationLarge01_02.fbx │ │ │ │ │ ├── VegetationLarge01_02.fbx.meta │ │ │ │ │ ├── VegetationLarge02.fbx │ │ │ │ │ ├── VegetationLarge02.fbx.meta │ │ │ │ │ ├── VegetationLarge03.fbx │ │ │ │ │ ├── VegetationLarge03.fbx.meta │ │ │ │ │ ├── VegetationLarge03_02.fbx │ │ │ │ │ ├── VegetationLarge03_02.fbx.meta │ │ │ │ │ ├── VegetationLarge04.fbx │ │ │ │ │ ├── VegetationLarge04.fbx.meta │ │ │ │ │ ├── VegetationLarge05.fbx │ │ │ │ │ ├── VegetationLarge05.fbx.meta │ │ │ │ │ ├── VegetationLarge05_02.fbx │ │ │ │ │ ├── VegetationLarge05_02.fbx.meta │ │ │ │ │ ├── VegetationLarge06.fbx │ │ │ │ │ ├── VegetationLarge06.fbx.meta │ │ │ │ │ ├── VegetationLarge07.fbx │ │ │ │ │ └── VegetationLarge07.fbx.meta │ │ │ │ ├── VegetationMedium.meta │ │ │ │ ├── VegetationMedium │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── VegetationMedium01_Mat.mat │ │ │ │ │ │ ├── VegetationMedium01_Mat.mat.meta │ │ │ │ │ │ ├── VegetationMedium02_Mat.mat │ │ │ │ │ │ ├── VegetationMedium02_Mat.mat.meta │ │ │ │ │ │ ├── VegetationMedium03_Mat.mat │ │ │ │ │ │ ├── VegetationMedium03_Mat.mat.meta │ │ │ │ │ │ ├── VegetationMedium04_Mat.mat │ │ │ │ │ │ ├── VegetationMedium04_Mat.mat.meta │ │ │ │ │ │ ├── VegetationMedium05_Mat.mat │ │ │ │ │ │ └── VegetationMedium05_Mat.mat.meta │ │ │ │ │ ├── VegetationMedium01.fbx │ │ │ │ │ ├── VegetationMedium01.fbx.meta │ │ │ │ │ ├── VegetationMedium02.fbx │ │ │ │ │ ├── VegetationMedium02.fbx.meta │ │ │ │ │ ├── VegetationMedium02_02.fbx │ │ │ │ │ ├── VegetationMedium02_02.fbx.meta │ │ │ │ │ ├── VegetationMedium03.fbx │ │ │ │ │ ├── VegetationMedium03.fbx.meta │ │ │ │ │ ├── VegetationMedium03_02.fbx │ │ │ │ │ ├── VegetationMedium03_02.fbx.meta │ │ │ │ │ ├── VegetationMedium04.fbx │ │ │ │ │ ├── VegetationMedium04.fbx.meta │ │ │ │ │ ├── VegetationMedium04_02.fbx │ │ │ │ │ ├── VegetationMedium04_02.fbx.meta │ │ │ │ │ ├── VegetationMedium05.fbx │ │ │ │ │ └── VegetationMedium05.fbx.meta │ │ │ │ ├── VegetationSmall.meta │ │ │ │ ├── VegetationSmall │ │ │ │ │ ├── Fungus.fbx │ │ │ │ │ ├── Fungus.fbx.meta │ │ │ │ │ ├── FungusClump.fbx │ │ │ │ │ ├── FungusClump.fbx.meta │ │ │ │ │ ├── GroundCover01.fbx │ │ │ │ │ ├── GroundCover01.fbx.meta │ │ │ │ │ ├── GroundCover02.fbx │ │ │ │ │ ├── GroundCover02.fbx.meta │ │ │ │ │ ├── HangingMoss01.fbx │ │ │ │ │ ├── HangingMoss01.fbx.meta │ │ │ │ │ ├── HangingMoss02.fbx │ │ │ │ │ ├── HangingMoss02.fbx.meta │ │ │ │ │ ├── HangingMoss03.fbx │ │ │ │ │ ├── HangingMoss03.fbx.meta │ │ │ │ │ ├── HangingVine.fbx │ │ │ │ │ ├── HangingVine.fbx.meta │ │ │ │ │ ├── HangingVine2.fbx │ │ │ │ │ ├── HangingVine2.fbx.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Hanging_Moss_Mat.mat │ │ │ │ │ │ ├── Hanging_Moss_Mat.mat.meta │ │ │ │ │ │ ├── VegetationSmall01_Mat.mat │ │ │ │ │ │ ├── VegetationSmall01_Mat.mat.meta │ │ │ │ │ │ ├── VegetationSmall02_Mat.mat │ │ │ │ │ │ ├── VegetationSmall02_Mat.mat.meta │ │ │ │ │ │ ├── VegetationSmall03_Mat.mat │ │ │ │ │ │ ├── VegetationSmall03_Mat.mat.meta │ │ │ │ │ │ ├── VegetationSmall04_Mat.mat │ │ │ │ │ │ ├── VegetationSmall04_Mat.mat.meta │ │ │ │ │ │ ├── VegetationSmall05_Mat.mat │ │ │ │ │ │ ├── VegetationSmall05_Mat.mat.meta │ │ │ │ │ │ ├── VegetationSmall06_Mat.mat │ │ │ │ │ │ ├── VegetationSmall06_Mat.mat.meta │ │ │ │ │ │ ├── VegetationSmall07_Mat.mat │ │ │ │ │ │ ├── VegetationSmall07_Mat.mat.meta │ │ │ │ │ │ ├── Vine_Mat.mat │ │ │ │ │ │ └── Vine_Mat.mat.meta │ │ │ │ │ ├── VegetationSmall01.fbx │ │ │ │ │ ├── VegetationSmall01.fbx.meta │ │ │ │ │ ├── VegetationSmall01_02.fbx │ │ │ │ │ ├── VegetationSmall01_02.fbx.meta │ │ │ │ │ ├── VegetationSmall02.fbx │ │ │ │ │ ├── VegetationSmall02.fbx.meta │ │ │ │ │ ├── VegetationSmall02_02.fbx │ │ │ │ │ ├── VegetationSmall02_02.fbx.meta │ │ │ │ │ ├── VegetationSmall03.fbx │ │ │ │ │ ├── VegetationSmall03.fbx.meta │ │ │ │ │ ├── VegetationSmall03_02.fbx │ │ │ │ │ ├── VegetationSmall03_02.fbx.meta │ │ │ │ │ ├── VegetationSmall04.fbx │ │ │ │ │ ├── VegetationSmall04.fbx.meta │ │ │ │ │ ├── VegetationSmall04_02.fbx │ │ │ │ │ ├── VegetationSmall04_02.fbx.meta │ │ │ │ │ ├── VegetationSmall05.fbx │ │ │ │ │ ├── VegetationSmall05.fbx.meta │ │ │ │ │ ├── VegetationSmall05_02.fbx │ │ │ │ │ ├── VegetationSmall05_02.fbx.meta │ │ │ │ │ ├── VegetationSmall05_03.fbx │ │ │ │ │ ├── VegetationSmall05_03.fbx.meta │ │ │ │ │ ├── VegetationSmall06.fbx │ │ │ │ │ ├── VegetationSmall06.fbx.meta │ │ │ │ │ ├── VegetationSmall07.fbx │ │ │ │ │ ├── VegetationSmall07.fbx.meta │ │ │ │ │ ├── VegetationSmall07_02.fbx │ │ │ │ │ ├── VegetationSmall07_02.fbx.meta │ │ │ │ │ ├── VegetationSmall07_03.fbx │ │ │ │ │ └── VegetationSmall07_03.fbx.meta │ │ │ │ ├── WaterDisc.fbx │ │ │ │ ├── WaterDisc.fbx.meta │ │ │ │ ├── WaterPlane.fbx │ │ │ │ └── WaterPlane.fbx.meta │ │ │ ├── Skybox.meta │ │ │ └── Skybox │ │ │ │ ├── CloudPlane.fbx │ │ │ │ ├── CloudPlane.fbx.meta │ │ │ │ ├── DistantTerrain.fbx │ │ │ │ └── DistantTerrain.fbx.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── DepthOnly.shader │ │ │ └── DepthOnly.shader.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Effects.meta │ │ │ ├── Effects │ │ │ ├── Acid_Gradient.tif │ │ │ ├── Acid_Gradient.tif.meta │ │ │ ├── Acid_Smoothness.tif │ │ │ ├── Acid_Smoothness.tif.meta │ │ │ ├── Acid_normal.tif │ │ │ ├── Acid_normal.tif.meta │ │ │ ├── Clouds_Noise.tif │ │ │ ├── Clouds_Noise.tif.meta │ │ │ ├── Cutscene_LensDirt.tif │ │ │ ├── Cutscene_LensDirt.tif.meta │ │ │ ├── DissolveBits_Albedo.tif │ │ │ ├── DissolveBits_Albedo.tif.meta │ │ │ ├── DissolveBits_Normal.tif │ │ │ ├── DissolveBits_Normal.tif.meta │ │ │ ├── DustPuffSmallParticleSheet.png │ │ │ ├── DustPuffSmallParticleSheet.png.meta │ │ │ ├── DustPuff_Albedo.tif │ │ │ ├── DustPuff_Albedo.tif.meta │ │ │ ├── Enemy_SpriteSheet.png │ │ │ ├── Enemy_SpriteSheet.png.meta │ │ │ ├── Flare_Particle.tif │ │ │ ├── Flare_Particle.tif.meta │ │ │ ├── Foam 1.png │ │ │ ├── Foam 1.png.meta │ │ │ ├── Foam.png │ │ │ ├── Foam.png.meta │ │ │ ├── HardRound_Particle.tif │ │ │ ├── HardRound_Particle.tif.meta │ │ │ ├── Hit_Efect02.png │ │ │ ├── Hit_Efect02.png.meta │ │ │ ├── Hit_Effect01.png │ │ │ ├── Hit_Effect01.png.meta │ │ │ ├── Hit_Effect03.tif │ │ │ ├── Hit_Effect03.tif.meta │ │ │ ├── Lava_Gradient.tif │ │ │ ├── Lava_Gradient.tif.meta │ │ │ ├── LightRay.png │ │ │ ├── LightRay.png.meta │ │ │ ├── Lightning.png │ │ │ ├── Lightning.png.meta │ │ │ ├── Lightning.tif │ │ │ ├── Lightning.tif.meta │ │ │ ├── Mote_Particle.tif │ │ │ ├── Mote_Particle.tif.meta │ │ │ ├── PlasmaDistortion_Normal.tif │ │ │ ├── PlasmaDistortion_Normal.tif.meta │ │ │ ├── RGB.tif │ │ │ ├── RGB.tif.meta │ │ │ ├── Ramp.png │ │ │ ├── Ramp.png.meta │ │ │ ├── RespawnCircle.tif │ │ │ ├── RespawnCircle.tif.meta │ │ │ ├── Ripple.tif │ │ │ ├── Ripple.tif.meta │ │ │ ├── ShipEngine01_Particle.tif │ │ │ ├── ShipEngine01_Particle.tif.meta │ │ │ ├── ShipEngine02_Particle.tif │ │ │ ├── ShipEngine02_Particle.tif.meta │ │ │ ├── ShipEngineParticle.tif │ │ │ ├── ShipEngineParticle.tif.meta │ │ │ ├── ShipEngineParticle2.tif │ │ │ ├── ShipEngineParticle2.tif.meta │ │ │ ├── ShockWave01.tif │ │ │ ├── ShockWave01.tif.meta │ │ │ ├── ShockWave02.tif │ │ │ ├── ShockWave02.tif.meta │ │ │ ├── SmallClumps_Albedo.tif │ │ │ ├── SmallClumps_Albedo.tif.meta │ │ │ ├── SmallClumps_Normal.tif │ │ │ ├── SmallClumps_Normal.tif.meta │ │ │ ├── SmokeParticle.tif │ │ │ ├── SmokeParticle.tif.meta │ │ │ ├── SmokePuff_Albedo.tif │ │ │ ├── SmokePuff_Albedo.tif.meta │ │ │ ├── SmokePuff_Normal.tif │ │ │ ├── SmokePuff_Normal.tif.meta │ │ │ ├── SmokeTest.png │ │ │ ├── SmokeTest.png.meta │ │ │ ├── Spark_Particle.tif │ │ │ ├── Spark_Particle.tif.meta │ │ │ ├── Staff_Gradient01.tif │ │ │ ├── Staff_Gradient01.tif.meta │ │ │ ├── Staff_Gradient02.tif │ │ │ ├── Staff_Gradient02.tif.meta │ │ │ ├── Staff_SpecRamp.tif │ │ │ ├── Staff_SpecRamp.tif.meta │ │ │ ├── SwishGradient.tif │ │ │ ├── SwishGradient.tif.meta │ │ │ ├── Swish_Particle.tif │ │ │ ├── Swish_Particle.tif.meta │ │ │ ├── TinyStonesParticleSheet.png │ │ │ ├── TinyStonesParticleSheet.png.meta │ │ │ ├── TinyStones_Normal.tif │ │ │ ├── TinyStones_Normal.tif.meta │ │ │ ├── WhiteCloud_Normal.tif │ │ │ ├── WhiteCloud_Normal.tif.meta │ │ │ ├── WhiteCloud_Particle.tif │ │ │ ├── WhiteCloud_Particle.tif.meta │ │ │ ├── White_Noise.tif │ │ │ ├── White_Noise.tif.meta │ │ │ ├── Wind_Noise.tif │ │ │ ├── Wind_Noise.tif.meta │ │ │ ├── WispySmoke02_8x8.tga │ │ │ ├── WispySmoke02_8x8.tga.meta │ │ │ ├── ground_noise.png │ │ │ ├── ground_noise.png.meta │ │ │ ├── points.tif │ │ │ ├── points.tif.meta │ │ │ ├── ripples.png │ │ │ ├── ripples.png.meta │ │ │ ├── smokeTwirl.png │ │ │ ├── smokeTwirl.png.meta │ │ │ ├── texture (31).png │ │ │ ├── texture (31).png.meta │ │ │ ├── texture (34).png │ │ │ ├── texture (34).png.meta │ │ │ ├── verticalGradient.tif │ │ │ └── verticalGradient.tif.meta │ │ │ ├── Environment.meta │ │ │ ├── Environment │ │ │ ├── Ground.meta │ │ │ ├── Ground │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Moss_Albedo.mat │ │ │ │ │ └── Moss_Albedo.mat.meta │ │ │ │ ├── Moss_Albedo.tif │ │ │ │ ├── Moss_Albedo.tif.meta │ │ │ │ ├── Moss_Height.tif │ │ │ │ ├── Moss_Height.tif.meta │ │ │ │ ├── Moss_MetallicSmooth.tif │ │ │ │ ├── Moss_MetallicSmooth.tif.meta │ │ │ │ ├── Moss_Normal.tif │ │ │ │ ├── Moss_Normal.tif.meta │ │ │ │ ├── Moss_Normal1.tif │ │ │ │ ├── Moss_Normal1.tif.meta │ │ │ │ ├── MuddyGround_Albedo.tif │ │ │ │ ├── MuddyGround_Albedo.tif.meta │ │ │ │ ├── MuddyGround_MetallicSmooth.tif │ │ │ │ ├── MuddyGround_MetallicSmooth.tif.meta │ │ │ │ ├── MuddyGround_normal.tif │ │ │ │ ├── MuddyGround_normal.tif.meta │ │ │ │ ├── SmallStones_Albedo.tif │ │ │ │ ├── SmallStones_Albedo.tif.meta │ │ │ │ ├── SmallStones_MetallicSmooth.tif │ │ │ │ ├── SmallStones_MetallicSmooth.tif.meta │ │ │ │ ├── SmallStones_Normal.tif │ │ │ │ ├── SmallStones_Normal.tif.meta │ │ │ │ ├── WaterMoss_Albedo.tif │ │ │ │ ├── WaterMoss_Albedo.tif.meta │ │ │ │ ├── Water_Spec.tif │ │ │ │ └── Water_Spec.tif.meta │ │ │ ├── Rock.meta │ │ │ ├── Rock │ │ │ │ ├── CliffBig01_Albedo.tif │ │ │ │ ├── CliffBig01_Albedo.tif.meta │ │ │ │ ├── CliffBig01_MetallicSmooth.tif │ │ │ │ ├── CliffBig01_MetallicSmooth.tif.meta │ │ │ │ ├── CliffBig01_Normals.tif │ │ │ │ ├── CliffBig01_Normals.tif.meta │ │ │ │ ├── CliffBig01_Occlusion.tif │ │ │ │ ├── CliffBig01_Occlusion.tif.meta │ │ │ │ ├── CliffBig02_Albedo.tif │ │ │ │ ├── CliffBig02_Albedo.tif.meta │ │ │ │ ├── CliffBig02_MetallicSmooth.tif │ │ │ │ ├── CliffBig02_MetallicSmooth.tif.meta │ │ │ │ ├── CliffBig02_Normals.tif │ │ │ │ ├── CliffBig02_Normals.tif.meta │ │ │ │ ├── CliffBig02_Occlusion.tif │ │ │ │ ├── CliffBig02_Occlusion.tif.meta │ │ │ │ ├── CliffBig03_Albedo.tif │ │ │ │ ├── CliffBig03_Albedo.tif.meta │ │ │ │ ├── CliffBig03_MetallicSmooth.tif │ │ │ │ ├── CliffBig03_MetallicSmooth.tif.meta │ │ │ │ ├── CliffBig03_Normals.tif │ │ │ │ ├── CliffBig03_Normals.tif.meta │ │ │ │ ├── CliffBig03_Occlusion.tif │ │ │ │ ├── CliffBig03_Occlusion.tif.meta │ │ │ │ ├── CliffEdge01_Albedo.tif │ │ │ │ ├── CliffEdge01_Albedo.tif.meta │ │ │ │ ├── CliffEdge01_MetallicSmooth.tif │ │ │ │ ├── CliffEdge01_MetallicSmooth.tif.meta │ │ │ │ ├── CliffEdge01_Normals.tif │ │ │ │ ├── CliffEdge01_Normals.tif.meta │ │ │ │ ├── CliffEdge01_Occlusion.tif │ │ │ │ ├── CliffEdge01_Occlusion.tif.meta │ │ │ │ ├── CliffEdge02_Albedo.tif │ │ │ │ ├── CliffEdge02_Albedo.tif.meta │ │ │ │ ├── CliffEdge02_MetallicSmooth.tif │ │ │ │ ├── CliffEdge02_MetallicSmooth.tif.meta │ │ │ │ ├── CliffEdge02_Normals.tif │ │ │ │ ├── CliffEdge02_Normals.tif.meta │ │ │ │ ├── CliffEdge02_Occlusion.tif │ │ │ │ ├── CliffEdge02_Occlusion.tif.meta │ │ │ │ ├── CliffEdge03_Albedo.tif │ │ │ │ ├── CliffEdge03_Albedo.tif.meta │ │ │ │ ├── CliffEdge03_MetallicSmooth.tif │ │ │ │ ├── CliffEdge03_MetallicSmooth.tif.meta │ │ │ │ ├── CliffEdge03_Normals.tif │ │ │ │ ├── CliffEdge03_Normals.tif.meta │ │ │ │ ├── CliffEdge03_Occlusion.tif │ │ │ │ ├── CliffEdge03_Occlusion.tif.meta │ │ │ │ ├── CliffEdge04_Albedo.tif │ │ │ │ ├── CliffEdge04_Albedo.tif.meta │ │ │ │ ├── CliffEdge04_MetallicSmooth.tif │ │ │ │ ├── CliffEdge04_MetallicSmooth.tif.meta │ │ │ │ ├── CliffEdge04_Normals.tif │ │ │ │ ├── CliffEdge04_Normals.tif.meta │ │ │ │ ├── CliffEdge04_Occlusion.tif │ │ │ │ ├── CliffEdge04_Occlusion.tif.meta │ │ │ │ ├── DistantTerrain_Albedo.tif │ │ │ │ ├── DistantTerrain_Albedo.tif.meta │ │ │ │ ├── DistantTerrain_DetailMask.tif │ │ │ │ ├── DistantTerrain_DetailMask.tif.meta │ │ │ │ ├── DistantTerrain_MetallicSmooth.tif │ │ │ │ ├── DistantTerrain_MetallicSmooth.tif.meta │ │ │ │ ├── DistantTerrain_Normal.tif │ │ │ │ ├── DistantTerrain_Normal.tif.meta │ │ │ │ ├── Monument01_Albedo.tif │ │ │ │ ├── Monument01_Albedo.tif.meta │ │ │ │ ├── Monument01_MetallicSmooth.tif │ │ │ │ ├── Monument01_MetallicSmooth.tif.meta │ │ │ │ ├── Monument01_Normal.tif │ │ │ │ ├── Monument01_Normal.tif.meta │ │ │ │ ├── Monument01_Occlusion.tif │ │ │ │ ├── Monument01_Occlusion.tif.meta │ │ │ │ ├── Ridge01_Albedo.tif │ │ │ │ ├── Ridge01_Albedo.tif.meta │ │ │ │ ├── Ridge01_MetallicSmooth.tif │ │ │ │ ├── Ridge01_MetallicSmooth.tif.meta │ │ │ │ ├── Ridge01_Normals.tif │ │ │ │ ├── Ridge01_Normals.tif.meta │ │ │ │ ├── Ridge01_Occlusion.tif │ │ │ │ ├── Ridge01_Occlusion.tif.meta │ │ │ │ ├── Ridge02_Albedo.tif │ │ │ │ ├── Ridge02_Albedo.tif.meta │ │ │ │ ├── Ridge02_MetallicSmooth.tif │ │ │ │ ├── Ridge02_MetallicSmooth.tif.meta │ │ │ │ ├── Ridge02_Normals.tif │ │ │ │ ├── Ridge02_Normals.tif.meta │ │ │ │ ├── Ridge02_Occlusion.tif │ │ │ │ ├── Ridge02_Occlusion.tif.meta │ │ │ │ ├── RockChunk01_Albedo.tif │ │ │ │ ├── RockChunk01_Albedo.tif.meta │ │ │ │ ├── RockChunk01_MetallicSmooth.tif │ │ │ │ ├── RockChunk01_MetallicSmooth.tif.meta │ │ │ │ ├── RockChunk01_Normal.tif │ │ │ │ ├── RockChunk01_Normal.tif.meta │ │ │ │ ├── RockDetailMedium_Albedo.tif │ │ │ │ ├── RockDetailMedium_Albedo.tif.meta │ │ │ │ ├── RockDetailMedium_Normal.tif │ │ │ │ ├── RockDetailMedium_Normal.tif.meta │ │ │ │ ├── RockDetail_Curvature.tif │ │ │ │ ├── RockDetail_Curvature.tif.meta │ │ │ │ ├── RockDetail_MetallicSmooth.tif │ │ │ │ ├── RockDetail_MetallicSmooth.tif.meta │ │ │ │ ├── RockDetail_normal.tif │ │ │ │ ├── RockDetail_normal.tif.meta │ │ │ │ ├── RockFloating01_Albedo.tif │ │ │ │ ├── RockFloating01_Albedo.tif.meta │ │ │ │ ├── RockFloating01_MetallicSmooth.tif │ │ │ │ ├── RockFloating01_MetallicSmooth.tif.meta │ │ │ │ ├── RockFloating01_Normals.tif │ │ │ │ ├── RockFloating01_Normals.tif.meta │ │ │ │ ├── RockFloating01_Occlusion.tif │ │ │ │ ├── RockFloating01_Occlusion.tif.meta │ │ │ │ ├── RockFloating02_Albedo.tif │ │ │ │ ├── RockFloating02_Albedo.tif.meta │ │ │ │ ├── RockFloating02_MetallicSmooth.tif │ │ │ │ ├── RockFloating02_MetallicSmooth.tif.meta │ │ │ │ ├── RockFloating02_Normal.tif │ │ │ │ ├── RockFloating02_Normal.tif.meta │ │ │ │ ├── RockFloating02_Occlusion.tif │ │ │ │ ├── RockFloating02_Occlusion.tif.meta │ │ │ │ ├── RockFloating03_Albedo.tif │ │ │ │ ├── RockFloating03_Albedo.tif.meta │ │ │ │ ├── RockFloating03_MetallicSmooth.tif │ │ │ │ ├── RockFloating03_MetallicSmooth.tif.meta │ │ │ │ ├── RockFloating03_Normal.tif │ │ │ │ ├── RockFloating03_Normal.tif.meta │ │ │ │ ├── RockFloating03_Occlusion.tif │ │ │ │ ├── RockFloating03_Occlusion.tif.meta │ │ │ │ ├── RockFloating04_Albedo.tif │ │ │ │ ├── RockFloating04_Albedo.tif.meta │ │ │ │ ├── RockFloating04_MetallicSmooth.tif │ │ │ │ ├── RockFloating04_MetallicSmooth.tif.meta │ │ │ │ ├── RockFloating04_Normals.tif │ │ │ │ ├── RockFloating04_Normals.tif.meta │ │ │ │ ├── RockFloating04_Occlusion.tif │ │ │ │ ├── RockFloating04_Occlusion.tif.meta │ │ │ │ ├── RockLedge01_Albedo.tif │ │ │ │ ├── RockLedge01_Albedo.tif.meta │ │ │ │ ├── RockLedge01_MetallicSmooth.tif │ │ │ │ ├── RockLedge01_MetallicSmooth.tif.meta │ │ │ │ ├── RockLedge01_Normals.tif │ │ │ │ ├── RockLedge01_Normals.tif.meta │ │ │ │ ├── RockLedge01_Occlusion.tif │ │ │ │ ├── RockLedge01_Occlusion.tif.meta │ │ │ │ ├── RockLedge02_Albedo.tif │ │ │ │ ├── RockLedge02_Albedo.tif.meta │ │ │ │ ├── RockLedge02_MetallicSmooth.tif │ │ │ │ ├── RockLedge02_MetallicSmooth.tif.meta │ │ │ │ ├── RockLedge02_Normals.tif │ │ │ │ ├── RockLedge02_Normals.tif.meta │ │ │ │ ├── RockLedge02_Occlusion.tif │ │ │ │ ├── RockLedge02_Occlusion.tif.meta │ │ │ │ ├── RockSwamp01_Albedo.tif │ │ │ │ ├── RockSwamp01_Albedo.tif.meta │ │ │ │ ├── RockSwamp01_MetallicSmooth.tif │ │ │ │ ├── RockSwamp01_MetallicSmooth.tif.meta │ │ │ │ ├── RockSwamp01_Normals.tif │ │ │ │ ├── RockSwamp01_Normals.tif.meta │ │ │ │ ├── RockSwamp01_Occlusion.tif │ │ │ │ ├── RockSwamp01_Occlusion.tif.meta │ │ │ │ ├── SmallRock_Albedo.tif │ │ │ │ ├── SmallRock_Albedo.tif.meta │ │ │ │ ├── SmallRock_MetallicSmooth.tif │ │ │ │ ├── SmallRock_MetallicSmooth.tif.meta │ │ │ │ ├── SmallRock_Normal.tif │ │ │ │ ├── SmallRock_Normal.tif.meta │ │ │ │ ├── SmallRock_White_Albedo.tif │ │ │ │ ├── SmallRock_White_Albedo.tif.meta │ │ │ │ ├── TiledRock_Albedo.tif │ │ │ │ ├── TiledRock_Albedo.tif.meta │ │ │ │ ├── TiledRock_MetallicSmooth.tif │ │ │ │ ├── TiledRock_MetallicSmooth.tif.meta │ │ │ │ ├── TiledRock_Normal.tif │ │ │ │ ├── TiledRock_Normal.tif.meta │ │ │ │ ├── TiledRock_Occlusion.tif │ │ │ │ ├── TiledRock_Occlusion.tif.meta │ │ │ │ ├── TiledRock_Rumba.png │ │ │ │ └── TiledRock_Rumba.png.meta │ │ │ ├── Stonework.meta │ │ │ ├── Stonework │ │ │ │ ├── DoorHuge01_Albedo.tif │ │ │ │ ├── DoorHuge01_Albedo.tif.meta │ │ │ │ ├── DoorHuge01_Emission.tif │ │ │ │ ├── DoorHuge01_Emission.tif.meta │ │ │ │ ├── DoorHuge01_MetallicSmooth.tif │ │ │ │ ├── DoorHuge01_MetallicSmooth.tif.meta │ │ │ │ ├── DoorHuge01_Normal.tif │ │ │ │ ├── DoorHuge01_Normal.tif.meta │ │ │ │ ├── DoorHuge01_Occlusion.tif │ │ │ │ ├── DoorHuge01_Occlusion.tif.meta │ │ │ │ ├── FloorCircular01_Albedo.tif │ │ │ │ ├── FloorCircular01_Albedo.tif.meta │ │ │ │ ├── FloorCircular01_MetallicSmooth.tif │ │ │ │ ├── FloorCircular01_MetallicSmooth.tif.meta │ │ │ │ ├── FloorCircular01_Normal.tif │ │ │ │ ├── FloorCircular01_Normal.tif.meta │ │ │ │ ├── FloorCircular01_Occlusion.tif │ │ │ │ ├── FloorCircular01_Occlusion.tif.meta │ │ │ │ ├── FloorCircular02_Albedo.tif │ │ │ │ ├── FloorCircular02_Albedo.tif.meta │ │ │ │ ├── FloorCircular02_MetallicSmooth.tif │ │ │ │ ├── FloorCircular02_MetallicSmooth.tif.meta │ │ │ │ ├── FloorCircular02_Normal.tif │ │ │ │ ├── FloorCircular02_Normal.tif.meta │ │ │ │ ├── FloorCircular02_Occlusion.tif │ │ │ │ ├── FloorCircular02_Occlusion.tif.meta │ │ │ │ ├── FloorCircular03Broken_Albedo.tif │ │ │ │ ├── FloorCircular03Broken_Albedo.tif.meta │ │ │ │ ├── FloorCircular03Broken_MetallicSmooth.tif │ │ │ │ ├── FloorCircular03Broken_MetallicSmooth.tif.meta │ │ │ │ ├── FloorCircular03Broken_Normal.tif │ │ │ │ ├── FloorCircular03Broken_Normal.tif.meta │ │ │ │ ├── FloorCircular03Broken_Occlusion.tif │ │ │ │ ├── FloorCircular03Broken_Occlusion.tif.meta │ │ │ │ ├── FloorCircular03_Albedo.tif │ │ │ │ ├── FloorCircular03_Albedo.tif.meta │ │ │ │ ├── FloorCircular03_MetallicSmooth.tif │ │ │ │ ├── FloorCircular03_MetallicSmooth.tif.meta │ │ │ │ ├── FloorCircular03_Normal.tif │ │ │ │ ├── FloorCircular03_Normal.tif.meta │ │ │ │ ├── FloorCircular03_Occlusion.tif │ │ │ │ ├── FloorCircular03_Occlusion.tif.meta │ │ │ │ ├── FloorPanel01_Albedo.tif │ │ │ │ ├── FloorPanel01_Albedo.tif.meta │ │ │ │ ├── FloorPanel01_MetallicSmooth.tif │ │ │ │ ├── FloorPanel01_MetallicSmooth.tif.meta │ │ │ │ ├── FloorPanel01_Normal.tif │ │ │ │ ├── FloorPanel01_Normal.tif.meta │ │ │ │ ├── FloorPanel01_Occlusion.tif │ │ │ │ ├── FloorPanel01_Occlusion.tif.meta │ │ │ │ ├── GateHuge01_Albedo.tif │ │ │ │ ├── GateHuge01_Albedo.tif.meta │ │ │ │ ├── GateHuge01_Emission.tif │ │ │ │ ├── GateHuge01_Emission.tif.meta │ │ │ │ ├── GateHuge01_MetallicSmooth.tif │ │ │ │ ├── GateHuge01_MetallicSmooth.tif.meta │ │ │ │ ├── GateHuge01_Normal.tif │ │ │ │ ├── GateHuge01_Normal.tif.meta │ │ │ │ ├── GateHuge01_Occlusion.tif │ │ │ │ ├── GateHuge01_Occlusion.tif.meta │ │ │ │ ├── Platform_Albedo.tif │ │ │ │ ├── Platform_Albedo.tif.meta │ │ │ │ ├── Platform_MetallicSmooth.tif │ │ │ │ ├── Platform_MetallicSmooth.tif.meta │ │ │ │ ├── Platform_Normal.tif │ │ │ │ ├── Platform_Normal.tif.meta │ │ │ │ ├── Platform_Occlusion.tif │ │ │ │ ├── Platform_Occlusion.tif.meta │ │ │ │ ├── SmallDoor_Albedo.tif │ │ │ │ ├── SmallDoor_Albedo.tif.meta │ │ │ │ ├── SmallDoor_Emission.tif │ │ │ │ ├── SmallDoor_Emission.tif.meta │ │ │ │ ├── SmallDoor_MetallicSmooth.tif │ │ │ │ ├── SmallDoor_MetallicSmooth.tif.meta │ │ │ │ ├── SmallDoor_Normal.tif │ │ │ │ ├── SmallDoor_Normal.tif.meta │ │ │ │ ├── SmallDoor_Occlusion.tif │ │ │ │ ├── SmallDoor_Occlusion.tif.meta │ │ │ │ ├── StairsCircular01_Albedo.tif │ │ │ │ ├── StairsCircular01_Albedo.tif.meta │ │ │ │ ├── StairsCircular01_MetallicSmooth.tif │ │ │ │ ├── StairsCircular01_MetallicSmooth.tif.meta │ │ │ │ ├── StairsCircular01_Normal.tif │ │ │ │ ├── StairsCircular01_Normal.tif.meta │ │ │ │ ├── StairsCircular01_Occlusion.tif │ │ │ │ ├── StairsCircular01_Occlusion.tif.meta │ │ │ │ ├── StairsExtension_Albedo.tif │ │ │ │ ├── StairsExtension_Albedo.tif.meta │ │ │ │ ├── StairsExtension_MetallicSmooth.tif │ │ │ │ ├── StairsExtension_MetallicSmooth.tif.meta │ │ │ │ ├── StairsExtension_Normal.tif │ │ │ │ ├── StairsExtension_Normal.tif.meta │ │ │ │ ├── StairsExtension_Occlusion.tif │ │ │ │ ├── StairsExtension_Occlusion.tif.meta │ │ │ │ ├── StairsNarrow01Broken_Albedo.tif │ │ │ │ ├── StairsNarrow01Broken_Albedo.tif.meta │ │ │ │ ├── StairsNarrow01Broken_MetallicSmooth.tif │ │ │ │ ├── StairsNarrow01Broken_MetallicSmooth.tif.meta │ │ │ │ ├── StairsNarrow01Broken_Normal.tif │ │ │ │ ├── StairsNarrow01Broken_Normal.tif.meta │ │ │ │ ├── StairsNarrow01Broken_Occlusion.tif │ │ │ │ ├── StairsNarrow01Broken_Occlusion.tif.meta │ │ │ │ ├── StairsNarrow01_Albedo.tif │ │ │ │ ├── StairsNarrow01_Albedo.tif.meta │ │ │ │ ├── StairsNarrow01_MetallicSmooth.tif │ │ │ │ ├── StairsNarrow01_MetallicSmooth.tif.meta │ │ │ │ ├── StairsNarrow01_Normal.tif │ │ │ │ ├── StairsNarrow01_Normal.tif.meta │ │ │ │ ├── StairsNarrow01_Occlusion.tif │ │ │ │ ├── StairsNarrow01_Occlusion.tif.meta │ │ │ │ ├── StairsWideBroken_Albedo.tif │ │ │ │ ├── StairsWideBroken_Albedo.tif.meta │ │ │ │ ├── StairsWideBroken_MetallicSmooth.tif │ │ │ │ ├── StairsWideBroken_MetallicSmooth.tif.meta │ │ │ │ ├── StairsWideBroken_Normal.tif │ │ │ │ ├── StairsWideBroken_Normal.tif.meta │ │ │ │ ├── StairsWideBroken_Occlusion.tif │ │ │ │ ├── StairsWideBroken_Occlusion.tif.meta │ │ │ │ ├── StairsWide_Albedo.tif │ │ │ │ ├── StairsWide_Albedo.tif.meta │ │ │ │ ├── StairsWide_MetallicSmooth.tif │ │ │ │ ├── StairsWide_MetallicSmooth.tif.meta │ │ │ │ ├── StairsWide_Normal.tif │ │ │ │ ├── StairsWide_Normal.tif.meta │ │ │ │ ├── StairsWide_Occlusion.tif │ │ │ │ ├── StairsWide_Occlusion.tif.meta │ │ │ │ ├── Wall01_Albedo.tif │ │ │ │ ├── Wall01_Albedo.tif.meta │ │ │ │ ├── Wall01_MetallicSmooth.tif │ │ │ │ ├── Wall01_MetallicSmooth.tif.meta │ │ │ │ ├── Wall01_Normal.tif │ │ │ │ ├── Wall01_Normal.tif.meta │ │ │ │ ├── Wall01_Occlusion.tif │ │ │ │ ├── Wall01_Occlusion.tif.meta │ │ │ │ ├── Wall02Broken_Albedo.tif │ │ │ │ ├── Wall02Broken_Albedo.tif.meta │ │ │ │ ├── Wall02Broken_MetallicSmooth.tif │ │ │ │ ├── Wall02Broken_MetallicSmooth.tif.meta │ │ │ │ ├── Wall02Broken_Normal.tif │ │ │ │ ├── Wall02Broken_Normal.tif.meta │ │ │ │ ├── Wall02Broken_Occlusion.tif │ │ │ │ ├── Wall02Broken_Occlusion.tif.meta │ │ │ │ ├── Wall02_Albedo.tif │ │ │ │ ├── Wall02_Albedo.tif.meta │ │ │ │ ├── Wall02_MetallicSmooth.tif │ │ │ │ ├── Wall02_MetallicSmooth.tif.meta │ │ │ │ ├── Wall02_Normal.tif │ │ │ │ ├── Wall02_Normal.tif.meta │ │ │ │ ├── Wall02_Occlusion.tif │ │ │ │ ├── Wall02_Occlusion.tif.meta │ │ │ │ ├── WallCornerBig01Broken_Albedo.tif │ │ │ │ ├── WallCornerBig01Broken_Albedo.tif.meta │ │ │ │ ├── WallCornerBig01Broken_MetallicSmooth.tif │ │ │ │ ├── WallCornerBig01Broken_MetallicSmooth.tif.meta │ │ │ │ ├── WallCornerBig01Broken_Normal.tif │ │ │ │ ├── WallCornerBig01Broken_Normal.tif.meta │ │ │ │ ├── WallCornerBig01Broken_Occlusion.tif │ │ │ │ ├── WallCornerBig01Broken_Occlusion.tif.meta │ │ │ │ ├── WallHuge01_Albedo.tif │ │ │ │ ├── WallHuge01_Albedo.tif.meta │ │ │ │ ├── WallHuge01_MetallicSmooth.tif │ │ │ │ ├── WallHuge01_MetallicSmooth.tif.meta │ │ │ │ ├── WallHuge01_Normal.tif │ │ │ │ ├── WallHuge01_Normal.tif.meta │ │ │ │ ├── WallHuge01_Occlusion.tif │ │ │ │ ├── WallHuge01_Occlusion.tif.meta │ │ │ │ ├── WallHuge02_Albedo.tif │ │ │ │ ├── WallHuge02_Albedo.tif.meta │ │ │ │ ├── WallHuge02_MetallicSmooth.tif │ │ │ │ ├── WallHuge02_MetallicSmooth.tif.meta │ │ │ │ ├── WallHuge02_Normal.tif │ │ │ │ ├── WallHuge02_Normal.tif.meta │ │ │ │ ├── WallHuge02_Occlusion.tif │ │ │ │ ├── WallHuge02_Occlusion.tif.meta │ │ │ │ ├── WallLong01Broken_Albedo.tif │ │ │ │ ├── WallLong01Broken_Albedo.tif.meta │ │ │ │ ├── WallLong01Broken_MetallicSmooth.tif │ │ │ │ ├── WallLong01Broken_MetallicSmooth.tif.meta │ │ │ │ ├── WallLong01Broken_Normal.tif │ │ │ │ ├── WallLong01Broken_Normal.tif.meta │ │ │ │ ├── WallLong01Broken_Occlusion.tif │ │ │ │ ├── WallLong01Broken_Occlusion.tif.meta │ │ │ │ ├── WallTallCorner_Albedo.tif │ │ │ │ ├── WallTallCorner_Albedo.tif.meta │ │ │ │ ├── WallTallCorner_MetallicSmooth.tif │ │ │ │ ├── WallTallCorner_MetallicSmooth.tif.meta │ │ │ │ ├── WallTallCorner_Normal.tif │ │ │ │ ├── WallTallCorner_Normal.tif.meta │ │ │ │ ├── WallTallCorner_Occlusion.tif │ │ │ │ ├── WallTallCorner_Occlusion.tif.meta │ │ │ │ ├── WallTallLong_Albedo.tif │ │ │ │ ├── WallTallLong_Albedo.tif.meta │ │ │ │ ├── WallTallLong_MetallicSmooth.tif │ │ │ │ ├── WallTallLong_MetallicSmooth.tif.meta │ │ │ │ ├── WallTallLong_Normal.tif │ │ │ │ ├── WallTallLong_Normal.tif.meta │ │ │ │ ├── WallTallShort_Albedo.png │ │ │ │ ├── WallTallShort_Albedo.png.meta │ │ │ │ ├── WallTallShort_MetallicSmooth.png │ │ │ │ ├── WallTallShort_MetallicSmooth.png.meta │ │ │ │ ├── WallTallShort_Normal.png │ │ │ │ ├── WallTallShort_Normal.png.meta │ │ │ │ ├── WallTallShort_Occlusion.png │ │ │ │ └── WallTallShort_Occlusion.png.meta │ │ │ ├── VegetationLarge.meta │ │ │ ├── VegetationLarge │ │ │ │ ├── VegetationLarge01_Albedo.tif │ │ │ │ ├── VegetationLarge01_Albedo.tif.meta │ │ │ │ ├── VegetationLarge01_Emission.tif │ │ │ │ ├── VegetationLarge01_Emission.tif.meta │ │ │ │ ├── VegetationLarge01_MetallicSmooth.tif │ │ │ │ ├── VegetationLarge01_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationLarge01_Normals.tif │ │ │ │ ├── VegetationLarge01_Normals.tif.meta │ │ │ │ ├── VegetationLarge01_Occlusion.tif │ │ │ │ ├── VegetationLarge01_Occlusion.tif.meta │ │ │ │ ├── VegetationLarge02_Albedo.tif │ │ │ │ ├── VegetationLarge02_Albedo.tif.meta │ │ │ │ ├── VegetationLarge02_Emission.tif │ │ │ │ ├── VegetationLarge02_Emission.tif.meta │ │ │ │ ├── VegetationLarge02_MetallicSmooth.tif │ │ │ │ ├── VegetationLarge02_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationLarge02_Normals.tif │ │ │ │ ├── VegetationLarge02_Normals.tif.meta │ │ │ │ ├── VegetationLarge02_Occlusion.tif │ │ │ │ ├── VegetationLarge02_Occlusion.tif.meta │ │ │ │ ├── VegetationLarge03_Albedo.tif │ │ │ │ ├── VegetationLarge03_Albedo.tif.meta │ │ │ │ ├── VegetationLarge03_MetallicSmooth.tif │ │ │ │ ├── VegetationLarge03_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationLarge03_Normals.tif │ │ │ │ ├── VegetationLarge03_Normals.tif.meta │ │ │ │ ├── VegetationLarge03_Occlusion.tif │ │ │ │ ├── VegetationLarge03_Occlusion.tif.meta │ │ │ │ ├── VegetationLarge04_Albedo.tif │ │ │ │ ├── VegetationLarge04_Albedo.tif.meta │ │ │ │ ├── VegetationLarge04_Emission.tif │ │ │ │ ├── VegetationLarge04_Emission.tif.meta │ │ │ │ ├── VegetationLarge04_MetallicSmooth.tif │ │ │ │ ├── VegetationLarge04_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationLarge04_Normals.tif │ │ │ │ ├── VegetationLarge04_Normals.tif.meta │ │ │ │ ├── VegetationLarge04_Occlusion.tif │ │ │ │ ├── VegetationLarge04_Occlusion.tif.meta │ │ │ │ ├── VegetationLarge05_Albedo.tif │ │ │ │ ├── VegetationLarge05_Albedo.tif.meta │ │ │ │ ├── VegetationLarge05_MetallicSmooth.tif │ │ │ │ ├── VegetationLarge05_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationLarge05_Normals.tif │ │ │ │ ├── VegetationLarge05_Normals.tif.meta │ │ │ │ ├── VegetationLarge05_Occlusion.tif │ │ │ │ ├── VegetationLarge05_Occlusion.tif.meta │ │ │ │ ├── VegetationLarge06_Albedo.tif │ │ │ │ ├── VegetationLarge06_Albedo.tif.meta │ │ │ │ ├── VegetationLarge06_MetallicSmooth.tif │ │ │ │ ├── VegetationLarge06_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationLarge06_Normals.tif │ │ │ │ ├── VegetationLarge06_Normals.tif.meta │ │ │ │ ├── VegetationLarge06_Occlusion.tif │ │ │ │ ├── VegetationLarge06_Occlusion.tif.meta │ │ │ │ ├── VegetationLarge07_Albedo.tif │ │ │ │ ├── VegetationLarge07_Albedo.tif.meta │ │ │ │ ├── VegetationLarge07_MetallicSmooth.tif │ │ │ │ ├── VegetationLarge07_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationLarge07_Normals.tif │ │ │ │ ├── VegetationLarge07_Normals.tif.meta │ │ │ │ ├── VegetationLarge07_Occlusion.tif │ │ │ │ └── VegetationLarge07_Occlusion.tif.meta │ │ │ ├── VegetationMedium.meta │ │ │ ├── VegetationMedium │ │ │ │ ├── VegetationMedium01_Albedo.tif │ │ │ │ ├── VegetationMedium01_Albedo.tif.meta │ │ │ │ ├── VegetationMedium01_Emission.tif │ │ │ │ ├── VegetationMedium01_Emission.tif.meta │ │ │ │ ├── VegetationMedium01_MetallicSmooth.tif │ │ │ │ ├── VegetationMedium01_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationMedium01_Normals.tif │ │ │ │ ├── VegetationMedium01_Normals.tif.meta │ │ │ │ ├── VegetationMedium01_Occlusion.tif │ │ │ │ ├── VegetationMedium01_Occlusion.tif.meta │ │ │ │ ├── VegetationMedium02_Albedo.tif │ │ │ │ ├── VegetationMedium02_Albedo.tif.meta │ │ │ │ ├── VegetationMedium02_Emission.tif │ │ │ │ ├── VegetationMedium02_Emission.tif.meta │ │ │ │ ├── VegetationMedium02_MetallicSmooth.tif │ │ │ │ ├── VegetationMedium02_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationMedium02_Normals.tif │ │ │ │ ├── VegetationMedium02_Normals.tif.meta │ │ │ │ ├── VegetationMedium02_Occlusion.tif │ │ │ │ ├── VegetationMedium02_Occlusion.tif.meta │ │ │ │ ├── VegetationMedium03_Albedo.tif │ │ │ │ ├── VegetationMedium03_Albedo.tif.meta │ │ │ │ ├── VegetationMedium03_MetallicSmooth.tif │ │ │ │ ├── VegetationMedium03_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationMedium03_Normals.tif │ │ │ │ ├── VegetationMedium03_Normals.tif.meta │ │ │ │ ├── VegetationMedium03_Occlusion.tif │ │ │ │ ├── VegetationMedium03_Occlusion.tif.meta │ │ │ │ ├── VegetationMedium04_Albedo.tif │ │ │ │ ├── VegetationMedium04_Albedo.tif.meta │ │ │ │ ├── VegetationMedium04_Emissive.tif │ │ │ │ ├── VegetationMedium04_Emissive.tif.meta │ │ │ │ ├── VegetationMedium04_MetallicSmooth.tif │ │ │ │ ├── VegetationMedium04_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationMedium04_Normals.tif │ │ │ │ ├── VegetationMedium04_Normals.tif.meta │ │ │ │ ├── VegetationMedium04_Occlusion.tif │ │ │ │ ├── VegetationMedium04_Occlusion.tif.meta │ │ │ │ ├── VegetationMedium05_Albedo.tif │ │ │ │ ├── VegetationMedium05_Albedo.tif.meta │ │ │ │ ├── VegetationMedium05_MetallicSmooth.tif │ │ │ │ ├── VegetationMedium05_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationMedium05_Normal.tif │ │ │ │ ├── VegetationMedium05_Normal.tif.meta │ │ │ │ ├── VegetationMedium05_Occlusion.tif │ │ │ │ └── VegetationMedium05_Occlusion.tif.meta │ │ │ ├── VegetationSmall.meta │ │ │ └── VegetationSmall │ │ │ │ ├── FungusRed_Albedo.tif │ │ │ │ ├── FungusRed_Albedo.tif.meta │ │ │ │ ├── Fungus_Albedo.tif │ │ │ │ ├── Fungus_Albedo.tif.meta │ │ │ │ ├── Fungus_MetallicSmooth.tif │ │ │ │ ├── Fungus_MetallicSmooth.tif.meta │ │ │ │ ├── Fungus_Normal.tif │ │ │ │ ├── Fungus_Normal.tif.meta │ │ │ │ ├── Fungus_Occlusion.tiff │ │ │ │ ├── Fungus_Occlusion.tiff.meta │ │ │ │ ├── Fungus_SpecGloss.tif │ │ │ │ ├── Fungus_SpecGloss.tif.meta │ │ │ │ ├── Grass01Purple_Albedo.tif │ │ │ │ ├── Grass01Purple_Albedo.tif.meta │ │ │ │ ├── Grass01_Albedo.tif │ │ │ │ ├── Grass01_Albedo.tif.meta │ │ │ │ ├── Grass01_Height.tiff │ │ │ │ ├── Grass01_Height.tiff.meta │ │ │ │ ├── Grass01_MetallicSmooth.tif │ │ │ │ ├── Grass01_MetallicSmooth.tif.meta │ │ │ │ ├── Grass01_Normal.tif │ │ │ │ ├── Grass01_Normal.tif.meta │ │ │ │ ├── Grass01_Occlusion.tiff │ │ │ │ ├── Grass01_Occlusion.tiff.meta │ │ │ │ ├── GroundCover01_Albedo.tif │ │ │ │ ├── GroundCover01_Albedo.tif.meta │ │ │ │ ├── GroundCover01_Height.tiff │ │ │ │ ├── GroundCover01_Height.tiff.meta │ │ │ │ ├── GroundCover01_MetallicSmooth.tif │ │ │ │ ├── GroundCover01_MetallicSmooth.tif.meta │ │ │ │ ├── GroundCover01_Normal.tif │ │ │ │ ├── GroundCover01_Normal.tif.meta │ │ │ │ ├── HangingMoss01_Albedo.tif │ │ │ │ ├── HangingMoss01_Albedo.tif.meta │ │ │ │ ├── HangingMoss01_Height.tiff │ │ │ │ ├── HangingMoss01_Height.tiff.meta │ │ │ │ ├── HangingMoss01_MetallicSmooth.tif │ │ │ │ ├── HangingMoss01_MetallicSmooth.tif.meta │ │ │ │ ├── HangingMoss01_Normal.tif │ │ │ │ ├── HangingMoss01_Normal.tif.meta │ │ │ │ ├── HangingMoss01_occlusion.tiff │ │ │ │ ├── HangingMoss01_occlusion.tiff.meta │ │ │ │ ├── VegetationSmall01_Albedo.tif │ │ │ │ ├── VegetationSmall01_Albedo.tif.meta │ │ │ │ ├── VegetationSmall01_Emission.tif │ │ │ │ ├── VegetationSmall01_Emission.tif.meta │ │ │ │ ├── VegetationSmall01_MetallicSmooth.tif │ │ │ │ ├── VegetationSmall01_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationSmall01_Normals.tif │ │ │ │ ├── VegetationSmall01_Normals.tif.meta │ │ │ │ ├── VegetationSmall01_Occlusion.tif │ │ │ │ ├── VegetationSmall01_Occlusion.tif.meta │ │ │ │ ├── VegetationSmall02_Albedo.tif │ │ │ │ ├── VegetationSmall02_Albedo.tif.meta │ │ │ │ ├── VegetationSmall02_MetallicSmooth.tif │ │ │ │ ├── VegetationSmall02_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationSmall02_Normals.tif │ │ │ │ ├── VegetationSmall02_Normals.tif.meta │ │ │ │ ├── VegetationSmall02_Occlusion.tif │ │ │ │ ├── VegetationSmall02_Occlusion.tif.meta │ │ │ │ ├── VegetationSmall03_Albedo.tif │ │ │ │ ├── VegetationSmall03_Albedo.tif.meta │ │ │ │ ├── VegetationSmall03_MetallicSmooth.tif │ │ │ │ ├── VegetationSmall03_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationSmall03_Normals.tif │ │ │ │ ├── VegetationSmall03_Normals.tif.meta │ │ │ │ ├── VegetationSmall03_Occlusion.tif │ │ │ │ ├── VegetationSmall03_Occlusion.tif.meta │ │ │ │ ├── VegetationSmall04_Albedo.tif │ │ │ │ ├── VegetationSmall04_Albedo.tif.meta │ │ │ │ ├── VegetationSmall04_MetallicSmooth.tif │ │ │ │ ├── VegetationSmall04_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationSmall04_Normals.tif │ │ │ │ ├── VegetationSmall04_Normals.tif.meta │ │ │ │ ├── VegetationSmall04_Occlusion.tif │ │ │ │ ├── VegetationSmall04_Occlusion.tif.meta │ │ │ │ ├── VegetationSmall05_Albedo.tif │ │ │ │ ├── VegetationSmall05_Albedo.tif.meta │ │ │ │ ├── VegetationSmall05_MetallicSmooth.tif │ │ │ │ ├── VegetationSmall05_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationSmall05_Normals.tif │ │ │ │ ├── VegetationSmall05_Normals.tif.meta │ │ │ │ ├── VegetationSmall05_Occlusion.tif │ │ │ │ ├── VegetationSmall05_Occlusion.tif.meta │ │ │ │ ├── VegetationSmall06_Albedo.tif │ │ │ │ ├── VegetationSmall06_Albedo.tif.meta │ │ │ │ ├── VegetationSmall06_MetallicSmooth.tif │ │ │ │ ├── VegetationSmall06_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationSmall06_Normals.tif │ │ │ │ ├── VegetationSmall06_Normals.tif.meta │ │ │ │ ├── VegetationSmall06_Occlusion.tif │ │ │ │ ├── VegetationSmall06_Occlusion.tif.meta │ │ │ │ ├── VegetationSmall07_Albedo.tif │ │ │ │ ├── VegetationSmall07_Albedo.tif.meta │ │ │ │ ├── VegetationSmall07_MetallicSmooth.tif │ │ │ │ ├── VegetationSmall07_MetallicSmooth.tif.meta │ │ │ │ ├── VegetationSmall07_Normals.tif │ │ │ │ ├── VegetationSmall07_Normals.tif.meta │ │ │ │ ├── VegetationSmall07_Occlusion.tif │ │ │ │ └── VegetationSmall07_Occlusion.tif.meta │ │ │ ├── Skybox.meta │ │ │ └── Skybox │ │ │ ├── Cloud 1.png │ │ │ ├── Cloud 1.png.meta │ │ │ ├── Cloud 2.png │ │ │ ├── Cloud 2.png.meta │ │ │ ├── Cloud 3.png │ │ │ ├── Cloud 3.png.meta │ │ │ ├── Cloud 4.png │ │ │ ├── Cloud 4.png.meta │ │ │ ├── Cloud 5.png │ │ │ ├── Cloud 5.png.meta │ │ │ ├── Planet_Albedo.tif │ │ │ ├── Planet_Albedo.tif.meta │ │ │ ├── Planet_Clouds.tif │ │ │ ├── Planet_Clouds.tif.meta │ │ │ ├── Planet_MetallicRoughness.tif │ │ │ ├── Planet_MetallicRoughness.tif.meta │ │ │ ├── Planet_Normal.tif │ │ │ └── Planet_Normal.tif.meta │ ├── Prefabs.meta │ └── Prefabs │ │ ├── Environment.meta │ │ └── Environment │ │ ├── Clouds.prefab │ │ └── Clouds.prefab.meta ├── Environment.meta ├── Environment │ ├── DetailMap.meta │ ├── DetailMap │ │ ├── DeadTrunk_Tile01_Detail.tif │ │ └── DeadTrunk_Tile01_Detail.tif.meta │ ├── Vegetation.meta │ └── Vegetation │ │ ├── Trees.meta │ │ └── Trees │ │ ├── Generic_Trunk.meta │ │ ├── Generic_Trunk │ │ ├── tree_013.meta │ │ ├── tree_013 │ │ │ ├── Materials.meta │ │ │ └── Materials │ │ │ │ ├── Trunk_Albedo.tif │ │ │ │ ├── Trunk_Albedo.tif.meta │ │ │ │ ├── Trunk_MaskMap.tif │ │ │ │ ├── Trunk_MaskMap.tif.meta │ │ │ │ ├── trunk_normal.tif │ │ │ │ └── trunk_normal.tif.meta │ │ ├── wood02.meta │ │ └── wood02 │ │ │ ├── PineBark_02_Albedo.tif │ │ │ ├── PineBark_02_Albedo.tif.meta │ │ │ ├── PineBark_02_Normal.tif │ │ │ ├── PineBark_02_Normal.tif.meta │ │ │ ├── PineBark_02_height.tif │ │ │ └── PineBark_02_height.tif.meta │ │ ├── Pines.meta │ │ └── Pines │ │ ├── Scots_Pine_a_bark.mat │ │ ├── Scots_Pine_a_bark.mat.meta │ │ ├── Scots_Pine_a_bark_BakedWind.mat │ │ └── Scots_Pine_a_bark_BakedWind.mat.meta ├── Gizmos.meta ├── Gizmos │ ├── Cinemachine.meta │ └── Cinemachine │ │ ├── cm_logo_lg.png │ │ └── cm_logo_lg.png.meta ├── Images.meta ├── Images │ ├── MasterStackDemo.PNG │ └── MasterStackDemo.PNG.meta ├── Materials.meta ├── Materials │ ├── Bushes.mat │ ├── Bushes.mat.meta │ ├── Demo_Cloud.mat │ ├── Demo_Cloud.mat.meta │ ├── Demo_Skybox.mat │ ├── Demo_Skybox.mat.meta │ ├── Demo_WaterFall.mat │ ├── Demo_WaterFall.mat.meta │ ├── Demo_WaterFall_1.mat │ ├── Demo_WaterFall_1.mat.meta │ ├── Demo_WaterFall_2.mat │ ├── Demo_WaterFall_2.mat.meta │ ├── Demo_Water_Ocean.mat │ └── Demo_Water_Ocean.mat.meta ├── Prefabs.meta ├── Prefabs │ ├── Bowl.prefab │ ├── Bowl.prefab.meta │ ├── Effects.prefab │ ├── Effects.prefab.meta │ ├── Fbx_IslandWater.FBX │ ├── Fbx_IslandWater.FBX.meta │ ├── Rocks.prefab │ ├── Rocks.prefab.meta │ ├── Sand_SmallRocks.prefab │ ├── Sand_SmallRocks.prefab.meta │ ├── Sand_base.obj │ ├── Sand_base.obj.meta │ ├── Vegetation.meta │ ├── Vegetation │ │ ├── Bush_Large_01.prefab │ │ ├── Bush_Large_01.prefab.meta │ │ ├── Quixel.meta │ │ └── Quixel │ │ │ ├── Forest-quixel.meta │ │ │ ├── Forest-quixel │ │ │ ├── BroadleafShrub_01.meta │ │ │ ├── BroadleafShrub_01 │ │ │ │ ├── Broadleaf_Shrub_01_Var1.FBX │ │ │ │ ├── Broadleaf_Shrub_01_Var1.FBX.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var1_Prefab.prefab │ │ │ │ ├── Broadleaf_Shrub_01_Var1_Prefab.prefab.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var2.FBX │ │ │ │ ├── Broadleaf_Shrub_01_Var2.FBX.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var2_Prefab.prefab │ │ │ │ ├── Broadleaf_Shrub_01_Var2_Prefab.prefab.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var3.FBX │ │ │ │ ├── Broadleaf_Shrub_01_Var3.FBX.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var3_Prefab.prefab │ │ │ │ ├── Broadleaf_Shrub_01_Var3_Prefab.prefab.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var4.FBX │ │ │ │ ├── Broadleaf_Shrub_01_Var4.FBX.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var4_Prefab.prefab │ │ │ │ ├── Broadleaf_Shrub_01_Var4_Prefab.prefab.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var5.FBX │ │ │ │ ├── Broadleaf_Shrub_01_Var5.FBX.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var5_Prefab.prefab │ │ │ │ ├── Broadleaf_Shrub_01_Var5_Prefab.prefab.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var6.FBX │ │ │ │ ├── Broadleaf_Shrub_01_Var6.FBX.meta │ │ │ │ ├── Broadleaf_Shrub_01_Var6_Prefab.prefab │ │ │ │ ├── Broadleaf_Shrub_01_Var6_Prefab.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Broadleaf_Shrub_01_Albedo_Opacity.tif │ │ │ │ │ ├── Broadleaf_Shrub_01_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_Billboard_Albedo_Opacity.tif │ │ │ │ │ ├── Broadleaf_Shrub_01_Billboard_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_Billboard_MaskMap.tif │ │ │ │ │ ├── Broadleaf_Shrub_01_Billboard_MaskMap.tif.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_Billboard_Normal.tif │ │ │ │ │ ├── Broadleaf_Shrub_01_Billboard_Normal.tif.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_Large_mat.mat │ │ │ │ │ ├── Broadleaf_Shrub_01_Large_mat.mat.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_MaskMap.tif │ │ │ │ │ ├── Broadleaf_Shrub_01_MaskMap.tif.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_Normal.tif │ │ │ │ │ ├── Broadleaf_Shrub_01_Normal.tif.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_Thickness.tif │ │ │ │ │ ├── Broadleaf_Shrub_01_Thickness.tif.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_billboard_Large_mat.mat │ │ │ │ │ ├── Broadleaf_Shrub_01_billboard_Large_mat.mat.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_billboard_mat.mat │ │ │ │ │ ├── Broadleaf_Shrub_01_billboard_mat.mat.meta │ │ │ │ │ ├── Broadleaf_Shrub_01_mat.mat │ │ │ │ │ └── Broadleaf_Shrub_01_mat.mat.meta │ │ │ ├── BushTwig_01.meta │ │ │ ├── BushTwig_01 │ │ │ │ ├── Bush_Twig_01_Var3.FBX │ │ │ │ ├── Bush_Twig_01_Var3.FBX.meta │ │ │ │ ├── Bush_Twig_01_Var3_Prefab.prefab │ │ │ │ ├── Bush_Twig_01_Var3_Prefab.prefab.meta │ │ │ │ ├── Bush_Twig_01_Var3_Prefab_baked_single.asset │ │ │ │ ├── Bush_Twig_01_Var3_Prefab_baked_single.asset.meta │ │ │ │ ├── Bush_Twig_01_Var3_Prefab_baked_single.prefab │ │ │ │ ├── Bush_Twig_01_Var3_Prefab_baked_single.prefab.meta │ │ │ │ ├── Bush_Twig_01_Var4.FBX │ │ │ │ ├── Bush_Twig_01_Var4.FBX.meta │ │ │ │ ├── Bush_Twig_01_Var4_Prefab.prefab │ │ │ │ ├── Bush_Twig_01_Var4_Prefab.prefab.meta │ │ │ │ ├── Bush_Twig_01_Var4_Prefab_baked_single.asset │ │ │ │ ├── Bush_Twig_01_Var4_Prefab_baked_single.asset.meta │ │ │ │ ├── Bush_Twig_01_Var4_Prefab_baked_single.prefab │ │ │ │ ├── Bush_Twig_01_Var4_Prefab_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Bush_Twig_01.mat │ │ │ │ │ ├── Bush_Twig_01.mat.meta │ │ │ │ │ ├── Bush_Twig_01_Albedo_Opacity.tif │ │ │ │ │ ├── Bush_Twig_01_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Bush_Twig_01_BakedWind.mat │ │ │ │ │ ├── Bush_Twig_01_BakedWind.mat.meta │ │ │ │ │ ├── Bush_Twig_01_MaskMap.tif │ │ │ │ │ ├── Bush_Twig_01_MaskMap.tif.meta │ │ │ │ │ ├── Bush_Twig_01_Normal.tif │ │ │ │ │ ├── Bush_Twig_01_Normal.tif.meta │ │ │ │ │ ├── Bush_Twig_01_Thickness.tif │ │ │ │ │ └── Bush_Twig_01_Thickness.tif.meta │ │ │ ├── Clover_01.meta │ │ │ ├── Clover_01 │ │ │ │ ├── Clover_01_Var1.FBX │ │ │ │ ├── Clover_01_Var1.FBX.meta │ │ │ │ ├── Clover_01_Var1_Prefab.prefab │ │ │ │ ├── Clover_01_Var1_Prefab.prefab.meta │ │ │ │ ├── Clover_01_Var1_Prefab_baked_single.asset │ │ │ │ ├── Clover_01_Var1_Prefab_baked_single.asset.meta │ │ │ │ ├── Clover_01_Var1_Prefab_baked_single.prefab │ │ │ │ ├── Clover_01_Var1_Prefab_baked_single.prefab.meta │ │ │ │ ├── Clover_01_Var2.FBX │ │ │ │ ├── Clover_01_Var2.FBX.meta │ │ │ │ ├── Clover_01_Var2_Prefab.prefab │ │ │ │ ├── Clover_01_Var2_Prefab.prefab.meta │ │ │ │ ├── Clover_01_Var2_Prefab_baked_single.asset │ │ │ │ ├── Clover_01_Var2_Prefab_baked_single.asset.meta │ │ │ │ ├── Clover_01_Var2_Prefab_baked_single.prefab │ │ │ │ ├── Clover_01_Var2_Prefab_baked_single.prefab.meta │ │ │ │ ├── Clover_01_Var3.FBX │ │ │ │ ├── Clover_01_Var3.FBX.meta │ │ │ │ ├── Clover_01_Var3_Prefab.prefab │ │ │ │ ├── Clover_01_Var3_Prefab.prefab.meta │ │ │ │ ├── Clover_01_Var3_Prefab_baked_single.asset │ │ │ │ ├── Clover_01_Var3_Prefab_baked_single.asset.meta │ │ │ │ ├── Clover_01_Var3_Prefab_baked_single.prefab │ │ │ │ ├── Clover_01_Var3_Prefab_baked_single.prefab.meta │ │ │ │ ├── Clover_01_Var4.FBX │ │ │ │ ├── Clover_01_Var4.FBX.meta │ │ │ │ ├── Clover_01_Var4_Prefab.prefab │ │ │ │ ├── Clover_01_Var4_Prefab.prefab.meta │ │ │ │ ├── Clover_01_Var4_Prefab_baked_single.asset │ │ │ │ ├── Clover_01_Var4_Prefab_baked_single.asset.meta │ │ │ │ ├── Clover_01_Var4_Prefab_baked_single.prefab │ │ │ │ ├── Clover_01_Var4_Prefab_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Clover_01_Albedo_Opacity.tif │ │ │ │ │ ├── Clover_01_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Clover_01_MaskMap.tif │ │ │ │ │ ├── Clover_01_MaskMap.tif.meta │ │ │ │ │ ├── Clover_01_Normal.tif │ │ │ │ │ ├── Clover_01_Normal.tif.meta │ │ │ │ │ ├── Clover_01_Thickness.tif │ │ │ │ │ ├── Clover_01_Thickness.tif.meta │ │ │ │ │ ├── Clover_01_mat.mat │ │ │ │ │ ├── Clover_01_mat.mat.meta │ │ │ │ │ ├── Clover_01_mat_BakedWind.mat │ │ │ │ │ └── Clover_01_mat_BakedWind.mat.meta │ │ │ ├── Dead_Grass_02.meta │ │ │ ├── Dead_Grass_02 │ │ │ │ ├── Dead_Grass_02_Var1.FBX │ │ │ │ ├── Dead_Grass_02_Var1.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var10.FBX │ │ │ │ ├── Dead_Grass_02_Var10.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var10_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var10_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var11.FBX │ │ │ │ ├── Dead_Grass_02_Var11.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var11_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var11_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var11_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var11_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var11_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var11_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var12.FBX │ │ │ │ ├── Dead_Grass_02_Var12.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var12_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var12_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var12_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var12_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var12_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var12_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var1_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var1_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var1_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var1_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var1_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var1_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var2.FBX │ │ │ │ ├── Dead_Grass_02_Var2.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var2_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var2_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var2_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var2_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var2_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var2_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var3.FBX │ │ │ │ ├── Dead_Grass_02_Var3.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var3_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var3_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var3_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var3_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var3_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var3_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var4.FBX │ │ │ │ ├── Dead_Grass_02_Var4.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var4_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var4_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var4_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var4_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var4_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var4_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var6.FBX │ │ │ │ ├── Dead_Grass_02_Var6.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var6_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var6_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var6_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var6_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var6_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var6_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var7.FBX │ │ │ │ ├── Dead_Grass_02_Var7.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var7_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var7_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var7_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var7_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var7_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var7_Prefab_baked_single.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var8.FBX │ │ │ │ ├── Dead_Grass_02_Var8.FBX.meta │ │ │ │ ├── Dead_Grass_02_Var8_Prefab.prefab │ │ │ │ ├── Dead_Grass_02_Var8_Prefab.prefab.meta │ │ │ │ ├── Dead_Grass_02_Var8_Prefab_baked_single.asset │ │ │ │ ├── Dead_Grass_02_Var8_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Grass_02_Var8_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Grass_02_Var8_Prefab_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Dead_Grass_02.mat │ │ │ │ │ ├── Dead_Grass_02.mat.meta │ │ │ │ │ ├── Dead_Grass_02_Albedo_Opacity.srgb.dds.asset │ │ │ │ │ ├── Dead_Grass_02_Albedo_Opacity.srgb.dds.asset.meta │ │ │ │ │ ├── Dead_Grass_02_Albedo_Opacity.tif │ │ │ │ │ ├── Dead_Grass_02_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Dead_Grass_02_BakedWind.mat │ │ │ │ │ ├── Dead_Grass_02_BakedWind.mat.meta │ │ │ │ │ ├── Dead_Grass_02_MaskMap.tif │ │ │ │ │ ├── Dead_Grass_02_MaskMap.tif.meta │ │ │ │ │ ├── Dead_Grass_02_Normal.tif │ │ │ │ │ ├── Dead_Grass_02_Normal.tif.meta │ │ │ │ │ ├── Dead_Grass_02_Thickness.tif │ │ │ │ │ ├── Dead_Grass_02_Thickness.tif.meta │ │ │ │ │ ├── Dead_Grass_02_greener.mat │ │ │ │ │ ├── Dead_Grass_02_greener.mat.meta │ │ │ │ │ ├── Dead_Grass_2_Albedo_Opacity.tif │ │ │ │ │ └── Dead_Grass_2_Albedo_Opacity.tif.meta │ │ │ ├── Dead_Plant_03.meta │ │ │ ├── Dead_Plant_03 │ │ │ │ ├── Dead_Plant3_03_Var1.fbx │ │ │ │ ├── Dead_Plant3_03_Var1.fbx.meta │ │ │ │ ├── Dead_Plant3_03_Var1.prefab │ │ │ │ ├── Dead_Plant3_03_Var1.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var1_baked_single.asset │ │ │ │ ├── Dead_Plant3_03_Var1_baked_single.asset.meta │ │ │ │ ├── Dead_Plant3_03_Var1_baked_single.prefab │ │ │ │ ├── Dead_Plant3_03_Var1_baked_single.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var2.fbx │ │ │ │ ├── Dead_Plant3_03_Var2.fbx.meta │ │ │ │ ├── Dead_Plant3_03_Var2.prefab │ │ │ │ ├── Dead_Plant3_03_Var2.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var2_baked_single.asset │ │ │ │ ├── Dead_Plant3_03_Var2_baked_single.asset.meta │ │ │ │ ├── Dead_Plant3_03_Var2_baked_single.prefab │ │ │ │ ├── Dead_Plant3_03_Var2_baked_single.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var3.fbx │ │ │ │ ├── Dead_Plant3_03_Var3.fbx.meta │ │ │ │ ├── Dead_Plant3_03_Var3.prefab │ │ │ │ ├── Dead_Plant3_03_Var3.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var3_baked_single.asset │ │ │ │ ├── Dead_Plant3_03_Var3_baked_single.asset.meta │ │ │ │ ├── Dead_Plant3_03_Var3_baked_single.prefab │ │ │ │ ├── Dead_Plant3_03_Var3_baked_single.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var4.fbx │ │ │ │ ├── Dead_Plant3_03_Var4.fbx.meta │ │ │ │ ├── Dead_Plant3_03_Var4.prefab │ │ │ │ ├── Dead_Plant3_03_Var4.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var4_baked_single.asset │ │ │ │ ├── Dead_Plant3_03_Var4_baked_single.asset.meta │ │ │ │ ├── Dead_Plant3_03_Var4_baked_single.prefab │ │ │ │ ├── Dead_Plant3_03_Var4_baked_single.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var5.fbx │ │ │ │ ├── Dead_Plant3_03_Var5.fbx.meta │ │ │ │ ├── Dead_Plant3_03_Var5.prefab │ │ │ │ ├── Dead_Plant3_03_Var5.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var5_baked_single.asset │ │ │ │ ├── Dead_Plant3_03_Var5_baked_single.asset.meta │ │ │ │ ├── Dead_Plant3_03_Var5_baked_single.prefab │ │ │ │ ├── Dead_Plant3_03_Var5_baked_single.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var6.fbx │ │ │ │ ├── Dead_Plant3_03_Var6.fbx.meta │ │ │ │ ├── Dead_Plant3_03_Var6_Prefab.prefab │ │ │ │ ├── Dead_Plant3_03_Var6_Prefab.prefab.meta │ │ │ │ ├── Dead_Plant3_03_Var6_Prefab_baked_single.asset │ │ │ │ ├── Dead_Plant3_03_Var6_Prefab_baked_single.asset.meta │ │ │ │ ├── Dead_Plant3_03_Var6_Prefab_baked_single.prefab │ │ │ │ ├── Dead_Plant3_03_Var6_Prefab_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Dead_Plant3_03.mat │ │ │ │ │ ├── Dead_Plant3_03.mat.meta │ │ │ │ │ ├── Dead_Plant3_03_Albedo_Opacity.tif │ │ │ │ │ ├── Dead_Plant3_03_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Dead_Plant3_03_BakedWind.mat │ │ │ │ │ ├── Dead_Plant3_03_BakedWind.mat.meta │ │ │ │ │ ├── Dead_Plant3_03_MaskMap.tif │ │ │ │ │ ├── Dead_Plant3_03_MaskMap.tif.meta │ │ │ │ │ ├── Dead_Plant3_03_Normal.tif │ │ │ │ │ ├── Dead_Plant3_03_Normal.tif.meta │ │ │ │ │ ├── Dead_Plant3_03_Thickness.tif │ │ │ │ │ └── Dead_Plant3_03_Thickness.tif.meta │ │ │ ├── Ferns.meta │ │ │ ├── Ferns │ │ │ │ ├── Fern_var01.FBX │ │ │ │ ├── Fern_var01.FBX.meta │ │ │ │ ├── Fern_var01_Prefab.prefab │ │ │ │ ├── Fern_var01_Prefab.prefab.meta │ │ │ │ ├── Fern_var01_Prefab_baked_single.asset │ │ │ │ ├── Fern_var01_Prefab_baked_single.asset.meta │ │ │ │ ├── Fern_var01_Prefab_baked_single.prefab │ │ │ │ ├── Fern_var01_Prefab_baked_single.prefab.meta │ │ │ │ ├── Fern_var02.FBX │ │ │ │ ├── Fern_var02.FBX.meta │ │ │ │ ├── Fern_var02_Prefab.prefab │ │ │ │ ├── Fern_var02_Prefab.prefab.meta │ │ │ │ ├── Fern_var02_Prefab_baked_single.asset │ │ │ │ ├── Fern_var02_Prefab_baked_single.asset.meta │ │ │ │ ├── Fern_var02_Prefab_baked_single.prefab │ │ │ │ ├── Fern_var02_Prefab_baked_single.prefab.meta │ │ │ │ ├── Fern_var03.FBX │ │ │ │ ├── Fern_var03.FBX.meta │ │ │ │ ├── Fern_var03_Prefab.prefab │ │ │ │ ├── Fern_var03_Prefab.prefab.meta │ │ │ │ ├── Fern_var03_Prefab_baked_single.asset │ │ │ │ ├── Fern_var03_Prefab_baked_single.asset.meta │ │ │ │ ├── Fern_var03_Prefab_baked_single.prefab │ │ │ │ ├── Fern_var03_Prefab_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Ferns.mat │ │ │ │ │ ├── Ferns.mat.meta │ │ │ │ │ ├── Ferns_Albedo_Opacity.tif │ │ │ │ │ ├── Ferns_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Ferns_BakedWind.mat │ │ │ │ │ ├── Ferns_BakedWind.mat.meta │ │ │ │ │ ├── Ferns_Glossy_BakedWind.mat │ │ │ │ │ ├── Ferns_Glossy_BakedWind.mat.meta │ │ │ │ │ ├── Ferns_MaskMap.tif │ │ │ │ │ ├── Ferns_MaskMap.tif.meta │ │ │ │ │ ├── Ferns_Normal.tif │ │ │ │ │ ├── Ferns_Normal.tif.meta │ │ │ │ │ ├── Ferns_Thickness.tif │ │ │ │ │ └── Ferns_Thickness.tif.meta │ │ │ ├── GreenBush.meta │ │ │ ├── GreenBush │ │ │ │ ├── GreenBush_Var01.FBX │ │ │ │ ├── GreenBush_Var01.FBX.meta │ │ │ │ ├── GreenBush_Var01_Prefab.prefab │ │ │ │ ├── GreenBush_Var01_Prefab.prefab.meta │ │ │ │ ├── GreenBush_Var01_Prefab_baked_single.asset │ │ │ │ ├── GreenBush_Var01_Prefab_baked_single.asset.meta │ │ │ │ ├── GreenBush_Var01_Prefab_baked_single.prefab │ │ │ │ ├── GreenBush_Var01_Prefab_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── GreenBush_Albedo_Opacity.tif │ │ │ │ │ ├── GreenBush_Albedo_Opacity.tif.meta │ │ │ │ │ ├── GreenBush_MaskMap.tif │ │ │ │ │ ├── GreenBush_MaskMap.tif.meta │ │ │ │ │ ├── GreenBush_Normal.tif │ │ │ │ │ ├── GreenBush_Normal.tif.meta │ │ │ │ │ ├── GreenBush_mat.mat │ │ │ │ │ ├── GreenBush_mat.mat.meta │ │ │ │ │ ├── GreenBush_mat_BakedWind.mat │ │ │ │ │ └── GreenBush_mat_BakedWind.mat.meta │ │ │ ├── Juniper_Bush_01.meta │ │ │ ├── Juniper_Bush_01 │ │ │ │ ├── Juniper_Bush_01_Var1.fbx │ │ │ │ ├── Juniper_Bush_01_Var1.fbx.meta │ │ │ │ ├── Juniper_Bush_01_Var1.prefab │ │ │ │ ├── Juniper_Bush_01_Var1.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var1_baked_hierarchy.asset │ │ │ │ ├── Juniper_Bush_01_Var1_baked_hierarchy.asset.meta │ │ │ │ ├── Juniper_Bush_01_Var1_baked_hierarchy.prefab │ │ │ │ ├── Juniper_Bush_01_Var1_baked_hierarchy.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var2.fbx │ │ │ │ ├── Juniper_Bush_01_Var2.fbx.meta │ │ │ │ ├── Juniper_Bush_01_Var2.prefab │ │ │ │ ├── Juniper_Bush_01_Var2.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var2_baked_hierarchy.asset │ │ │ │ ├── Juniper_Bush_01_Var2_baked_hierarchy.asset.meta │ │ │ │ ├── Juniper_Bush_01_Var2_baked_hierarchy.prefab │ │ │ │ ├── Juniper_Bush_01_Var2_baked_hierarchy.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var3.fbx │ │ │ │ ├── Juniper_Bush_01_Var3.fbx.meta │ │ │ │ ├── Juniper_Bush_01_Var3.prefab │ │ │ │ ├── Juniper_Bush_01_Var3.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var3_baked_hierarchy.asset │ │ │ │ ├── Juniper_Bush_01_Var3_baked_hierarchy.asset.meta │ │ │ │ ├── Juniper_Bush_01_Var3_baked_hierarchy.prefab │ │ │ │ ├── Juniper_Bush_01_Var3_baked_hierarchy.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var4.fbx │ │ │ │ ├── Juniper_Bush_01_Var4.fbx.meta │ │ │ │ ├── Juniper_Bush_01_Var4.prefab │ │ │ │ ├── Juniper_Bush_01_Var4.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var4_baked_single.asset │ │ │ │ ├── Juniper_Bush_01_Var4_baked_single.asset.meta │ │ │ │ ├── Juniper_Bush_01_Var4_baked_single.prefab │ │ │ │ ├── Juniper_Bush_01_Var4_baked_single.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var5.fbx │ │ │ │ ├── Juniper_Bush_01_Var5.fbx.meta │ │ │ │ ├── Juniper_Bush_01_Var5.prefab │ │ │ │ ├── Juniper_Bush_01_Var5.prefab.meta │ │ │ │ ├── Juniper_Bush_01_Var5_baked_single.asset │ │ │ │ ├── Juniper_Bush_01_Var5_baked_single.asset.meta │ │ │ │ ├── Juniper_Bush_01_Var5_baked_single.prefab │ │ │ │ ├── Juniper_Bush_01_Var5_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Juniper_Bush_01.fluttermask.tif │ │ │ │ │ ├── Juniper_Bush_01.fluttermask.tif.meta │ │ │ │ │ ├── Juniper_Bush_01.mat │ │ │ │ │ ├── Juniper_Bush_01.mat.meta │ │ │ │ │ ├── Juniper_Bush_01_Albedo_Opacity.tif │ │ │ │ │ ├── Juniper_Bush_01_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Juniper_Bush_01_BakedWind.mat │ │ │ │ │ ├── Juniper_Bush_01_BakedWind.mat.meta │ │ │ │ │ ├── Juniper_Bush_01_Low.mat │ │ │ │ │ ├── Juniper_Bush_01_Low.mat.meta │ │ │ │ │ ├── Juniper_Bush_01_Low_BakedWind.mat │ │ │ │ │ ├── Juniper_Bush_01_Low_BakedWind.mat.meta │ │ │ │ │ ├── Juniper_Bush_01_MaskMap.tif │ │ │ │ │ ├── Juniper_Bush_01_MaskMap.tif.meta │ │ │ │ │ ├── Juniper_Bush_01_Normal.tif │ │ │ │ │ ├── Juniper_Bush_01_Normal.tif.meta │ │ │ │ │ ├── Juniper_Bush_01_Thickness.tif │ │ │ │ │ ├── Juniper_Bush_01_Thickness.tif.meta │ │ │ │ │ ├── Juniper_Bush_01_Trunk.mat │ │ │ │ │ ├── Juniper_Bush_01_Trunk.mat.meta │ │ │ │ │ ├── Juniper_Bush_01_Trunk_BakedWind.mat │ │ │ │ │ └── Juniper_Bush_01_Trunk_BakedWind.mat.meta │ │ │ ├── MeadowGrass_01.meta │ │ │ ├── MeadowGrass_01 │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Meadow_Grass_01.mat │ │ │ │ │ ├── Meadow_Grass_01.mat.meta │ │ │ │ │ ├── Meadow_Grass_01_Albedo_Opacity.tif │ │ │ │ │ ├── Meadow_Grass_01_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Meadow_Grass_01_BakedWind.mat │ │ │ │ │ ├── Meadow_Grass_01_BakedWind.mat.meta │ │ │ │ │ ├── Meadow_Grass_01_Low.mat │ │ │ │ │ ├── Meadow_Grass_01_Low.mat.meta │ │ │ │ │ ├── Meadow_Grass_01_Low_BakedWind.mat │ │ │ │ │ ├── Meadow_Grass_01_Low_BakedWind.mat.meta │ │ │ │ │ ├── Meadow_Grass_01_MaskMap.tif │ │ │ │ │ ├── Meadow_Grass_01_MaskMap.tif.meta │ │ │ │ │ ├── Meadow_Grass_01_Normal.tif │ │ │ │ │ ├── Meadow_Grass_01_Normal.tif.meta │ │ │ │ │ ├── Meadow_Grass_01_Thickness.tif │ │ │ │ │ └── Meadow_Grass_01_Thickness.tif.meta │ │ │ │ ├── Meadow_Grass_01_Var1.FBX │ │ │ │ ├── Meadow_Grass_01_Var1.FBX.meta │ │ │ │ ├── Meadow_Grass_01_Var1_Prefab.prefab │ │ │ │ ├── Meadow_Grass_01_Var1_Prefab.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var1_Prefab_baked_single.asset │ │ │ │ ├── Meadow_Grass_01_Var1_Prefab_baked_single.asset.meta │ │ │ │ ├── Meadow_Grass_01_Var1_Prefab_baked_single.prefab │ │ │ │ ├── Meadow_Grass_01_Var1_Prefab_baked_single.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var2.FBX │ │ │ │ ├── Meadow_Grass_01_Var2.FBX.meta │ │ │ │ ├── Meadow_Grass_01_Var2_Prefab.prefab │ │ │ │ ├── Meadow_Grass_01_Var2_Prefab.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var2_Prefab_baked_single.asset │ │ │ │ ├── Meadow_Grass_01_Var2_Prefab_baked_single.asset.meta │ │ │ │ ├── Meadow_Grass_01_Var2_Prefab_baked_single.prefab │ │ │ │ ├── Meadow_Grass_01_Var2_Prefab_baked_single.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var2_TestWind.FBX │ │ │ │ ├── Meadow_Grass_01_Var2_TestWind.FBX.meta │ │ │ │ ├── Meadow_Grass_01_Var3.FBX │ │ │ │ ├── Meadow_Grass_01_Var3.FBX.meta │ │ │ │ ├── Meadow_Grass_01_Var3_Prefab.prefab │ │ │ │ ├── Meadow_Grass_01_Var3_Prefab.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var3_Prefab_baked_single.asset │ │ │ │ ├── Meadow_Grass_01_Var3_Prefab_baked_single.asset.meta │ │ │ │ ├── Meadow_Grass_01_Var3_Prefab_baked_single.prefab │ │ │ │ ├── Meadow_Grass_01_Var3_Prefab_baked_single.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var4.FBX │ │ │ │ ├── Meadow_Grass_01_Var4.FBX.meta │ │ │ │ ├── Meadow_Grass_01_Var4_Prefab.prefab │ │ │ │ ├── Meadow_Grass_01_Var4_Prefab.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var4_Prefab_baked_single.asset │ │ │ │ ├── Meadow_Grass_01_Var4_Prefab_baked_single.asset.meta │ │ │ │ ├── Meadow_Grass_01_Var4_Prefab_baked_single.prefab │ │ │ │ ├── Meadow_Grass_01_Var4_Prefab_baked_single.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var5.FBX │ │ │ │ ├── Meadow_Grass_01_Var5.FBX.meta │ │ │ │ ├── Meadow_Grass_01_Var5_Prefab.prefab │ │ │ │ ├── Meadow_Grass_01_Var5_Prefab.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var5_Prefab_baked_single.asset │ │ │ │ ├── Meadow_Grass_01_Var5_Prefab_baked_single.asset.meta │ │ │ │ ├── Meadow_Grass_01_Var5_Prefab_baked_single.prefab │ │ │ │ ├── Meadow_Grass_01_Var5_Prefab_baked_single.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var6.FBX │ │ │ │ ├── Meadow_Grass_01_Var6.FBX.meta │ │ │ │ ├── Meadow_Grass_01_Var6_Prefab.prefab │ │ │ │ ├── Meadow_Grass_01_Var6_Prefab.prefab.meta │ │ │ │ ├── Meadow_Grass_01_Var6_Prefab_baked_single.asset │ │ │ │ ├── Meadow_Grass_01_Var6_Prefab_baked_single.asset.meta │ │ │ │ ├── Meadow_Grass_01_Var6_Prefab_baked_single.prefab │ │ │ │ └── Meadow_Grass_01_Var6_Prefab_baked_single.prefab.meta │ │ │ ├── PineGroundScatter_01.meta │ │ │ ├── PineGroundScatter_01 │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── PineGroundScatter_01.mat │ │ │ │ │ ├── PineGroundScatter_01.mat.meta │ │ │ │ │ ├── PineGroundScatter_01_Albedo_Opacity.srgb.dds.asset │ │ │ │ │ ├── PineGroundScatter_01_Albedo_Opacity.srgb.dds.asset.meta │ │ │ │ │ ├── PineGroundScatter_01_Albedo_Opacity.tif │ │ │ │ │ ├── PineGroundScatter_01_Albedo_Opacity.tif.meta │ │ │ │ │ ├── PineGroundScatter_01_MaskMap.tif │ │ │ │ │ ├── PineGroundScatter_01_MaskMap.tif.meta │ │ │ │ │ ├── PineGroundScatter_01_Normal.tif │ │ │ │ │ ├── PineGroundScatter_01_Normal.tif.meta │ │ │ │ │ ├── PineGroundScatter_01_Thickness.tif │ │ │ │ │ └── PineGroundScatter_01_Thickness.tif.meta │ │ │ │ ├── PineGroundScatter01_Var1.FBX │ │ │ │ ├── PineGroundScatter01_Var1.FBX.meta │ │ │ │ ├── PineGroundScatter01_Var1_Prefab.prefab │ │ │ │ ├── PineGroundScatter01_Var1_Prefab.prefab.meta │ │ │ │ ├── PineGroundScatter01_Var2.FBX │ │ │ │ ├── PineGroundScatter01_Var2.FBX.meta │ │ │ │ ├── PineGroundScatter01_Var2_Prefab.prefab │ │ │ │ └── PineGroundScatter01_Var2_Prefab.prefab.meta │ │ │ ├── RedBush.meta │ │ │ └── RedBush │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ ├── RedBush.mat │ │ │ │ ├── RedBush.mat.meta │ │ │ │ ├── RedBush_Albedo_Opacity.tif │ │ │ │ ├── RedBush_Albedo_Opacity.tif.meta │ │ │ │ ├── RedBush_BakedWind.mat │ │ │ │ ├── RedBush_BakedWind.mat.meta │ │ │ │ ├── RedBush_MaskMap.tif │ │ │ │ ├── RedBush_MaskMap.tif.meta │ │ │ │ ├── RedBush_Normal.tif │ │ │ │ ├── RedBush_Normal.tif.meta │ │ │ │ ├── RedBush_Thickness.tif │ │ │ │ └── RedBush_Thickness.tif.meta │ │ │ │ ├── RedBush_Var1.FBX │ │ │ │ ├── RedBush_Var1.FBX.meta │ │ │ │ ├── RedBush_Var1_Prefab.prefab │ │ │ │ ├── RedBush_Var1_Prefab.prefab.meta │ │ │ │ ├── RedBush_Var1_Prefab_baked_single.asset │ │ │ │ ├── RedBush_Var1_Prefab_baked_single.asset.meta │ │ │ │ ├── RedBush_Var1_Prefab_baked_single.prefab │ │ │ │ └── RedBush_Var1_Prefab_baked_single.prefab.meta │ │ │ ├── Megascans.meta │ │ │ └── Megascans │ │ │ ├── Plants.meta │ │ │ ├── Plants │ │ │ ├── Bush_b.meta │ │ │ ├── Bush_b │ │ │ │ ├── Bush_b1_4x4x4.FBX │ │ │ │ ├── Bush_b1_4x4x4.FBX.meta │ │ │ │ ├── Bush_b1_4x4x4_PF.prefab │ │ │ │ ├── Bush_b1_4x4x4_PF.prefab.meta │ │ │ │ ├── Bush_b1_4x4x4_PF_baked_single.asset │ │ │ │ ├── Bush_b1_4x4x4_PF_baked_single.asset.meta │ │ │ │ ├── Bush_b1_4x4x4_PF_baked_single.prefab │ │ │ │ ├── Bush_b1_4x4x4_PF_baked_single.prefab.meta │ │ │ │ ├── Bush_b1_6x8x6.FBX │ │ │ │ ├── Bush_b1_6x8x6.FBX.meta │ │ │ │ ├── Bush_b1_6x8x6_PF.prefab │ │ │ │ ├── Bush_b1_6x8x6_PF.prefab.meta │ │ │ │ ├── Bush_b1_6x8x6_PF_baked_single.asset │ │ │ │ ├── Bush_b1_6x8x6_PF_baked_single.asset.meta │ │ │ │ ├── Bush_b1_6x8x6_PF_baked_single.prefab │ │ │ │ ├── Bush_b1_6x8x6_PF_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Bush_Dead_Br_01.mat │ │ │ │ │ ├── Bush_Dead_Br_01.mat.meta │ │ │ │ │ ├── Bush_Dead_Br_01_Albedo_Opacity.tif │ │ │ │ │ ├── Bush_Dead_Br_01_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Bush_Dead_Br_01_BakedWind_LowIntensity.mat │ │ │ │ │ ├── Bush_Dead_Br_01_BakedWind_LowIntensity.mat.meta │ │ │ │ │ ├── Bush_Dead_Br_01_Normal.tif │ │ │ │ │ └── Bush_Dead_Br_01_Normal.tif.meta │ │ │ ├── Bush_qilgP2.meta │ │ │ ├── Bush_qilgP2 │ │ │ │ ├── Bush_qilgP2_6x6x4.FBX │ │ │ │ ├── Bush_qilgP2_6x6x4.FBX.meta │ │ │ │ ├── Bush_qilgP2_6x6x4_PF.prefab │ │ │ │ ├── Bush_qilgP2_6x6x4_PF.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Bush_d.mat │ │ │ │ │ ├── Bush_d.mat.meta │ │ │ │ │ ├── Plant_Perennials_qilgP2.mat │ │ │ │ │ ├── Plant_Perennials_qilgP2.mat.meta │ │ │ │ │ ├── Plant_Perennials_qilgP2_Albedo_Opacity.tif │ │ │ │ │ ├── Plant_Perennials_qilgP2_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Plant_Perennials_qilgP2_MaskMap.tif │ │ │ │ │ ├── Plant_Perennials_qilgP2_MaskMap.tif.meta │ │ │ │ │ ├── Plant_Perennials_qilgP2_Normal.tif │ │ │ │ │ ├── Plant_Perennials_qilgP2_Normal.tif.meta │ │ │ │ │ ├── Plant_Perennials_qilgP2_Thickness.tif │ │ │ │ │ ├── Plant_Perennials_qilgP2_Thickness.tif.meta │ │ │ │ │ ├── Scots_Pine_a_bark.mat │ │ │ │ │ └── Scots_Pine_a_bark.mat.meta │ │ │ ├── Bush_qilgY2.meta │ │ │ ├── Bush_qilgY2 │ │ │ │ ├── Bush_qilgY2_2x2x4.FBX │ │ │ │ ├── Bush_qilgY2_2x2x4.FBX.meta │ │ │ │ ├── Bush_qilgY2_2x2x4_PF.prefab │ │ │ │ ├── Bush_qilgY2_2x2x4_PF.prefab.meta │ │ │ │ ├── Bush_qilgY2_2x2x4_PF_baked_single.asset │ │ │ │ ├── Bush_qilgY2_2x2x4_PF_baked_single.asset.meta │ │ │ │ ├── Bush_qilgY2_2x2x4_PF_baked_single.prefab │ │ │ │ ├── Bush_qilgY2_2x2x4_PF_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Bush_qilgY2.mat │ │ │ │ │ ├── Bush_qilgY2.mat.meta │ │ │ │ │ ├── Bush_qilgY2_BakedWind.mat │ │ │ │ │ ├── Bush_qilgY2_BakedWind.mat.meta │ │ │ │ │ ├── Bush_qilgY2_Trunk.mat │ │ │ │ │ ├── Bush_qilgY2_Trunk.mat.meta │ │ │ │ │ ├── Bush_qilgY2_Trunk_BakedWind.mat │ │ │ │ │ ├── Bush_qilgY2_Trunk_BakedWind.mat.meta │ │ │ │ │ ├── Plant_Perennials_qilgY2_Albedo_Opacity.tif │ │ │ │ │ ├── Plant_Perennials_qilgY2_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Plant_Perennials_qilgY2_MaskMap.tif │ │ │ │ │ ├── Plant_Perennials_qilgY2_MaskMap.tif.meta │ │ │ │ │ ├── Plant_Perennials_qilgY2_Normal.tif │ │ │ │ │ ├── Plant_Perennials_qilgY2_Normal.tif.meta │ │ │ │ │ ├── Plant_Perennials_qilgY2_Thickness.tif │ │ │ │ │ └── Plant_Perennials_qilgY2_Thickness.tif.meta │ │ │ ├── GrassGreen_qheqG2.meta │ │ │ ├── GrassGreen_qheqG2 │ │ │ │ ├── GrassGreen_qheqG2_01.fbx │ │ │ │ ├── GrassGreen_qheqG2_01.fbx.meta │ │ │ │ ├── GrassGreen_qheqG2_01.prefab │ │ │ │ ├── GrassGreen_qheqG2_01.prefab.meta │ │ │ │ ├── GrassGreen_qheqG2_01_baked_single.asset │ │ │ │ ├── GrassGreen_qheqG2_01_baked_single.asset.meta │ │ │ │ ├── GrassGreen_qheqG2_01_baked_single.prefab │ │ │ │ ├── GrassGreen_qheqG2_01_baked_single.prefab.meta │ │ │ │ ├── GrassGreen_qheqG2_02.fbx │ │ │ │ ├── GrassGreen_qheqG2_02.fbx.meta │ │ │ │ ├── GrassGreen_qheqG2_02.prefab │ │ │ │ ├── GrassGreen_qheqG2_02.prefab.meta │ │ │ │ ├── GrassGreen_qheqG2_02_baked_single.asset │ │ │ │ ├── GrassGreen_qheqG2_02_baked_single.asset.meta │ │ │ │ ├── GrassGreen_qheqG2_02_baked_single.prefab │ │ │ │ ├── GrassGreen_qheqG2_02_baked_single.prefab.meta │ │ │ │ ├── GrassGreen_qheqG2_03.fbx │ │ │ │ ├── GrassGreen_qheqG2_03.fbx.meta │ │ │ │ ├── GrassGreen_qheqG2_03.prefab │ │ │ │ ├── GrassGreen_qheqG2_03.prefab.meta │ │ │ │ ├── GrassGreen_qheqG2_03_baked_single.asset │ │ │ │ ├── GrassGreen_qheqG2_03_baked_single.asset.meta │ │ │ │ ├── GrassGreen_qheqG2_03_baked_single.prefab │ │ │ │ ├── GrassGreen_qheqG2_03_baked_single.prefab.meta │ │ │ │ ├── GrassGreen_qheqG2_04.fbx │ │ │ │ ├── GrassGreen_qheqG2_04.fbx.meta │ │ │ │ ├── GrassGreen_qheqG2_04.prefab │ │ │ │ ├── GrassGreen_qheqG2_04.prefab.meta │ │ │ │ ├── GrassGreen_qheqG2_04_baked_single.asset │ │ │ │ ├── GrassGreen_qheqG2_04_baked_single.asset.meta │ │ │ │ ├── GrassGreen_qheqG2_04_baked_single.prefab │ │ │ │ ├── GrassGreen_qheqG2_04_baked_single.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Billboard_Albedo.mat │ │ │ │ │ ├── Billboard_Albedo.mat.meta │ │ │ │ │ ├── Billboard_Albedo_Opacity.srgb.dds.asset │ │ │ │ │ ├── Billboard_Albedo_Opacity.srgb.dds.asset.meta │ │ │ │ │ ├── Billboard_Albedo_Opacity.tif │ │ │ │ │ ├── Billboard_Albedo_Opacity.tif.meta │ │ │ │ │ ├── Billboard_Albedo_green.mat │ │ │ │ │ ├── Billboard_Albedo_green.mat.meta │ │ │ │ │ ├── Billboard_Albedo_green_BakedWind.mat │ │ │ │ │ ├── Billboard_Albedo_green_BakedWind.mat.meta │ │ │ │ │ ├── Billboard_Normal.tif │ │ │ │ │ ├── Billboard_Normal.tif.meta │ │ │ │ │ ├── GrassGreen_qheqG2.mat │ │ │ │ │ ├── GrassGreen_qheqG2.mat.meta │ │ │ │ │ ├── GrassGreen_qheqG2_Albedo_Opacity.srgb.dds.asset │ │ │ │ │ ├── GrassGreen_qheqG2_Albedo_Opacity.srgb.dds.asset.meta │ │ │ │ │ ├── GrassGreen_qheqG2_Albedo_Opacity.tif │ │ │ │ │ ├── GrassGreen_qheqG2_Albedo_Opacity.tif.meta │ │ │ │ │ ├── GrassGreen_qheqG2_BakedWind.mat │ │ │ │ │ ├── GrassGreen_qheqG2_BakedWind.mat.meta │ │ │ │ │ ├── GrassGreen_qheqG2_BakedWind_lessAO.mat │ │ │ │ │ ├── GrassGreen_qheqG2_BakedWind_lessAO.mat.meta │ │ │ │ │ ├── GrassGreen_qheqG2_MaskMap.tif │ │ │ │ │ ├── GrassGreen_qheqG2_MaskMap.tif.meta │ │ │ │ │ ├── GrassGreen_qheqG2_Normal.tif │ │ │ │ │ ├── GrassGreen_qheqG2_Normal.tif.meta │ │ │ │ │ ├── GrassGreen_qheqG2_Thickness.tif │ │ │ │ │ ├── GrassGreen_qheqG2_Thickness.tif.meta │ │ │ │ │ ├── GrassGreen_qheqG2_mat.mat │ │ │ │ │ └── GrassGreen_qheqG2_mat.mat.meta │ │ │ ├── Plant_Perennials.meta │ │ │ └── Plant_Perennials │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ ├── Plant_Perennials_a.mat │ │ │ │ ├── Plant_Perennials_a.mat.meta │ │ │ │ ├── Plant_Perennials_a_BakedWind.mat │ │ │ │ ├── Plant_Perennials_a_BakedWind.mat.meta │ │ │ │ ├── Plant_Perennials_a_BakedWind_single.mat │ │ │ │ ├── Plant_Perennials_a_BakedWind_single.mat.meta │ │ │ │ ├── Plant_Perennials_a_qhthU2_Albedo_Opacity.tif │ │ │ │ ├── Plant_Perennials_a_qhthU2_Albedo_Opacity.tif.meta │ │ │ │ ├── Plant_Perennials_a_qhthU2_Mask.tif │ │ │ │ ├── Plant_Perennials_a_qhthU2_Mask.tif.meta │ │ │ │ ├── Plant_Perennials_a_qhthU2_Normal.tif │ │ │ │ ├── Plant_Perennials_a_qhthU2_Normal.tif.meta │ │ │ │ ├── Plant_Perennials_a_qhthU2_Thickness.tif │ │ │ │ └── Plant_Perennials_a_qhthU2_Thickness.tif.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2.FBX │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2.FBX.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_A_Prefab.prefab │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_A_Prefab.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_A_Prefab_baked_hierarchy.asset │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_A_Prefab_baked_hierarchy.asset.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_A_Prefab_baked_hierarchy.prefab │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_A_Prefab_baked_hierarchy.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_B_Prefab.prefab │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_B_Prefab.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_B_Prefab_baked_hierarchy.asset │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_B_Prefab_baked_hierarchy.asset.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_B_Prefab_baked_hierarchy.prefab │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_B_Prefab_baked_hierarchy.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_C_Prefab.prefab │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_C_Prefab.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_C_Prefab_baked_hierarchy.asset │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_C_Prefab_baked_hierarchy.asset.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_C_Prefab_baked_hierarchy.prefab │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_C_Prefab_baked_hierarchy.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_Prefab_baked_hierarchy.prefab │ │ │ │ ├── PH_Plant_Perennials_a2_1x1x2_Prefab_baked_hierarchy.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a4_1x1x0.FBX │ │ │ │ ├── PH_Plant_Perennials_a4_1x1x0.FBX.meta │ │ │ │ ├── PH_Plant_Perennials_a4_1x1x0_PF.prefab │ │ │ │ ├── PH_Plant_Perennials_a4_1x1x0_PF.prefab.meta │ │ │ │ ├── PH_Plant_Perennials_a4_1x1x0_PF_baked_single.asset │ │ │ │ ├── PH_Plant_Perennials_a4_1x1x0_PF_baked_single.asset.meta │ │ │ │ ├── PH_Plant_Perennials_a4_1x1x0_PF_baked_single.prefab │ │ │ │ └── PH_Plant_Perennials_a4_1x1x0_PF_baked_single.prefab.meta │ │ │ ├── Rocks.meta │ │ │ ├── Rocks │ │ │ ├── Rock_Granite_rcCwC.meta │ │ │ ├── Rock_Granite_rcCwC │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Rock_Granite_rcCwC-Rock_Granite_rcCwC_mat.mat │ │ │ │ │ ├── Rock_Granite_rcCwC-Rock_Granite_rcCwC_mat.mat.meta │ │ │ │ │ ├── Rock_Granite_rcCwC_MaskMap.tif │ │ │ │ │ ├── Rock_Granite_rcCwC_MaskMap.tif.meta │ │ │ │ │ ├── Rock_Granite_rcCwC_Normal.tif │ │ │ │ │ ├── Rock_Granite_rcCwC_Normal.tif.meta │ │ │ │ │ ├── Rock_Granite_rcCwC_albedo.tif │ │ │ │ │ ├── Rock_Granite_rcCwC_albedo.tif.meta │ │ │ │ │ ├── Rock_Granite_rcCwC_mat.mat │ │ │ │ │ └── Rock_Granite_rcCwC_mat.mat.meta │ │ │ │ ├── Rock_Granite_rcCwC.fbx │ │ │ │ ├── Rock_Granite_rcCwC.fbx.meta │ │ │ │ ├── Rock_Granite_rcCwC_Prefab.prefab │ │ │ │ └── Rock_Granite_rcCwC_Prefab.prefab.meta │ │ │ ├── Rock_Granite_reFto.meta │ │ │ ├── Rock_Granite_reFto │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Rock_Granite_reFto.mat │ │ │ │ │ ├── Rock_Granite_reFto.mat.meta │ │ │ │ │ ├── Rock_Granite_reFto_MaskMap.tif │ │ │ │ │ ├── Rock_Granite_reFto_MaskMap.tif.meta │ │ │ │ │ ├── Rock_Granite_reFto_Normal_OS.tif │ │ │ │ │ ├── Rock_Granite_reFto_Normal_OS.tif.meta │ │ │ │ │ ├── Rock_Granite_reFto_albedo.tif │ │ │ │ │ └── Rock_Granite_reFto_albedo.tif.meta │ │ │ │ ├── Rock_Granite_reFto.FBX │ │ │ │ ├── Rock_Granite_reFto.FBX.meta │ │ │ │ ├── Rock_Granite_reFto_brighter.prefab │ │ │ │ └── Rock_Granite_reFto_brighter.prefab.meta │ │ │ ├── Rock_Granite_rgAsy.meta │ │ │ ├── Rock_Granite_rgAsy │ │ │ │ ├── Aset_rock_granite_M_rgAsy.fbx │ │ │ │ ├── Aset_rock_granite_M_rgAsy.fbx.meta │ │ │ │ ├── Aset_rock_granite_M_rgAsy.prefab │ │ │ │ ├── Aset_rock_granite_M_rgAsy.prefab.meta │ │ │ │ ├── Materials.meta │ │ │ │ └── Materials │ │ │ │ │ ├── Aset_rock_granite_M_rgAsy_Albedo.tif │ │ │ │ │ ├── Aset_rock_granite_M_rgAsy_Albedo.tif.meta │ │ │ │ │ ├── Aset_rock_granite_M_rgAsy_MaskMap.tif │ │ │ │ │ ├── Aset_rock_granite_M_rgAsy_MaskMap.tif.meta │ │ │ │ │ ├── Aset_rock_granite_M_rgAsy_mat.mat │ │ │ │ │ ├── Aset_rock_granite_M_rgAsy_mat.mat.meta │ │ │ │ │ ├── Aset_rock_granite_M_rgAsy_normal_os.tif │ │ │ │ │ └── Aset_rock_granite_M_rgAsy_normal_os.tif.meta │ │ │ ├── Rock_Sandstone_plras.meta │ │ │ ├── Rock_Sandstone_plras │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Rock_Sandstone_plras.mat │ │ │ │ │ ├── Rock_Sandstone_plras.mat.meta │ │ │ │ │ ├── Rock_Sandstone_plras_Albedo.tif │ │ │ │ │ ├── Rock_Sandstone_plras_Albedo.tif.meta │ │ │ │ │ ├── Rock_Sandstone_plras_MaskMap.tif │ │ │ │ │ ├── Rock_Sandstone_plras_MaskMap.tif.meta │ │ │ │ │ ├── Rock_Sandstone_plras_Normal_os.tif │ │ │ │ │ └── Rock_Sandstone_plras_Normal_os.tif.meta │ │ │ │ ├── Rock_Sandstone_plras.fbx │ │ │ │ ├── Rock_Sandstone_plras.fbx.meta │ │ │ │ ├── Rock_Sandstone_plras.prefab │ │ │ │ └── Rock_Sandstone_plras.prefab.meta │ │ │ ├── TilingSurfaces.meta │ │ │ └── TilingSurfaces │ │ │ │ ├── Q_tiledRock_01.meta │ │ │ │ └── Q_tiledRock_01 │ │ │ │ ├── Q_tiledRock_01_omfp00_Detail.tif │ │ │ │ ├── Q_tiledRock_01_omfp00_Detail.tif.meta │ │ │ │ ├── Q_tiledRock_02_omfpy0_Detail.tif │ │ │ │ ├── Q_tiledRock_02_omfpy0_Detail.tif.meta │ │ │ │ ├── Q_tiledRock_03_omfrP0_Detail.tif │ │ │ │ └── Q_tiledRock_03_omfrP0_Detail.tif.meta │ │ │ ├── TerrainTextures.meta │ │ │ ├── TerrainTextures │ │ │ ├── FloorSticks_olsgr.meta │ │ │ ├── FloorSticks_olsgr │ │ │ │ ├── FloorSticks_olsgr_Albedo.tif │ │ │ │ ├── FloorSticks_olsgr_Albedo.tif.meta │ │ │ │ ├── FloorSticks_olsgr_Height.tif │ │ │ │ ├── FloorSticks_olsgr_Height.tif.meta │ │ │ │ ├── FloorSticks_olsgr_Maskmap.tif │ │ │ │ ├── FloorSticks_olsgr_Maskmap.tif.meta │ │ │ │ ├── FloorSticks_olsgr_Mat.mat │ │ │ │ ├── FloorSticks_olsgr_Mat.mat.meta │ │ │ │ ├── FloorSticks_olsgr_Normal.tif │ │ │ │ ├── FloorSticks_olsgr_Normal.tif.meta │ │ │ │ ├── FloorSticks_olsgr_NormalBent.tif │ │ │ │ └── FloorSticks_olsgr_NormalBent.tif.meta │ │ │ ├── Grass_Dried_omgra0.meta │ │ │ ├── Grass_Dried_omgra0 │ │ │ │ ├── Grass_Dried_omgra0_Albedo.tif │ │ │ │ ├── Grass_Dried_omgra0_Albedo.tif.meta │ │ │ │ ├── Grass_Dried_omgra0_Height.tif │ │ │ │ ├── Grass_Dried_omgra0_Height.tif.meta │ │ │ │ ├── Grass_Dried_omgra0_MaskMap.tif │ │ │ │ ├── Grass_Dried_omgra0_MaskMap.tif.meta │ │ │ │ ├── Grass_Dried_omgra0_Mat.mat │ │ │ │ ├── Grass_Dried_omgra0_Mat.mat.meta │ │ │ │ ├── Grass_Dried_omgra0_NormalBent.tif │ │ │ │ ├── Grass_Dried_omgra0_NormalBent.tif.meta │ │ │ │ ├── Grass_Dried_omgra0_normal.tif │ │ │ │ └── Grass_Dried_omgra0_normal.tif.meta │ │ │ ├── Grass_pe1jvwp0.meta │ │ │ ├── Grass_pe1jvwp0 │ │ │ │ ├── Grass_pe1jvwp0_Albedo.tif │ │ │ │ ├── Grass_pe1jvwp0_Albedo.tif.meta │ │ │ │ ├── Grass_pe1jvwp0_Height.tif │ │ │ │ ├── Grass_pe1jvwp0_Height.tif.meta │ │ │ │ ├── Grass_pe1jvwp0_MaskMap.tif │ │ │ │ ├── Grass_pe1jvwp0_MaskMap.tif.meta │ │ │ │ ├── Grass_pe1jvwp0_Mat.mat │ │ │ │ ├── Grass_pe1jvwp0_Mat.mat.meta │ │ │ │ ├── Grass_pe1jvwp0_NormalBent.tif │ │ │ │ ├── Grass_pe1jvwp0_NormalBent.tif.meta │ │ │ │ ├── Grass_pe1jvwp0_normal.tif │ │ │ │ └── Grass_pe1jvwp0_normal.tif.meta │ │ │ ├── ScatteredStones_rmsih0p.meta │ │ │ └── ScatteredStones_rmsih0p │ │ │ │ ├── ScatteredStones_rmsih0p_Albedo.tif │ │ │ │ ├── ScatteredStones_rmsih0p_Albedo.tif.meta │ │ │ │ ├── ScatteredStones_rmsih0p_Height.tif │ │ │ │ ├── ScatteredStones_rmsih0p_Height.tif.meta │ │ │ │ ├── ScatteredStones_rmsih0p_MaskMap.tif │ │ │ │ ├── ScatteredStones_rmsih0p_MaskMap.tif.meta │ │ │ │ ├── ScatteredStones_rmsih0p_Mat.mat │ │ │ │ ├── ScatteredStones_rmsih0p_Mat.mat.meta │ │ │ │ ├── ScatteredStones_rmsih0p_Normal.tif │ │ │ │ └── ScatteredStones_rmsih0p_Normal.tif.meta │ │ │ ├── Wood.meta │ │ │ └── Wood │ │ │ ├── Wood_Branch_S_pcyeE.meta │ │ │ ├── Wood_Branch_S_pcyeE │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Wood_branch_S_pcyeE_Albedo.tif │ │ │ │ ├── Wood_branch_S_pcyeE_Albedo.tif.meta │ │ │ │ ├── Wood_branch_S_pcyeE_MaskMap.tif │ │ │ │ ├── Wood_branch_S_pcyeE_MaskMap.tif.meta │ │ │ │ ├── Wood_branch_S_pcyeE_Normal_OS.tif │ │ │ │ ├── Wood_branch_S_pcyeE_Normal_OS.tif.meta │ │ │ │ ├── Wood_branch_S_pcyeE_mat.mat │ │ │ │ └── Wood_branch_S_pcyeE_mat.mat.meta │ │ │ ├── Wood_branch_S_pcyeE.fbx │ │ │ ├── Wood_branch_S_pcyeE.fbx.meta │ │ │ ├── Wood_branch_S_pcyeE_Prefab.prefab │ │ │ └── Wood_branch_S_pcyeE_Prefab.prefab.meta │ │ │ ├── Wood_Branch_pjxuR.meta │ │ │ ├── Wood_Branch_pjxuR │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Wood_Branch_pjxuR_Albedo.tif │ │ │ │ ├── Wood_Branch_pjxuR_Albedo.tif.meta │ │ │ │ ├── Wood_Branch_pjxuR_MaskMap.tif │ │ │ │ ├── Wood_Branch_pjxuR_MaskMap.tif.meta │ │ │ │ ├── Wood_Branch_pjxuR_Mat.mat │ │ │ │ ├── Wood_Branch_pjxuR_Mat.mat.meta │ │ │ │ ├── Wood_Branch_pjxuR_Normal.tif │ │ │ │ └── Wood_Branch_pjxuR_Normal.tif.meta │ │ │ ├── Wood_Branch_pjxuR.fbx │ │ │ ├── Wood_Branch_pjxuR.fbx.meta │ │ │ ├── Wood_Branch_pjxuR_Prefab.prefab │ │ │ └── Wood_Branch_pjxuR_Prefab.prefab.meta │ │ │ ├── Wood_Log_M_qdtdP.meta │ │ │ ├── Wood_Log_M_qdtdP │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Wood_log_M_qdtdP.mat │ │ │ │ ├── Wood_log_M_qdtdP.mat.meta │ │ │ │ ├── Wood_log_M_qdtdP_Albedo.tif │ │ │ │ ├── Wood_log_M_qdtdP_Albedo.tif.meta │ │ │ │ ├── Wood_log_M_qdtdP_Mask.tif │ │ │ │ ├── Wood_log_M_qdtdP_Mask.tif.meta │ │ │ │ ├── Wood_log_M_qdtdP_Normal.tif │ │ │ │ └── Wood_log_M_qdtdP_Normal.tif.meta │ │ │ ├── Wood_log_M_qdtdP_Prefab.prefab │ │ │ ├── Wood_log_M_qdtdP_Prefab.prefab.meta │ │ │ ├── Wood_log_qdtdP.fbx │ │ │ └── Wood_log_qdtdP.fbx.meta │ │ │ ├── Wood_Log_qdhxa.meta │ │ │ ├── Wood_Log_qdhxa │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Wood_Log_qdhxa.mat │ │ │ │ ├── Wood_Log_qdhxa.mat.meta │ │ │ │ ├── Wood_Log_qdhxa_MaskMap.tif │ │ │ │ ├── Wood_Log_qdhxa_MaskMap.tif.meta │ │ │ │ ├── Wood_Log_qdhxa_Normal.tif │ │ │ │ ├── Wood_Log_qdhxa_Normal.tif.meta │ │ │ │ ├── Wood_Log_qdhxa_albedo.tif │ │ │ │ └── Wood_Log_qdhxa_albedo.tif.meta │ │ │ ├── Wood_Log_qdhxa.fbx │ │ │ ├── Wood_Log_qdhxa.fbx.meta │ │ │ ├── Wood_Log_qdhxa_Prefab.prefab │ │ │ └── Wood_Log_qdhxa_Prefab.prefab.meta │ │ │ ├── Wood_Log_rfgxx.meta │ │ │ ├── Wood_Log_rfgxx │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Wood_Log_M_rfgxx.mat │ │ │ │ ├── Wood_Log_M_rfgxx.mat.meta │ │ │ │ ├── Wood_Log_M_rfgxx_Albedo.tif │ │ │ │ ├── Wood_Log_M_rfgxx_Albedo.tif.meta │ │ │ │ ├── Wood_Log_M_rfgxx_MaskMap.tif │ │ │ │ ├── Wood_Log_M_rfgxx_MaskMap.tif.meta │ │ │ │ ├── Wood_Log_M_rfgxx_Normal_OS.tif │ │ │ │ └── Wood_Log_M_rfgxx_Normal_OS.tif.meta │ │ │ ├── wood_log_M_rfgxx.fbx │ │ │ ├── wood_log_M_rfgxx.fbx.meta │ │ │ ├── wood_log_M_rfgxx_Prefab.prefab │ │ │ └── wood_log_M_rfgxx_Prefab.prefab.meta │ │ │ ├── Wood_Log_rfixH.meta │ │ │ ├── Wood_Log_rfixH │ │ │ ├── Aset_wood_log_M_rfixH.fbx │ │ │ ├── Aset_wood_log_M_rfixH.fbx.meta │ │ │ ├── Aset_wood_log_M_rfixH_prefab.prefab │ │ │ ├── Aset_wood_log_M_rfixH_prefab.prefab.meta │ │ │ ├── Materials.meta │ │ │ └── Materials │ │ │ │ ├── Wood_Log_rfixH_MaskMap.tif │ │ │ │ ├── Wood_Log_rfixH_MaskMap.tif.meta │ │ │ │ ├── Wood_Log_rfixH_albedo.tif │ │ │ │ ├── Wood_Log_rfixH_albedo.tif.meta │ │ │ │ ├── Wood_Log_rfixH_mat.mat │ │ │ │ ├── Wood_Log_rfixH_mat.mat.meta │ │ │ │ ├── Wood_Log_rfixH_normal_OS.tif │ │ │ │ └── Wood_Log_rfixH_normal_OS.tif.meta │ │ │ ├── Wood_Log_rhfdj.meta │ │ │ ├── Wood_Log_rhfdj │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Wood_Log_rhfdj.mat │ │ │ │ ├── Wood_Log_rhfdj.mat.meta │ │ │ │ ├── Wood_Log_rhfdj_Albedo.tif │ │ │ │ ├── Wood_Log_rhfdj_Albedo.tif.meta │ │ │ │ ├── Wood_Log_rhfdj_MaskMap.tif │ │ │ │ ├── Wood_Log_rhfdj_MaskMap.tif.meta │ │ │ │ ├── Wood_Log_rhfdj_Normal.tif │ │ │ │ └── Wood_Log_rhfdj_Normal.tif.meta │ │ │ ├── Wood_Log_rhfdj.fbx │ │ │ ├── Wood_Log_rhfdj.fbx.meta │ │ │ ├── Wood_Log_rhfdj.prefab │ │ │ └── Wood_Log_rhfdj.prefab.meta │ │ │ ├── Wood_Root_rkswd.meta │ │ │ └── Wood_Root_rkswd │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── Wood_Root_rkswd_MaskMap.tif │ │ │ ├── Wood_Root_rkswd_MaskMap.tif.meta │ │ │ ├── Wood_Root_rkswd_Mat.mat │ │ │ ├── Wood_Root_rkswd_Mat.mat.meta │ │ │ ├── Wood_Root_rkswd_albedo.tif │ │ │ ├── Wood_Root_rkswd_albedo.tif.meta │ │ │ ├── Wood_Root_rkswd_normal_OS.tif │ │ │ └── Wood_Root_rkswd_normal_OS.tif.meta │ │ │ ├── Wood_Root_rkswd.fbx │ │ │ ├── Wood_Root_rkswd.fbx.meta │ │ │ ├── Wood_Root_rkswd_Prefab.prefab │ │ │ └── Wood_Root_rkswd_Prefab.prefab.meta │ ├── WaterDom.prefab │ ├── WaterDom.prefab.meta │ ├── WaterFall_01.obj │ ├── WaterFall_01.obj.meta │ ├── WaterFall_02.obj │ └── WaterFall_02.obj.meta ├── Scenes.meta ├── Scenes │ ├── MasterStackDemoScene.meta │ ├── MasterStackDemoScene.unity │ ├── MasterStackDemoScene.unity.meta │ └── MasterStackDemoScene │ │ ├── Global Volume Profile.asset │ │ ├── Global Volume Profile.asset.meta │ │ ├── LightingData.asset │ │ ├── LightingData.asset.meta │ │ ├── ReflectionProbe-0.exr │ │ └── ReflectionProbe-0.exr.meta ├── Scripts.meta ├── Scripts │ ├── Skybox3D.cs │ └── Skybox3D.cs.meta ├── Shaders.meta ├── Shaders │ ├── ComplexVegetation.ShaderGraph │ ├── ComplexVegetation.ShaderGraph.meta │ ├── DemoLighting.hlsl │ ├── DemoLighting.hlsl.meta │ ├── Demo_Water.shadergraph │ ├── Demo_Water.shadergraph.meta │ ├── Demo_WaterFall.shadergraph │ ├── Demo_WaterFall.shadergraph.meta │ ├── Imposters.meta │ ├── Imposters │ │ ├── .DS_Store │ │ ├── ConvertToVector.shadersubgraph │ │ ├── ConvertToVector.shadersubgraph.meta │ │ ├── ImposterTest.shadergraph │ │ ├── ImposterTest.shadergraph.meta │ │ ├── OctoImposter.shadersubgraph │ │ ├── OctoImposter.shadersubgraph.meta │ │ ├── Palm_01_Impostor.mesh │ │ ├── Palm_01_Impostor.mesh.meta │ │ ├── Palm_01_Impostor_AlbedoAlpha.tga │ │ ├── Palm_01_Impostor_AlbedoAlpha.tga.meta │ │ ├── Palm_01_Impostor_NormalDepth.tga │ │ ├── Palm_01_Impostor_NormalDepth.tga.meta │ │ ├── PlaneIntersection.shadersubgraph │ │ ├── PlaneIntersection.shadersubgraph.meta │ │ ├── Shader Graphs_ImposterTest.mat │ │ ├── Shader Graphs_ImposterTest.mat.meta │ │ ├── VectortoHemiOctahedron.shadersubgraph │ │ ├── VectortoHemiOctahedron.shadersubgraph.meta │ │ ├── VectortoOctahedron.shadersubgraph │ │ └── VectortoOctahedron.shadersubgraph.meta │ ├── SimpleVegetation.ShaderGraph │ ├── SimpleVegetation.ShaderGraph.meta │ ├── Skybox-Procedural-Universal.shader │ ├── Skybox-Procedural-Universal.shader.meta │ ├── SkyboxCubemap.shader │ ├── SkyboxCubemap.shader.meta │ ├── StandardShader.ShaderGraph │ ├── StandardShader.ShaderGraph.meta │ ├── UtilityGraphs.meta │ ├── UtilityGraphs │ │ ├── CustomTerrain.ShaderGraph │ │ ├── CustomTerrain.ShaderGraph.meta │ │ ├── DebugShaderGraph.shadersubgraph │ │ ├── DebugShaderGraph.shadersubgraph.meta │ │ ├── DitherCrossfade.shadersubgraph │ │ ├── DitherCrossfade.shadersubgraph.meta │ │ ├── PBR_HUE.ShaderGraph │ │ ├── PBR_HUE.ShaderGraph.meta │ │ ├── RaceBoatLiveryMixer.shadersubgraph │ │ ├── RaceBoatLiveryMixer.shadersubgraph.meta │ │ ├── RaceBoats.ShaderGraph │ │ ├── RaceBoats.ShaderGraph.meta │ │ ├── SmoothCurve.shadersubgraph │ │ ├── SmoothCurve.shadersubgraph.meta │ │ ├── SmoothTriangleWave.shadersubgraph │ │ ├── SmoothTriangleWave.shadersubgraph.meta │ │ ├── SplatMixer.ShaderSubGraph │ │ ├── SplatMixer.ShaderSubGraph.meta │ │ ├── TriangleWave.shadersubgraph │ │ ├── TriangleWave.shadersubgraph.meta │ │ ├── Z_Reconstruction.shadersubgraph │ │ └── Z_Reconstruction.shadersubgraph.meta │ ├── Vegetation Shaders.meta │ └── Vegetation Shaders │ │ ├── InputSurfaceVegetation.hlsl │ │ ├── InputSurfaceVegetation.hlsl.meta │ │ ├── LODCrossfade.hlsl │ │ ├── LODCrossfade.hlsl.meta │ │ ├── LWVegetationShader.shader │ │ ├── LWVegetationShader.shader.meta │ │ ├── ShadowPassVegetation.hlsl │ │ ├── ShadowPassVegetation.hlsl.meta │ │ ├── Vegetation.hlsl │ │ ├── Vegetation.hlsl.meta │ │ ├── VegetationDeformation.shadersubgraph │ │ ├── VegetationDeformation.shadersubgraph.meta │ │ ├── Vegetation_customLighting.shadergraph │ │ └── Vegetation_customLighting.shadergraph.meta ├── UniversalRenderPipelineAsset.asset ├── UniversalRenderPipelineAsset.asset.meta ├── UniversalRenderPipelineAsset_Renderer.asset ├── UniversalRenderPipelineAsset_Renderer.asset.meta ├── textures.meta └── textures │ ├── Island.meta │ ├── Island │ ├── BushTest.tif │ ├── BushTest.tif.meta │ ├── BushTest_norm.png │ ├── BushTest_norm.png.meta │ ├── LightShaft.png │ ├── LightShaft.png.meta │ ├── Rock_normal.tif │ ├── Rock_normal.tif.meta │ ├── seaweedtemp.png │ └── seaweedtemp.png.meta │ ├── Moss_Albedo.tif │ ├── Moss_Albedo.tif.meta │ ├── Moss_MetallicSmooth.tif │ ├── Moss_MetallicSmooth.tif.meta │ ├── Moss_Normal1.tif │ ├── Moss_Normal1.tif.meta │ ├── MuddyGround_Albedo.tif │ ├── MuddyGround_Albedo.tif.meta │ ├── MuddyGround_MetallicSmooth.tif │ ├── MuddyGround_MetallicSmooth.tif.meta │ ├── MuddyGround_normal.tif │ ├── MuddyGround_normal.tif.meta │ ├── NormalMap.png │ ├── NormalMap.png.meta │ ├── SmallStones_Albedo.tif │ ├── SmallStones_Albedo.tif.meta │ ├── SmallStones_MetallicSmooth.tif │ ├── SmallStones_MetallicSmooth.tif.meta │ ├── SmallStones_Normal.tif │ ├── SmallStones_Normal.tif.meta │ ├── Terrain.meta │ ├── Terrain │ ├── BeachSand_basecolor.tif │ ├── BeachSand_basecolor.tif.meta │ ├── BeachSand_normal.tif │ ├── BeachSand_normal.tif.meta │ ├── BeachSand_wet_basecolor.tif │ ├── BeachSand_wet_basecolor.tif.meta │ ├── Bush.tif │ ├── Bush.tif.meta │ ├── Bush_basecolor.tif │ ├── Bush_basecolor.tif.meta │ ├── Bush_norm.tif │ ├── Bush_norm.tif.meta │ ├── Bush_normal.tif │ ├── Bush_normal.tif.meta │ ├── Materials.meta │ ├── Materials │ │ ├── BeachSand_basecolor.mat │ │ ├── BeachSand_basecolor.mat.meta │ │ ├── SandRocks_basecolor.mat │ │ └── SandRocks_basecolor.mat.meta │ ├── RockPlants_basecolor.tif │ ├── RockPlants_basecolor.tif.meta │ ├── RockPlants_normal.tif │ ├── RockPlants_normal.tif.meta │ ├── SandRocks_basecolor.tif │ ├── SandRocks_basecolor.tif.meta │ ├── SandRocks_normal.tif │ └── SandRocks_normal.tif.meta │ ├── Trees_Albedo.png │ ├── Trees_Albedo.png.meta │ ├── Trees_Normal_Smoothness.tif │ ├── Trees_Normal_Smoothness.tif.meta │ ├── Water Normal.png │ └── Water Normal.png.meta ├── LICENSE.md ├── 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 ├── Packages │ ├── com.unity.polybrush │ │ └── Settings.json │ ├── com.unity.probuilder │ │ └── Settings.json │ └── com.unity.settings-manager │ │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── Third Party Notices.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/3DGamekit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/3DGameKit_Third-PartyNotice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/3DGameKit_Third-PartyNotice.txt -------------------------------------------------------------------------------- /Assets/3DGamekit/3DGameKit_Third-PartyNotice.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/3DGameKit_Third-PartyNotice.txt.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/GroudCover01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/GroudCover01.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/GroudCover01.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/GroudCover01.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/GroudCover02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/GroudCover02.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/GroudCover02.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/GroudCover02.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Mud_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Mud_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Mud_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Mud_Mat.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Chunk01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Chunk01.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Chunk01.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Chunk01.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig01.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig01.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig01.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig02.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig02.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig02.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig03.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig03.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig03.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_CliffBig03.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Floating04.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Floating04.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Floating04.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Floating04.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Ledge01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Ledge01.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Ledge01.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Ledge01.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Small.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Small.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Small.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Small.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Small_white.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Small_white.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Small_white.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Small_white.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Swamp01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Swamp01.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/DemoMaterials/Rock_Swamp01.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/DemoMaterials/Rock_Swamp01.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_01_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_01_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_01_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_01_Mat.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_02_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_02_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_02_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_02_Mat.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_03_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_03_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_03_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_03_Mat.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_04_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_04_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_04_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_04_Mat.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_05_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_05_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_05_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Materials/Skybox/Clouds/Cloud_05_Mat.mat.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Monuments.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Monuments.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Monuments/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Monuments/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Monuments/Monument01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Monuments/Monument01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Monuments/Monument01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Monuments/Monument01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig03.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig03.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffBig03.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge03.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge03.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge03.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge04.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge04.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge04.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/CliffEdge04.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ground_Chunk_02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Materials/Ridge01_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Materials/Ridge01_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Materials/Ridge02_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Materials/Ridge02_Mat.mat -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ridge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ridge01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ridge01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ridge01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ridge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ridge02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/Ridge02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/Ridge02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockChunk01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockChunk01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockChunk01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockChunk01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating03.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating03.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating03.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating04.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating04.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating04.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockFloating04.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockLedge02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockSwamp01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockSwamp01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/RockSwamp01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/RockSwamp01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01_white.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01_white.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01_white.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock01_white.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02_white.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02_white.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02_white.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock02_white.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03_white.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03_white.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03_white.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/SmallRock03_white.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/waterFall_mesh01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/waterFall_mesh01.obj -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Rock/waterFall_mesh01.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Rock/waterFall_mesh01.obj.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/AlienStatue.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/AlienStatue.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/AlienStatue.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/AlienStatue.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/Collision.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/Collision.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/DoorHuge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/DoorHuge01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/DoorHuge01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/DoorHuge01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/FloorCircular01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/FloorCircular01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/FloorCircular02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/FloorCircular02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/FloorCircular03.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/FloorCircular03.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/FloorPanel1x1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/FloorPanel1x1.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/FloorPanel2x1.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/FloorPanel2x1.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/FloorPanel2x2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/FloorPanel2x2.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/GateHuge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/GateHuge01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/GateHuge01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/GateHuge01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformDetail.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformDetail.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformEdge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformEdge01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformEdge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformEdge02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformLong.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformLong.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformLong.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformLong.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformShort.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/PlatformShort.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/SmallDoor.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/SmallDoor.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/SmallDoor.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/SmallDoor.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/StairsCircular01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/StairsCircular01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/StairsExtension.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/StairsExtension.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/StairsExtensionR.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/StairsExtensionR.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/StairsNarrow01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/StairsNarrow01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/StairsWide01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/StairsWide01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/StairsWide01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/StairsWide01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallCorner02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallCorner02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallCorner02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallCorner02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallCornerL01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallCornerL01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallCornerR01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallCornerR01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallHuge02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong01Broken.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong01Broken.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong02Broken.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallLong02Broken.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallLongBroken01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallLongBroken01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort01.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort01.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort02.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort02.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort02.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallShort02.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallTallCorner01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallTallCorner01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallTallLong01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallTallLong01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/Stonework/WallTallShort01.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/Stonework/WallTallShort01.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationLarge.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationLarge.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationLarge/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationLarge/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationMedium.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationMedium.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationMedium/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationMedium/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationSmall.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationSmall.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationSmall/Fungus.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationSmall/Fungus.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationSmall/Fungus.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationSmall/Fungus.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationSmall/FungusClump.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationSmall/FungusClump.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationSmall/HangingVine.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationSmall/HangingVine.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/VegetationSmall/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/VegetationSmall/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/WaterDisc.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/WaterDisc.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/WaterDisc.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/WaterDisc.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/WaterPlane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/WaterPlane.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Environment/WaterPlane.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Environment/WaterPlane.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Skybox.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Skybox.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Skybox/CloudPlane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Skybox/CloudPlane.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Skybox/CloudPlane.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Skybox/CloudPlane.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Skybox/DistantTerrain.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Skybox/DistantTerrain.fbx -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Models/Skybox/DistantTerrain.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Models/Skybox/DistantTerrain.fbx.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Shaders.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Shaders/DepthOnly.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Shaders/DepthOnly.shader -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Shaders/DepthOnly.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Shaders/DepthOnly.shader.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Acid_Gradient.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Acid_Gradient.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Acid_Gradient.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Acid_Gradient.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Acid_Smoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Acid_Smoothness.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Acid_Smoothness.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Acid_Smoothness.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Acid_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Acid_normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Acid_normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Acid_normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Clouds_Noise.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Clouds_Noise.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Clouds_Noise.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Clouds_Noise.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Cutscene_LensDirt.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Cutscene_LensDirt.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Cutscene_LensDirt.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Cutscene_LensDirt.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/DissolveBits_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/DustPuffSmallParticleSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/DustPuffSmallParticleSheet.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/DustPuff_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/DustPuff_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/DustPuff_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/DustPuff_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Enemy_SpriteSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Enemy_SpriteSheet.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Enemy_SpriteSheet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Enemy_SpriteSheet.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Flare_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Flare_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Flare_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Flare_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Foam 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Foam 1.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Foam 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Foam 1.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Foam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Foam.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Foam.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Foam.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/HardRound_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/HardRound_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/HardRound_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/HardRound_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Hit_Efect02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Hit_Efect02.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Hit_Efect02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Hit_Efect02.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Hit_Effect01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Hit_Effect01.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Hit_Effect01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Hit_Effect01.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Hit_Effect03.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Hit_Effect03.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Hit_Effect03.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Hit_Effect03.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Lava_Gradient.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Lava_Gradient.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Lava_Gradient.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Lava_Gradient.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/LightRay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/LightRay.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/LightRay.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/LightRay.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Lightning.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Lightning.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Lightning.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Lightning.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Lightning.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Lightning.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Lightning.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Mote_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Mote_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Mote_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Mote_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/PlasmaDistortion_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/PlasmaDistortion_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/PlasmaDistortion_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/PlasmaDistortion_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/RGB.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/RGB.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/RGB.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/RGB.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Ramp.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Ramp.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Ramp.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/RespawnCircle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/RespawnCircle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/RespawnCircle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/RespawnCircle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Ripple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Ripple.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Ripple.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Ripple.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngine01_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngine01_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngine01_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngine01_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngine02_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngine02_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngine02_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngine02_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle2.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle2.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShipEngineParticle2.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShockWave01.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShockWave01.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShockWave01.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShockWave01.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShockWave02.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShockWave02.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ShockWave02.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ShockWave02.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmallClumps_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokeParticle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokeParticle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokeParticle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokeParticle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokePuff_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokeTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokeTest.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SmokeTest.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SmokeTest.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Spark_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Spark_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Spark_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Spark_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient01.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient01.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient01.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient01.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient02.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient02.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient02.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Staff_Gradient02.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Staff_SpecRamp.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Staff_SpecRamp.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Staff_SpecRamp.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Staff_SpecRamp.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SwishGradient.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SwishGradient.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/SwishGradient.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/SwishGradient.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Swish_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Swish_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Swish_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Swish_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/TinyStonesParticleSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/TinyStonesParticleSheet.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/TinyStonesParticleSheet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/TinyStonesParticleSheet.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/TinyStones_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/TinyStones_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/TinyStones_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/TinyStones_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Particle.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Particle.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Particle.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/WhiteCloud_Particle.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/White_Noise.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/White_Noise.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/White_Noise.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/White_Noise.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Wind_Noise.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Wind_Noise.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/Wind_Noise.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/Wind_Noise.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/WispySmoke02_8x8.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/WispySmoke02_8x8.tga -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/WispySmoke02_8x8.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/WispySmoke02_8x8.tga.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ground_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ground_noise.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ground_noise.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ground_noise.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/points.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/points.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/points.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/points.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ripples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ripples.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/ripples.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/ripples.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/smokeTwirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/smokeTwirl.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/smokeTwirl.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/smokeTwirl.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/texture (31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/texture (31).png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/texture (31).png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/texture (31).png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/texture (34).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/texture (34).png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/texture (34).png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/texture (34).png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/verticalGradient.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/verticalGradient.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Effects/verticalGradient.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Effects/verticalGradient.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Materials.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Height.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Height.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Height.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Height.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal1.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal1.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Moss_Normal1.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/MuddyGround_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/MuddyGround_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/MuddyGround_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/MuddyGround_normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/SmallStones_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/SmallStones_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/SmallStones_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/SmallStones_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/WaterMoss_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/WaterMoss_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Water_Spec.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Water_Spec.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Ground/Water_Spec.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Ground/Water_Spec.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig01_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig01_Occlusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig01_Occlusion.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig02_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig02_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig02_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig02_Occlusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig02_Occlusion.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig03_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig03_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig03_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig03_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig03_Occlusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffBig03_Occlusion.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge01_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge02_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge02_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge02_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge03_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge03_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge03_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge03_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge04_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge04_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge04_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/CliffEdge04_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Monument01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Monument01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Monument01_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Monument01_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Monument01_Occlusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Monument01_Occlusion.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Normals.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Normals.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Occlusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge01_Occlusion.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Normals.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Normals.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Occlusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/Ridge02_Occlusion.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockChunk01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockChunk01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockChunk01_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockChunk01_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockDetail_Curvature.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockDetail_Curvature.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockDetail_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockDetail_normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge01_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge02_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge02_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockLedge02_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockSwamp01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockSwamp01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/RockSwamp01_Normals.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/RockSwamp01_Normals.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/SmallRock_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/SmallRock_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/SmallRock_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/SmallRock_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Occlusion.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Occlusion.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Rumba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Rumba.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Rumba.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Rock/TiledRock_Rumba.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Stonework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Stonework.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Stonework/Platform_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Stonework/Platform_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Stonework/Platform_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Stonework/Platform_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall01_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall01_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall01_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall01_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall02_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall02_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall02_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/Stonework/Wall02_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/VegetationLarge.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/VegetationLarge.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/VegetationMedium.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/VegetationMedium.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Environment/VegetationSmall.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Environment/VegetationSmall.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 1.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 1.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 2.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 2.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 3.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 3.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 4.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 4.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 5.png -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Cloud 5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Cloud 5.png.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_Albedo.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_Clouds.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_Clouds.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_Clouds.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_Clouds.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_MetallicRoughness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_MetallicRoughness.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_MetallicRoughness.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_MetallicRoughness.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_Normal.tif -------------------------------------------------------------------------------- /Assets/3DGamekit/Art/Textures/Skybox/Planet_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Art/Textures/Skybox/Planet_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Prefabs.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Prefabs/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Prefabs/Environment.meta -------------------------------------------------------------------------------- /Assets/3DGamekit/Prefabs/Environment/Clouds.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Prefabs/Environment/Clouds.prefab -------------------------------------------------------------------------------- /Assets/3DGamekit/Prefabs/Environment/Clouds.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/3DGamekit/Prefabs/Environment/Clouds.prefab.meta -------------------------------------------------------------------------------- /Assets/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment.meta -------------------------------------------------------------------------------- /Assets/Environment/DetailMap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/DetailMap.meta -------------------------------------------------------------------------------- /Assets/Environment/DetailMap/DeadTrunk_Tile01_Detail.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/DetailMap/DeadTrunk_Tile01_Detail.tif -------------------------------------------------------------------------------- /Assets/Environment/DetailMap/DeadTrunk_Tile01_Detail.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/DetailMap/DeadTrunk_Tile01_Detail.tif.meta -------------------------------------------------------------------------------- /Assets/Environment/Vegetation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation.meta -------------------------------------------------------------------------------- /Assets/Environment/Vegetation/Trees.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation/Trees.meta -------------------------------------------------------------------------------- /Assets/Environment/Vegetation/Trees/Generic_Trunk.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation/Trees/Generic_Trunk.meta -------------------------------------------------------------------------------- /Assets/Environment/Vegetation/Trees/Generic_Trunk/tree_013.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation/Trees/Generic_Trunk/tree_013.meta -------------------------------------------------------------------------------- /Assets/Environment/Vegetation/Trees/Generic_Trunk/wood02.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation/Trees/Generic_Trunk/wood02.meta -------------------------------------------------------------------------------- /Assets/Environment/Vegetation/Trees/Pines.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation/Trees/Pines.meta -------------------------------------------------------------------------------- /Assets/Environment/Vegetation/Trees/Pines/Scots_Pine_a_bark.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation/Trees/Pines/Scots_Pine_a_bark.mat -------------------------------------------------------------------------------- /Assets/Environment/Vegetation/Trees/Pines/Scots_Pine_a_bark.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Environment/Vegetation/Trees/Pines/Scots_Pine_a_bark.mat.meta -------------------------------------------------------------------------------- /Assets/Gizmos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Gizmos.meta -------------------------------------------------------------------------------- /Assets/Gizmos/Cinemachine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Gizmos/Cinemachine.meta -------------------------------------------------------------------------------- /Assets/Gizmos/Cinemachine/cm_logo_lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Gizmos/Cinemachine/cm_logo_lg.png -------------------------------------------------------------------------------- /Assets/Gizmos/Cinemachine/cm_logo_lg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Gizmos/Cinemachine/cm_logo_lg.png.meta -------------------------------------------------------------------------------- /Assets/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Images.meta -------------------------------------------------------------------------------- /Assets/Images/MasterStackDemo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Images/MasterStackDemo.PNG -------------------------------------------------------------------------------- /Assets/Images/MasterStackDemo.PNG.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Images/MasterStackDemo.PNG.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Bushes.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Bushes.mat -------------------------------------------------------------------------------- /Assets/Materials/Bushes.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Bushes.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Demo_Cloud.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_Cloud.mat -------------------------------------------------------------------------------- /Assets/Materials/Demo_Cloud.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_Cloud.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Demo_Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_Skybox.mat -------------------------------------------------------------------------------- /Assets/Materials/Demo_Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Demo_WaterFall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_WaterFall.mat -------------------------------------------------------------------------------- /Assets/Materials/Demo_WaterFall.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_WaterFall.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Demo_WaterFall_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_WaterFall_1.mat -------------------------------------------------------------------------------- /Assets/Materials/Demo_WaterFall_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_WaterFall_1.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Demo_WaterFall_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_WaterFall_2.mat -------------------------------------------------------------------------------- /Assets/Materials/Demo_WaterFall_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_WaterFall_2.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Demo_Water_Ocean.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_Water_Ocean.mat -------------------------------------------------------------------------------- /Assets/Materials/Demo_Water_Ocean.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Materials/Demo_Water_Ocean.mat.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Bowl.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Bowl.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Bowl.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Bowl.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Effects.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Effects.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Effects.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Effects.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Fbx_IslandWater.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Fbx_IslandWater.FBX -------------------------------------------------------------------------------- /Assets/Prefabs/Fbx_IslandWater.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Fbx_IslandWater.FBX.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Rocks.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Rocks.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Rocks.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Rocks.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Sand_SmallRocks.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Sand_SmallRocks.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Sand_SmallRocks.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Sand_SmallRocks.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Sand_base.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Sand_base.obj -------------------------------------------------------------------------------- /Assets/Prefabs/Sand_base.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Sand_base.obj.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Bush_Large_01.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Bush_Large_01.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Bush_Large_01.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Bush_Large_01.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/BroadleafShrub_01.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/BroadleafShrub_01.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/BushTwig_01.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/BushTwig_01.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Clover_01.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Clover_01.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Clover_01/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Clover_01/Materials.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Dead_Grass_02.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Dead_Grass_02.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Dead_Plant_03.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Dead_Plant_03.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Fern_var01.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Fern_var01.FBX -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Fern_var02.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Fern_var02.FBX -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Fern_var03.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Fern_var03.FBX -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Ferns/Materials.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/GreenBush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/GreenBush.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/GreenBush/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/GreenBush/Materials.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Juniper_Bush_01.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/Juniper_Bush_01.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/MeadowGrass_01.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/MeadowGrass_01.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/RedBush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/RedBush.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/RedBush/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/RedBush/Materials.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Forest-quixel/RedBush/RedBush_Var1.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Forest-quixel/RedBush/RedBush_Var1.FBX -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Plants.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Plants.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_b.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_b.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_b/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_b/Materials.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_qilgP2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_qilgP2.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_qilgY2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Bush_qilgY2.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Plant_Perennials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Plants/Plant_Perennials.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Rocks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Rocks.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Rocks/TilingSurfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Rocks/TilingSurfaces.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/TerrainTextures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/TerrainTextures.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Branch_pjxuR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Branch_pjxuR.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_M_qdtdP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_M_qdtdP.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_qdhxa.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_qdhxa.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_rfgxx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_rfgxx.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_rfixH.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_rfixH.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_rhfdj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Log_rhfdj.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Root_rkswd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/Vegetation/Quixel/Megascans/Wood/Wood_Root_rkswd.meta -------------------------------------------------------------------------------- /Assets/Prefabs/WaterDom.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/WaterDom.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/WaterDom.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/WaterDom.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/WaterFall_01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/WaterFall_01.obj -------------------------------------------------------------------------------- /Assets/Prefabs/WaterFall_01.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/WaterFall_01.obj.meta -------------------------------------------------------------------------------- /Assets/Prefabs/WaterFall_02.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/WaterFall_02.obj -------------------------------------------------------------------------------- /Assets/Prefabs/WaterFall_02.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Prefabs/WaterFall_02.obj.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene.meta -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene/Global Volume Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene/Global Volume Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene/Global Volume Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene/Global Volume Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene/LightingData.asset -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene/LightingData.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Assets/Scenes/MasterStackDemoScene/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scenes/MasterStackDemoScene/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Skybox3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scripts/Skybox3D.cs -------------------------------------------------------------------------------- /Assets/Scripts/Skybox3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Scripts/Skybox3D.cs.meta -------------------------------------------------------------------------------- /Assets/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/ComplexVegetation.ShaderGraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/ComplexVegetation.ShaderGraph -------------------------------------------------------------------------------- /Assets/Shaders/ComplexVegetation.ShaderGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/ComplexVegetation.ShaderGraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/DemoLighting.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/DemoLighting.hlsl -------------------------------------------------------------------------------- /Assets/Shaders/DemoLighting.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/DemoLighting.hlsl.meta -------------------------------------------------------------------------------- /Assets/Shaders/Demo_Water.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Demo_Water.shadergraph -------------------------------------------------------------------------------- /Assets/Shaders/Demo_Water.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Demo_Water.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Demo_WaterFall.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Demo_WaterFall.shadergraph -------------------------------------------------------------------------------- /Assets/Shaders/Demo_WaterFall.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Demo_WaterFall.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/.DS_Store -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/ConvertToVector.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/ConvertToVector.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/ConvertToVector.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/ConvertToVector.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/ImposterTest.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/ImposterTest.shadergraph -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/ImposterTest.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/ImposterTest.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/OctoImposter.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/OctoImposter.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/OctoImposter.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/OctoImposter.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Palm_01_Impostor.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Palm_01_Impostor.mesh -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Palm_01_Impostor.mesh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Palm_01_Impostor.mesh.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Palm_01_Impostor_AlbedoAlpha.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Palm_01_Impostor_AlbedoAlpha.tga -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Palm_01_Impostor_AlbedoAlpha.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Palm_01_Impostor_AlbedoAlpha.tga.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Palm_01_Impostor_NormalDepth.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Palm_01_Impostor_NormalDepth.tga -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Palm_01_Impostor_NormalDepth.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Palm_01_Impostor_NormalDepth.tga.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/PlaneIntersection.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/PlaneIntersection.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/PlaneIntersection.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/PlaneIntersection.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Shader Graphs_ImposterTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Shader Graphs_ImposterTest.mat -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/Shader Graphs_ImposterTest.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/Shader Graphs_ImposterTest.mat.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/VectortoHemiOctahedron.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/VectortoHemiOctahedron.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/VectortoHemiOctahedron.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/VectortoHemiOctahedron.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/VectortoOctahedron.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/VectortoOctahedron.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/Imposters/VectortoOctahedron.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Imposters/VectortoOctahedron.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/SimpleVegetation.ShaderGraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/SimpleVegetation.ShaderGraph -------------------------------------------------------------------------------- /Assets/Shaders/SimpleVegetation.ShaderGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/SimpleVegetation.ShaderGraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Skybox-Procedural-Universal.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Skybox-Procedural-Universal.shader -------------------------------------------------------------------------------- /Assets/Shaders/Skybox-Procedural-Universal.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Skybox-Procedural-Universal.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/SkyboxCubemap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/SkyboxCubemap.shader -------------------------------------------------------------------------------- /Assets/Shaders/SkyboxCubemap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/SkyboxCubemap.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/StandardShader.ShaderGraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/StandardShader.ShaderGraph -------------------------------------------------------------------------------- /Assets/Shaders/StandardShader.ShaderGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/StandardShader.ShaderGraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/CustomTerrain.ShaderGraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/CustomTerrain.ShaderGraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/CustomTerrain.ShaderGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/CustomTerrain.ShaderGraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/DebugShaderGraph.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/DebugShaderGraph.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/DebugShaderGraph.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/DebugShaderGraph.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/DitherCrossfade.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/DitherCrossfade.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/DitherCrossfade.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/DitherCrossfade.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/PBR_HUE.ShaderGraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/PBR_HUE.ShaderGraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/PBR_HUE.ShaderGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/PBR_HUE.ShaderGraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/RaceBoatLiveryMixer.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/RaceBoatLiveryMixer.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/RaceBoatLiveryMixer.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/RaceBoatLiveryMixer.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/RaceBoats.ShaderGraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/RaceBoats.ShaderGraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/RaceBoats.ShaderGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/RaceBoats.ShaderGraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/SmoothCurve.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/SmoothCurve.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/SmoothCurve.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/SmoothCurve.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/SmoothTriangleWave.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/SmoothTriangleWave.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/SmoothTriangleWave.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/SmoothTriangleWave.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/SplatMixer.ShaderSubGraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/SplatMixer.ShaderSubGraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/SplatMixer.ShaderSubGraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/SplatMixer.ShaderSubGraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/TriangleWave.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/TriangleWave.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/TriangleWave.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/TriangleWave.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/Z_Reconstruction.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/Z_Reconstruction.shadersubgraph -------------------------------------------------------------------------------- /Assets/Shaders/UtilityGraphs/Z_Reconstruction.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/UtilityGraphs/Z_Reconstruction.shadersubgraph.meta -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders.meta -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/InputSurfaceVegetation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/InputSurfaceVegetation.hlsl -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/InputSurfaceVegetation.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/InputSurfaceVegetation.hlsl.meta -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/LODCrossfade.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/LODCrossfade.hlsl -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/LODCrossfade.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/LODCrossfade.hlsl.meta -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/LWVegetationShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/LWVegetationShader.shader -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/LWVegetationShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/LWVegetationShader.shader.meta -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/ShadowPassVegetation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/ShadowPassVegetation.hlsl -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/ShadowPassVegetation.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/ShadowPassVegetation.hlsl.meta -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/Vegetation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/Vegetation.hlsl -------------------------------------------------------------------------------- /Assets/Shaders/Vegetation Shaders/Vegetation.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/Shaders/Vegetation Shaders/Vegetation.hlsl.meta -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/UniversalRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/UniversalRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset_Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/UniversalRenderPipelineAsset_Renderer.asset -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset_Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/UniversalRenderPipelineAsset_Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures.meta -------------------------------------------------------------------------------- /Assets/textures/Island.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island.meta -------------------------------------------------------------------------------- /Assets/textures/Island/BushTest.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/BushTest.tif -------------------------------------------------------------------------------- /Assets/textures/Island/BushTest.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/BushTest.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Island/BushTest_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/BushTest_norm.png -------------------------------------------------------------------------------- /Assets/textures/Island/BushTest_norm.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/BushTest_norm.png.meta -------------------------------------------------------------------------------- /Assets/textures/Island/LightShaft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/LightShaft.png -------------------------------------------------------------------------------- /Assets/textures/Island/LightShaft.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/LightShaft.png.meta -------------------------------------------------------------------------------- /Assets/textures/Island/Rock_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/Rock_normal.tif -------------------------------------------------------------------------------- /Assets/textures/Island/Rock_normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/Rock_normal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Island/seaweedtemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/seaweedtemp.png -------------------------------------------------------------------------------- /Assets/textures/Island/seaweedtemp.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Island/seaweedtemp.png.meta -------------------------------------------------------------------------------- /Assets/textures/Moss_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Moss_Albedo.tif -------------------------------------------------------------------------------- /Assets/textures/Moss_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Moss_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Moss_MetallicSmooth.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Moss_MetallicSmooth.tif -------------------------------------------------------------------------------- /Assets/textures/Moss_MetallicSmooth.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Moss_MetallicSmooth.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Moss_Normal1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Moss_Normal1.tif -------------------------------------------------------------------------------- /Assets/textures/Moss_Normal1.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Moss_Normal1.tif.meta -------------------------------------------------------------------------------- /Assets/textures/MuddyGround_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/MuddyGround_Albedo.tif -------------------------------------------------------------------------------- /Assets/textures/MuddyGround_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/MuddyGround_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/MuddyGround_MetallicSmooth.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/MuddyGround_MetallicSmooth.tif -------------------------------------------------------------------------------- /Assets/textures/MuddyGround_MetallicSmooth.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/MuddyGround_MetallicSmooth.tif.meta -------------------------------------------------------------------------------- /Assets/textures/MuddyGround_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/MuddyGround_normal.tif -------------------------------------------------------------------------------- /Assets/textures/MuddyGround_normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/MuddyGround_normal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/NormalMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/NormalMap.png -------------------------------------------------------------------------------- /Assets/textures/NormalMap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/NormalMap.png.meta -------------------------------------------------------------------------------- /Assets/textures/SmallStones_Albedo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/SmallStones_Albedo.tif -------------------------------------------------------------------------------- /Assets/textures/SmallStones_Albedo.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/SmallStones_Albedo.tif.meta -------------------------------------------------------------------------------- /Assets/textures/SmallStones_MetallicSmooth.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/SmallStones_MetallicSmooth.tif -------------------------------------------------------------------------------- /Assets/textures/SmallStones_MetallicSmooth.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/SmallStones_MetallicSmooth.tif.meta -------------------------------------------------------------------------------- /Assets/textures/SmallStones_Normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/SmallStones_Normal.tif -------------------------------------------------------------------------------- /Assets/textures/SmallStones_Normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/SmallStones_Normal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/BeachSand_basecolor.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/BeachSand_basecolor.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/BeachSand_basecolor.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/BeachSand_basecolor.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/BeachSand_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/BeachSand_normal.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/BeachSand_normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/BeachSand_normal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/BeachSand_wet_basecolor.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/BeachSand_wet_basecolor.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/BeachSand_wet_basecolor.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/BeachSand_wet_basecolor.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush_basecolor.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush_basecolor.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush_basecolor.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush_basecolor.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush_norm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush_norm.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush_norm.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush_norm.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush_normal.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/Bush_normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Bush_normal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Materials.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/Materials/BeachSand_basecolor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Materials/BeachSand_basecolor.mat -------------------------------------------------------------------------------- /Assets/textures/Terrain/Materials/BeachSand_basecolor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Materials/BeachSand_basecolor.mat.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/Materials/SandRocks_basecolor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Materials/SandRocks_basecolor.mat -------------------------------------------------------------------------------- /Assets/textures/Terrain/Materials/SandRocks_basecolor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/Materials/SandRocks_basecolor.mat.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/RockPlants_basecolor.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/RockPlants_basecolor.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/RockPlants_basecolor.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/RockPlants_basecolor.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/RockPlants_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/RockPlants_normal.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/RockPlants_normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/RockPlants_normal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/SandRocks_basecolor.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/SandRocks_basecolor.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/SandRocks_basecolor.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/SandRocks_basecolor.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Terrain/SandRocks_normal.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/SandRocks_normal.tif -------------------------------------------------------------------------------- /Assets/textures/Terrain/SandRocks_normal.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Terrain/SandRocks_normal.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Trees_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Trees_Albedo.png -------------------------------------------------------------------------------- /Assets/textures/Trees_Albedo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Trees_Albedo.png.meta -------------------------------------------------------------------------------- /Assets/textures/Trees_Normal_Smoothness.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Trees_Normal_Smoothness.tif -------------------------------------------------------------------------------- /Assets/textures/Trees_Normal_Smoothness.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Trees_Normal_Smoothness.tif.meta -------------------------------------------------------------------------------- /Assets/textures/Water Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Water Normal.png -------------------------------------------------------------------------------- /Assets/textures/Water Normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Assets/textures/Water Normal.png.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.polybrush/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/Packages/com.unity.polybrush/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.probuilder/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/Packages/com.unity.probuilder/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.settings-manager/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/Packages/com.unity.settings-manager/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/README.md -------------------------------------------------------------------------------- /Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/ShaderGraph-MasterStack-Samples/HEAD/Third Party Notices.md --------------------------------------------------------------------------------