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,267 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!21 &2100000
|
|
4
|
+
Material:
|
|
5
|
+
serializedVersion: 8
|
|
6
|
+
m_ObjectHideFlags: 0
|
|
7
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
8
|
+
m_PrefabInstance: {fileID: 0}
|
|
9
|
+
m_PrefabAsset: {fileID: 0}
|
|
10
|
+
m_Name: Leafs Needles
|
|
11
|
+
m_Shader: {fileID: -6465566751694194690, guid: e0a43faff4d99644e8707dd9bad91d13, type: 3}
|
|
12
|
+
m_Parent: {fileID: 0}
|
|
13
|
+
m_ModifiedSerializedProperties: 0
|
|
14
|
+
m_ValidKeywords: []
|
|
15
|
+
m_InvalidKeywords:
|
|
16
|
+
- _GLOSSYREFLECTIONS_OFF
|
|
17
|
+
- _LEAFTYPE_DEFAULT
|
|
18
|
+
- _SPECULARHIGHLIGHTS_OFF
|
|
19
|
+
- _WINDQUALITY_NONE
|
|
20
|
+
m_LightmapFlags: 4
|
|
21
|
+
m_EnableInstancingVariants: 1
|
|
22
|
+
m_DoubleSidedGI: 0
|
|
23
|
+
m_CustomRenderQueue: -1
|
|
24
|
+
stringTagMap: {}
|
|
25
|
+
disabledShaderPasses:
|
|
26
|
+
- MOTIONVECTORS
|
|
27
|
+
m_LockedProperties:
|
|
28
|
+
m_SavedProperties:
|
|
29
|
+
serializedVersion: 3
|
|
30
|
+
m_TexEnvs:
|
|
31
|
+
- _Albedo:
|
|
32
|
+
m_Texture: {fileID: 2800000, guid: fbff189d7fcb7ee4a890b761de33346d, type: 3}
|
|
33
|
+
m_Scale: {x: 1, y: 1}
|
|
34
|
+
m_Offset: {x: 0, y: 0}
|
|
35
|
+
- _BumpMap:
|
|
36
|
+
m_Texture: {fileID: 2800000, guid: 6abcf175224a4044a85c0d091d35f7b7, type: 3}
|
|
37
|
+
m_Scale: {x: 1, y: 1}
|
|
38
|
+
m_Offset: {x: 0, y: 0}
|
|
39
|
+
- _DetailAlbedoMap:
|
|
40
|
+
m_Texture: {fileID: 0}
|
|
41
|
+
m_Scale: {x: 1, y: 1}
|
|
42
|
+
m_Offset: {x: 0, y: 0}
|
|
43
|
+
- _DetailMask:
|
|
44
|
+
m_Texture: {fileID: 0}
|
|
45
|
+
m_Scale: {x: 1, y: 1}
|
|
46
|
+
m_Offset: {x: 0, y: 0}
|
|
47
|
+
- _DetailNormalMap:
|
|
48
|
+
m_Texture: {fileID: 0}
|
|
49
|
+
m_Scale: {x: 1, y: 1}
|
|
50
|
+
m_Offset: {x: 0, y: 0}
|
|
51
|
+
- _DetailTex:
|
|
52
|
+
m_Texture: {fileID: 0}
|
|
53
|
+
m_Scale: {x: 1, y: 1}
|
|
54
|
+
m_Offset: {x: 0, y: 0}
|
|
55
|
+
- _EmissionMap:
|
|
56
|
+
m_Texture: {fileID: 0}
|
|
57
|
+
m_Scale: {x: 1, y: 1}
|
|
58
|
+
m_Offset: {x: 0, y: 0}
|
|
59
|
+
- _ExtraTex:
|
|
60
|
+
m_Texture: {fileID: 0}
|
|
61
|
+
m_Scale: {x: 1, y: 1}
|
|
62
|
+
m_Offset: {x: 0, y: 0}
|
|
63
|
+
- _MainTex:
|
|
64
|
+
m_Texture: {fileID: 2800000, guid: 8981b5bb2b6f2cb46a7660180b7fbbb8, type: 3}
|
|
65
|
+
m_Scale: {x: 1, y: 1}
|
|
66
|
+
m_Offset: {x: 0, y: 0}
|
|
67
|
+
- _MetallicGlossMap:
|
|
68
|
+
m_Texture: {fileID: 0}
|
|
69
|
+
m_Scale: {x: 1, y: 1}
|
|
70
|
+
m_Offset: {x: 0, y: 0}
|
|
71
|
+
- _OcclusionMap:
|
|
72
|
+
m_Texture: {fileID: 0}
|
|
73
|
+
m_Scale: {x: 1, y: 1}
|
|
74
|
+
m_Offset: {x: 0, y: 0}
|
|
75
|
+
- _ParallaxMap:
|
|
76
|
+
m_Texture: {fileID: 0}
|
|
77
|
+
m_Scale: {x: 1, y: 1}
|
|
78
|
+
m_Offset: {x: 0, y: 0}
|
|
79
|
+
- _SubsurfaceTex:
|
|
80
|
+
m_Texture: {fileID: 0}
|
|
81
|
+
m_Scale: {x: 1, y: 1}
|
|
82
|
+
m_Offset: {x: 0, y: 0}
|
|
83
|
+
- _texcoord:
|
|
84
|
+
m_Texture: {fileID: 0}
|
|
85
|
+
m_Scale: {x: 1, y: 1}
|
|
86
|
+
m_Offset: {x: 0, y: 0}
|
|
87
|
+
- _texcoord4:
|
|
88
|
+
m_Texture: {fileID: 0}
|
|
89
|
+
m_Scale: {x: 1, y: 1}
|
|
90
|
+
m_Offset: {x: 0, y: 0}
|
|
91
|
+
- unity_Lightmaps:
|
|
92
|
+
m_Texture: {fileID: 0}
|
|
93
|
+
m_Scale: {x: 1, y: 1}
|
|
94
|
+
m_Offset: {x: 0, y: 0}
|
|
95
|
+
- unity_LightmapsInd:
|
|
96
|
+
m_Texture: {fileID: 0}
|
|
97
|
+
m_Scale: {x: 1, y: 1}
|
|
98
|
+
m_Offset: {x: 0, y: 0}
|
|
99
|
+
- unity_ShadowMasks:
|
|
100
|
+
m_Texture: {fileID: 0}
|
|
101
|
+
m_Scale: {x: 1, y: 1}
|
|
102
|
+
m_Offset: {x: 0, y: 0}
|
|
103
|
+
m_Ints: []
|
|
104
|
+
m_Floats:
|
|
105
|
+
- GlobalWindInfluence: 1
|
|
106
|
+
- _AlphaCutoff: 0.5
|
|
107
|
+
- _AlphaCutoffEnable: 0
|
|
108
|
+
- _AlphaDstBlend: 0
|
|
109
|
+
- _AlphaSrcBlend: 1
|
|
110
|
+
- _Ao: 0.698
|
|
111
|
+
- _Attentuation: 2
|
|
112
|
+
- _BillboardKwToggle: 0
|
|
113
|
+
- _BillboardShadowFade: 0.5
|
|
114
|
+
- _BlendMode: 0
|
|
115
|
+
- _BumpScale: 1
|
|
116
|
+
- _BumpStrength: 1.59
|
|
117
|
+
- _Clip: 0.4
|
|
118
|
+
- _ColorShifting: 1
|
|
119
|
+
- _ColorSource: 1
|
|
120
|
+
- _ColorVariation: 0.15
|
|
121
|
+
- _Cull: 2
|
|
122
|
+
- _CullMode: 0
|
|
123
|
+
- _CullModeForward: 2
|
|
124
|
+
- _CustomLightIntensity: 3
|
|
125
|
+
- _CustomLightMode: 1
|
|
126
|
+
- _Cutoff: 0.2
|
|
127
|
+
- _Cutout: 0.318
|
|
128
|
+
- _DetailNormalMapScale: 1
|
|
129
|
+
- _DiffusionProfile: 1
|
|
130
|
+
- _Distortion: 1.38
|
|
131
|
+
- _DoubleSidedEnable: 1
|
|
132
|
+
- _DoubleSidedNormalMode: 2
|
|
133
|
+
- _DstBlend: 0
|
|
134
|
+
- _GlobalTurbulenceInfluence: 1
|
|
135
|
+
- _GlobalWindInflucene: 1
|
|
136
|
+
- _GlobalWindInfluence: 1
|
|
137
|
+
- _GlobalWindInfluence1: 1
|
|
138
|
+
- _GlossMapScale: 1
|
|
139
|
+
- _Glossiness: 0
|
|
140
|
+
- _GlossinessThreshold: 0
|
|
141
|
+
- _GlossinessVariance: 0
|
|
142
|
+
- _GlossyReflections: 0
|
|
143
|
+
- _Hello: 2
|
|
144
|
+
- _Hue: 0
|
|
145
|
+
- _HueVariationKwToggle: 0
|
|
146
|
+
- _Leaftype: 0
|
|
147
|
+
- _LightAttentuation: 1
|
|
148
|
+
- _LightIntensity: 1
|
|
149
|
+
- _LightSouce: 0
|
|
150
|
+
- _LightingGlobal: 1
|
|
151
|
+
- _LightingGlobalContribution: 1
|
|
152
|
+
- _LightingGlobalIntensity: 1
|
|
153
|
+
- _LocalWindStrength: 0
|
|
154
|
+
- _MaskClipValue: 0.5
|
|
155
|
+
- _Metallic: 0
|
|
156
|
+
- _Mode: 0
|
|
157
|
+
- _NormalMapKwToggle: 0
|
|
158
|
+
- _OcclusionStrength: 1
|
|
159
|
+
- _Parallax: 0.02
|
|
160
|
+
- _Power: 1
|
|
161
|
+
- _QueueControl: -1
|
|
162
|
+
- _QueueOffset: 0
|
|
163
|
+
- _ReceivesSSR: 1
|
|
164
|
+
- _RenderQueueType: 1
|
|
165
|
+
- _RequireSplitLighting: 0
|
|
166
|
+
- _SSSPower: 5
|
|
167
|
+
- _SSSScale: 2
|
|
168
|
+
- _Saturation: 1
|
|
169
|
+
- _Scale: 2
|
|
170
|
+
- _Smoothness: 0
|
|
171
|
+
- _Smoothness1: 0
|
|
172
|
+
- _SmoothnessTextureChannel: 0
|
|
173
|
+
- _SmoothnessThreshold: 0
|
|
174
|
+
- _SmoothnessThreshold1: 0
|
|
175
|
+
- _SmoothnessVariance: 0.5
|
|
176
|
+
- _SmoothnessVariance1: 0.5
|
|
177
|
+
- _Specular: 1
|
|
178
|
+
- _SpecularHighlights: 0
|
|
179
|
+
- _Specularity: 0
|
|
180
|
+
- _SrcBlend: 1
|
|
181
|
+
- _StencilRef: 0
|
|
182
|
+
- _StencilRefDepth: 0
|
|
183
|
+
- _StencilRefDistortionVec: 64
|
|
184
|
+
- _StencilRefGBuffer: 2
|
|
185
|
+
- _StencilRefMV: 128
|
|
186
|
+
- _StencilWriteMask: 3
|
|
187
|
+
- _StencilWriteMaskDepth: 32
|
|
188
|
+
- _StencilWriteMaskDistortionVec: 64
|
|
189
|
+
- _StencilWriteMaskGBuffer: 3
|
|
190
|
+
- _StencilWriteMaskMV: 128
|
|
191
|
+
- _SubsurfaceDistortion: 0.62
|
|
192
|
+
- _SubsurfaceIndirect: 0.25
|
|
193
|
+
- _SubsurfaceIntensity: 0.9658048
|
|
194
|
+
- _SubsurfaceKwToggle: 0
|
|
195
|
+
- _SubsurfaceLightIntensity: 1
|
|
196
|
+
- _SubsurfaceMode: 1
|
|
197
|
+
- _SubsurfacePower: 1
|
|
198
|
+
- _SurfaceType: 0
|
|
199
|
+
- _ThicknessStrength: 1
|
|
200
|
+
- _TransAmbient: 0.479
|
|
201
|
+
- _TransDirect: 0.615
|
|
202
|
+
- _TransNormalDistortion: 0.26
|
|
203
|
+
- _TransScale: 1
|
|
204
|
+
- _TransScattering: 12.1
|
|
205
|
+
- _TransShadow: 0.521
|
|
206
|
+
- _Translucency: 25
|
|
207
|
+
- _TranslucencyEnum: 1
|
|
208
|
+
- _TranslucencyMapPower: 2.05
|
|
209
|
+
- _TranslucenyDistortion: 1
|
|
210
|
+
- _TranslucenyIntensity: 0.2
|
|
211
|
+
- _TranslucenyLightIntensity: 1
|
|
212
|
+
- _TranslucenyLightSouce: 0
|
|
213
|
+
- _TranslucenyMode: 0
|
|
214
|
+
- _TranslucenyPower: 1
|
|
215
|
+
- _Transmission: 3
|
|
216
|
+
- _TransparentBackfaceEnable: 0
|
|
217
|
+
- _TransparentCullMode: 2
|
|
218
|
+
- _TransparentSortPriority: 0
|
|
219
|
+
- _TwoSided: 0
|
|
220
|
+
- _UVSec: 0
|
|
221
|
+
- _UseShadowThreshold: 0
|
|
222
|
+
- _Value: 1
|
|
223
|
+
- _WindMode: 1
|
|
224
|
+
- _WindModeLeaves: 0
|
|
225
|
+
- _WindQuality: 0
|
|
226
|
+
- _WindStrength: 0.1
|
|
227
|
+
- _ZTestDepthEqualForOpaque: 4
|
|
228
|
+
- _ZTestGBuffer: 4
|
|
229
|
+
- _ZTestTransparent: 4
|
|
230
|
+
- _ZWrite: 1
|
|
231
|
+
- __dirty: 0
|
|
232
|
+
- _transmission: 3
|
|
233
|
+
m_Colors:
|
|
234
|
+
- _AmbientColor: {r: 0, g: 0, b: 0, a: 1}
|
|
235
|
+
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
|
236
|
+
- _ColorVariation: {r: 0.54024225, g: 0.5566038, b: 0.29142934, a: 1}
|
|
237
|
+
- _CustomLightColor: {r: 0.6704477, g: 1, b: 0, a: 1}
|
|
238
|
+
- _DiffusionProfile_asset: {r: -6.315383e-37, g: -7.0622125e-27, b: 4.6171996e-22, a: -8.3853756e-30}
|
|
239
|
+
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
|
240
|
+
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
|
241
|
+
- _HueVariation: {r: 1, g: 0.5, b: 0, a: 0.1}
|
|
242
|
+
- _HueVariationColor: {r: 1, g: 0.5, b: 0, a: 0.1}
|
|
243
|
+
- _LightColor: {r: 1, g: 1, b: 1, a: 1}
|
|
244
|
+
- _LightingCustomColor: {r: 0.34117648, g: 0.32941175, b: 0.25098038, a: 1}
|
|
245
|
+
- _SSSColor: {r: 0.90466535, g: 1, b: 0.30882353, a: 1}
|
|
246
|
+
- _SubsurfaceColor: {r: 1, g: 1, b: 1, a: 1}
|
|
247
|
+
- _SubsurfaceCustomColor: {r: 0.3411765, g: 0.3294118, b: 0.2509804, a: 1}
|
|
248
|
+
- _TranslucencyColor: {r: 1, g: 1, b: 1, a: 1}
|
|
249
|
+
- _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
|
|
250
|
+
- _TranslucencyTint: {r: 1, g: 1, b: 1, a: 1}
|
|
251
|
+
- _TranslucentColor: {r: 1, g: 1, b: 1, a: 1}
|
|
252
|
+
- _TransmissionTint: {r: 0.2352941, g: 0.3294118, b: 0, a: 1}
|
|
253
|
+
m_BuildTextureStacks: []
|
|
254
|
+
m_AllowLocking: 1
|
|
255
|
+
--- !u!114 &922373422223241849
|
|
256
|
+
MonoBehaviour:
|
|
257
|
+
m_ObjectHideFlags: 11
|
|
258
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
259
|
+
m_PrefabInstance: {fileID: 0}
|
|
260
|
+
m_PrefabAsset: {fileID: 0}
|
|
261
|
+
m_GameObject: {fileID: 0}
|
|
262
|
+
m_Enabled: 1
|
|
263
|
+
m_EditorHideFlags: 0
|
|
264
|
+
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
|
265
|
+
m_Name:
|
|
266
|
+
m_EditorClassIdentifier:
|
|
267
|
+
version: 10
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!114 &-1816427699703477007
|
|
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: Leafs Palm
|
|
24
|
+
m_Shader: {fileID: -6465566751694194690, guid: e0a43faff4d99644e8707dd9bad91d13, type: 3}
|
|
25
|
+
m_Parent: {fileID: 0}
|
|
26
|
+
m_ModifiedSerializedProperties: 0
|
|
27
|
+
m_ValidKeywords: []
|
|
28
|
+
m_InvalidKeywords: []
|
|
29
|
+
m_LightmapFlags: 4
|
|
30
|
+
m_EnableInstancingVariants: 1
|
|
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
|
+
- _Albedo:
|
|
41
|
+
m_Texture: {fileID: 2800000, guid: 2b4912093c8a7ba4486b413e511edf88, type: 3}
|
|
42
|
+
m_Scale: {x: 1, y: 1}
|
|
43
|
+
m_Offset: {x: 0, y: 0}
|
|
44
|
+
- _BumpMap:
|
|
45
|
+
m_Texture: {fileID: 2800000, guid: 664045428f2a0bc45aca0e0530845b65, type: 3}
|
|
46
|
+
m_Scale: {x: 1, y: 1}
|
|
47
|
+
m_Offset: {x: 0, y: 0}
|
|
48
|
+
- _MainTex:
|
|
49
|
+
m_Texture: {fileID: 2800000, guid: 5832972d7c8c0304da9dc62eec537bad, type: 3}
|
|
50
|
+
m_Scale: {x: 1, y: 1}
|
|
51
|
+
m_Offset: {x: 0, y: 0}
|
|
52
|
+
- _SSSMap:
|
|
53
|
+
m_Texture: {fileID: 0}
|
|
54
|
+
m_Scale: {x: 1, y: 1}
|
|
55
|
+
m_Offset: {x: 0, y: 0}
|
|
56
|
+
- _texcoord:
|
|
57
|
+
m_Texture: {fileID: 0}
|
|
58
|
+
m_Scale: {x: 1, y: 1}
|
|
59
|
+
m_Offset: {x: 0, y: 0}
|
|
60
|
+
- _texcoord4:
|
|
61
|
+
m_Texture: {fileID: 0}
|
|
62
|
+
m_Scale: {x: 1, y: 1}
|
|
63
|
+
m_Offset: {x: 0, y: 0}
|
|
64
|
+
- unity_Lightmaps:
|
|
65
|
+
m_Texture: {fileID: 0}
|
|
66
|
+
m_Scale: {x: 1, y: 1}
|
|
67
|
+
m_Offset: {x: 0, y: 0}
|
|
68
|
+
- unity_LightmapsInd:
|
|
69
|
+
m_Texture: {fileID: 0}
|
|
70
|
+
m_Scale: {x: 1, y: 1}
|
|
71
|
+
m_Offset: {x: 0, y: 0}
|
|
72
|
+
- unity_ShadowMasks:
|
|
73
|
+
m_Texture: {fileID: 0}
|
|
74
|
+
m_Scale: {x: 1, y: 1}
|
|
75
|
+
m_Offset: {x: 0, y: 0}
|
|
76
|
+
m_Ints: []
|
|
77
|
+
m_Floats:
|
|
78
|
+
- GlobalWindInfluence: 1
|
|
79
|
+
- _AlphaClip: 1
|
|
80
|
+
- _AlphaCutoff: 0.5
|
|
81
|
+
- _AlphaCutoffEnable: 0
|
|
82
|
+
- _AlphaDstBlend: 0
|
|
83
|
+
- _AlphaSrcBlend: 1
|
|
84
|
+
- _AlphaToMask: 1
|
|
85
|
+
- _Ao: 0.543
|
|
86
|
+
- _Attentuation: 2
|
|
87
|
+
- _Blend: 0
|
|
88
|
+
- _BlendMode: 0
|
|
89
|
+
- _BlendModePreserveSpecular: 0
|
|
90
|
+
- _BumpScale: 1
|
|
91
|
+
- _BumpStrength: 1
|
|
92
|
+
- _COLORSHIFTING: 1
|
|
93
|
+
- _COLORSOURCE: 0
|
|
94
|
+
- _CULLMODE: 0
|
|
95
|
+
- _CastShadows: 1
|
|
96
|
+
- _Clip: 0.5
|
|
97
|
+
- _ColorShifting: 1
|
|
98
|
+
- _ColorSource: 1
|
|
99
|
+
- _ColorVariation: 0.15
|
|
100
|
+
- _Cull: 0
|
|
101
|
+
- _CullMode: 0
|
|
102
|
+
- _CullModeForward: 2
|
|
103
|
+
- _CustomLightIntensity: 3
|
|
104
|
+
- _CustomLightMode: 1
|
|
105
|
+
- _Cutoff: 0.39
|
|
106
|
+
- _Cutout: 0.5
|
|
107
|
+
- _DOUBLESIDEDNORMALMODE: 0
|
|
108
|
+
- _DiffusionProfile: 1
|
|
109
|
+
- _Distortion: 1.38
|
|
110
|
+
- _DoubleSidedEnable: 1
|
|
111
|
+
- _DoubleSidedNormalMode: 2
|
|
112
|
+
- _DstBlend: 0
|
|
113
|
+
- _Float: 5
|
|
114
|
+
- _GlobalTurbulenceInfluence: 0.467
|
|
115
|
+
- _GlobalWindInflucene: 1
|
|
116
|
+
- _GlobalWindInfluence: 1
|
|
117
|
+
- _GlobalWindInfluence1: 1
|
|
118
|
+
- _Glossiness: 0
|
|
119
|
+
- _GlossinessThreshold: 0
|
|
120
|
+
- _GlossinessVariance: 0
|
|
121
|
+
- _GlossyReflections: 0
|
|
122
|
+
- _Hello: 2
|
|
123
|
+
- _Hue: 0
|
|
124
|
+
- _LeafDeform: 0.2
|
|
125
|
+
- _Leaftype: 1
|
|
126
|
+
- _LightAttentuation: 0.12
|
|
127
|
+
- _LightIntensity: 1
|
|
128
|
+
- _LightSouce: 0
|
|
129
|
+
- _LightingGlobalContribution: 1
|
|
130
|
+
- _LightingGlobalIntensity: 1
|
|
131
|
+
- _LocalWindStrength: 0
|
|
132
|
+
- _MaskClipValue: 0.5
|
|
133
|
+
- _Metallic: 0
|
|
134
|
+
- _OcclusionStrength: 1
|
|
135
|
+
- _Power: 1
|
|
136
|
+
- _QueueControl: 0
|
|
137
|
+
- _QueueOffset: 0
|
|
138
|
+
- _ReceiveShadows: 1
|
|
139
|
+
- _ReceivesSSR: 1
|
|
140
|
+
- _RenderQueueType: 1
|
|
141
|
+
- _RequireSplitLighting: 0
|
|
142
|
+
- _SSSPower: 2.5
|
|
143
|
+
- _SSSPower1: 0.78
|
|
144
|
+
- _SSSScale: 0.66
|
|
145
|
+
- _SSSScale1: 5
|
|
146
|
+
- _Saturation: 1
|
|
147
|
+
- _Scale: 2
|
|
148
|
+
- _Smoothness: 0.1176471
|
|
149
|
+
- _Smoothness1: 0
|
|
150
|
+
- _SmoothnessThreshold: 0
|
|
151
|
+
- _SmoothnessThreshold1: 0
|
|
152
|
+
- _SmoothnessVariance: 0.5
|
|
153
|
+
- _SmoothnessVariance1: 0.5
|
|
154
|
+
- _Specular: 1
|
|
155
|
+
- _SpecularHighlights: 0
|
|
156
|
+
- _Specularity: 0
|
|
157
|
+
- _SrcBlend: 1
|
|
158
|
+
- _StencilRef: 0
|
|
159
|
+
- _StencilRefDepth: 0
|
|
160
|
+
- _StencilRefDistortionVec: 64
|
|
161
|
+
- _StencilRefGBuffer: 2
|
|
162
|
+
- _StencilRefMV: 128
|
|
163
|
+
- _StencilWriteMask: 3
|
|
164
|
+
- _StencilWriteMaskDepth: 32
|
|
165
|
+
- _StencilWriteMaskDistortionVec: 64
|
|
166
|
+
- _StencilWriteMaskGBuffer: 3
|
|
167
|
+
- _StencilWriteMaskMV: 128
|
|
168
|
+
- _SubsurfaceDistortion: 0.482
|
|
169
|
+
- _SubsurfaceIntensity: 2.96
|
|
170
|
+
- _SubsurfaceLightIntensity: 4.14
|
|
171
|
+
- _SubsurfaceMode: 1
|
|
172
|
+
- _SubsurfacePower: 2.86
|
|
173
|
+
- _Surface: 0
|
|
174
|
+
- _SurfaceType: 0
|
|
175
|
+
- _TRANSLUCENCYENUM: 1
|
|
176
|
+
- _ThicknessStrength: 1
|
|
177
|
+
- _TransAmbient: 0.479
|
|
178
|
+
- _TransDirect: 0.615
|
|
179
|
+
- _TransNormalDistortion: 0.26
|
|
180
|
+
- _TransNormalDistortion1: 0.96
|
|
181
|
+
- _TransScale: 1
|
|
182
|
+
- _TransScattering: 12.1
|
|
183
|
+
- _TransShadow: 0.521
|
|
184
|
+
- _TransShadow1: 0.42
|
|
185
|
+
- _Translucency: 25
|
|
186
|
+
- _Translucency1: 0.5711765
|
|
187
|
+
- _TranslucencyEnum: 1
|
|
188
|
+
- _TranslucencyIntensity: 1
|
|
189
|
+
- _TranslucencyMapPower: 0.5
|
|
190
|
+
- _TranslucenyDistortion: 1
|
|
191
|
+
- _TranslucenyIntensity: 0.2
|
|
192
|
+
- _TranslucenyLightIntensity: 1
|
|
193
|
+
- _TranslucenyLightSouce: 0
|
|
194
|
+
- _TranslucenyMode: 0
|
|
195
|
+
- _TranslucenyPower: 1
|
|
196
|
+
- _Transmission: 3
|
|
197
|
+
- _TransparentBackfaceEnable: 0
|
|
198
|
+
- _TransparentCullMode: 2
|
|
199
|
+
- _TransparentSortPriority: 0
|
|
200
|
+
- _UseShadowThreshold: 0
|
|
201
|
+
- _Value: 1
|
|
202
|
+
- _WindMode: 1
|
|
203
|
+
- _WindModeLeaves: 0
|
|
204
|
+
- _WindStrength: 0.1
|
|
205
|
+
- _WorkflowMode: 1
|
|
206
|
+
- _ZTest: 4
|
|
207
|
+
- _ZTestDepthEqualForOpaque: 4
|
|
208
|
+
- _ZTestGBuffer: 4
|
|
209
|
+
- _ZTestTransparent: 4
|
|
210
|
+
- _ZWrite: 1
|
|
211
|
+
- _ZWriteControl: 1
|
|
212
|
+
- __dirty: 0
|
|
213
|
+
- _transmission: 2
|
|
214
|
+
m_Colors:
|
|
215
|
+
- _AmbientColor: {r: 0.42647058, g: 0.42647058, b: 0.42647058, a: 1}
|
|
216
|
+
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
|
217
|
+
- _ColorVariation: {r: 0.9862069, g: 1, b: 0, a: 1}
|
|
218
|
+
- _CustomLightColor: {r: 0.35427305, g: 0.5283019, b: 0, a: 1}
|
|
219
|
+
- _DiffusionProfile_asset: {r: -6.315383e-37, g: -7.0622125e-27, b: 4.6171996e-22, a: -8.3853756e-30}
|
|
220
|
+
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
|
221
|
+
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
|
222
|
+
- _LightColor: {r: 1, g: 1, b: 1, a: 1}
|
|
223
|
+
- _LightingCustomColor: {r: 0.0470588, g: 0.18039218, b: 0.06274508, a: 1}
|
|
224
|
+
- _SSSColor: {r: 0.43382347, g: 1, b: 0.6251522, a: 1}
|
|
225
|
+
- _SubsurfaceCustomColor: {r: 1, g: 0.86956525, b: 0, a: 1}
|
|
226
|
+
- _TranslucencyColor: {r: 1, g: 1, b: 1, a: 1}
|
|
227
|
+
- _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 1}
|
|
228
|
+
- _TranslucencyTint: {r: 1, g: 1, b: 1, a: 1}
|
|
229
|
+
- _TranslucentColor: {r: 1, g: 1, b: 1, a: 1}
|
|
230
|
+
- _TransmissionTint: {r: 0.40302935, g: 0.49700004, b: 0.16810293, a: 1}
|
|
231
|
+
m_BuildTextureStacks: []
|
|
232
|
+
m_AllowLocking: 1
|