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,236 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!114 &-8558390303722099254
4
+ MonoBehaviour:
5
+ m_ObjectHideFlags: 11
6
+ m_CorrespondingSourceObject: {fileID: 0}
7
+ m_PrefabInstance: {fileID: 0}
8
+ m_PrefabAsset: {fileID: 0}
9
+ m_GameObject: {fileID: 0}
10
+ m_Enabled: 1
11
+ m_EditorHideFlags: 0
12
+ m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
13
+ m_Name:
14
+ m_EditorClassIdentifier:
15
+ version: 10
16
+ --- !u!21 &2100000
17
+ Material:
18
+ serializedVersion: 8
19
+ m_ObjectHideFlags: 0
20
+ m_CorrespondingSourceObject: {fileID: 0}
21
+ m_PrefabInstance: {fileID: 0}
22
+ m_PrefabAsset: {fileID: 0}
23
+ m_Name: Leafs Willow
24
+ m_Shader: {fileID: -6465566751694194690, guid: e0a43faff4d99644e8707dd9bad91d13, type: 3}
25
+ m_Parent: {fileID: 0}
26
+ m_ModifiedSerializedProperties: 0
27
+ m_ValidKeywords: []
28
+ m_InvalidKeywords:
29
+ - _GLOSSYREFLECTIONS_OFF
30
+ - _LEAFTYPE_DEFAULT
31
+ - _SPECULARHIGHLIGHTS_OFF
32
+ m_LightmapFlags: 4
33
+ m_EnableInstancingVariants: 0
34
+ m_DoubleSidedGI: 0
35
+ m_CustomRenderQueue: -1
36
+ stringTagMap: {}
37
+ disabledShaderPasses:
38
+ - MOTIONVECTORS
39
+ m_LockedProperties:
40
+ m_SavedProperties:
41
+ serializedVersion: 3
42
+ m_TexEnvs:
43
+ - _Albedo:
44
+ m_Texture: {fileID: 2800000, guid: e98b9c4e568a01b4faa0854229529f3b, type: 3}
45
+ m_Scale: {x: 1.55, y: 1}
46
+ m_Offset: {x: 0, y: 0}
47
+ - _BumpMap:
48
+ m_Texture: {fileID: 2800000, guid: 0664f20bb2cf5c049bd7cad13e624e7e, type: 3}
49
+ m_Scale: {x: 1, y: 1}
50
+ m_Offset: {x: 0, y: 0}
51
+ - _Diffuse:
52
+ m_Texture: {fileID: 2800000, guid: e98b9c4e568a01b4faa0854229529f3b, type: 3}
53
+ m_Scale: {x: 1, y: 1}
54
+ m_Offset: {x: 0, y: 0}
55
+ - _MainTex:
56
+ m_Texture: {fileID: 2800000, guid: 814a058e8949c104781c711af9a0e500, type: 3}
57
+ m_Scale: {x: 1, y: 1}
58
+ m_Offset: {x: 0, y: 0}
59
+ - _Maintex:
60
+ m_Texture: {fileID: 2800000, guid: e98b9c4e568a01b4faa0854229529f3b, type: 3}
61
+ m_Scale: {x: 1, y: 1}
62
+ m_Offset: {x: 0, y: 0}
63
+ - _Normal:
64
+ m_Texture: {fileID: 2800000, guid: 04ec949d3d83ae8488d1bc5a692822ec, type: 3}
65
+ m_Scale: {x: 1, y: 1}
66
+ m_Offset: {x: 0, y: 0}
67
+ - _NormalMap:
68
+ m_Texture: {fileID: 2800000, guid: 04ec949d3d83ae8488d1bc5a692822ec, type: 3}
69
+ m_Scale: {x: 1, y: 1}
70
+ m_Offset: {x: 0, y: 0}
71
+ - _SSSMap:
72
+ m_Texture: {fileID: 0}
73
+ m_Scale: {x: 1, y: 1}
74
+ m_Offset: {x: 0, y: 0}
75
+ - _texcoord:
76
+ m_Texture: {fileID: 0}
77
+ m_Scale: {x: 1, y: 1}
78
+ m_Offset: {x: 0, y: 0}
79
+ - _texcoord4:
80
+ m_Texture: {fileID: 0}
81
+ m_Scale: {x: 1, y: 1}
82
+ m_Offset: {x: 0, y: 0}
83
+ - unity_Lightmaps:
84
+ m_Texture: {fileID: 0}
85
+ m_Scale: {x: 1, y: 1}
86
+ m_Offset: {x: 0, y: 0}
87
+ - unity_LightmapsInd:
88
+ m_Texture: {fileID: 0}
89
+ m_Scale: {x: 1, y: 1}
90
+ m_Offset: {x: 0, y: 0}
91
+ - unity_ShadowMasks:
92
+ m_Texture: {fileID: 0}
93
+ m_Scale: {x: 1, y: 1}
94
+ m_Offset: {x: 0, y: 0}
95
+ m_Ints: []
96
+ m_Floats:
97
+ - GlobalWindInfluence: 1
98
+ - _AOstrength: 0.545
99
+ - _AlphaCutoff: 0.5
100
+ - _AlphaCutoffEnable: 0
101
+ - _AlphaDstBlend: 0
102
+ - _AlphaSrcBlend: 1
103
+ - _Ao: 0.83
104
+ - _Attentuation: 2
105
+ - _BlendMode: 0
106
+ - _BumpScale: 1
107
+ - _BumpStrength: 1.84
108
+ - _ColorShifting: 1
109
+ - _ColorSource: 1
110
+ - _ColorVariation: 0.15
111
+ - _CullMode: 0
112
+ - _CullModeForward: 2
113
+ - _CustomLightIntensity: 3
114
+ - _CustomLightMode: 1
115
+ - _Cutoff: 0.2
116
+ - _Cutout: 0.5
117
+ - _DiffusionProfile: 1
118
+ - _Distortion: 1.38
119
+ - _DoubleSidedEnable: 1
120
+ - _DoubleSidedNormalMode: 2
121
+ - _DstBlend: 0
122
+ - _GlobalTurbulenceInfluence: 1
123
+ - _GlobalWindInflucene: 1
124
+ - _GlobalWindInfluence: 1
125
+ - _GlobalWindInfluence1: 1
126
+ - _Glossiness: 0
127
+ - _GlossinessThreshold: 0
128
+ - _GlossinessVariance: 0
129
+ - _GlossyReflections: 0
130
+ - _Hello: 2
131
+ - _Hue: 0
132
+ - _Leaftype: 0
133
+ - _LightAttentuation: 0.38
134
+ - _LightIntensity: 1
135
+ - _LightSouce: 0
136
+ - _LightingGlobalContribution: 1
137
+ - _LightingGlobalIntensity: 1
138
+ - _LocalWindStrength: 0
139
+ - _MSK: 0
140
+ - _MaskClipValue: 0.5
141
+ - _Metallic: 0
142
+ - _NormalScale: 0
143
+ - _NormalStrength: 1.27
144
+ - _OcclusionStrength: 1
145
+ - _Power: 1
146
+ - _QueueControl: -1
147
+ - _QueueOffset: 0
148
+ - _ReceivesSSR: 1
149
+ - _RenderQueueType: 1
150
+ - _RequireSplitLighting: 0
151
+ - _SSSPower: 2.5
152
+ - _SSSPower1: 0
153
+ - _SSSScale: 0.91
154
+ - _SSSScale1: 0
155
+ - _Saturation: 1
156
+ - _Scale: 2
157
+ - _Smoothness: 0.1176471
158
+ - _Smoothness1: 0
159
+ - _SmoothnessThreshold: 0
160
+ - _SmoothnessThreshold1: 0
161
+ - _SmoothnessVariance: 0.5
162
+ - _SmoothnessVariance1: 0.5
163
+ - _Specular: 1
164
+ - _SpecularHighlights: 0
165
+ - _Specularity: 0
166
+ - _SrcBlend: 1
167
+ - _StencilRef: 0
168
+ - _StencilRefDepth: 0
169
+ - _StencilRefDistortionVec: 64
170
+ - _StencilRefGBuffer: 2
171
+ - _StencilRefMV: 128
172
+ - _StencilWriteMask: 3
173
+ - _StencilWriteMaskDepth: 32
174
+ - _StencilWriteMaskDistortionVec: 64
175
+ - _StencilWriteMaskGBuffer: 3
176
+ - _StencilWriteMaskMV: 128
177
+ - _SubsurfaceDistortion: 0.196
178
+ - _SubsurfaceIntensity: 4.13
179
+ - _SubsurfaceLightIntensity: 4.67
180
+ - _SubsurfaceMode: 1
181
+ - _SubsurfacePower: 2.54
182
+ - _SurfaceType: 0
183
+ - _ThicknessStrength: 1
184
+ - _TransAmbient: 0.479
185
+ - _TransDirect: 0.615
186
+ - _TransNormalDistortion: 0.26
187
+ - _TransNormalDistortion1: 1
188
+ - _TransScale: 1
189
+ - _TransScattering: 12.1
190
+ - _TransShadow: 0.521
191
+ - _TransShadow1: 0.752
192
+ - _Translucency: 25
193
+ - _Translucency1: 0.416
194
+ - _TranslucencyEnum: 1
195
+ - _TranslucencyMapPower: 3.7
196
+ - _TranslucenyDistortion: 1
197
+ - _TranslucenyIntensity: 0.2
198
+ - _TranslucenyLightIntensity: 1
199
+ - _TranslucenyLightSouce: 0
200
+ - _TranslucenyMode: 0
201
+ - _TranslucenyPower: 1
202
+ - _Transmission: 3
203
+ - _TransparentBackfaceEnable: 0
204
+ - _TransparentCullMode: 2
205
+ - _TransparentSortPriority: 0
206
+ - _UseShadowThreshold: 0
207
+ - _Value: 1.5
208
+ - _WindMode: 3
209
+ - _WindModeLeaves: 0
210
+ - _WindStrength: 0.2
211
+ - _ZTestDepthEqualForOpaque: 4
212
+ - _ZTestGBuffer: 4
213
+ - _ZTestTransparent: 4
214
+ - _ZWrite: 0
215
+ - __dirty: 0
216
+ - _transmission: 2
217
+ - cutoff: 0.354
218
+ m_Colors:
219
+ - _AmbientColor: {r: 0, g: 0, b: 0, a: 1}
220
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
221
+ - _ColorVariation: {r: 0.28676468, g: 1, b: 0.43924943, a: 1}
222
+ - _CustomLightColor: {r: 0.6704477, g: 1, b: 0, a: 1}
223
+ - _DiffusionProfile_asset: {r: -6.315383e-37, g: -7.0622125e-27, b: 4.6171996e-22, a: -8.3853756e-30}
224
+ - _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
225
+ - _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
226
+ - _LightColor: {r: 1, g: 1, b: 1, a: 1}
227
+ - _LightingCustomColor: {r: 0.0470588, g: 0.18039218, b: 0.06274508, a: 1}
228
+ - _SSSColor: {r: 0.7960797, g: 0.8308824, b: 0.47042605, a: 1}
229
+ - _SubsurfaceCustomColor: {r: 1, g: 0.86956525, b: 0, a: 1}
230
+ - _TranslucencyColor: {r: 1, g: 1, b: 1, a: 1}
231
+ - _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
232
+ - _TranslucencyTint: {r: 1, g: 1, b: 1, a: 1}
233
+ - _TranslucentColor: {r: 1, g: 1, b: 1, a: 1}
234
+ - _TransmissionTint: {r: 0.2352941, g: 0.3294118, b: 0, a: 1}
235
+ m_BuildTextureStacks: []
236
+ m_AllowLocking: 1
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 25d531e5e80b7d3489480408ad171789
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 2100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 5ffc7ee9faca2464baea1873f913ea36
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: aee3ac86d5c67cf42a23ddb800e85a40
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,364 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!114 &-8032307424745468853
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: 156ba2a5f4fc7bf47b493b7cbf9c7f19, type: 3}
13
+ m_Name: Trunk
14
+ m_EditorClassIdentifier:
15
+ seed: 7018
16
+ id: 954651299
17
+ parent: {fileID: 0}
18
+ chiildren:
19
+ - {fileID: 8786618103993740254}
20
+ - {fileID: 845837835725374059}
21
+ enabled: 1
22
+ showDeleteButton: 0
23
+ rect:
24
+ serializedVersion: 2
25
+ x: 0
26
+ y: 0
27
+ width: 200
28
+ height: 37
29
+ deleteRect:
30
+ serializedVersion: 2
31
+ x: 0
32
+ y: 0
33
+ width: 0
34
+ height: 0
35
+ radiusMultiplier: 0.3
36
+ radius:
37
+ serializedVersion: 2
38
+ m_Curve:
39
+ - serializedVersion: 3
40
+ time: 0
41
+ value: 1
42
+ inSlope: 0
43
+ outSlope: 0
44
+ tangentMode: 0
45
+ weightedMode: 0
46
+ inWeight: 0.33333334
47
+ outWeight: 0.33333334
48
+ - serializedVersion: 3
49
+ time: 1
50
+ value: 0
51
+ inSlope: -1
52
+ outSlope: -1
53
+ tangentMode: 0
54
+ weightedMode: 0
55
+ inWeight: 0.33333334
56
+ outWeight: 0.33333334
57
+ m_PreInfinity: 2
58
+ m_PostInfinity: 2
59
+ m_RotationOrder: 4
60
+ length: 15.19
61
+ number: 1
62
+ randomness: 0.14
63
+ originAttraction: 0.1
64
+ resolution: 1.5
65
+ rootShape:
66
+ serializedVersion: 2
67
+ m_Curve:
68
+ - serializedVersion: 3
69
+ time: 0
70
+ value: 1
71
+ inSlope: -2
72
+ outSlope: -2
73
+ tangentMode: 0
74
+ weightedMode: 0
75
+ inWeight: 0.33333334
76
+ outWeight: 0.33333334
77
+ - serializedVersion: 3
78
+ time: 1
79
+ value: 0
80
+ inSlope: 0
81
+ outSlope: 0
82
+ tangentMode: 0
83
+ weightedMode: 0
84
+ inWeight: 0.33333334
85
+ outWeight: 0.33333334
86
+ m_PreInfinity: 2
87
+ m_PostInfinity: 2
88
+ m_RotationOrder: 4
89
+ rootRadius: 0.843
90
+ rootInnerRadius: 0
91
+ rootHeight: 0.73
92
+ rootResolution: 3
93
+ flareNumber: 5
94
+ spinAmount: 0.1
95
+ displacementStrength: 0.51
96
+ displacementSize: 0.53
97
+ heightOffset: 0.42
98
+ --- !u!114 &-5327494232411295609
99
+ MonoBehaviour:
100
+ m_ObjectHideFlags: 0
101
+ m_CorrespondingSourceObject: {fileID: 0}
102
+ m_PrefabInstance: {fileID: 0}
103
+ m_PrefabAsset: {fileID: 0}
104
+ m_GameObject: {fileID: 0}
105
+ m_Enabled: 1
106
+ m_EditorHideFlags: 0
107
+ m_Script: {fileID: 11500000, guid: 85d8cd2303af54543a4524493d539ae8, type: 3}
108
+ m_Name: Leaves
109
+ m_EditorClassIdentifier:
110
+ seed: 5050
111
+ id: -491114968
112
+ parent: {fileID: 8786618103993740254}
113
+ chiildren: []
114
+ enabled: 1
115
+ showDeleteButton: 1
116
+ rect:
117
+ serializedVersion: 2
118
+ x: 60
119
+ y: 68
120
+ width: 200
121
+ height: 37
122
+ deleteRect:
123
+ serializedVersion: 2
124
+ x: 230
125
+ y: 77
126
+ width: 18
127
+ height: 18
128
+ leafType: 4
129
+ number: 806
130
+ customLeafMesh: {fileID: 0}
131
+ maxRadius: 0.279
132
+ size: 1.51
133
+ overrideNormals: 1
134
+ minWeight: -0.033899814
135
+ maxWeight: 0.5118644
136
+ length: 0
137
+ lengthCurve:
138
+ serializedVersion: 2
139
+ m_Curve: []
140
+ m_PreInfinity: 2
141
+ m_PostInfinity: 2
142
+ m_RotationOrder: 4
143
+ uLoops: 0
144
+ resolution: 0
145
+ gravityStrength: 0
146
+ --- !u!114 &11400000
147
+ MonoBehaviour:
148
+ m_ObjectHideFlags: 0
149
+ m_CorrespondingSourceObject: {fileID: 0}
150
+ m_PrefabInstance: {fileID: 0}
151
+ m_PrefabAsset: {fileID: 0}
152
+ m_GameObject: {fileID: 0}
153
+ m_Enabled: 1
154
+ m_EditorHideFlags: 0
155
+ m_Script: {fileID: 11500000, guid: 58c179839cc7e1e4bb7fdb33c0866483, type: 3}
156
+ m_Name: Oak
157
+ m_EditorClassIdentifier:
158
+ treeFunctions:
159
+ - {fileID: -8032307424745468853}
160
+ - {fileID: 8786618103993740254}
161
+ - {fileID: -5327494232411295609}
162
+ - {fileID: 845837835725374059}
163
+ --- !u!114 &845837835725374059
164
+ MonoBehaviour:
165
+ m_ObjectHideFlags: 0
166
+ m_CorrespondingSourceObject: {fileID: 0}
167
+ m_PrefabInstance: {fileID: 0}
168
+ m_PrefabAsset: {fileID: 0}
169
+ m_GameObject: {fileID: 0}
170
+ m_Enabled: 1
171
+ m_EditorHideFlags: 0
172
+ m_Script: {fileID: 11500000, guid: c81997976e05f6e45819b5dda33c654d, type: 3}
173
+ m_Name: Roots
174
+ m_EditorClassIdentifier:
175
+ seed: 9772
176
+ id: 1938467745
177
+ parent: {fileID: -8032307424745468853}
178
+ chiildren: []
179
+ enabled: 1
180
+ showDeleteButton: 1
181
+ rect:
182
+ serializedVersion: 2
183
+ x: 30
184
+ y: 102
185
+ width: 200
186
+ height: 37
187
+ deleteRect:
188
+ serializedVersion: 2
189
+ x: 200
190
+ y: 111
191
+ width: 18
192
+ height: 18
193
+ length: 1.5
194
+ resolution: 3
195
+ number: 8
196
+ splitProba: 0.4
197
+ angle: 0.5
198
+ shape:
199
+ serializedVersion: 2
200
+ m_Curve:
201
+ - serializedVersion: 3
202
+ time: 0
203
+ value: 1
204
+ inSlope: 0
205
+ outSlope: 0
206
+ tangentMode: 0
207
+ weightedMode: 0
208
+ inWeight: 0
209
+ outWeight: 0
210
+ - serializedVersion: 3
211
+ time: 1
212
+ value: 0.5
213
+ inSlope: 0
214
+ outSlope: 0
215
+ tangentMode: 0
216
+ weightedMode: 0
217
+ inWeight: 0
218
+ outWeight: 0
219
+ m_PreInfinity: 2
220
+ m_PostInfinity: 2
221
+ m_RotationOrder: 4
222
+ splitProbaCurve:
223
+ serializedVersion: 2
224
+ m_Curve:
225
+ - serializedVersion: 3
226
+ time: 0
227
+ value: 0.5
228
+ inSlope: 0
229
+ outSlope: 0.5
230
+ tangentMode: 0
231
+ weightedMode: 0
232
+ inWeight: 0
233
+ outWeight: 0
234
+ - serializedVersion: 3
235
+ time: 1
236
+ value: 1
237
+ inSlope: 0.5
238
+ outSlope: 0
239
+ tangentMode: 0
240
+ weightedMode: 0
241
+ inWeight: 0
242
+ outWeight: 0
243
+ m_PreInfinity: 2
244
+ m_PostInfinity: 2
245
+ m_RotationOrder: 4
246
+ radius: 0.6
247
+ randomness: 0.25
248
+ start: 0.1
249
+ end: 0.3
250
+ groundHeight: 0
251
+ attractionStrength: 1
252
+ --- !u!114 &8786618103993740254
253
+ MonoBehaviour:
254
+ m_ObjectHideFlags: 0
255
+ m_CorrespondingSourceObject: {fileID: 0}
256
+ m_PrefabInstance: {fileID: 0}
257
+ m_PrefabAsset: {fileID: 0}
258
+ m_GameObject: {fileID: 0}
259
+ m_Enabled: 1
260
+ m_EditorHideFlags: 0
261
+ m_Script: {fileID: 11500000, guid: 33897084c7891e54eb6df4c02cb4118d, type: 3}
262
+ m_Name: Branch
263
+ m_EditorClassIdentifier:
264
+ seed: 7332
265
+ id: 1230402973
266
+ parent: {fileID: -8032307424745468853}
267
+ chiildren:
268
+ - {fileID: -5327494232411295609}
269
+ enabled: 1
270
+ showDeleteButton: 1
271
+ rect:
272
+ serializedVersion: 2
273
+ x: 30
274
+ y: 34
275
+ width: 200
276
+ height: 37
277
+ deleteRect:
278
+ serializedVersion: 2
279
+ x: 200
280
+ y: 43
281
+ width: 18
282
+ height: 18
283
+ length: 6.01
284
+ lengthCurve:
285
+ serializedVersion: 2
286
+ m_Curve:
287
+ - serializedVersion: 3
288
+ time: -0.0059280396
289
+ value: 0.99438477
290
+ inSlope: -0.050228167
291
+ outSlope: -0.050228167
292
+ tangentMode: 0
293
+ weightedMode: 0
294
+ inWeight: 0.33333334
295
+ outWeight: 0.33333334
296
+ - serializedVersion: 3
297
+ time: 0.970038
298
+ value: 0.47559577
299
+ inSlope: -1.6060072
300
+ outSlope: -1.6060072
301
+ tangentMode: 0
302
+ weightedMode: 0
303
+ inWeight: 0.33333334
304
+ outWeight: 0.33333334
305
+ m_PreInfinity: 2
306
+ m_PostInfinity: 2
307
+ m_RotationOrder: 4
308
+ resolution: 1
309
+ number: 45
310
+ splitProba: 0.2
311
+ angle: 0.687
312
+ shape:
313
+ serializedVersion: 2
314
+ m_Curve:
315
+ - serializedVersion: 3
316
+ time: 0
317
+ value: 1
318
+ inSlope: 0
319
+ outSlope: -1
320
+ tangentMode: 0
321
+ weightedMode: 0
322
+ inWeight: 0.33333334
323
+ outWeight: 0.33333334
324
+ - serializedVersion: 3
325
+ time: 1
326
+ value: 0
327
+ inSlope: -1
328
+ outSlope: 0
329
+ tangentMode: 0
330
+ weightedMode: 0
331
+ inWeight: 0.33333334
332
+ outWeight: 0.33333334
333
+ m_PreInfinity: 2
334
+ m_PostInfinity: 2
335
+ m_RotationOrder: 4
336
+ splitProbaCurve:
337
+ serializedVersion: 2
338
+ m_Curve:
339
+ - serializedVersion: 3
340
+ time: 0
341
+ value: 0.5
342
+ inSlope: 0
343
+ outSlope: 0.5
344
+ tangentMode: 0
345
+ weightedMode: 0
346
+ inWeight: 0.33333334
347
+ outWeight: 0.33333334
348
+ - serializedVersion: 3
349
+ time: 1
350
+ value: 1
351
+ inSlope: 0.5
352
+ outSlope: 0
353
+ tangentMode: 0
354
+ weightedMode: 0
355
+ inWeight: 0.33333334
356
+ outWeight: 0.33333334
357
+ m_PreInfinity: 2
358
+ m_PostInfinity: 2
359
+ m_RotationOrder: 4
360
+ radius: 0.494
361
+ randomness: 0.19
362
+ upAttraction: 0.7
363
+ start: 0.115
364
+ gravityStrength: 1.39
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: e06c43b63f617d74789df70616aeceba
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 11400000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant: