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,76 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 2914b2741cc1f484dbcfcd97b2afc5d6
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 4
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 1
|
|
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: 1
|
|
39
|
+
lightmap: 0
|
|
40
|
+
compressionQuality: 50
|
|
41
|
+
spriteMode: 0
|
|
42
|
+
spriteExtrude: 1
|
|
43
|
+
spriteMeshType: 1
|
|
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: 0
|
|
51
|
+
spriteTessellationDetail: -1
|
|
52
|
+
textureType: 0
|
|
53
|
+
textureShape: 1
|
|
54
|
+
maxTextureSizeSet: 0
|
|
55
|
+
compressionQualitySet: 0
|
|
56
|
+
textureFormatSet: 0
|
|
57
|
+
platformSettings:
|
|
58
|
+
- buildTarget: DefaultTexturePlatform
|
|
59
|
+
maxTextureSize: 2048
|
|
60
|
+
resizeAlgorithm: 0
|
|
61
|
+
textureFormat: -1
|
|
62
|
+
textureCompression: 1
|
|
63
|
+
compressionQuality: 50
|
|
64
|
+
crunchedCompression: 0
|
|
65
|
+
allowsAlphaSplitting: 0
|
|
66
|
+
overridden: 0
|
|
67
|
+
androidETC2FallbackOverride: 0
|
|
68
|
+
spriteSheet:
|
|
69
|
+
serializedVersion: 2
|
|
70
|
+
sprites: []
|
|
71
|
+
outline: []
|
|
72
|
+
physicsShape: []
|
|
73
|
+
spritePackingTag:
|
|
74
|
+
userData:
|
|
75
|
+
assetBundleName:
|
|
76
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 7f01879ed8df37c47970324c0ba2df4d
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 4
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 1
|
|
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: 1
|
|
39
|
+
lightmap: 0
|
|
40
|
+
compressionQuality: 50
|
|
41
|
+
spriteMode: 0
|
|
42
|
+
spriteExtrude: 1
|
|
43
|
+
spriteMeshType: 1
|
|
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: 0
|
|
51
|
+
spriteTessellationDetail: -1
|
|
52
|
+
textureType: 0
|
|
53
|
+
textureShape: 1
|
|
54
|
+
maxTextureSizeSet: 0
|
|
55
|
+
compressionQualitySet: 0
|
|
56
|
+
textureFormatSet: 0
|
|
57
|
+
platformSettings:
|
|
58
|
+
- buildTarget: DefaultTexturePlatform
|
|
59
|
+
maxTextureSize: 2048
|
|
60
|
+
resizeAlgorithm: 0
|
|
61
|
+
textureFormat: -1
|
|
62
|
+
textureCompression: 1
|
|
63
|
+
compressionQuality: 50
|
|
64
|
+
crunchedCompression: 0
|
|
65
|
+
allowsAlphaSplitting: 0
|
|
66
|
+
overridden: 0
|
|
67
|
+
androidETC2FallbackOverride: 0
|
|
68
|
+
spriteSheet:
|
|
69
|
+
serializedVersion: 2
|
|
70
|
+
sprites: []
|
|
71
|
+
outline: []
|
|
72
|
+
physicsShape: []
|
|
73
|
+
spritePackingTag:
|
|
74
|
+
userData:
|
|
75
|
+
assetBundleName:
|
|
76
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: ff8ca0aead29ba544acb25c72ad63476
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 9
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 1
|
|
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
|
+
streamingMipmaps: 0
|
|
25
|
+
streamingMipmapsPriority: 0
|
|
26
|
+
grayScaleToAlpha: 0
|
|
27
|
+
generateCubemap: 6
|
|
28
|
+
cubemapConvolution: 0
|
|
29
|
+
seamlessCubemap: 0
|
|
30
|
+
textureFormat: 1
|
|
31
|
+
maxTextureSize: 2048
|
|
32
|
+
textureSettings:
|
|
33
|
+
serializedVersion: 2
|
|
34
|
+
filterMode: -1
|
|
35
|
+
aniso: -1
|
|
36
|
+
mipBias: -100
|
|
37
|
+
wrapU: -1
|
|
38
|
+
wrapV: -1
|
|
39
|
+
wrapW: -1
|
|
40
|
+
nPOTScale: 1
|
|
41
|
+
lightmap: 0
|
|
42
|
+
compressionQuality: 50
|
|
43
|
+
spriteMode: 0
|
|
44
|
+
spriteExtrude: 1
|
|
45
|
+
spriteMeshType: 1
|
|
46
|
+
alignment: 0
|
|
47
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
48
|
+
spritePixelsToUnits: 100
|
|
49
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
50
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
51
|
+
alphaUsage: 1
|
|
52
|
+
alphaIsTransparency: 1
|
|
53
|
+
spriteTessellationDetail: -1
|
|
54
|
+
textureType: 0
|
|
55
|
+
textureShape: 1
|
|
56
|
+
singleChannelComponent: 0
|
|
57
|
+
maxTextureSizeSet: 0
|
|
58
|
+
compressionQualitySet: 0
|
|
59
|
+
textureFormatSet: 0
|
|
60
|
+
platformSettings:
|
|
61
|
+
- serializedVersion: 2
|
|
62
|
+
buildTarget: DefaultTexturePlatform
|
|
63
|
+
maxTextureSize: 2048
|
|
64
|
+
resizeAlgorithm: 0
|
|
65
|
+
textureFormat: -1
|
|
66
|
+
textureCompression: 1
|
|
67
|
+
compressionQuality: 50
|
|
68
|
+
crunchedCompression: 0
|
|
69
|
+
allowsAlphaSplitting: 0
|
|
70
|
+
overridden: 0
|
|
71
|
+
androidETC2FallbackOverride: 0
|
|
72
|
+
- serializedVersion: 2
|
|
73
|
+
buildTarget: Standalone
|
|
74
|
+
maxTextureSize: 2048
|
|
75
|
+
resizeAlgorithm: 0
|
|
76
|
+
textureFormat: -1
|
|
77
|
+
textureCompression: 1
|
|
78
|
+
compressionQuality: 50
|
|
79
|
+
crunchedCompression: 0
|
|
80
|
+
allowsAlphaSplitting: 0
|
|
81
|
+
overridden: 0
|
|
82
|
+
androidETC2FallbackOverride: 0
|
|
83
|
+
spriteSheet:
|
|
84
|
+
serializedVersion: 2
|
|
85
|
+
sprites: []
|
|
86
|
+
outline: []
|
|
87
|
+
physicsShape: []
|
|
88
|
+
bones: []
|
|
89
|
+
spriteID:
|
|
90
|
+
vertices: []
|
|
91
|
+
indices:
|
|
92
|
+
edges: []
|
|
93
|
+
weights: []
|
|
94
|
+
spritePackingTag:
|
|
95
|
+
pSDRemoveMatte: 0
|
|
96
|
+
pSDShowRemoveMatteOption: 0
|
|
97
|
+
userData:
|
|
98
|
+
assetBundleName:
|
|
99
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 511616531fba94944a43575f591f8f2e
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 9
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 1
|
|
10
|
+
sRGBTexture: 0
|
|
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
|
+
streamingMipmaps: 0
|
|
25
|
+
streamingMipmapsPriority: 0
|
|
26
|
+
grayScaleToAlpha: 0
|
|
27
|
+
generateCubemap: 6
|
|
28
|
+
cubemapConvolution: 0
|
|
29
|
+
seamlessCubemap: 0
|
|
30
|
+
textureFormat: 1
|
|
31
|
+
maxTextureSize: 2048
|
|
32
|
+
textureSettings:
|
|
33
|
+
serializedVersion: 2
|
|
34
|
+
filterMode: -1
|
|
35
|
+
aniso: -1
|
|
36
|
+
mipBias: -100
|
|
37
|
+
wrapU: -1
|
|
38
|
+
wrapV: -1
|
|
39
|
+
wrapW: -1
|
|
40
|
+
nPOTScale: 1
|
|
41
|
+
lightmap: 0
|
|
42
|
+
compressionQuality: 50
|
|
43
|
+
spriteMode: 0
|
|
44
|
+
spriteExtrude: 1
|
|
45
|
+
spriteMeshType: 1
|
|
46
|
+
alignment: 0
|
|
47
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
48
|
+
spritePixelsToUnits: 100
|
|
49
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
50
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
51
|
+
alphaUsage: 1
|
|
52
|
+
alphaIsTransparency: 0
|
|
53
|
+
spriteTessellationDetail: -1
|
|
54
|
+
textureType: 1
|
|
55
|
+
textureShape: 1
|
|
56
|
+
singleChannelComponent: 0
|
|
57
|
+
maxTextureSizeSet: 0
|
|
58
|
+
compressionQualitySet: 0
|
|
59
|
+
textureFormatSet: 0
|
|
60
|
+
platformSettings:
|
|
61
|
+
- serializedVersion: 2
|
|
62
|
+
buildTarget: DefaultTexturePlatform
|
|
63
|
+
maxTextureSize: 2048
|
|
64
|
+
resizeAlgorithm: 0
|
|
65
|
+
textureFormat: -1
|
|
66
|
+
textureCompression: 1
|
|
67
|
+
compressionQuality: 50
|
|
68
|
+
crunchedCompression: 0
|
|
69
|
+
allowsAlphaSplitting: 0
|
|
70
|
+
overridden: 0
|
|
71
|
+
androidETC2FallbackOverride: 0
|
|
72
|
+
spriteSheet:
|
|
73
|
+
serializedVersion: 2
|
|
74
|
+
sprites: []
|
|
75
|
+
outline: []
|
|
76
|
+
physicsShape: []
|
|
77
|
+
bones: []
|
|
78
|
+
spriteID:
|
|
79
|
+
vertices: []
|
|
80
|
+
indices:
|
|
81
|
+
edges: []
|
|
82
|
+
weights: []
|
|
83
|
+
spritePackingTag:
|
|
84
|
+
pSDRemoveMatte: 0
|
|
85
|
+
pSDShowRemoveMatteOption: 0
|
|
86
|
+
userData:
|
|
87
|
+
assetBundleName:
|
|
88
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 5832972d7c8c0304da9dc62eec537bad
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 9
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 1
|
|
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
|
+
streamingMipmaps: 0
|
|
25
|
+
streamingMipmapsPriority: 0
|
|
26
|
+
grayScaleToAlpha: 0
|
|
27
|
+
generateCubemap: 6
|
|
28
|
+
cubemapConvolution: 0
|
|
29
|
+
seamlessCubemap: 0
|
|
30
|
+
textureFormat: 1
|
|
31
|
+
maxTextureSize: 2048
|
|
32
|
+
textureSettings:
|
|
33
|
+
serializedVersion: 2
|
|
34
|
+
filterMode: -1
|
|
35
|
+
aniso: -1
|
|
36
|
+
mipBias: -100
|
|
37
|
+
wrapU: -1
|
|
38
|
+
wrapV: -1
|
|
39
|
+
wrapW: -1
|
|
40
|
+
nPOTScale: 1
|
|
41
|
+
lightmap: 0
|
|
42
|
+
compressionQuality: 50
|
|
43
|
+
spriteMode: 0
|
|
44
|
+
spriteExtrude: 1
|
|
45
|
+
spriteMeshType: 1
|
|
46
|
+
alignment: 0
|
|
47
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
48
|
+
spritePixelsToUnits: 100
|
|
49
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
50
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
51
|
+
alphaUsage: 1
|
|
52
|
+
alphaIsTransparency: 0
|
|
53
|
+
spriteTessellationDetail: -1
|
|
54
|
+
textureType: 0
|
|
55
|
+
textureShape: 1
|
|
56
|
+
singleChannelComponent: 0
|
|
57
|
+
maxTextureSizeSet: 0
|
|
58
|
+
compressionQualitySet: 0
|
|
59
|
+
textureFormatSet: 0
|
|
60
|
+
platformSettings:
|
|
61
|
+
- serializedVersion: 2
|
|
62
|
+
buildTarget: DefaultTexturePlatform
|
|
63
|
+
maxTextureSize: 2048
|
|
64
|
+
resizeAlgorithm: 0
|
|
65
|
+
textureFormat: -1
|
|
66
|
+
textureCompression: 1
|
|
67
|
+
compressionQuality: 50
|
|
68
|
+
crunchedCompression: 0
|
|
69
|
+
allowsAlphaSplitting: 0
|
|
70
|
+
overridden: 0
|
|
71
|
+
androidETC2FallbackOverride: 0
|
|
72
|
+
spriteSheet:
|
|
73
|
+
serializedVersion: 2
|
|
74
|
+
sprites: []
|
|
75
|
+
outline: []
|
|
76
|
+
physicsShape: []
|
|
77
|
+
bones: []
|
|
78
|
+
spriteID:
|
|
79
|
+
vertices: []
|
|
80
|
+
indices:
|
|
81
|
+
edges: []
|
|
82
|
+
weights: []
|
|
83
|
+
spritePackingTag:
|
|
84
|
+
pSDRemoveMatte: 0
|
|
85
|
+
pSDShowRemoveMatteOption: 0
|
|
86
|
+
userData:
|
|
87
|
+
assetBundleName:
|
|
88
|
+
assetBundleVariant:
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 664045428f2a0bc45aca0e0530845b65
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 9
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 1
|
|
10
|
+
sRGBTexture: 0
|
|
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
|
+
streamingMipmaps: 0
|
|
25
|
+
streamingMipmapsPriority: 0
|
|
26
|
+
grayScaleToAlpha: 0
|
|
27
|
+
generateCubemap: 6
|
|
28
|
+
cubemapConvolution: 0
|
|
29
|
+
seamlessCubemap: 0
|
|
30
|
+
textureFormat: 1
|
|
31
|
+
maxTextureSize: 2048
|
|
32
|
+
textureSettings:
|
|
33
|
+
serializedVersion: 2
|
|
34
|
+
filterMode: -1
|
|
35
|
+
aniso: -1
|
|
36
|
+
mipBias: -100
|
|
37
|
+
wrapU: -1
|
|
38
|
+
wrapV: -1
|
|
39
|
+
wrapW: -1
|
|
40
|
+
nPOTScale: 1
|
|
41
|
+
lightmap: 0
|
|
42
|
+
compressionQuality: 50
|
|
43
|
+
spriteMode: 0
|
|
44
|
+
spriteExtrude: 1
|
|
45
|
+
spriteMeshType: 1
|
|
46
|
+
alignment: 0
|
|
47
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
48
|
+
spritePixelsToUnits: 100
|
|
49
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
50
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
51
|
+
alphaUsage: 1
|
|
52
|
+
alphaIsTransparency: 0
|
|
53
|
+
spriteTessellationDetail: -1
|
|
54
|
+
textureType: 1
|
|
55
|
+
textureShape: 1
|
|
56
|
+
singleChannelComponent: 0
|
|
57
|
+
maxTextureSizeSet: 0
|
|
58
|
+
compressionQualitySet: 0
|
|
59
|
+
textureFormatSet: 0
|
|
60
|
+
platformSettings:
|
|
61
|
+
- serializedVersion: 2
|
|
62
|
+
buildTarget: DefaultTexturePlatform
|
|
63
|
+
maxTextureSize: 2048
|
|
64
|
+
resizeAlgorithm: 0
|
|
65
|
+
textureFormat: -1
|
|
66
|
+
textureCompression: 1
|
|
67
|
+
compressionQuality: 50
|
|
68
|
+
crunchedCompression: 0
|
|
69
|
+
allowsAlphaSplitting: 0
|
|
70
|
+
overridden: 0
|
|
71
|
+
androidETC2FallbackOverride: 0
|
|
72
|
+
spriteSheet:
|
|
73
|
+
serializedVersion: 2
|
|
74
|
+
sprites: []
|
|
75
|
+
outline: []
|
|
76
|
+
physicsShape: []
|
|
77
|
+
bones: []
|
|
78
|
+
spriteID:
|
|
79
|
+
vertices: []
|
|
80
|
+
indices:
|
|
81
|
+
edges: []
|
|
82
|
+
weights: []
|
|
83
|
+
spritePackingTag:
|
|
84
|
+
pSDRemoveMatte: 0
|
|
85
|
+
pSDShowRemoveMatteOption: 0
|
|
86
|
+
userData:
|
|
87
|
+
assetBundleName:
|
|
88
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 814a058e8949c104781c711af9a0e500
|
|
3
|
+
TextureImporter:
|
|
4
|
+
fileIDToRecycleName: {}
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 9
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 1
|
|
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
|
+
streamingMipmaps: 0
|
|
25
|
+
streamingMipmapsPriority: 0
|
|
26
|
+
grayScaleToAlpha: 0
|
|
27
|
+
generateCubemap: 6
|
|
28
|
+
cubemapConvolution: 0
|
|
29
|
+
seamlessCubemap: 0
|
|
30
|
+
textureFormat: 1
|
|
31
|
+
maxTextureSize: 2048
|
|
32
|
+
textureSettings:
|
|
33
|
+
serializedVersion: 2
|
|
34
|
+
filterMode: -1
|
|
35
|
+
aniso: -1
|
|
36
|
+
mipBias: -100
|
|
37
|
+
wrapU: 1
|
|
38
|
+
wrapV: 1
|
|
39
|
+
wrapW: 1
|
|
40
|
+
nPOTScale: 1
|
|
41
|
+
lightmap: 0
|
|
42
|
+
compressionQuality: 50
|
|
43
|
+
spriteMode: 0
|
|
44
|
+
spriteExtrude: 1
|
|
45
|
+
spriteMeshType: 1
|
|
46
|
+
alignment: 0
|
|
47
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
48
|
+
spritePixelsToUnits: 100
|
|
49
|
+
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
50
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
51
|
+
alphaUsage: 1
|
|
52
|
+
alphaIsTransparency: 0
|
|
53
|
+
spriteTessellationDetail: -1
|
|
54
|
+
textureType: 0
|
|
55
|
+
textureShape: 1
|
|
56
|
+
singleChannelComponent: 0
|
|
57
|
+
maxTextureSizeSet: 0
|
|
58
|
+
compressionQualitySet: 0
|
|
59
|
+
textureFormatSet: 0
|
|
60
|
+
platformSettings:
|
|
61
|
+
- serializedVersion: 2
|
|
62
|
+
buildTarget: DefaultTexturePlatform
|
|
63
|
+
maxTextureSize: 2048
|
|
64
|
+
resizeAlgorithm: 0
|
|
65
|
+
textureFormat: -1
|
|
66
|
+
textureCompression: 1
|
|
67
|
+
compressionQuality: 50
|
|
68
|
+
crunchedCompression: 0
|
|
69
|
+
allowsAlphaSplitting: 0
|
|
70
|
+
overridden: 0
|
|
71
|
+
androidETC2FallbackOverride: 0
|
|
72
|
+
- serializedVersion: 2
|
|
73
|
+
buildTarget: Standalone
|
|
74
|
+
maxTextureSize: 2048
|
|
75
|
+
resizeAlgorithm: 0
|
|
76
|
+
textureFormat: -1
|
|
77
|
+
textureCompression: 1
|
|
78
|
+
compressionQuality: 50
|
|
79
|
+
crunchedCompression: 0
|
|
80
|
+
allowsAlphaSplitting: 0
|
|
81
|
+
overridden: 0
|
|
82
|
+
androidETC2FallbackOverride: 0
|
|
83
|
+
spriteSheet:
|
|
84
|
+
serializedVersion: 2
|
|
85
|
+
sprites: []
|
|
86
|
+
outline: []
|
|
87
|
+
physicsShape: []
|
|
88
|
+
bones: []
|
|
89
|
+
spriteID:
|
|
90
|
+
vertices: []
|
|
91
|
+
indices:
|
|
92
|
+
edges: []
|
|
93
|
+
weights: []
|
|
94
|
+
spritePackingTag:
|
|
95
|
+
pSDRemoveMatte: 0
|
|
96
|
+
pSDShowRemoveMatteOption: 0
|
|
97
|
+
userData:
|
|
98
|
+
assetBundleName:
|
|
99
|
+
assetBundleVariant:
|