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.
Files changed (290) hide show
  1. package/.github/workflows/npm.yml +19 -0
  2. package/CHANGELOG.md +17 -0
  3. package/CHANGELOG.md.meta +7 -0
  4. package/Documentation~/Documentation.md +3 -0
  5. package/Editor/BranchEditor.cs +545 -0
  6. package/Editor/BranchEditor.cs.meta +16 -0
  7. package/Editor/EditorCallbacks.cs +69 -0
  8. package/Editor/EditorCallbacks.cs.meta +11 -0
  9. package/Editor/MTree.Editor.asmdef +18 -0
  10. package/Editor/MTree.Editor.asmdef.meta +7 -0
  11. package/Editor/MenuItem.cs +31 -0
  12. package/Editor/MenuItem.cs.meta +11 -0
  13. package/Editor/MtreeBezierInspector.cs +161 -0
  14. package/Editor/MtreeBezierInspector.cs.meta +11 -0
  15. package/Editor/MtreeEditor.cs +434 -0
  16. package/Editor/MtreeEditor.cs.meta +11 -0
  17. package/Editor/TemplateInspector.cs +66 -0
  18. package/Editor/TemplateInspector.cs.meta +12 -0
  19. package/Editor/ValuesEditor.cs +18 -0
  20. package/Editor/ValuesEditor.cs.meta +11 -0
  21. package/Editor/VertexColorAdjustmentEditor.cs +169 -0
  22. package/Editor/VertexColorAdjustmentEditor.cs.meta +11 -0
  23. package/Editor.meta +8 -0
  24. package/LICENSE +21 -0
  25. package/LICENSE.meta +7 -0
  26. package/README.md +68 -0
  27. package/README.md.meta +7 -0
  28. package/Resources/Mtree/MtreeBillboardCamera.prefab +204 -0
  29. package/Resources/Mtree/MtreeBillboardCamera.prefab.meta +8 -0
  30. package/Resources/Mtree/Sprites/DeleteCrossSprite.png +0 -0
  31. package/Resources/Mtree/Sprites/DeleteCrossSprite.png.meta +116 -0
  32. package/Resources/Mtree/Sprites/TreeFunctionSprite.png +0 -0
  33. package/Resources/Mtree/Sprites/TreeFunctionSprite.png.meta +116 -0
  34. package/Resources/Mtree/Sprites/TreeFunctionSpriteSelected.psd +0 -0
  35. package/Resources/Mtree/Sprites/TreeFunctionSpriteSelected.psd.meta +116 -0
  36. package/Resources/Mtree/Sprites.meta +8 -0
  37. package/Resources/Mtree/Vertex Color Editor/Mtree Vertex Color GameObject.prefab +104 -0
  38. package/Resources/Mtree/Vertex Color Editor/Mtree Vertex Color GameObject.prefab.meta +7 -0
  39. package/Resources/Mtree/Vertex Color Editor.meta +8 -0
  40. package/Resources/Mtree/branches.fbx +0 -0
  41. package/Resources/Mtree/branches.fbx.meta +137 -0
  42. package/Resources/Mtree.meta +8 -0
  43. package/Resources.meta +8 -0
  44. package/Runtime/AO/DensityAO.cs +203 -0
  45. package/Runtime/AO/DensityAO.cs.meta +11 -0
  46. package/Runtime/AO/KDTree.cs +169 -0
  47. package/Runtime/AO/KDTree.cs.meta +11 -0
  48. package/Runtime/AO/WeightedRandom.cs +74 -0
  49. package/Runtime/AO/WeightedRandom.cs.meta +11 -0
  50. package/Runtime/AO.meta +8 -0
  51. package/Runtime/Bezier/Bezier.cs +69 -0
  52. package/Runtime/Bezier/Bezier.cs.meta +11 -0
  53. package/Runtime/Bezier/MtreeBezier.cs +185 -0
  54. package/Runtime/Bezier/MtreeBezier.cs.meta +11 -0
  55. package/Runtime/Bezier.meta +8 -0
  56. package/Runtime/ExampleSceneManager.cs +165 -0
  57. package/Runtime/ExampleSceneManager.cs.meta +11 -0
  58. package/Runtime/LODValues.cs +44 -0
  59. package/Runtime/LODValues.cs.meta +11 -0
  60. package/Runtime/LeafPoint.cs +135 -0
  61. package/Runtime/LeafPoint.cs.meta +11 -0
  62. package/Runtime/MTree.Runtime.asmdef +3 -0
  63. package/Runtime/MTree.Runtime.asmdef.meta +7 -0
  64. package/Runtime/MTree.cs +569 -0
  65. package/Runtime/MTree.cs.meta +11 -0
  66. package/Runtime/MtreeComponent.cs +482 -0
  67. package/Runtime/MtreeComponent.cs.meta +11 -0
  68. package/Runtime/MtreeVariables.cs +11 -0
  69. package/Runtime/MtreeVariables.cs.meta +11 -0
  70. package/Runtime/MtreeWind.cs +94 -0
  71. package/Runtime/MtreeWind.cs.meta +11 -0
  72. package/Runtime/Node.cs +331 -0
  73. package/Runtime/Node.cs.meta +11 -0
  74. package/Runtime/SimplexNoise.cs +166 -0
  75. package/Runtime/SimplexNoise.cs.meta +11 -0
  76. package/Runtime/Splines.cs +379 -0
  77. package/Runtime/Splines.cs.meta +11 -0
  78. package/Runtime/TreeBilboard.cs +290 -0
  79. package/Runtime/TreeBilboard.cs.meta +11 -0
  80. package/Runtime/TreeFunctions/BranchFunction.cs +92 -0
  81. package/Runtime/TreeFunctions/BranchFunction.cs.meta +11 -0
  82. package/Runtime/TreeFunctions/GrowFunction.cs +81 -0
  83. package/Runtime/TreeFunctions/GrowFunction.cs.meta +11 -0
  84. package/Runtime/TreeFunctions/LeafFunction.cs +111 -0
  85. package/Runtime/TreeFunctions/LeafFunction.cs.meta +11 -0
  86. package/Runtime/TreeFunctions/RootsFunction.cs +77 -0
  87. package/Runtime/TreeFunctions/RootsFunction.cs.meta +11 -0
  88. package/Runtime/TreeFunctions/SplitFunction.cs +50 -0
  89. package/Runtime/TreeFunctions/SplitFunction.cs.meta +11 -0
  90. package/Runtime/TreeFunctions/TreeFunctionAsset.cs +105 -0
  91. package/Runtime/TreeFunctions/TreeFunctionAsset.cs.meta +11 -0
  92. package/Runtime/TreeFunctions/TrunkFunction.cs +88 -0
  93. package/Runtime/TreeFunctions/TrunkFunction.cs.meta +11 -0
  94. package/Runtime/TreeFunctions.meta +8 -0
  95. package/Runtime/TreePoint.cs +27 -0
  96. package/Runtime/TreePoint.cs.meta +11 -0
  97. package/Runtime/TreeTemplate.cs +50 -0
  98. package/Runtime/TreeTemplate.cs.meta +12 -0
  99. package/Runtime/Utils.cs +268 -0
  100. package/Runtime/Utils.cs.meta +11 -0
  101. package/Runtime/VSProIntegration.cs +132 -0
  102. package/Runtime/VSProIntegration.cs.meta +11 -0
  103. package/Runtime.meta +8 -0
  104. package/Samples~/ExampleTemplates/Examples/Birch.asset +364 -0
  105. package/Samples~/ExampleTemplates/Examples/Birch.asset.meta +8 -0
  106. package/Samples~/ExampleTemplates/Examples/Bush.asset +385 -0
  107. package/Samples~/ExampleTemplates/Examples/Bush.asset.meta +8 -0
  108. package/Samples~/ExampleTemplates/Examples/Eastern Pine.asset +482 -0
  109. package/Samples~/ExampleTemplates/Examples/Eastern Pine.asset.meta +8 -0
  110. package/Samples~/ExampleTemplates/Examples/FantasyTree.asset +406 -0
  111. package/Samples~/ExampleTemplates/Examples/FantasyTree.asset.meta +8 -0
  112. package/Samples~/ExampleTemplates/Examples/Fern.asset +291 -0
  113. package/Samples~/ExampleTemplates/Examples/Fern.asset.meta +8 -0
  114. package/Samples~/ExampleTemplates/Examples/High Poly.asset +300 -0
  115. package/Samples~/ExampleTemplates/Examples/High Poly.asset.meta +8 -0
  116. package/Samples~/ExampleTemplates/Examples/LightingData.asset +0 -0
  117. package/Samples~/ExampleTemplates/Examples/LightingData.asset.meta +8 -0
  118. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch Outline.mat +196 -0
  119. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch Outline.mat.meta +8 -0
  120. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch.mat +196 -0
  121. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Birch.mat.meta +8 -0
  122. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Fern.mat +181 -0
  123. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Fern.mat.meta +8 -0
  124. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark HighPoly.mat +201 -0
  125. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark HighPoly.mat.meta +8 -0
  126. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Oak.mat +208 -0
  127. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Oak.mat.meta +8 -0
  128. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Palm.mat +180 -0
  129. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Palm.mat.meta +8 -0
  130. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Pine.mat +206 -0
  131. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Pine.mat.meta +8 -0
  132. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Ponderossa.mat +206 -0
  133. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Ponderossa.mat.meta +8 -0
  134. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Poplar.mat +172 -0
  135. package/Samples~/ExampleTemplates/Examples/Materials/Bark/Bark Poplar.mat.meta +8 -0
  136. package/Samples~/ExampleTemplates/Examples/Materials/Bark.meta +8 -0
  137. package/Samples~/ExampleTemplates/Examples/Materials/Example Scene/Floor.mat +392 -0
  138. package/Samples~/ExampleTemplates/Examples/Materials/Example Scene/Floor.mat.meta +8 -0
  139. package/Samples~/ExampleTemplates/Examples/Materials/Example Scene.meta +8 -0
  140. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Fern.mat +202 -0
  141. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Fern.mat.meta +8 -0
  142. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs HighPoly.mat +265 -0
  143. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs HighPoly.mat.meta +8 -0
  144. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Needles.mat +267 -0
  145. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Needles.mat.meta +8 -0
  146. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palm.mat +232 -0
  147. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palm.mat.meta +8 -0
  148. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palmate.mat +250 -0
  149. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Palmate.mat.meta +8 -0
  150. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Pine.mat +247 -0
  151. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Pine.mat.meta +8 -0
  152. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Poplar.mat +223 -0
  153. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Poplar.mat.meta +8 -0
  154. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate Outline.mat +262 -0
  155. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate Outline.mat.meta +8 -0
  156. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate.mat +281 -0
  157. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Serrate.mat.meta +8 -0
  158. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Stone Pine.mat +267 -0
  159. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Stone Pine.mat.meta +8 -0
  160. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Willow.mat +236 -0
  161. package/Samples~/ExampleTemplates/Examples/Materials/Leafs/Leafs Willow.mat.meta +8 -0
  162. package/Samples~/ExampleTemplates/Examples/Materials/Leafs.meta +8 -0
  163. package/Samples~/ExampleTemplates/Examples/Materials.meta +8 -0
  164. package/Samples~/ExampleTemplates/Examples/Oak.asset +364 -0
  165. package/Samples~/ExampleTemplates/Examples/Oak.asset.meta +8 -0
  166. package/Samples~/ExampleTemplates/Examples/Old Oak.asset +364 -0
  167. package/Samples~/ExampleTemplates/Examples/Old Oak.asset.meta +8 -0
  168. package/Samples~/ExampleTemplates/Examples/Palm.asset +500 -0
  169. package/Samples~/ExampleTemplates/Examples/Palm.asset.meta +8 -0
  170. package/Samples~/ExampleTemplates/Examples/Pine 2.asset +387 -0
  171. package/Samples~/ExampleTemplates/Examples/Pine 2.asset.meta +8 -0
  172. package/Samples~/ExampleTemplates/Examples/Pine.asset +405 -0
  173. package/Samples~/ExampleTemplates/Examples/Pine.asset.meta +8 -0
  174. package/Samples~/ExampleTemplates/Examples/Ponderossa Pine.asset +478 -0
  175. package/Samples~/ExampleTemplates/Examples/Ponderossa Pine.asset.meta +8 -0
  176. package/Samples~/ExampleTemplates/Examples/Poplar.asset +309 -0
  177. package/Samples~/ExampleTemplates/Examples/Poplar.asset.meta +8 -0
  178. package/Samples~/ExampleTemplates/Examples/ReflectionProbe-0.exr +0 -0
  179. package/Samples~/ExampleTemplates/Examples/ReflectionProbe-0.exr.meta +117 -0
  180. package/Samples~/ExampleTemplates/Examples/Small Pine.asset +273 -0
  181. package/Samples~/ExampleTemplates/Examples/Small Pine.asset.meta +8 -0
  182. package/Samples~/ExampleTemplates/Examples/Small Tree.asset +364 -0
  183. package/Samples~/ExampleTemplates/Examples/Small Tree.asset.meta +8 -0
  184. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_C.png +0 -0
  185. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_C.png.meta +74 -0
  186. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_N.png +0 -0
  187. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Birch_N.png.meta +96 -0
  188. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_C.png +0 -0
  189. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_C.png.meta +116 -0
  190. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_N.png +0 -0
  191. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Damaged_N.png.meta +116 -0
  192. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_C.png +0 -0
  193. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_C.png.meta +132 -0
  194. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_N.png +0 -0
  195. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_1_N.png.meta +116 -0
  196. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_2_C.png +0 -0
  197. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_2_C.png.meta +132 -0
  198. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_C.png +0 -0
  199. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_C.png.meta +132 -0
  200. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_N.png +0 -0
  201. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_3_N.png.meta +116 -0
  202. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_C.png +0 -0
  203. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_C.png.meta +132 -0
  204. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_N.png +0 -0
  205. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Decidious_4_N.png.meta +116 -0
  206. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_C.png +0 -0
  207. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_C.png.meta +74 -0
  208. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_N.png +0 -0
  209. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Oak_N.png.meta +96 -0
  210. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_C.png +0 -0
  211. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_C.png.meta +74 -0
  212. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_N.bmp +0 -0
  213. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Palm_N.bmp.meta +96 -0
  214. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_C.png +0 -0
  215. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_C.png.meta +74 -0
  216. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_N.png +0 -0
  217. package/Samples~/ExampleTemplates/Examples/Textures/Bark/Bark_Pine_N.png.meta +96 -0
  218. package/Samples~/ExampleTemplates/Examples/Textures/Bark.meta +8 -0
  219. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_C.png +0 -0
  220. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_C.png.meta +96 -0
  221. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_N.png +0 -0
  222. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch Serrate_N.png.meta +96 -0
  223. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_C.png +0 -0
  224. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_C.png.meta +99 -0
  225. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_N.png +0 -0
  226. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Needles_N.png.meta +96 -0
  227. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_C.png +0 -0
  228. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_C.png.meta +99 -0
  229. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_N.png +0 -0
  230. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Palmate_N.png.meta +96 -0
  231. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_C.png +0 -0
  232. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_C.png.meta +88 -0
  233. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_N.png +0 -0
  234. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_1_N.png.meta +96 -0
  235. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_C.png +0 -0
  236. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_C.png.meta +96 -0
  237. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_N.png +0 -0
  238. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Pine_2_N.png.meta +96 -0
  239. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_C.png +0 -0
  240. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_C.png.meta +96 -0
  241. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_N.png +0 -0
  242. package/Samples~/ExampleTemplates/Examples/Textures/Branch/Branch_Poplar_N.png.meta +96 -0
  243. package/Samples~/ExampleTemplates/Examples/Textures/Branch.meta +8 -0
  244. package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_PSD.psd +0 -0
  245. package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_PSD.psd.meta +76 -0
  246. package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_Toon.png +0 -0
  247. package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp/Ramp_Toon.png.meta +76 -0
  248. package/Samples~/ExampleTemplates/Examples/Textures/Color Ramp.meta +8 -0
  249. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_C.png +0 -0
  250. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_C.png.meta +99 -0
  251. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_N.png +0 -0
  252. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Fern_N.png.meta +88 -0
  253. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_C.png +0 -0
  254. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_C.png.meta +88 -0
  255. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_N.png +0 -0
  256. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Palm_N.png.meta +88 -0
  257. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_C.png +0 -0
  258. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_C.png.meta +99 -0
  259. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_N.png +0 -0
  260. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Leaf_Willow_N.png.meta +88 -0
  261. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_C.png +0 -0
  262. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_C.png.meta +96 -0
  263. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_N.png +0 -0
  264. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs/Single_Serrated_N.png.meta +96 -0
  265. package/Samples~/ExampleTemplates/Examples/Textures/Single Leafs.meta +8 -0
  266. package/Samples~/ExampleTemplates/Examples/Textures.meta +8 -0
  267. package/Samples~/ExampleTemplates/Examples/Willow.asset +364 -0
  268. package/Samples~/ExampleTemplates/Examples/Willow.asset.meta +8 -0
  269. package/Samples~/ExampleTemplates/Examples.meta +8 -0
  270. package/Samples~/ExampleTemplates/Examples.unity +12660 -0
  271. package/Samples~/ExampleTemplates/Examples.unity.meta +7 -0
  272. package/Samples~/ExampleTemplates.meta +8 -0
  273. package/Shaders/BarkShader.shadergraph +17215 -0
  274. package/Shaders/BarkShader.shadergraph.meta +10 -0
  275. package/Shaders/Editor/BarkEditor.cs +100 -0
  276. package/Shaders/Editor/BarkEditor.cs.meta +11 -0
  277. package/Shaders/Editor/LeafEditor.cs +173 -0
  278. package/Shaders/Editor/LeafEditor.cs.meta +11 -0
  279. package/Shaders/Editor.meta +8 -0
  280. package/Shaders/LeafShader.shadergraph +34803 -0
  281. package/Shaders/LeafShader.shadergraph.meta +10 -0
  282. package/Shaders/MTree.Shaders.asmdef +3 -0
  283. package/Shaders/MTree.Shaders.asmdef.meta +7 -0
  284. package/Shaders/leafFunctions.hlsl +201 -0
  285. package/Shaders/leafFunctions.hlsl.meta +7 -0
  286. package/Shaders/vertexFunc.hlsl +55 -0
  287. package/Shaders/vertexFunc.hlsl.meta +7 -0
  288. package/Shaders.meta +8 -0
  289. package/package.json +36 -0
  290. package/package.json.meta +7 -0
@@ -0,0 +1,406 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!114 &-7632881145855755347
4
+ MonoBehaviour:
5
+ m_ObjectHideFlags: 0
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: b0a7c716bf67b2c4ca1923c770d36116, type: 3}
13
+ m_Name: Grow
14
+ m_EditorClassIdentifier:
15
+ seed: 6563
16
+ id: 1958665707
17
+ parent: {fileID: 3900644729636306203}
18
+ chiildren:
19
+ - {fileID: -1493667486659727166}
20
+ enabled: 1
21
+ showDeleteButton: 1
22
+ rect:
23
+ serializedVersion: 2
24
+ x: 30
25
+ y: 34
26
+ width: 200
27
+ height: 37
28
+ deleteRect:
29
+ serializedVersion: 2
30
+ x: 200
31
+ y: 43
32
+ width: 18
33
+ height: 18
34
+ length: 9.13
35
+ lengthCurve:
36
+ serializedVersion: 2
37
+ m_Curve:
38
+ - serializedVersion: 3
39
+ time: -0.0049743466
40
+ value: 1.0005834
41
+ inSlope: 0
42
+ outSlope: 0
43
+ tangentMode: 0
44
+ weightedMode: 0
45
+ inWeight: 0.33333334
46
+ outWeight: 0.33333334
47
+ - serializedVersion: 3
48
+ time: 1
49
+ value: 0.8
50
+ inSlope: -0.19999999
51
+ outSlope: -0.19999999
52
+ tangentMode: 0
53
+ weightedMode: 0
54
+ inWeight: 0.33333334
55
+ outWeight: 0.33333334
56
+ m_PreInfinity: 2
57
+ m_PostInfinity: 2
58
+ m_RotationOrder: 4
59
+ resolution: 10.65
60
+ splitProba: 0.06
61
+ splitAngle: 0.69
62
+ maxSplits: 2
63
+ radius:
64
+ serializedVersion: 2
65
+ m_Curve:
66
+ - serializedVersion: 3
67
+ time: -0.0024032593
68
+ value: 1.0012856
69
+ inSlope: 0
70
+ outSlope: 0
71
+ tangentMode: 0
72
+ weightedMode: 0
73
+ inWeight: 0.33333334
74
+ outWeight: 0.33333334
75
+ - serializedVersion: 3
76
+ time: 0.96643066
77
+ value: 0.5602112
78
+ inSlope: -0.5
79
+ outSlope: -0.5
80
+ tangentMode: 0
81
+ weightedMode: 0
82
+ inWeight: 0.33333334
83
+ outWeight: 0.33333334
84
+ m_PreInfinity: 2
85
+ m_PostInfinity: 2
86
+ m_RotationOrder: 4
87
+ splitProbaCurve:
88
+ serializedVersion: 2
89
+ m_Curve:
90
+ - serializedVersion: 3
91
+ time: -0.012439348
92
+ value: 0.5073239
93
+ inSlope: -1.6012136
94
+ outSlope: -1.6012136
95
+ tangentMode: 0
96
+ weightedMode: 0
97
+ inWeight: 0.33333334
98
+ outWeight: 0.046420075
99
+ - serializedVersion: 3
100
+ time: 0.9708557
101
+ value: 0.4663744
102
+ inSlope: 0.9949513
103
+ outSlope: 0.9949513
104
+ tangentMode: 0
105
+ weightedMode: 0
106
+ inWeight: 0.047263574
107
+ outWeight: 0.33333334
108
+ m_PreInfinity: 2
109
+ m_PostInfinity: 2
110
+ m_RotationOrder: 4
111
+ splitRadius: 0.62
112
+ randomness: 0
113
+ upAttraction: 0.63
114
+ gravityStrength: 0.1
115
+ obstacleAvoidance: 0
116
+ --- !u!114 &-1493667486659727166
117
+ MonoBehaviour:
118
+ m_ObjectHideFlags: 0
119
+ m_CorrespondingSourceObject: {fileID: 0}
120
+ m_PrefabInstance: {fileID: 0}
121
+ m_PrefabAsset: {fileID: 0}
122
+ m_GameObject: {fileID: 0}
123
+ m_Enabled: 1
124
+ m_EditorHideFlags: 0
125
+ m_Script: {fileID: 11500000, guid: 33897084c7891e54eb6df4c02cb4118d, type: 3}
126
+ m_Name: Branch
127
+ m_EditorClassIdentifier:
128
+ seed: 9453
129
+ id: 1576625154
130
+ parent: {fileID: -7632881145855755347}
131
+ chiildren:
132
+ - {fileID: 6980952174172144786}
133
+ enabled: 1
134
+ showDeleteButton: 1
135
+ rect:
136
+ serializedVersion: 2
137
+ x: 60
138
+ y: 68
139
+ width: 200
140
+ height: 37
141
+ deleteRect:
142
+ serializedVersion: 2
143
+ x: 230
144
+ y: 77
145
+ width: 18
146
+ height: 18
147
+ length: 6.8
148
+ lengthCurve:
149
+ serializedVersion: 2
150
+ m_Curve:
151
+ - serializedVersion: 3
152
+ time: 0
153
+ value: 1
154
+ inSlope: 0
155
+ outSlope: -0.19999999
156
+ tangentMode: 0
157
+ weightedMode: 0
158
+ inWeight: 0.33333334
159
+ outWeight: 0.33333334
160
+ - serializedVersion: 3
161
+ time: 1
162
+ value: 0.8
163
+ inSlope: -0.19999999
164
+ outSlope: 0
165
+ tangentMode: 0
166
+ weightedMode: 0
167
+ inWeight: 0.33333334
168
+ outWeight: 0.33333334
169
+ m_PreInfinity: 2
170
+ m_PostInfinity: 2
171
+ m_RotationOrder: 4
172
+ resolution: 1
173
+ number: 48
174
+ splitProba: 0
175
+ angle: 0.45
176
+ shape:
177
+ serializedVersion: 2
178
+ m_Curve:
179
+ - serializedVersion: 3
180
+ time: 0.0024909973
181
+ value: 1.0047302
182
+ inSlope: -1.026304
183
+ outSlope: -1.026304
184
+ tangentMode: 34
185
+ weightedMode: 0
186
+ inWeight: 0
187
+ outWeight: 0.33333334
188
+ - serializedVersion: 3
189
+ time: 0.99749756
190
+ value: -0.016448975
191
+ inSlope: -1.026304
192
+ outSlope: -1.026304
193
+ tangentMode: 34
194
+ weightedMode: 0
195
+ inWeight: 0.33333334
196
+ outWeight: 0
197
+ m_PreInfinity: 2
198
+ m_PostInfinity: 2
199
+ m_RotationOrder: 4
200
+ splitProbaCurve:
201
+ serializedVersion: 2
202
+ m_Curve:
203
+ - serializedVersion: 3
204
+ time: 0
205
+ value: 0.5
206
+ inSlope: 0
207
+ outSlope: 0.5
208
+ tangentMode: 0
209
+ weightedMode: 0
210
+ inWeight: 0.33333334
211
+ outWeight: 0.33333334
212
+ - serializedVersion: 3
213
+ time: 1
214
+ value: 1
215
+ inSlope: 0.5
216
+ outSlope: 0
217
+ tangentMode: 0
218
+ weightedMode: 0
219
+ inWeight: 0.33333334
220
+ outWeight: 0.33333334
221
+ m_PreInfinity: 2
222
+ m_PostInfinity: 2
223
+ m_RotationOrder: 4
224
+ radius: 0.65
225
+ randomness: 0.3
226
+ upAttraction: 0.73
227
+ start: 0.9
228
+ gravityStrength: -0.24
229
+ obstacleAvoidance: 0
230
+ --- !u!114 &11400000
231
+ MonoBehaviour:
232
+ m_ObjectHideFlags: 0
233
+ m_CorrespondingSourceObject: {fileID: 0}
234
+ m_PrefabInstance: {fileID: 0}
235
+ m_PrefabAsset: {fileID: 0}
236
+ m_GameObject: {fileID: 0}
237
+ m_Enabled: 1
238
+ m_EditorHideFlags: 0
239
+ m_Script: {fileID: 11500000, guid: 58c179839cc7e1e4bb7fdb33c0866483, type: 3}
240
+ m_Name: FantasyTree
241
+ m_EditorClassIdentifier:
242
+ treeFunctions:
243
+ - {fileID: 3900644729636306203}
244
+ - {fileID: -7632881145855755347}
245
+ - {fileID: -1493667486659727166}
246
+ - {fileID: 6980952174172144786}
247
+ --- !u!114 &3900644729636306203
248
+ MonoBehaviour:
249
+ m_ObjectHideFlags: 0
250
+ m_CorrespondingSourceObject: {fileID: 0}
251
+ m_PrefabInstance: {fileID: 0}
252
+ m_PrefabAsset: {fileID: 0}
253
+ m_GameObject: {fileID: 0}
254
+ m_Enabled: 1
255
+ m_EditorHideFlags: 0
256
+ m_Script: {fileID: 11500000, guid: 156ba2a5f4fc7bf47b493b7cbf9c7f19, type: 3}
257
+ m_Name: Trunk
258
+ m_EditorClassIdentifier:
259
+ seed: 7226
260
+ id: -907546100
261
+ parent: {fileID: 0}
262
+ chiildren:
263
+ - {fileID: -7632881145855755347}
264
+ enabled: 1
265
+ showDeleteButton: 0
266
+ rect:
267
+ serializedVersion: 2
268
+ x: 0
269
+ y: 0
270
+ width: 200
271
+ height: 37
272
+ deleteRect:
273
+ serializedVersion: 2
274
+ x: 0
275
+ y: 0
276
+ width: 0
277
+ height: 0
278
+ radiusMultiplier: 1.18
279
+ radius:
280
+ serializedVersion: 2
281
+ m_Curve:
282
+ - serializedVersion: 3
283
+ time: 0.0024871826
284
+ value: 0.9970703
285
+ inSlope: 0.03223732
286
+ outSlope: 0.03223732
287
+ tangentMode: 0
288
+ weightedMode: 0
289
+ inWeight: 0
290
+ outWeight: 0.12189055
291
+ - serializedVersion: 3
292
+ time: 0.9875488
293
+ value: 1.00877
294
+ inSlope: 0.2074326
295
+ outSlope: 0.2074326
296
+ tangentMode: 0
297
+ weightedMode: 0
298
+ inWeight: 0.429285
299
+ outWeight: 0
300
+ m_PreInfinity: 2
301
+ m_PostInfinity: 2
302
+ m_RotationOrder: 4
303
+ length: 14.12
304
+ number: 1
305
+ randomness: 0.194
306
+ originAttraction: 0.08
307
+ resolution: 1.5
308
+ rootShape:
309
+ serializedVersion: 2
310
+ m_Curve:
311
+ - serializedVersion: 3
312
+ time: -0.0023765564
313
+ value: 0.47623825
314
+ inSlope: 0.47002617
315
+ outSlope: 0.47002617
316
+ tangentMode: 0
317
+ weightedMode: 0
318
+ inWeight: 0.33333334
319
+ outWeight: 0.3191261
320
+ - serializedVersion: 3
321
+ time: 0.26716128
322
+ value: 0.43538296
323
+ inSlope: -1.6988846
324
+ outSlope: -1.6988846
325
+ tangentMode: 0
326
+ weightedMode: 0
327
+ inWeight: 0.33333334
328
+ outWeight: 0.24359526
329
+ - serializedVersion: 3
330
+ time: 0.49363688
331
+ value: 0.3159612
332
+ inSlope: -1.0615766
333
+ outSlope: -1.0615766
334
+ tangentMode: 0
335
+ weightedMode: 0
336
+ inWeight: 0.41717094
337
+ outWeight: 0.33333334
338
+ - serializedVersion: 3
339
+ time: 1.0015012
340
+ value: -0.0038935915
341
+ inSlope: -1.6543542
342
+ outSlope: -1.6543542
343
+ tangentMode: 0
344
+ weightedMode: 0
345
+ inWeight: 0.21637864
346
+ outWeight: 0.33333334
347
+ m_PreInfinity: 2
348
+ m_PostInfinity: 2
349
+ m_RotationOrder: 4
350
+ rootRadius: 1.57
351
+ rootInnerRadius: 0.05
352
+ rootHeight: 19.69
353
+ rootResolution: 1.61
354
+ flareNumber: 3
355
+ spinAmount: 0.93
356
+ displacementStrength: 0.69
357
+ displacementSize: 2.5
358
+ heightOffset: 0.35
359
+ --- !u!114 &6980952174172144786
360
+ MonoBehaviour:
361
+ m_ObjectHideFlags: 0
362
+ m_CorrespondingSourceObject: {fileID: 0}
363
+ m_PrefabInstance: {fileID: 0}
364
+ m_PrefabAsset: {fileID: 0}
365
+ m_GameObject: {fileID: 0}
366
+ m_Enabled: 1
367
+ m_EditorHideFlags: 0
368
+ m_Script: {fileID: 11500000, guid: 85d8cd2303af54543a4524493d539ae8, type: 3}
369
+ m_Name: Leaves
370
+ m_EditorClassIdentifier:
371
+ seed: 9163
372
+ id: -1677415899
373
+ parent: {fileID: -1493667486659727166}
374
+ chiildren: []
375
+ enabled: 1
376
+ showDeleteButton: 1
377
+ rect:
378
+ serializedVersion: 2
379
+ x: 90
380
+ y: 102
381
+ width: 200
382
+ height: 37
383
+ deleteRect:
384
+ serializedVersion: 2
385
+ x: 260
386
+ y: 111
387
+ width: 18
388
+ height: 18
389
+ leafType: 5
390
+ number: 291
391
+ customLeafMesh: {fileID: 0}
392
+ maxRadius: 0.23
393
+ size: 6.43
394
+ overrideNormals: 0
395
+ minWeight: -1
396
+ maxWeight: 0.0990212
397
+ length: 6.44
398
+ lengthCurve:
399
+ serializedVersion: 2
400
+ m_Curve: []
401
+ m_PreInfinity: 2
402
+ m_PostInfinity: 2
403
+ m_RotationOrder: 4
404
+ uLoops: 3
405
+ resolution: 2.5
406
+ gravityStrength: 0.03
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 6fdee548feebf4544a591f96beb7da4d
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 0
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,291 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!114 &11400000
4
+ MonoBehaviour:
5
+ m_ObjectHideFlags: 0
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: 58c179839cc7e1e4bb7fdb33c0866483, type: 3}
13
+ m_Name: Fern
14
+ m_EditorClassIdentifier:
15
+ treeFunctions:
16
+ - {fileID: 835281967947974907}
17
+ - {fileID: 3283350458869886154}
18
+ - {fileID: 7752586978665519266}
19
+ --- !u!114 &835281967947974907
20
+ MonoBehaviour:
21
+ m_ObjectHideFlags: 0
22
+ m_CorrespondingSourceObject: {fileID: 0}
23
+ m_PrefabInstance: {fileID: 0}
24
+ m_PrefabAsset: {fileID: 0}
25
+ m_GameObject: {fileID: 0}
26
+ m_Enabled: 1
27
+ m_EditorHideFlags: 0
28
+ m_Script: {fileID: 11500000, guid: 156ba2a5f4fc7bf47b493b7cbf9c7f19, type: 3}
29
+ m_Name: Trunk
30
+ m_EditorClassIdentifier:
31
+ seed: 637
32
+ id: 711376427
33
+ parent: {fileID: 0}
34
+ chiildren:
35
+ - {fileID: 3283350458869886154}
36
+ enabled: 1
37
+ showDeleteButton: 0
38
+ rect:
39
+ serializedVersion: 2
40
+ x: 0
41
+ y: 0
42
+ width: 200
43
+ height: 37
44
+ deleteRect:
45
+ serializedVersion: 2
46
+ x: 0
47
+ y: 0
48
+ width: 0
49
+ height: 0
50
+ radiusMultiplier: 0.01
51
+ radius:
52
+ serializedVersion: 2
53
+ m_Curve:
54
+ - serializedVersion: 3
55
+ time: 0
56
+ value: 1
57
+ inSlope: 0
58
+ outSlope: 0
59
+ tangentMode: 0
60
+ weightedMode: 0
61
+ inWeight: 0.33333334
62
+ outWeight: 0.33333334
63
+ - serializedVersion: 3
64
+ time: 1
65
+ value: 0
66
+ inSlope: -1
67
+ outSlope: -1
68
+ tangentMode: 0
69
+ weightedMode: 0
70
+ inWeight: 0.33333334
71
+ outWeight: 0.33333334
72
+ m_PreInfinity: 2
73
+ m_PostInfinity: 2
74
+ m_RotationOrder: 4
75
+ length: 0.04
76
+ number: 1
77
+ randomness: 0.147
78
+ originAttraction: 0.167
79
+ resolution: 5
80
+ rootShape:
81
+ serializedVersion: 2
82
+ m_Curve:
83
+ - serializedVersion: 3
84
+ time: 0
85
+ value: 1
86
+ inSlope: -2
87
+ outSlope: -2
88
+ tangentMode: 0
89
+ weightedMode: 0
90
+ inWeight: 0.33333334
91
+ outWeight: 0.33333334
92
+ - serializedVersion: 3
93
+ time: 1
94
+ value: 0
95
+ inSlope: 0
96
+ outSlope: 0
97
+ tangentMode: 0
98
+ weightedMode: 0
99
+ inWeight: 0.33333334
100
+ outWeight: 0.33333334
101
+ m_PreInfinity: 2
102
+ m_PostInfinity: 2
103
+ m_RotationOrder: 4
104
+ rootRadius: 0
105
+ rootInnerRadius: 0
106
+ rootHeight: 0.01
107
+ rootResolution: 1
108
+ flareNumber: 0
109
+ spinAmount: 0.1
110
+ displacementStrength: 1
111
+ displacementSize: 2.5
112
+ heightOffset: 0
113
+ --- !u!114 &3283350458869886154
114
+ MonoBehaviour:
115
+ m_ObjectHideFlags: 0
116
+ m_CorrespondingSourceObject: {fileID: 0}
117
+ m_PrefabInstance: {fileID: 0}
118
+ m_PrefabAsset: {fileID: 0}
119
+ m_GameObject: {fileID: 0}
120
+ m_Enabled: 1
121
+ m_EditorHideFlags: 0
122
+ m_Script: {fileID: 11500000, guid: 33897084c7891e54eb6df4c02cb4118d, type: 3}
123
+ m_Name: Branch
124
+ m_EditorClassIdentifier:
125
+ seed: 1671
126
+ id: -1797223281
127
+ parent: {fileID: 835281967947974907}
128
+ chiildren:
129
+ - {fileID: 7752586978665519266}
130
+ enabled: 1
131
+ showDeleteButton: 1
132
+ rect:
133
+ serializedVersion: 2
134
+ x: 30
135
+ y: 34
136
+ width: 200
137
+ height: 37
138
+ deleteRect:
139
+ serializedVersion: 2
140
+ x: 200
141
+ y: 43
142
+ width: 18
143
+ height: 18
144
+ length: 0.001
145
+ lengthCurve:
146
+ serializedVersion: 2
147
+ m_Curve:
148
+ - serializedVersion: 3
149
+ time: 0
150
+ value: 1
151
+ inSlope: 0
152
+ outSlope: -0.19999999
153
+ tangentMode: 0
154
+ weightedMode: 0
155
+ inWeight: 0.33333334
156
+ outWeight: 0.33333334
157
+ - serializedVersion: 3
158
+ time: 1
159
+ value: 0.8
160
+ inSlope: -0.19999999
161
+ outSlope: 0
162
+ tangentMode: 0
163
+ weightedMode: 0
164
+ inWeight: 0.33333334
165
+ outWeight: 0.33333334
166
+ m_PreInfinity: 2
167
+ m_PostInfinity: 2
168
+ m_RotationOrder: 4
169
+ resolution: 1
170
+ number: 30
171
+ splitProba: 0.1
172
+ angle: 0.7
173
+ shape:
174
+ serializedVersion: 2
175
+ m_Curve:
176
+ - serializedVersion: 3
177
+ time: 0
178
+ value: 1
179
+ inSlope: 0
180
+ outSlope: 0
181
+ tangentMode: 0
182
+ weightedMode: 0
183
+ inWeight: 0.33333334
184
+ outWeight: 0.33333334
185
+ - serializedVersion: 3
186
+ time: 1
187
+ value: 0
188
+ inSlope: 0
189
+ outSlope: 0
190
+ tangentMode: 0
191
+ weightedMode: 0
192
+ inWeight: 0.33333334
193
+ outWeight: 0.33333334
194
+ m_PreInfinity: 2
195
+ m_PostInfinity: 2
196
+ m_RotationOrder: 4
197
+ splitProbaCurve:
198
+ serializedVersion: 2
199
+ m_Curve:
200
+ - serializedVersion: 3
201
+ time: 0
202
+ value: 0.5
203
+ inSlope: 0
204
+ outSlope: 0.5
205
+ tangentMode: 0
206
+ weightedMode: 0
207
+ inWeight: 0.33333334
208
+ outWeight: 0.33333334
209
+ - serializedVersion: 3
210
+ time: 1
211
+ value: 1
212
+ inSlope: 0.5
213
+ outSlope: 0
214
+ tangentMode: 0
215
+ weightedMode: 0
216
+ inWeight: 0.33333334
217
+ outWeight: 0.33333334
218
+ m_PreInfinity: 2
219
+ m_PostInfinity: 2
220
+ m_RotationOrder: 4
221
+ radius: 0.361
222
+ randomness: 0.25
223
+ upAttraction: 0.5
224
+ start: 0
225
+ gravityStrength: 0.1
226
+ --- !u!114 &7752586978665519266
227
+ MonoBehaviour:
228
+ m_ObjectHideFlags: 0
229
+ m_CorrespondingSourceObject: {fileID: 0}
230
+ m_PrefabInstance: {fileID: 0}
231
+ m_PrefabAsset: {fileID: 0}
232
+ m_GameObject: {fileID: 0}
233
+ m_Enabled: 1
234
+ m_EditorHideFlags: 0
235
+ m_Script: {fileID: 11500000, guid: 85d8cd2303af54543a4524493d539ae8, type: 3}
236
+ m_Name: Leaves
237
+ m_EditorClassIdentifier:
238
+ seed: 5350
239
+ id: -751811491
240
+ parent: {fileID: 3283350458869886154}
241
+ chiildren: []
242
+ enabled: 1
243
+ showDeleteButton: 1
244
+ rect:
245
+ serializedVersion: 2
246
+ x: 60
247
+ y: 68
248
+ width: 200
249
+ height: 37
250
+ deleteRect:
251
+ serializedVersion: 2
252
+ x: 230
253
+ y: 77
254
+ width: 18
255
+ height: 18
256
+ leafType: 4
257
+ number: 15
258
+ customLeafMesh: {fileID: 0}
259
+ maxRadius: 0.214
260
+ size: 0.79
261
+ overrideNormals: 1
262
+ minWeight: -0.7812073
263
+ maxWeight: 0.081545115
264
+ length: 2
265
+ lengthCurve:
266
+ serializedVersion: 2
267
+ m_Curve:
268
+ - serializedVersion: 3
269
+ time: 0
270
+ value: 1
271
+ inSlope: 0
272
+ outSlope: -0.5
273
+ tangentMode: 0
274
+ weightedMode: 0
275
+ inWeight: 0.33333334
276
+ outWeight: 0.33333334
277
+ - serializedVersion: 3
278
+ time: 1
279
+ value: 0.5
280
+ inSlope: -0.5
281
+ outSlope: 0
282
+ tangentMode: 0
283
+ weightedMode: 0
284
+ inWeight: 0.33333334
285
+ outWeight: 0.33333334
286
+ m_PreInfinity: 2
287
+ m_PostInfinity: 2
288
+ m_RotationOrder: 4
289
+ uLoops: 2
290
+ resolution: 1
291
+ gravityStrength: 1
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 244740551441bd04fa4a70ff60c42e7d
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 0
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant: