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,116 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: fd8af19349c54814ba6c38c1950b6a9e
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 4
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
isReadable: 0
|
|
24
|
+
grayScaleToAlpha: 0
|
|
25
|
+
generateCubemap: 6
|
|
26
|
+
cubemapConvolution: 0
|
|
27
|
+
seamlessCubemap: 0
|
|
28
|
+
textureFormat: 1
|
|
29
|
+
maxTextureSize: 2048
|
|
30
|
+
textureSettings:
|
|
31
|
+
serializedVersion: 2
|
|
32
|
+
filterMode: -1
|
|
33
|
+
aniso: 1
|
|
34
|
+
mipBias: -1
|
|
35
|
+
wrapU: 1
|
|
36
|
+
wrapV: 1
|
|
37
|
+
wrapW: -1
|
|
38
|
+
nPOTScale: 0
|
|
39
|
+
lightmap: 0
|
|
40
|
+
compressionQuality: 50
|
|
41
|
+
spriteMode: 0
|
|
42
|
+
spriteExtrude: 1
|
|
43
|
+
spriteMeshType: 0
|
|
44
|
+
alignment: 0
|
|
45
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
46
|
+
spritePixelsToUnits: 100
|
|
47
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
48
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
49
|
+
alphaUsage: 1
|
|
50
|
+
alphaIsTransparency: 1
|
|
51
|
+
spriteTessellationDetail: -1
|
|
52
|
+
textureType: 2
|
|
53
|
+
textureShape: 1
|
|
54
|
+
maxTextureSizeSet: 0
|
|
55
|
+
compressionQualitySet: 0
|
|
56
|
+
textureFormatSet: 0
|
|
57
|
+
platformSettings:
|
|
58
|
+
- buildTarget: DefaultTexturePlatform
|
|
59
|
+
maxTextureSize: 64
|
|
60
|
+
resizeAlgorithm: 0
|
|
61
|
+
textureFormat: -1
|
|
62
|
+
textureCompression: 3
|
|
63
|
+
compressionQuality: 50
|
|
64
|
+
crunchedCompression: 0
|
|
65
|
+
allowsAlphaSplitting: 0
|
|
66
|
+
overridden: 0
|
|
67
|
+
androidETC2FallbackOverride: 0
|
|
68
|
+
- buildTarget: Standalone
|
|
69
|
+
maxTextureSize: 64
|
|
70
|
+
resizeAlgorithm: 0
|
|
71
|
+
textureFormat: -1
|
|
72
|
+
textureCompression: 3
|
|
73
|
+
compressionQuality: 50
|
|
74
|
+
crunchedCompression: 0
|
|
75
|
+
allowsAlphaSplitting: 0
|
|
76
|
+
overridden: 0
|
|
77
|
+
androidETC2FallbackOverride: 0
|
|
78
|
+
- buildTarget: iPhone
|
|
79
|
+
maxTextureSize: 8192
|
|
80
|
+
resizeAlgorithm: 0
|
|
81
|
+
textureFormat: -1
|
|
82
|
+
textureCompression: 1
|
|
83
|
+
compressionQuality: 50
|
|
84
|
+
crunchedCompression: 0
|
|
85
|
+
allowsAlphaSplitting: 0
|
|
86
|
+
overridden: 0
|
|
87
|
+
androidETC2FallbackOverride: 0
|
|
88
|
+
- buildTarget: Android
|
|
89
|
+
maxTextureSize: 8192
|
|
90
|
+
resizeAlgorithm: 0
|
|
91
|
+
textureFormat: -1
|
|
92
|
+
textureCompression: 1
|
|
93
|
+
compressionQuality: 50
|
|
94
|
+
crunchedCompression: 0
|
|
95
|
+
allowsAlphaSplitting: 0
|
|
96
|
+
overridden: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
- buildTarget: Windows Store Apps
|
|
99
|
+
maxTextureSize: 64
|
|
100
|
+
resizeAlgorithm: 0
|
|
101
|
+
textureFormat: -1
|
|
102
|
+
textureCompression: 3
|
|
103
|
+
compressionQuality: 50
|
|
104
|
+
crunchedCompression: 0
|
|
105
|
+
allowsAlphaSplitting: 0
|
|
106
|
+
overridden: 0
|
|
107
|
+
androidETC2FallbackOverride: 0
|
|
108
|
+
spriteSheet:
|
|
109
|
+
serializedVersion: 2
|
|
110
|
+
sprites: []
|
|
111
|
+
outline: []
|
|
112
|
+
physicsShape: []
|
|
113
|
+
spritePackingTag:
|
|
114
|
+
userData:
|
|
115
|
+
assetBundleName:
|
|
116
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 5f71f436cca5101489fbe40df8146a2d
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 4
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
isReadable: 0
|
|
24
|
+
grayScaleToAlpha: 0
|
|
25
|
+
generateCubemap: 6
|
|
26
|
+
cubemapConvolution: 0
|
|
27
|
+
seamlessCubemap: 0
|
|
28
|
+
textureFormat: 1
|
|
29
|
+
maxTextureSize: 2048
|
|
30
|
+
textureSettings:
|
|
31
|
+
serializedVersion: 2
|
|
32
|
+
filterMode: -1
|
|
33
|
+
aniso: 1
|
|
34
|
+
mipBias: -100
|
|
35
|
+
wrapU: 1
|
|
36
|
+
wrapV: 1
|
|
37
|
+
wrapW: -1
|
|
38
|
+
nPOTScale: 0
|
|
39
|
+
lightmap: 0
|
|
40
|
+
compressionQuality: 50
|
|
41
|
+
spriteMode: 1
|
|
42
|
+
spriteExtrude: 1
|
|
43
|
+
spriteMeshType: 0
|
|
44
|
+
alignment: 0
|
|
45
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
46
|
+
spritePixelsToUnits: 100
|
|
47
|
+
spriteBorder: {x: 162, y: 183, z: 145, w: 162}
|
|
48
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
49
|
+
alphaUsage: 1
|
|
50
|
+
alphaIsTransparency: 1
|
|
51
|
+
spriteTessellationDetail: -1
|
|
52
|
+
textureType: 2
|
|
53
|
+
textureShape: 1
|
|
54
|
+
maxTextureSizeSet: 0
|
|
55
|
+
compressionQualitySet: 0
|
|
56
|
+
textureFormatSet: 0
|
|
57
|
+
platformSettings:
|
|
58
|
+
- buildTarget: DefaultTexturePlatform
|
|
59
|
+
maxTextureSize: 64
|
|
60
|
+
resizeAlgorithm: 0
|
|
61
|
+
textureFormat: -1
|
|
62
|
+
textureCompression: 3
|
|
63
|
+
compressionQuality: 50
|
|
64
|
+
crunchedCompression: 0
|
|
65
|
+
allowsAlphaSplitting: 0
|
|
66
|
+
overridden: 0
|
|
67
|
+
androidETC2FallbackOverride: 0
|
|
68
|
+
- buildTarget: Standalone
|
|
69
|
+
maxTextureSize: 64
|
|
70
|
+
resizeAlgorithm: 0
|
|
71
|
+
textureFormat: -1
|
|
72
|
+
textureCompression: 3
|
|
73
|
+
compressionQuality: 50
|
|
74
|
+
crunchedCompression: 0
|
|
75
|
+
allowsAlphaSplitting: 0
|
|
76
|
+
overridden: 0
|
|
77
|
+
androidETC2FallbackOverride: 0
|
|
78
|
+
- buildTarget: iPhone
|
|
79
|
+
maxTextureSize: 64
|
|
80
|
+
resizeAlgorithm: 0
|
|
81
|
+
textureFormat: -1
|
|
82
|
+
textureCompression: 1
|
|
83
|
+
compressionQuality: 50
|
|
84
|
+
crunchedCompression: 0
|
|
85
|
+
allowsAlphaSplitting: 0
|
|
86
|
+
overridden: 0
|
|
87
|
+
androidETC2FallbackOverride: 0
|
|
88
|
+
- buildTarget: Android
|
|
89
|
+
maxTextureSize: 64
|
|
90
|
+
resizeAlgorithm: 0
|
|
91
|
+
textureFormat: -1
|
|
92
|
+
textureCompression: 1
|
|
93
|
+
compressionQuality: 50
|
|
94
|
+
crunchedCompression: 0
|
|
95
|
+
allowsAlphaSplitting: 0
|
|
96
|
+
overridden: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
- buildTarget: Windows Store Apps
|
|
99
|
+
maxTextureSize: 64
|
|
100
|
+
resizeAlgorithm: 0
|
|
101
|
+
textureFormat: -1
|
|
102
|
+
textureCompression: 3
|
|
103
|
+
compressionQuality: 50
|
|
104
|
+
crunchedCompression: 0
|
|
105
|
+
allowsAlphaSplitting: 0
|
|
106
|
+
overridden: 0
|
|
107
|
+
androidETC2FallbackOverride: 0
|
|
108
|
+
spriteSheet:
|
|
109
|
+
serializedVersion: 2
|
|
110
|
+
sprites: []
|
|
111
|
+
outline: []
|
|
112
|
+
physicsShape: []
|
|
113
|
+
spritePackingTag:
|
|
114
|
+
userData:
|
|
115
|
+
assetBundleName:
|
|
116
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: e6953a04438126f4d87e925d57fffbe6
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 4
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
isReadable: 0
|
|
24
|
+
grayScaleToAlpha: 0
|
|
25
|
+
generateCubemap: 6
|
|
26
|
+
cubemapConvolution: 0
|
|
27
|
+
seamlessCubemap: 0
|
|
28
|
+
textureFormat: 1
|
|
29
|
+
maxTextureSize: 2048
|
|
30
|
+
textureSettings:
|
|
31
|
+
serializedVersion: 2
|
|
32
|
+
filterMode: -1
|
|
33
|
+
aniso: 1
|
|
34
|
+
mipBias: -100
|
|
35
|
+
wrapU: 1
|
|
36
|
+
wrapV: 1
|
|
37
|
+
wrapW: -1
|
|
38
|
+
nPOTScale: 0
|
|
39
|
+
lightmap: 0
|
|
40
|
+
compressionQuality: 50
|
|
41
|
+
spriteMode: 1
|
|
42
|
+
spriteExtrude: 1
|
|
43
|
+
spriteMeshType: 0
|
|
44
|
+
alignment: 0
|
|
45
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
46
|
+
spritePixelsToUnits: 100
|
|
47
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
48
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
49
|
+
alphaUsage: 1
|
|
50
|
+
alphaIsTransparency: 1
|
|
51
|
+
spriteTessellationDetail: -1
|
|
52
|
+
textureType: 2
|
|
53
|
+
textureShape: 1
|
|
54
|
+
maxTextureSizeSet: 0
|
|
55
|
+
compressionQualitySet: 0
|
|
56
|
+
textureFormatSet: 0
|
|
57
|
+
platformSettings:
|
|
58
|
+
- buildTarget: DefaultTexturePlatform
|
|
59
|
+
maxTextureSize: 64
|
|
60
|
+
resizeAlgorithm: 0
|
|
61
|
+
textureFormat: -1
|
|
62
|
+
textureCompression: 3
|
|
63
|
+
compressionQuality: 50
|
|
64
|
+
crunchedCompression: 0
|
|
65
|
+
allowsAlphaSplitting: 0
|
|
66
|
+
overridden: 0
|
|
67
|
+
androidETC2FallbackOverride: 0
|
|
68
|
+
- buildTarget: Standalone
|
|
69
|
+
maxTextureSize: 64
|
|
70
|
+
resizeAlgorithm: 0
|
|
71
|
+
textureFormat: -1
|
|
72
|
+
textureCompression: 3
|
|
73
|
+
compressionQuality: 50
|
|
74
|
+
crunchedCompression: 0
|
|
75
|
+
allowsAlphaSplitting: 0
|
|
76
|
+
overridden: 0
|
|
77
|
+
androidETC2FallbackOverride: 0
|
|
78
|
+
- buildTarget: iPhone
|
|
79
|
+
maxTextureSize: 64
|
|
80
|
+
resizeAlgorithm: 0
|
|
81
|
+
textureFormat: -1
|
|
82
|
+
textureCompression: 1
|
|
83
|
+
compressionQuality: 50
|
|
84
|
+
crunchedCompression: 0
|
|
85
|
+
allowsAlphaSplitting: 0
|
|
86
|
+
overridden: 0
|
|
87
|
+
androidETC2FallbackOverride: 0
|
|
88
|
+
- buildTarget: Android
|
|
89
|
+
maxTextureSize: 64
|
|
90
|
+
resizeAlgorithm: 0
|
|
91
|
+
textureFormat: -1
|
|
92
|
+
textureCompression: 1
|
|
93
|
+
compressionQuality: 50
|
|
94
|
+
crunchedCompression: 0
|
|
95
|
+
allowsAlphaSplitting: 0
|
|
96
|
+
overridden: 0
|
|
97
|
+
androidETC2FallbackOverride: 0
|
|
98
|
+
- buildTarget: Windows Store Apps
|
|
99
|
+
maxTextureSize: 64
|
|
100
|
+
resizeAlgorithm: 0
|
|
101
|
+
textureFormat: -1
|
|
102
|
+
textureCompression: 3
|
|
103
|
+
compressionQuality: 50
|
|
104
|
+
crunchedCompression: 0
|
|
105
|
+
allowsAlphaSplitting: 0
|
|
106
|
+
overridden: 0
|
|
107
|
+
androidETC2FallbackOverride: 0
|
|
108
|
+
spriteSheet:
|
|
109
|
+
serializedVersion: 2
|
|
110
|
+
sprites: []
|
|
111
|
+
outline: []
|
|
112
|
+
physicsShape: []
|
|
113
|
+
spritePackingTag:
|
|
114
|
+
userData:
|
|
115
|
+
assetBundleName:
|
|
116
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!1 &4859336910023291099
|
|
4
|
+
GameObject:
|
|
5
|
+
m_ObjectHideFlags: 0
|
|
6
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
+
m_PrefabInstance: {fileID: 0}
|
|
8
|
+
m_PrefabAsset: {fileID: 0}
|
|
9
|
+
serializedVersion: 6
|
|
10
|
+
m_Component:
|
|
11
|
+
- component: {fileID: 4697651718344890289}
|
|
12
|
+
- component: {fileID: 1900861344181732896}
|
|
13
|
+
- component: {fileID: 3350259979380474795}
|
|
14
|
+
- component: {fileID: 3192827233536543389}
|
|
15
|
+
m_Layer: 0
|
|
16
|
+
m_Name: Mtree Vertex Color GameObject
|
|
17
|
+
m_TagString: Untagged
|
|
18
|
+
m_Icon: {fileID: 0}
|
|
19
|
+
m_NavMeshLayer: 0
|
|
20
|
+
m_StaticEditorFlags: 0
|
|
21
|
+
m_IsActive: 1
|
|
22
|
+
--- !u!4 &4697651718344890289
|
|
23
|
+
Transform:
|
|
24
|
+
m_ObjectHideFlags: 0
|
|
25
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
26
|
+
m_PrefabInstance: {fileID: 0}
|
|
27
|
+
m_PrefabAsset: {fileID: 0}
|
|
28
|
+
m_GameObject: {fileID: 4859336910023291099}
|
|
29
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
30
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
31
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
32
|
+
m_Children: []
|
|
33
|
+
m_Father: {fileID: 0}
|
|
34
|
+
m_RootOrder: 0
|
|
35
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
36
|
+
--- !u!33 &1900861344181732896
|
|
37
|
+
MeshFilter:
|
|
38
|
+
m_ObjectHideFlags: 0
|
|
39
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
40
|
+
m_PrefabInstance: {fileID: 0}
|
|
41
|
+
m_PrefabAsset: {fileID: 0}
|
|
42
|
+
m_GameObject: {fileID: 4859336910023291099}
|
|
43
|
+
m_Mesh: {fileID: 4300000, guid: d252039cabacd4b4c9289d54470f2d92, type: 2}
|
|
44
|
+
--- !u!23 &3350259979380474795
|
|
45
|
+
MeshRenderer:
|
|
46
|
+
m_ObjectHideFlags: 0
|
|
47
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
48
|
+
m_PrefabInstance: {fileID: 0}
|
|
49
|
+
m_PrefabAsset: {fileID: 0}
|
|
50
|
+
m_GameObject: {fileID: 4859336910023291099}
|
|
51
|
+
m_Enabled: 1
|
|
52
|
+
m_CastShadows: 1
|
|
53
|
+
m_ReceiveShadows: 1
|
|
54
|
+
m_DynamicOccludee: 1
|
|
55
|
+
m_MotionVectors: 1
|
|
56
|
+
m_LightProbeUsage: 1
|
|
57
|
+
m_ReflectionProbeUsage: 1
|
|
58
|
+
m_RayTracingMode: 2
|
|
59
|
+
m_RayTraceProcedural: 0
|
|
60
|
+
m_RenderingLayerMask: 1
|
|
61
|
+
m_RendererPriority: 0
|
|
62
|
+
m_Materials:
|
|
63
|
+
- {fileID: 0}
|
|
64
|
+
m_StaticBatchInfo:
|
|
65
|
+
firstSubMesh: 0
|
|
66
|
+
subMeshCount: 0
|
|
67
|
+
m_StaticBatchRoot: {fileID: 0}
|
|
68
|
+
m_ProbeAnchor: {fileID: 0}
|
|
69
|
+
m_LightProbeVolumeOverride: {fileID: 0}
|
|
70
|
+
m_ScaleInLightmap: 1
|
|
71
|
+
m_ReceiveGI: 1
|
|
72
|
+
m_PreserveUVs: 0
|
|
73
|
+
m_IgnoreNormalsForChartDetection: 0
|
|
74
|
+
m_ImportantGI: 0
|
|
75
|
+
m_StitchLightmapSeams: 0
|
|
76
|
+
m_SelectedEditorRenderState: 3
|
|
77
|
+
m_MinimumChartSize: 4
|
|
78
|
+
m_AutoUVMaxDistance: 0.5
|
|
79
|
+
m_AutoUVMaxAngle: 89
|
|
80
|
+
m_LightmapParameters: {fileID: 0}
|
|
81
|
+
m_SortingLayerID: 0
|
|
82
|
+
m_SortingLayer: 0
|
|
83
|
+
m_SortingOrder: 0
|
|
84
|
+
m_AdditionalVertexStreams: {fileID: 0}
|
|
85
|
+
--- !u!114 &3192827233536543389
|
|
86
|
+
MonoBehaviour:
|
|
87
|
+
m_ObjectHideFlags: 0
|
|
88
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
89
|
+
m_PrefabInstance: {fileID: 0}
|
|
90
|
+
m_PrefabAsset: {fileID: 0}
|
|
91
|
+
m_GameObject: {fileID: 4859336910023291099}
|
|
92
|
+
m_Enabled: 1
|
|
93
|
+
m_EditorHideFlags: 0
|
|
94
|
+
m_Script: {fileID: 11500000, guid: 49d0c8299cfe6b4478363f169353cf68, type: 3}
|
|
95
|
+
m_Name:
|
|
96
|
+
m_EditorClassIdentifier:
|
|
97
|
+
windZone: {fileID: 0}
|
|
98
|
+
windStrength: 0.12
|
|
99
|
+
windDirection: 0
|
|
100
|
+
windPulse: 1
|
|
101
|
+
windTurbulence: 1
|
|
102
|
+
windRandomness: 1
|
|
103
|
+
BillboardWind: 0
|
|
104
|
+
BillboardWindInfluence: 0.5
|
|
Binary file
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 984dcb44177d2ba4083f56fa54dd82ea
|
|
3
|
+
ModelImporter:
|
|
4
|
+
serializedVersion: 23
|
|
5
|
+
fileIDToRecycleName:
|
|
6
|
+
100000: //RootNode
|
|
7
|
+
100002: Mtree_cross
|
|
8
|
+
100004: Mtree_diamond_cross
|
|
9
|
+
100006: Mtree_diamond_lod0
|
|
10
|
+
100008: Mtree_diamond_lod1
|
|
11
|
+
100010: Mtree_long_lod0
|
|
12
|
+
100012: Mtree_long_lod1
|
|
13
|
+
100014: Camera
|
|
14
|
+
100016: Mtree_plane_lod0
|
|
15
|
+
400000: //RootNode
|
|
16
|
+
400002: Mtree_cross
|
|
17
|
+
400004: Mtree_diamond_cross
|
|
18
|
+
400006: Mtree_diamond_lod0
|
|
19
|
+
400008: Mtree_diamond_lod1
|
|
20
|
+
400010: Mtree_long_lod0
|
|
21
|
+
400012: Mtree_long_lod1
|
|
22
|
+
400014: Camera
|
|
23
|
+
400016: Mtree_plane_lod0
|
|
24
|
+
2000000: Camera
|
|
25
|
+
2100000: No Name
|
|
26
|
+
2300000: Mtree_cross
|
|
27
|
+
2300002: Mtree_diamond_cross
|
|
28
|
+
2300004: Mtree_diamond_lod0
|
|
29
|
+
2300006: Mtree_diamond_lod1
|
|
30
|
+
2300008: Mtree_long_lod0
|
|
31
|
+
2300010: Mtree_long_lod1
|
|
32
|
+
2300012: Mtree_plane_lod0
|
|
33
|
+
3300000: Mtree_cross
|
|
34
|
+
3300002: Mtree_diamond_cross
|
|
35
|
+
3300004: Mtree_diamond_lod0
|
|
36
|
+
3300006: Mtree_diamond_lod1
|
|
37
|
+
3300008: Mtree_long_lod0
|
|
38
|
+
3300010: Mtree_long_lod1
|
|
39
|
+
3300012: Mtree_plane_lod0
|
|
40
|
+
4300000: Mtree_long_lod1
|
|
41
|
+
4300002: Mtree_long_lod0
|
|
42
|
+
4300004: Mtree_cross
|
|
43
|
+
4300006: Mtree_diamond_cross
|
|
44
|
+
4300008: Mtree_diamond_lod1
|
|
45
|
+
4300010: Mtree_diamond_lod0
|
|
46
|
+
4300012: Mtree_plane_lod0
|
|
47
|
+
externalObjects:
|
|
48
|
+
- first:
|
|
49
|
+
type: UnityEngine:Material
|
|
50
|
+
assembly: UnityEngine.CoreModule
|
|
51
|
+
name: No Name
|
|
52
|
+
second: {fileID: 2100000, guid: 1734effb5f176d74b842b7892e20074c, type: 2}
|
|
53
|
+
materials:
|
|
54
|
+
importMaterials: 0
|
|
55
|
+
materialName: 0
|
|
56
|
+
materialSearch: 1
|
|
57
|
+
materialLocation: 1
|
|
58
|
+
animations:
|
|
59
|
+
legacyGenerateAnimations: 4
|
|
60
|
+
bakeSimulation: 0
|
|
61
|
+
resampleCurves: 1
|
|
62
|
+
optimizeGameObjects: 0
|
|
63
|
+
motionNodeName:
|
|
64
|
+
rigImportErrors:
|
|
65
|
+
rigImportWarnings:
|
|
66
|
+
animationImportErrors:
|
|
67
|
+
animationImportWarnings:
|
|
68
|
+
animationRetargetingWarnings:
|
|
69
|
+
animationDoRetargetingWarnings: 0
|
|
70
|
+
importAnimatedCustomProperties: 0
|
|
71
|
+
importConstraints: 0
|
|
72
|
+
animationCompression: 1
|
|
73
|
+
animationRotationError: 0.5
|
|
74
|
+
animationPositionError: 0.5
|
|
75
|
+
animationScaleError: 0.5
|
|
76
|
+
animationWrapMode: 0
|
|
77
|
+
extraExposedTransformPaths: []
|
|
78
|
+
extraUserProperties: []
|
|
79
|
+
clipAnimations: []
|
|
80
|
+
isReadable: 1
|
|
81
|
+
meshes:
|
|
82
|
+
lODScreenPercentages: []
|
|
83
|
+
globalScale: 1
|
|
84
|
+
meshCompression: 0
|
|
85
|
+
addColliders: 0
|
|
86
|
+
useSRGBMaterialColor: 1
|
|
87
|
+
importVisibility: 1
|
|
88
|
+
importBlendShapes: 1
|
|
89
|
+
importCameras: 1
|
|
90
|
+
importLights: 1
|
|
91
|
+
swapUVChannels: 0
|
|
92
|
+
generateSecondaryUV: 0
|
|
93
|
+
useFileUnits: 1
|
|
94
|
+
optimizeMeshForGPU: 1
|
|
95
|
+
keepQuads: 0
|
|
96
|
+
weldVertices: 1
|
|
97
|
+
preserveHierarchy: 0
|
|
98
|
+
indexFormat: 1
|
|
99
|
+
secondaryUVAngleDistortion: 8
|
|
100
|
+
secondaryUVAreaDistortion: 15.000001
|
|
101
|
+
secondaryUVHardAngle: 88
|
|
102
|
+
secondaryUVPackMargin: 4
|
|
103
|
+
useFileScale: 1
|
|
104
|
+
previousCalculatedGlobalScale: 1
|
|
105
|
+
hasPreviousCalculatedGlobalScale: 0
|
|
106
|
+
tangentSpace:
|
|
107
|
+
normalSmoothAngle: 60
|
|
108
|
+
normalImportMode: 0
|
|
109
|
+
tangentImportMode: 3
|
|
110
|
+
normalCalculationMode: 4
|
|
111
|
+
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1
|
|
112
|
+
blendShapeNormalImportMode: 1
|
|
113
|
+
normalSmoothingSource: 0
|
|
114
|
+
importAnimation: 1
|
|
115
|
+
copyAvatar: 0
|
|
116
|
+
humanDescription:
|
|
117
|
+
serializedVersion: 2
|
|
118
|
+
human: []
|
|
119
|
+
skeleton: []
|
|
120
|
+
armTwist: 0.5
|
|
121
|
+
foreArmTwist: 0.5
|
|
122
|
+
upperLegTwist: 0.5
|
|
123
|
+
legTwist: 0.5
|
|
124
|
+
armStretch: 0.05
|
|
125
|
+
legStretch: 0.05
|
|
126
|
+
feetSpacing: 0
|
|
127
|
+
rootMotionBoneName:
|
|
128
|
+
hasTranslationDoF: 0
|
|
129
|
+
hasExtraRoot: 0
|
|
130
|
+
skeletonHasParents: 1
|
|
131
|
+
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
|
132
|
+
animationType: 0
|
|
133
|
+
humanoidOversampling: 1
|
|
134
|
+
additionalBone: 0
|
|
135
|
+
userData:
|
|
136
|
+
assetBundleName:
|
|
137
|
+
assetBundleVariant:
|