com.warwlock.mtree 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/npm.yml +19 -0
- package/CHANGELOG.md +17 -0
- package/CHANGELOG.md.meta +7 -0
- package/Documentation~/Documentation.md +3 -0
- package/Editor/BranchEditor.cs +545 -0
- package/Editor/BranchEditor.cs.meta +16 -0
- package/Editor/EditorCallbacks.cs +69 -0
- package/Editor/EditorCallbacks.cs.meta +11 -0
- package/Editor/MTree.Editor.asmdef +18 -0
- package/Editor/MTree.Editor.asmdef.meta +7 -0
- package/Editor/MenuItem.cs +31 -0
- package/Editor/MenuItem.cs.meta +11 -0
- package/Editor/MtreeBezierInspector.cs +161 -0
- package/Editor/MtreeBezierInspector.cs.meta +11 -0
- package/Editor/MtreeEditor.cs +434 -0
- package/Editor/MtreeEditor.cs.meta +11 -0
- package/Editor/TemplateInspector.cs +66 -0
- package/Editor/TemplateInspector.cs.meta +12 -0
- package/Editor/ValuesEditor.cs +18 -0
- package/Editor/ValuesEditor.cs.meta +11 -0
- package/Editor/VertexColorAdjustmentEditor.cs +169 -0
- package/Editor/VertexColorAdjustmentEditor.cs.meta +11 -0
- package/Editor.meta +8 -0
- package/LICENSE +21 -0
- package/LICENSE.meta +7 -0
- package/README.md +68 -0
- package/README.md.meta +7 -0
- package/Resources/Mtree/MtreeBillboardCamera.prefab +204 -0
- package/Resources/Mtree/MtreeBillboardCamera.prefab.meta +8 -0
- package/Resources/Mtree/Sprites/DeleteCrossSprite.png +0 -0
- package/Resources/Mtree/Sprites/DeleteCrossSprite.png.meta +116 -0
- package/Resources/Mtree/Sprites/TreeFunctionSprite.png +0 -0
- package/Resources/Mtree/Sprites/TreeFunctionSprite.png.meta +116 -0
- package/Resources/Mtree/Sprites/TreeFunctionSpriteSelected.psd +0 -0
- package/Resources/Mtree/Sprites/TreeFunctionSpriteSelected.psd.meta +116 -0
- package/Resources/Mtree/Sprites.meta +8 -0
- package/Resources/Mtree/Vertex Color Editor/Mtree Vertex Color GameObject.prefab +104 -0
- package/Resources/Mtree/Vertex Color Editor/Mtree Vertex Color GameObject.prefab.meta +7 -0
- package/Resources/Mtree/Vertex Color Editor.meta +8 -0
- package/Resources/Mtree/branches.fbx +0 -0
- package/Resources/Mtree/branches.fbx.meta +137 -0
- package/Resources/Mtree.meta +8 -0
- package/Resources.meta +8 -0
- package/Runtime/AO/DensityAO.cs +203 -0
- package/Runtime/AO/DensityAO.cs.meta +11 -0
- package/Runtime/AO/KDTree.cs +169 -0
- package/Runtime/AO/KDTree.cs.meta +11 -0
- package/Runtime/AO/WeightedRandom.cs +74 -0
- package/Runtime/AO/WeightedRandom.cs.meta +11 -0
- package/Runtime/AO.meta +8 -0
- package/Runtime/Bezier/Bezier.cs +69 -0
- package/Runtime/Bezier/Bezier.cs.meta +11 -0
- package/Runtime/Bezier/MtreeBezier.cs +185 -0
- package/Runtime/Bezier/MtreeBezier.cs.meta +11 -0
- package/Runtime/Bezier.meta +8 -0
- package/Runtime/ExampleSceneManager.cs +165 -0
- package/Runtime/ExampleSceneManager.cs.meta +11 -0
- package/Runtime/LODValues.cs +44 -0
- package/Runtime/LODValues.cs.meta +11 -0
- package/Runtime/LeafPoint.cs +135 -0
- package/Runtime/LeafPoint.cs.meta +11 -0
- package/Runtime/MTree.Runtime.asmdef +3 -0
- package/Runtime/MTree.Runtime.asmdef.meta +7 -0
- package/Runtime/MTree.cs +569 -0
- package/Runtime/MTree.cs.meta +11 -0
- package/Runtime/MtreeComponent.cs +482 -0
- package/Runtime/MtreeComponent.cs.meta +11 -0
- package/Runtime/MtreeVariables.cs +11 -0
- package/Runtime/MtreeVariables.cs.meta +11 -0
- package/Runtime/MtreeWind.cs +94 -0
- package/Runtime/MtreeWind.cs.meta +11 -0
- package/Runtime/Node.cs +331 -0
- package/Runtime/Node.cs.meta +11 -0
- package/Runtime/SimplexNoise.cs +166 -0
- package/Runtime/SimplexNoise.cs.meta +11 -0
- package/Runtime/Splines.cs +379 -0
- package/Runtime/Splines.cs.meta +11 -0
- package/Runtime/TreeBilboard.cs +290 -0
- package/Runtime/TreeBilboard.cs.meta +11 -0
- package/Runtime/TreeFunctions/BranchFunction.cs +92 -0
- package/Runtime/TreeFunctions/BranchFunction.cs.meta +11 -0
- package/Runtime/TreeFunctions/GrowFunction.cs +81 -0
- package/Runtime/TreeFunctions/GrowFunction.cs.meta +11 -0
- package/Runtime/TreeFunctions/LeafFunction.cs +111 -0
- package/Runtime/TreeFunctions/LeafFunction.cs.meta +11 -0
- package/Runtime/TreeFunctions/RootsFunction.cs +77 -0
- package/Runtime/TreeFunctions/RootsFunction.cs.meta +11 -0
- package/Runtime/TreeFunctions/SplitFunction.cs +50 -0
- package/Runtime/TreeFunctions/SplitFunction.cs.meta +11 -0
- package/Runtime/TreeFunctions/TreeFunctionAsset.cs +105 -0
- package/Runtime/TreeFunctions/TreeFunctionAsset.cs.meta +11 -0
- package/Runtime/TreeFunctions/TrunkFunction.cs +88 -0
- package/Runtime/TreeFunctions/TrunkFunction.cs.meta +11 -0
- package/Runtime/TreeFunctions.meta +8 -0
- package/Runtime/TreePoint.cs +27 -0
- package/Runtime/TreePoint.cs.meta +11 -0
- package/Runtime/TreeTemplate.cs +50 -0
- package/Runtime/TreeTemplate.cs.meta +12 -0
- package/Runtime/Utils.cs +268 -0
- package/Runtime/Utils.cs.meta +11 -0
- package/Runtime/VSProIntegration.cs +132 -0
- package/Runtime/VSProIntegration.cs.meta +11 -0
- package/Runtime.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Birch.asset +364 -0
- package/Samples~/ExampleTemplates/Examples/Birch.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Bush.asset +385 -0
- package/Samples~/ExampleTemplates/Examples/Bush.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Eastern Pine.asset +482 -0
- package/Samples~/ExampleTemplates/Examples/Eastern Pine.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/FantasyTree.asset +406 -0
- package/Samples~/ExampleTemplates/Examples/FantasyTree.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Fern.asset +291 -0
- package/Samples~/ExampleTemplates/Examples/Fern.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/High Poly.asset +300 -0
- package/Samples~/ExampleTemplates/Examples/High Poly.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/LightingData.asset +0 -0
- package/Samples~/ExampleTemplates/Examples/LightingData.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch Outline.mat +196 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch Outline.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch.mat +196 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Fern.mat +181 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Fern.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark HighPoly.mat +201 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark HighPoly.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Oak.mat +208 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Oak.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Palm.mat +180 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Palm.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Pine.mat +206 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Pine.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Ponderossa.mat +206 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Ponderossa.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Poplar.mat +172 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Poplar.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Bark.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Example Scene/Floor.mat +392 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Example Scene/Floor.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Example Scene.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Fern.mat +202 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Fern.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs HighPoly.mat +265 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs HighPoly.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Needles.mat +267 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Needles.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palm.mat +232 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palm.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palmate.mat +250 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palmate.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Pine.mat +247 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Pine.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Poplar.mat +223 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Poplar.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate Outline.mat +262 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate Outline.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate.mat +281 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Stone Pine.mat +267 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Stone Pine.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Willow.mat +236 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Willow.mat.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials/Leafs.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Materials.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Oak.asset +364 -0
- package/Samples~/ExampleTemplates/Examples/Oak.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Old Oak.asset +364 -0
- package/Samples~/ExampleTemplates/Examples/Old Oak.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Palm.asset +500 -0
- package/Samples~/ExampleTemplates/Examples/Palm.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Pine 2.asset +387 -0
- package/Samples~/ExampleTemplates/Examples/Pine 2.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Pine.asset +405 -0
- package/Samples~/ExampleTemplates/Examples/Pine.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Ponderossa Pine.asset +478 -0
- package/Samples~/ExampleTemplates/Examples/Ponderossa Pine.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Poplar.asset +309 -0
- package/Samples~/ExampleTemplates/Examples/Poplar.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/ReflectionProbe-0.exr +0 -0
- package/Samples~/ExampleTemplates/Examples/ReflectionProbe-0.exr.meta +117 -0
- package/Samples~/ExampleTemplates/Examples/Small Pine.asset +273 -0
- package/Samples~/ExampleTemplates/Examples/Small Pine.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Small Tree.asset +364 -0
- package/Samples~/ExampleTemplates/Examples/Small Tree.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_C.png.meta +74 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_C.png.meta +116 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_N.png.meta +116 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_C.png.meta +132 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_N.png.meta +116 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_2_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_2_C.png.meta +132 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_C.png.meta +132 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_N.png.meta +116 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_C.png.meta +132 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_N.png.meta +116 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_C.png.meta +74 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_C.png.meta +74 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_N.bmp +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_N.bmp.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_C.png.meta +74 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Bark.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_C.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_C.png.meta +99 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_C.png.meta +99 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_C.png.meta +88 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_C.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_C.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Branch.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_PSD.psd +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_PSD.psd.meta +76 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_Toon.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_Toon.png.meta +76 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_C.png.meta +99 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_N.png.meta +88 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_C.png.meta +88 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_N.png.meta +88 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_C.png.meta +99 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_N.png.meta +88 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_C.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_C.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_N.png +0 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_N.png.meta +96 -0
- package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Textures.meta +8 -0
- package/Samples~/ExampleTemplates/Examples/Willow.asset +364 -0
- package/Samples~/ExampleTemplates/Examples/Willow.asset.meta +8 -0
- package/Samples~/ExampleTemplates/Examples.meta +8 -0
- package/Samples~/ExampleTemplates/Examples.unity +12660 -0
- package/Samples~/ExampleTemplates/Examples.unity.meta +7 -0
- package/Samples~/ExampleTemplates.meta +8 -0
- package/Shaders/BarkShader.shadergraph +17215 -0
- package/Shaders/BarkShader.shadergraph.meta +10 -0
- package/Shaders/Editor/BarkEditor.cs +100 -0
- package/Shaders/Editor/BarkEditor.cs.meta +11 -0
- package/Shaders/Editor/LeafEditor.cs +173 -0
- package/Shaders/Editor/LeafEditor.cs.meta +11 -0
- package/Shaders/Editor.meta +8 -0
- package/Shaders/LeafShader.shadergraph +34803 -0
- package/Shaders/LeafShader.shadergraph.meta +10 -0
- package/Shaders/MTree.Shaders.asmdef +3 -0
- package/Shaders/MTree.Shaders.asmdef.meta +7 -0
- package/Shaders/leafFunctions.hlsl +201 -0
- package/Shaders/leafFunctions.hlsl.meta +7 -0
- package/Shaders/vertexFunc.hlsl +55 -0
- package/Shaders/vertexFunc.hlsl.meta +7 -0
- package/Shaders.meta +8 -0
- package/package.json +36 -0
- package/package.json.meta +7 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!114 &-7755622218968829560
|
|
4
|
+
MonoBehaviour:
|
|
5
|
+
m_ObjectHideFlags: 11
|
|
6
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
+
m_PrefabInstance: {fileID: 0}
|
|
8
|
+
m_PrefabAsset: {fileID: 0}
|
|
9
|
+
m_GameObject: {fileID: 0}
|
|
10
|
+
m_Enabled: 1
|
|
11
|
+
m_EditorHideFlags: 0
|
|
12
|
+
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
|
13
|
+
m_Name:
|
|
14
|
+
m_EditorClassIdentifier:
|
|
15
|
+
version: 10
|
|
16
|
+
--- !u!21 &2100000
|
|
17
|
+
Material:
|
|
18
|
+
serializedVersion: 8
|
|
19
|
+
m_ObjectHideFlags: 0
|
|
20
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
21
|
+
m_PrefabInstance: {fileID: 0}
|
|
22
|
+
m_PrefabAsset: {fileID: 0}
|
|
23
|
+
m_Name: Bark Poplar
|
|
24
|
+
m_Shader: {fileID: -6465566751694194690, guid: 2139360011e9319499772e0bfe994b7e, type: 3}
|
|
25
|
+
m_Parent: {fileID: 0}
|
|
26
|
+
m_ModifiedSerializedProperties: 0
|
|
27
|
+
m_ValidKeywords: []
|
|
28
|
+
m_InvalidKeywords: []
|
|
29
|
+
m_LightmapFlags: 4
|
|
30
|
+
m_EnableInstancingVariants: 0
|
|
31
|
+
m_DoubleSidedGI: 0
|
|
32
|
+
m_CustomRenderQueue: -1
|
|
33
|
+
stringTagMap: {}
|
|
34
|
+
disabledShaderPasses:
|
|
35
|
+
- MOTIONVECTORS
|
|
36
|
+
m_LockedProperties:
|
|
37
|
+
m_SavedProperties:
|
|
38
|
+
serializedVersion: 3
|
|
39
|
+
m_TexEnvs:
|
|
40
|
+
- _BumpMap:
|
|
41
|
+
m_Texture: {fileID: 2800000, guid: d2dc7536aa6a547429a63578273e514b, type: 3}
|
|
42
|
+
m_Scale: {x: 1, y: 1}
|
|
43
|
+
m_Offset: {x: 0, y: 0}
|
|
44
|
+
- _DetailAlbedoMap:
|
|
45
|
+
m_Texture: {fileID: 0}
|
|
46
|
+
m_Scale: {x: 1, y: 1}
|
|
47
|
+
m_Offset: {x: 0, y: 0}
|
|
48
|
+
- _DetailMask:
|
|
49
|
+
m_Texture: {fileID: 0}
|
|
50
|
+
m_Scale: {x: 1, y: 1}
|
|
51
|
+
m_Offset: {x: 0, y: 0}
|
|
52
|
+
- _DetailNormalMap:
|
|
53
|
+
m_Texture: {fileID: 0}
|
|
54
|
+
m_Scale: {x: 1, y: 1}
|
|
55
|
+
m_Offset: {x: 0, y: 0}
|
|
56
|
+
- _EmissionMap:
|
|
57
|
+
m_Texture: {fileID: 0}
|
|
58
|
+
m_Scale: {x: 1, y: 1}
|
|
59
|
+
m_Offset: {x: 0, y: 0}
|
|
60
|
+
- _MainTex:
|
|
61
|
+
m_Texture: {fileID: 2800000, guid: 9e2bd545dcb51d645bc6ad55a98bf40f, type: 3}
|
|
62
|
+
m_Scale: {x: 1, y: 1}
|
|
63
|
+
m_Offset: {x: 0, y: 0}
|
|
64
|
+
- _MetallicGlossMap:
|
|
65
|
+
m_Texture: {fileID: 0}
|
|
66
|
+
m_Scale: {x: 1, y: 1}
|
|
67
|
+
m_Offset: {x: 0, y: 0}
|
|
68
|
+
- _OcclusionMap:
|
|
69
|
+
m_Texture: {fileID: 0}
|
|
70
|
+
m_Scale: {x: 1, y: 1}
|
|
71
|
+
m_Offset: {x: 0, y: 0}
|
|
72
|
+
- _ParallaxMap:
|
|
73
|
+
m_Texture: {fileID: 0}
|
|
74
|
+
m_Scale: {x: 1, y: 1}
|
|
75
|
+
m_Offset: {x: 0, y: 0}
|
|
76
|
+
- _texcoord:
|
|
77
|
+
m_Texture: {fileID: 0}
|
|
78
|
+
m_Scale: {x: 1, y: 1}
|
|
79
|
+
m_Offset: {x: 0, y: 0}
|
|
80
|
+
- unity_Lightmaps:
|
|
81
|
+
m_Texture: {fileID: 0}
|
|
82
|
+
m_Scale: {x: 1, y: 1}
|
|
83
|
+
m_Offset: {x: 0, y: 0}
|
|
84
|
+
- unity_LightmapsInd:
|
|
85
|
+
m_Texture: {fileID: 0}
|
|
86
|
+
m_Scale: {x: 1, y: 1}
|
|
87
|
+
m_Offset: {x: 0, y: 0}
|
|
88
|
+
- unity_ShadowMasks:
|
|
89
|
+
m_Texture: {fileID: 0}
|
|
90
|
+
m_Scale: {x: 1, y: 1}
|
|
91
|
+
m_Offset: {x: 0, y: 0}
|
|
92
|
+
m_Ints: []
|
|
93
|
+
m_Floats:
|
|
94
|
+
- _AlphaCutoff: 0.5
|
|
95
|
+
- _AlphaCutoffEnable: 0
|
|
96
|
+
- _AlphaDstBlend: 0
|
|
97
|
+
- _AlphaSrcBlend: 1
|
|
98
|
+
- _BaseDetail: 1
|
|
99
|
+
- _BlendMode: 0
|
|
100
|
+
- _BumpScale: 1
|
|
101
|
+
- _ColorShifting: 1
|
|
102
|
+
- _ColorSource: 0
|
|
103
|
+
- _ColorVariation: 0.15
|
|
104
|
+
- _CullMode: 2
|
|
105
|
+
- _CullModeForward: 2
|
|
106
|
+
- _Cutoff: 0.5
|
|
107
|
+
- _DetailNormalMapScale: 1
|
|
108
|
+
- _DoubleSidedEnable: 0
|
|
109
|
+
- _DoubleSidedNormalMode: 0
|
|
110
|
+
- _DstBlend: 0
|
|
111
|
+
- _GlobalTurbulenceInfluence: 1
|
|
112
|
+
- _GlobalWindInfluence: 0.5
|
|
113
|
+
- _GlobalWindInfluence1: 1
|
|
114
|
+
- _GlossMapScale: 1
|
|
115
|
+
- _Glossiness: 0.5
|
|
116
|
+
- _GlossinessThreshold: 0
|
|
117
|
+
- _GlossinessVariance: 0
|
|
118
|
+
- _GlossyReflections: 1
|
|
119
|
+
- _Height: 0
|
|
120
|
+
- _Hue: -0.5
|
|
121
|
+
- _Metallic: 0
|
|
122
|
+
- _Mode: 0
|
|
123
|
+
- _OcclusionStrength: 1
|
|
124
|
+
- _Parallax: 0.02
|
|
125
|
+
- _QueueControl: 0
|
|
126
|
+
- _QueueOffset: 0
|
|
127
|
+
- _ReceivesSSR: 1
|
|
128
|
+
- _RenderQueueType: 1
|
|
129
|
+
- _RequireSplitLighting: 0
|
|
130
|
+
- _Saturation: 1
|
|
131
|
+
- _Smooth: 0.02
|
|
132
|
+
- _SmoothnessTextureChannel: 0
|
|
133
|
+
- _SpecularHighlights: 1
|
|
134
|
+
- _SrcBlend: 1
|
|
135
|
+
- _StencilRef: 0
|
|
136
|
+
- _StencilRefDepth: 0
|
|
137
|
+
- _StencilRefDistortionVec: 64
|
|
138
|
+
- _StencilRefGBuffer: 2
|
|
139
|
+
- _StencilRefMV: 128
|
|
140
|
+
- _StencilWriteMask: 3
|
|
141
|
+
- _StencilWriteMaskDepth: 32
|
|
142
|
+
- _StencilWriteMaskDistortionVec: 64
|
|
143
|
+
- _StencilWriteMaskGBuffer: 3
|
|
144
|
+
- _StencilWriteMaskMV: 128
|
|
145
|
+
- _SurfaceType: 0
|
|
146
|
+
- _TextureInfluence: 0.5
|
|
147
|
+
- _TransNormalDistortion: 1
|
|
148
|
+
- _TransScale: 1
|
|
149
|
+
- _TransScattering: 1
|
|
150
|
+
- _Translucency: 4
|
|
151
|
+
- _TranslucencyEnum: 1
|
|
152
|
+
- _TransparentBackfaceEnable: 0
|
|
153
|
+
- _TransparentCullMode: 2
|
|
154
|
+
- _TransparentSortPriority: 0
|
|
155
|
+
- _UVSec: 0
|
|
156
|
+
- _UseShadowThreshold: 0
|
|
157
|
+
- _Value: 1
|
|
158
|
+
- _WindMode: 0
|
|
159
|
+
- _WindModeLeaves: 0
|
|
160
|
+
- _ZTestDepthEqualForOpaque: 4
|
|
161
|
+
- _ZTestGBuffer: 4
|
|
162
|
+
- _ZTestTransparent: 4
|
|
163
|
+
- _ZWrite: 1
|
|
164
|
+
- __dirty: 1
|
|
165
|
+
m_Colors:
|
|
166
|
+
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
|
167
|
+
- _DetailColor: {r: 1, g: 1, b: 1, a: 0}
|
|
168
|
+
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
|
169
|
+
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
|
170
|
+
- _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
|
|
171
|
+
m_BuildTextureStacks: []
|
|
172
|
+
m_AllowLocking: 1
|
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!114 &-1440804807124306936
|
|
4
|
+
MonoBehaviour:
|
|
5
|
+
m_ObjectHideFlags: 11
|
|
6
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
+
m_PrefabInstance: {fileID: 0}
|
|
8
|
+
m_PrefabAsset: {fileID: 0}
|
|
9
|
+
m_GameObject: {fileID: 0}
|
|
10
|
+
m_Enabled: 1
|
|
11
|
+
m_EditorHideFlags: 0
|
|
12
|
+
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
|
13
|
+
m_Name:
|
|
14
|
+
m_EditorClassIdentifier:
|
|
15
|
+
version: 10
|
|
16
|
+
--- !u!21 &2100000
|
|
17
|
+
Material:
|
|
18
|
+
serializedVersion: 8
|
|
19
|
+
m_ObjectHideFlags: 0
|
|
20
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
21
|
+
m_PrefabInstance: {fileID: 0}
|
|
22
|
+
m_PrefabAsset: {fileID: 0}
|
|
23
|
+
m_Name: Floor
|
|
24
|
+
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
|
|
25
|
+
m_Parent: {fileID: 0}
|
|
26
|
+
m_ModifiedSerializedProperties: 0
|
|
27
|
+
m_ValidKeywords: []
|
|
28
|
+
m_InvalidKeywords:
|
|
29
|
+
- _NORMALMAP_TANGENT_SPACE
|
|
30
|
+
m_LightmapFlags: 4
|
|
31
|
+
m_EnableInstancingVariants: 0
|
|
32
|
+
m_DoubleSidedGI: 0
|
|
33
|
+
m_CustomRenderQueue: -1
|
|
34
|
+
stringTagMap:
|
|
35
|
+
RenderType: Opaque
|
|
36
|
+
disabledShaderPasses:
|
|
37
|
+
- DistortionVectors
|
|
38
|
+
- TransparentDepthPrepass
|
|
39
|
+
- TransparentDepthPostpass
|
|
40
|
+
- TransparentBackface
|
|
41
|
+
- MOTIONVECTORS
|
|
42
|
+
m_LockedProperties:
|
|
43
|
+
m_SavedProperties:
|
|
44
|
+
serializedVersion: 3
|
|
45
|
+
m_TexEnvs:
|
|
46
|
+
- _AnisotropyMap:
|
|
47
|
+
m_Texture: {fileID: 0}
|
|
48
|
+
m_Scale: {x: 1, y: 1}
|
|
49
|
+
m_Offset: {x: 0, y: 0}
|
|
50
|
+
- _BaseColorMap:
|
|
51
|
+
m_Texture: {fileID: 0}
|
|
52
|
+
m_Scale: {x: 1, y: 1}
|
|
53
|
+
m_Offset: {x: 0, y: 0}
|
|
54
|
+
- _BaseMap:
|
|
55
|
+
m_Texture: {fileID: 0}
|
|
56
|
+
m_Scale: {x: 1, y: 1}
|
|
57
|
+
m_Offset: {x: 0, y: 0}
|
|
58
|
+
- _BentNormalMap:
|
|
59
|
+
m_Texture: {fileID: 0}
|
|
60
|
+
m_Scale: {x: 1, y: 1}
|
|
61
|
+
m_Offset: {x: 0, y: 0}
|
|
62
|
+
- _BentNormalMapOS:
|
|
63
|
+
m_Texture: {fileID: 0}
|
|
64
|
+
m_Scale: {x: 1, y: 1}
|
|
65
|
+
m_Offset: {x: 0, y: 0}
|
|
66
|
+
- _BumpMap:
|
|
67
|
+
m_Texture: {fileID: 0}
|
|
68
|
+
m_Scale: {x: 1, y: 1}
|
|
69
|
+
m_Offset: {x: 0, y: 0}
|
|
70
|
+
- _CoatMaskMap:
|
|
71
|
+
m_Texture: {fileID: 0}
|
|
72
|
+
m_Scale: {x: 1, y: 1}
|
|
73
|
+
m_Offset: {x: 0, y: 0}
|
|
74
|
+
- _DetailAlbedoMap:
|
|
75
|
+
m_Texture: {fileID: 0}
|
|
76
|
+
m_Scale: {x: 1, y: 1}
|
|
77
|
+
m_Offset: {x: 0, y: 0}
|
|
78
|
+
- _DetailMap:
|
|
79
|
+
m_Texture: {fileID: 0}
|
|
80
|
+
m_Scale: {x: 1, y: 1}
|
|
81
|
+
m_Offset: {x: 0, y: 0}
|
|
82
|
+
- _DetailMask:
|
|
83
|
+
m_Texture: {fileID: 0}
|
|
84
|
+
m_Scale: {x: 1, y: 1}
|
|
85
|
+
m_Offset: {x: 0, y: 0}
|
|
86
|
+
- _DetailNormalMap:
|
|
87
|
+
m_Texture: {fileID: 0}
|
|
88
|
+
m_Scale: {x: 1, y: 1}
|
|
89
|
+
m_Offset: {x: 0, y: 0}
|
|
90
|
+
- _DistortionVectorMap:
|
|
91
|
+
m_Texture: {fileID: 0}
|
|
92
|
+
m_Scale: {x: 1, y: 1}
|
|
93
|
+
m_Offset: {x: 0, y: 0}
|
|
94
|
+
- _EmissionMap:
|
|
95
|
+
m_Texture: {fileID: 0}
|
|
96
|
+
m_Scale: {x: 1, y: 1}
|
|
97
|
+
m_Offset: {x: 0, y: 0}
|
|
98
|
+
- _EmissiveColorMap:
|
|
99
|
+
m_Texture: {fileID: 0}
|
|
100
|
+
m_Scale: {x: 1, y: 1}
|
|
101
|
+
m_Offset: {x: 0, y: 0}
|
|
102
|
+
- _HeightMap:
|
|
103
|
+
m_Texture: {fileID: 0}
|
|
104
|
+
m_Scale: {x: 1, y: 1}
|
|
105
|
+
m_Offset: {x: 0, y: 0}
|
|
106
|
+
- _IridescenceMaskMap:
|
|
107
|
+
m_Texture: {fileID: 0}
|
|
108
|
+
m_Scale: {x: 1, y: 1}
|
|
109
|
+
m_Offset: {x: 0, y: 0}
|
|
110
|
+
- _IridescenceThicknessMap:
|
|
111
|
+
m_Texture: {fileID: 0}
|
|
112
|
+
m_Scale: {x: 1, y: 1}
|
|
113
|
+
m_Offset: {x: 0, y: 0}
|
|
114
|
+
- _MainTex:
|
|
115
|
+
m_Texture: {fileID: 0}
|
|
116
|
+
m_Scale: {x: 1, y: 1}
|
|
117
|
+
m_Offset: {x: 0, y: 0}
|
|
118
|
+
- _MaskMap:
|
|
119
|
+
m_Texture: {fileID: 0}
|
|
120
|
+
m_Scale: {x: 1, y: 1}
|
|
121
|
+
m_Offset: {x: 0, y: 0}
|
|
122
|
+
- _MetallicGlossMap:
|
|
123
|
+
m_Texture: {fileID: 0}
|
|
124
|
+
m_Scale: {x: 1, y: 1}
|
|
125
|
+
m_Offset: {x: 0, y: 0}
|
|
126
|
+
- _NormalMap:
|
|
127
|
+
m_Texture: {fileID: 0}
|
|
128
|
+
m_Scale: {x: 1, y: 1}
|
|
129
|
+
m_Offset: {x: 0, y: 0}
|
|
130
|
+
- _NormalMapOS:
|
|
131
|
+
m_Texture: {fileID: 0}
|
|
132
|
+
m_Scale: {x: 1, y: 1}
|
|
133
|
+
m_Offset: {x: 0, y: 0}
|
|
134
|
+
- _OcclusionMap:
|
|
135
|
+
m_Texture: {fileID: 0}
|
|
136
|
+
m_Scale: {x: 1, y: 1}
|
|
137
|
+
m_Offset: {x: 0, y: 0}
|
|
138
|
+
- _ParallaxMap:
|
|
139
|
+
m_Texture: {fileID: 0}
|
|
140
|
+
m_Scale: {x: 1, y: 1}
|
|
141
|
+
m_Offset: {x: 0, y: 0}
|
|
142
|
+
- _SpecGlossMap:
|
|
143
|
+
m_Texture: {fileID: 0}
|
|
144
|
+
m_Scale: {x: 1, y: 1}
|
|
145
|
+
m_Offset: {x: 0, y: 0}
|
|
146
|
+
- _SpecularColorMap:
|
|
147
|
+
m_Texture: {fileID: 0}
|
|
148
|
+
m_Scale: {x: 1, y: 1}
|
|
149
|
+
m_Offset: {x: 0, y: 0}
|
|
150
|
+
- _SubsurfaceMaskMap:
|
|
151
|
+
m_Texture: {fileID: 0}
|
|
152
|
+
m_Scale: {x: 1, y: 1}
|
|
153
|
+
m_Offset: {x: 0, y: 0}
|
|
154
|
+
- _TangentMap:
|
|
155
|
+
m_Texture: {fileID: 0}
|
|
156
|
+
m_Scale: {x: 1, y: 1}
|
|
157
|
+
m_Offset: {x: 0, y: 0}
|
|
158
|
+
- _TangentMapOS:
|
|
159
|
+
m_Texture: {fileID: 0}
|
|
160
|
+
m_Scale: {x: 1, y: 1}
|
|
161
|
+
m_Offset: {x: 0, y: 0}
|
|
162
|
+
- _ThicknessMap:
|
|
163
|
+
m_Texture: {fileID: 0}
|
|
164
|
+
m_Scale: {x: 1, y: 1}
|
|
165
|
+
m_Offset: {x: 0, y: 0}
|
|
166
|
+
- _TransmittanceColorMap:
|
|
167
|
+
m_Texture: {fileID: 0}
|
|
168
|
+
m_Scale: {x: 1, y: 1}
|
|
169
|
+
m_Offset: {x: 0, y: 0}
|
|
170
|
+
- _texcoord:
|
|
171
|
+
m_Texture: {fileID: 0}
|
|
172
|
+
m_Scale: {x: 1, y: 1}
|
|
173
|
+
m_Offset: {x: 0, y: 0}
|
|
174
|
+
- unity_Lightmaps:
|
|
175
|
+
m_Texture: {fileID: 0}
|
|
176
|
+
m_Scale: {x: 1, y: 1}
|
|
177
|
+
m_Offset: {x: 0, y: 0}
|
|
178
|
+
- unity_LightmapsInd:
|
|
179
|
+
m_Texture: {fileID: 0}
|
|
180
|
+
m_Scale: {x: 1, y: 1}
|
|
181
|
+
m_Offset: {x: 0, y: 0}
|
|
182
|
+
- unity_ShadowMasks:
|
|
183
|
+
m_Texture: {fileID: 0}
|
|
184
|
+
m_Scale: {x: 1, y: 1}
|
|
185
|
+
m_Offset: {x: 0, y: 0}
|
|
186
|
+
m_Ints: []
|
|
187
|
+
m_Floats:
|
|
188
|
+
- GlobalWindInfluence: 1
|
|
189
|
+
- _AORemapMax: 1
|
|
190
|
+
- _AORemapMin: 0
|
|
191
|
+
- _ATDistance: 1
|
|
192
|
+
- _AddPrecomputedVelocity: 0
|
|
193
|
+
- _AlbedoAffectEmissive: 0
|
|
194
|
+
- _AlphaClip: 0
|
|
195
|
+
- _AlphaCutoff: 0.5
|
|
196
|
+
- _AlphaCutoffEnable: 0
|
|
197
|
+
- _AlphaCutoffPostpass: 0.5
|
|
198
|
+
- _AlphaCutoffPrepass: 0.5
|
|
199
|
+
- _AlphaCutoffShadow: 0.5
|
|
200
|
+
- _AlphaDstBlend: 0
|
|
201
|
+
- _AlphaSrcBlend: 1
|
|
202
|
+
- _AlphaToMask: 0
|
|
203
|
+
- _Anisotropy: 0
|
|
204
|
+
- _Ao: 0.5
|
|
205
|
+
- _Blend: 0
|
|
206
|
+
- _BlendMode: 0
|
|
207
|
+
- _BlendModePreserveSpecular: 1
|
|
208
|
+
- _BumpScale: 1
|
|
209
|
+
- _BumpStrength: 1
|
|
210
|
+
- _ClearCoatMask: 0
|
|
211
|
+
- _ClearCoatSmoothness: 0
|
|
212
|
+
- _CoatMask: 0
|
|
213
|
+
- _ColorVariation: 0.15
|
|
214
|
+
- _Cull: 2
|
|
215
|
+
- _CullMode: 2
|
|
216
|
+
- _CullModeForward: 2
|
|
217
|
+
- _Cutoff: 0.5
|
|
218
|
+
- _DepthOffsetEnable: 0
|
|
219
|
+
- _DetailAlbedoMapScale: 1
|
|
220
|
+
- _DetailAlbedoScale: 1
|
|
221
|
+
- _DetailNormalMapScale: 1
|
|
222
|
+
- _DetailNormalScale: 1
|
|
223
|
+
- _DetailSmoothnessScale: 1
|
|
224
|
+
- _DiffusionProfile: 0
|
|
225
|
+
- _DiffusionProfileHash: 0
|
|
226
|
+
- _DisplacementLockObjectScale: 1
|
|
227
|
+
- _DisplacementLockTilingScale: 1
|
|
228
|
+
- _DisplacementMode: 0
|
|
229
|
+
- _Distortion: 2
|
|
230
|
+
- _DistortionBlendMode: 0
|
|
231
|
+
- _DistortionBlurBlendMode: 0
|
|
232
|
+
- _DistortionBlurDstBlend: 1
|
|
233
|
+
- _DistortionBlurRemapMax: 1
|
|
234
|
+
- _DistortionBlurRemapMin: 0
|
|
235
|
+
- _DistortionBlurScale: 1
|
|
236
|
+
- _DistortionBlurSrcBlend: 1
|
|
237
|
+
- _DistortionDepthTest: 1
|
|
238
|
+
- _DistortionDstBlend: 1
|
|
239
|
+
- _DistortionEnable: 0
|
|
240
|
+
- _DistortionScale: 1
|
|
241
|
+
- _DistortionSrcBlend: 1
|
|
242
|
+
- _DistortionVectorBias: -1
|
|
243
|
+
- _DistortionVectorScale: 2
|
|
244
|
+
- _DoubleSidedEnable: 0
|
|
245
|
+
- _DoubleSidedNormalMode: 1
|
|
246
|
+
- _Drag: 1
|
|
247
|
+
- _DstBlend: 0
|
|
248
|
+
- _DstBlendAlpha: 0
|
|
249
|
+
- _EmissiveColorMode: 1
|
|
250
|
+
- _EmissiveExposureWeight: 1
|
|
251
|
+
- _EmissiveIntensity: 1
|
|
252
|
+
- _EmissiveIntensityUnit: 0
|
|
253
|
+
- _EnableBlendModePreserveSpecularLighting: 1
|
|
254
|
+
- _EnableFogOnTransparent: 1
|
|
255
|
+
- _EnableGeometricSpecularAA: 0
|
|
256
|
+
- _EnableMotionVectorForVertexAnimation: 0
|
|
257
|
+
- _EnableSpecularOcclusion: 0
|
|
258
|
+
- _EnableWind: 0
|
|
259
|
+
- _EnergyConservingSpecularColor: 1
|
|
260
|
+
- _EnvironmentReflections: 1
|
|
261
|
+
- _GlobalTurbulenceInfluence: 1
|
|
262
|
+
- _GlossMapScale: 1
|
|
263
|
+
- _Glossiness: 0.5
|
|
264
|
+
- _GlossinessThreshold: 0
|
|
265
|
+
- _GlossinessVariance: 0.5
|
|
266
|
+
- _GlossyReflections: 1
|
|
267
|
+
- _HdrpVersion: 2
|
|
268
|
+
- _HeightAmplitude: 0.02
|
|
269
|
+
- _HeightCenter: 0.5
|
|
270
|
+
- _HeightMapParametrization: 0
|
|
271
|
+
- _HeightMax: 1
|
|
272
|
+
- _HeightMin: -1
|
|
273
|
+
- _HeightOffset: 0
|
|
274
|
+
- _HeightPoMAmplitude: 2
|
|
275
|
+
- _HeightTessAmplitude: 2
|
|
276
|
+
- _HeightTessCenter: 0.5
|
|
277
|
+
- _Hue: 0
|
|
278
|
+
- _InitialBend: 1
|
|
279
|
+
- _InvTilingScale: 1
|
|
280
|
+
- _Ior: 1
|
|
281
|
+
- _IridescenceMask: 1
|
|
282
|
+
- _IridescenceThickness: 1
|
|
283
|
+
- _LinkDetailsWithBase: 1
|
|
284
|
+
- _MaterialID: 1
|
|
285
|
+
- _Metallic: 0
|
|
286
|
+
- _Mode: 0
|
|
287
|
+
- _NormalMapSpace: 0
|
|
288
|
+
- _NormalScale: 1
|
|
289
|
+
- _OcclusionStrength: 1
|
|
290
|
+
- _PPDLodThreshold: 5
|
|
291
|
+
- _PPDMaxSamples: 15
|
|
292
|
+
- _PPDMinSamples: 5
|
|
293
|
+
- _PPDPrimitiveLength: 1
|
|
294
|
+
- _PPDPrimitiveWidth: 1
|
|
295
|
+
- _Parallax: 0.02
|
|
296
|
+
- _Power: 2
|
|
297
|
+
- _PreRefractionPass: 0
|
|
298
|
+
- _QueueOffset: 0
|
|
299
|
+
- _ReceiveShadows: 1
|
|
300
|
+
- _ReceivesSSR: 1
|
|
301
|
+
- _RefractionModel: 0
|
|
302
|
+
- _SSRefractionProjectionModel: 0
|
|
303
|
+
- _Saturation: 1
|
|
304
|
+
- _Scale: 2
|
|
305
|
+
- _ShiverDirectionality: 0.5
|
|
306
|
+
- _ShiverDrag: 0.2
|
|
307
|
+
- _Smoothness: 0.5
|
|
308
|
+
- _SmoothnessRemapMax: 1
|
|
309
|
+
- _SmoothnessRemapMin: 0
|
|
310
|
+
- _SmoothnessTextureChannel: 0
|
|
311
|
+
- _SpecularAAScreenSpaceVariance: 0.1
|
|
312
|
+
- _SpecularAAThreshold: 0.2
|
|
313
|
+
- _SpecularHighlights: 1
|
|
314
|
+
- _SpecularOcclusionMode: 1
|
|
315
|
+
- _SrcBlend: 1
|
|
316
|
+
- _SrcBlendAlpha: 1
|
|
317
|
+
- _StencilRef: 2
|
|
318
|
+
- _StencilRefDepth: 0
|
|
319
|
+
- _StencilRefDistortionVec: 64
|
|
320
|
+
- _StencilRefGBuffer: 2
|
|
321
|
+
- _StencilRefMV: 128
|
|
322
|
+
- _StencilWriteMask: 7
|
|
323
|
+
- _StencilWriteMaskDepth: 48
|
|
324
|
+
- _StencilWriteMaskDistortionVec: 64
|
|
325
|
+
- _StencilWriteMaskGBuffer: 51
|
|
326
|
+
- _StencilWriteMaskMV: 128
|
|
327
|
+
- _Stiffness: 1
|
|
328
|
+
- _SubsurfaceMask: 1
|
|
329
|
+
- _SupportDecals: 1
|
|
330
|
+
- _Surface: 0
|
|
331
|
+
- _SurfaceType: 0
|
|
332
|
+
- _TexWorldScale: 1
|
|
333
|
+
- _TexWorldScaleEmissive: 1
|
|
334
|
+
- _Thickness: 1
|
|
335
|
+
- _ThicknessMultiplier: 1
|
|
336
|
+
- _TransmissionEnable: 1
|
|
337
|
+
- _TransparentBackfaceEnable: 0
|
|
338
|
+
- _TransparentCullMode: 2
|
|
339
|
+
- _TransparentDepthPostpassEnable: 0
|
|
340
|
+
- _TransparentDepthPrepassEnable: 0
|
|
341
|
+
- _TransparentSortPriority: 0
|
|
342
|
+
- _TransparentWritingMotionVec: 0
|
|
343
|
+
- _UVBase: 0
|
|
344
|
+
- _UVDetail: 0
|
|
345
|
+
- _UVEmissive: 0
|
|
346
|
+
- _UVSec: 0
|
|
347
|
+
- _UseEmissiveIntensity: 0
|
|
348
|
+
- _UseShadowThreshold: 0
|
|
349
|
+
- _Value: 1
|
|
350
|
+
- _WindMode: 0
|
|
351
|
+
- _WindStrength: 0.1
|
|
352
|
+
- _WorkflowMode: 1
|
|
353
|
+
- _XRMotionVectorsPass: 1
|
|
354
|
+
- _ZTestDepthEqualForOpaque: 3
|
|
355
|
+
- _ZTestGBuffer: 4
|
|
356
|
+
- _ZTestModeDistortion: 4
|
|
357
|
+
- _ZTestTransparent: 4
|
|
358
|
+
- _ZWrite: 1
|
|
359
|
+
- __dirty: 0
|
|
360
|
+
m_Colors:
|
|
361
|
+
- _BaseColor: {r: 0.7169812, g: 0.7169812, b: 0.7169812, a: 1}
|
|
362
|
+
- _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0}
|
|
363
|
+
- _Color: {r: 0.7169812, g: 0.7169812, b: 0.7169812, a: 1}
|
|
364
|
+
- _DiffusionProfileAsset: {r: 0, g: 0, b: 0, a: 0}
|
|
365
|
+
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
|
366
|
+
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
|
367
|
+
- _EmissiveColor: {r: 0, g: 0, b: 0, a: 1}
|
|
368
|
+
- _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1}
|
|
369
|
+
- _InvPrimScale: {r: 1, g: 1, b: 0, a: 0}
|
|
370
|
+
- _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
|
371
|
+
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
|
372
|
+
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
|
373
|
+
- _ThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
|
374
|
+
- _TransmittanceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
375
|
+
- _UVDetailsMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
|
376
|
+
- _UVMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
|
377
|
+
- _UVMappingMaskEmissive: {r: 1, g: 0, b: 0, a: 0}
|
|
378
|
+
m_BuildTextureStacks: []
|
|
379
|
+
m_AllowLocking: 1
|
|
380
|
+
--- !u!114 &1927279534750884860
|
|
381
|
+
MonoBehaviour:
|
|
382
|
+
m_ObjectHideFlags: 11
|
|
383
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
384
|
+
m_PrefabInstance: {fileID: 0}
|
|
385
|
+
m_PrefabAsset: {fileID: 0}
|
|
386
|
+
m_GameObject: {fileID: 0}
|
|
387
|
+
m_Enabled: 1
|
|
388
|
+
m_EditorHideFlags: 0
|
|
389
|
+
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
|
390
|
+
m_Name:
|
|
391
|
+
m_EditorClassIdentifier:
|
|
392
|
+
version: 0
|