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