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,281 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!114 &-6081051660819300672
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 Serrate
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
+ - _ALPHATEST_ON
30
+ - _GLOSSYREFLECTIONS_OFF
31
+ - _LEAFTYPE_DEFAULT
32
+ - _NORMALMAP
33
+ - _SPECULARHIGHLIGHTS_OFF
34
+ - _WINDQUALITY_NONE
35
+ m_LightmapFlags: 4
36
+ m_EnableInstancingVariants: 1
37
+ m_DoubleSidedGI: 0
38
+ m_CustomRenderQueue: -1
39
+ stringTagMap: {}
40
+ disabledShaderPasses:
41
+ - MOTIONVECTORS
42
+ m_LockedProperties:
43
+ m_SavedProperties:
44
+ serializedVersion: 3
45
+ m_TexEnvs:
46
+ - _Albedo:
47
+ m_Texture: {fileID: 2800000, guid: 8b0017825887ee44e83ac0cb49ceadf0, type: 3}
48
+ m_Scale: {x: 1, y: 1}
49
+ m_Offset: {x: 0, y: 0}
50
+ - _BumpMap:
51
+ m_Texture: {fileID: 2800000, guid: 484e5ae7bf0555b4d984e8c7cf893017, type: 3}
52
+ m_Scale: {x: 1, y: 1}
53
+ m_Offset: {x: 0, y: 0}
54
+ - _DetailAlbedoMap:
55
+ m_Texture: {fileID: 0}
56
+ m_Scale: {x: 1, y: 1}
57
+ m_Offset: {x: 0, y: 0}
58
+ - _DetailMask:
59
+ m_Texture: {fileID: 0}
60
+ m_Scale: {x: 1, y: 1}
61
+ m_Offset: {x: 0, y: 0}
62
+ - _DetailNormalMap:
63
+ m_Texture: {fileID: 0}
64
+ m_Scale: {x: 1, y: 1}
65
+ m_Offset: {x: 0, y: 0}
66
+ - _EmissionMap:
67
+ m_Texture: {fileID: 0}
68
+ m_Scale: {x: 1, y: 1}
69
+ m_Offset: {x: 0, y: 0}
70
+ - _ExtraTex:
71
+ m_Texture: {fileID: 0}
72
+ m_Scale: {x: 1, y: 1}
73
+ m_Offset: {x: 0, y: 0}
74
+ - _MainTex:
75
+ m_Texture: {fileID: 2800000, guid: 8b0017825887ee44e83ac0cb49ceadf0, type: 3}
76
+ m_Scale: {x: 1, y: 1}
77
+ m_Offset: {x: 0, y: 0}
78
+ - _MetallicGlossMap:
79
+ m_Texture: {fileID: 0}
80
+ m_Scale: {x: 1, y: 1}
81
+ m_Offset: {x: 0, y: 0}
82
+ - _OcclusionMap:
83
+ m_Texture: {fileID: 0}
84
+ m_Scale: {x: 1, y: 1}
85
+ m_Offset: {x: 0, y: 0}
86
+ - _ParallaxMap:
87
+ m_Texture: {fileID: 0}
88
+ m_Scale: {x: 1, y: 1}
89
+ m_Offset: {x: 0, y: 0}
90
+ - _SpecGlossMap:
91
+ m_Texture: {fileID: 0}
92
+ m_Scale: {x: 1, y: 1}
93
+ m_Offset: {x: 0, y: 0}
94
+ - _SubsurfaceTex:
95
+ m_Texture: {fileID: 0}
96
+ m_Scale: {x: 1, y: 1}
97
+ m_Offset: {x: 0, y: 0}
98
+ - _ToonRamp:
99
+ m_Texture: {fileID: 2800000, guid: 52e66a9243cdfed44b5e906f5910d35b, type: 3}
100
+ m_Scale: {x: 1, y: 1}
101
+ m_Offset: {x: 0, y: 0}
102
+ - _texcoord:
103
+ m_Texture: {fileID: 0}
104
+ m_Scale: {x: 1, y: 1}
105
+ m_Offset: {x: 0, y: 0}
106
+ - _texcoord4:
107
+ m_Texture: {fileID: 0}
108
+ m_Scale: {x: 1, y: 1}
109
+ m_Offset: {x: 0, y: 0}
110
+ - unity_Lightmaps:
111
+ m_Texture: {fileID: 0}
112
+ m_Scale: {x: 1, y: 1}
113
+ m_Offset: {x: 0, y: 0}
114
+ - unity_LightmapsInd:
115
+ m_Texture: {fileID: 0}
116
+ m_Scale: {x: 1, y: 1}
117
+ m_Offset: {x: 0, y: 0}
118
+ - unity_ShadowMasks:
119
+ m_Texture: {fileID: 0}
120
+ m_Scale: {x: 1, y: 1}
121
+ m_Offset: {x: 0, y: 0}
122
+ m_Ints: []
123
+ m_Floats:
124
+ - GlobalWindInfluence: 1
125
+ - _ASEOutlineWidth: 0
126
+ - _AlphaCutoff: 0.5
127
+ - _AlphaCutoffEnable: 0
128
+ - _AlphaDstBlend: 0
129
+ - _AlphaSrcBlend: 1
130
+ - _Ao: 0.813
131
+ - _Attentuation: 4.44
132
+ - _BillboardKwToggle: 0
133
+ - _BillboardShadowFade: 0.5
134
+ - _BlendMode: 0
135
+ - _BumpScale: 1
136
+ - _BumpStrength: 1.5
137
+ - _Clip: 0.4
138
+ - _ColorShifting: 1
139
+ - _ColorSource: 1
140
+ - _ColorVariation: 0.15
141
+ - _CullMode: 0
142
+ - _CullModeForward: 2
143
+ - _CustomLightIntensity: 3
144
+ - _CustomLightMode: 1
145
+ - _Cutoff: 0.341
146
+ - _Cutout: 0.159
147
+ - _DetailNormalMapScale: 1
148
+ - _DiffusionProfile: 1
149
+ - _Distortion: 0
150
+ - _DoubleSidedEnable: 1
151
+ - _DoubleSidedNormalMode: 2
152
+ - _DstBlend: 0
153
+ - _GlobalTurbulenceInfluence: 1
154
+ - _GlobalWindInflucene: 1
155
+ - _GlobalWindInfluence: 1
156
+ - _GlobalWindInfluence1: 1
157
+ - _GlossMapScale: 1
158
+ - _Glossiness: 0
159
+ - _GlossinessThreshold: 0
160
+ - _GlossinessVariance: 0
161
+ - _GlossyReflections: 0
162
+ - _Hello: 3
163
+ - _Hue: 0
164
+ - _HueVariationKwToggle: 0
165
+ - _Int2: 0
166
+ - _Leaftype: 0
167
+ - _LightAttentuation: 1.55
168
+ - _LightAttenuation: 1
169
+ - _LightIntensity: 1
170
+ - _LightSouce: 0
171
+ - _LightingGlobal: 1
172
+ - _LightingGlobalContribution: 0
173
+ - _LightingGlobalIntensity: 1
174
+ - _LocalWindStrength: 0
175
+ - _MaskClipValue: 0.5
176
+ - _Metallic: 0
177
+ - _Mode: 1
178
+ - _NormalMapKwToggle: 0
179
+ - _OcclusionStrength: 1
180
+ - _OutlineThickness1: 0
181
+ - _Parallax: 0.02
182
+ - _Power: 4.3
183
+ - _QueueControl: -1
184
+ - _QueueOffset: 0
185
+ - _ReceivesSSR: 1
186
+ - _RenderQueueType: 1
187
+ - _RequireSplitLighting: 0
188
+ - _SSSPower: 2.5
189
+ - _SSSScale: 2.36
190
+ - _Saturation: 1
191
+ - _Scale: 4.47
192
+ - _Shininess: 0.1
193
+ - _Smoothness: 0
194
+ - _Smoothness1: 0
195
+ - _SmoothnessTextureChannel: 0
196
+ - _SmoothnessThreshold: 0
197
+ - _SmoothnessThreshold1: 0
198
+ - _SmoothnessVariance: 0.5
199
+ - _SmoothnessVariance1: 0.5
200
+ - _Specular: 1
201
+ - _SpecularHighlights: 0
202
+ - _Specularity: 0
203
+ - _SrcBlend: 1
204
+ - _StencilRef: 0
205
+ - _StencilRefDepth: 0
206
+ - _StencilRefDistortionVec: 64
207
+ - _StencilRefGBuffer: 2
208
+ - _StencilRefMV: 128
209
+ - _StencilWriteMask: 3
210
+ - _StencilWriteMaskDepth: 32
211
+ - _StencilWriteMaskDistortionVec: 64
212
+ - _StencilWriteMaskGBuffer: 3
213
+ - _StencilWriteMaskMV: 128
214
+ - _SubsurfaceDistortion: 0
215
+ - _SubsurfaceIndirect: 0.25
216
+ - _SubsurfaceIntensity: 4.85
217
+ - _SubsurfaceKwToggle: 0
218
+ - _SubsurfaceLightIntensity: 9.91
219
+ - _SubsurfaceMode: 0
220
+ - _SubsurfacePower: 1.23
221
+ - _SurfaceType: 0
222
+ - _ThicknessStrength: 1
223
+ - _ToonStyle: 0
224
+ - _TransAmbient: 0.887
225
+ - _TransDirect: 0.659
226
+ - _TransNormalDistortion: 0.96
227
+ - _TransScale: 0.45
228
+ - _TransScattering: 3.1
229
+ - _TransShadow: 0.521
230
+ - _Translucency: 5.2
231
+ - _TranslucencyEnum: 1
232
+ - _TranslucencyIntensity: 1
233
+ - _TranslucencyMapPower: 7.2
234
+ - _TranslucenyDistortion: 1
235
+ - _TranslucenyIntensity: 0.2
236
+ - _TranslucenyLightIntensity: 1
237
+ - _TranslucenyLightSouce: 0
238
+ - _TranslucenyMode: 0
239
+ - _TranslucenyPower: 1
240
+ - _Transmission: 3
241
+ - _TransparentBackfaceEnable: 0
242
+ - _TransparentCullMode: 2
243
+ - _TransparentSortPriority: 0
244
+ - _TwoSided: 0
245
+ - _UVSec: 0
246
+ - _UseShadowThreshold: 0
247
+ - _Value: 1.5
248
+ - _WindMode: 1
249
+ - _WindModeLeaves: 0
250
+ - _WindQuality: 0
251
+ - _WindStrength: 0.1
252
+ - _ZTestDepthEqualForOpaque: 4
253
+ - _ZTestGBuffer: 4
254
+ - _ZTestTransparent: 4
255
+ - _ZWrite: 1
256
+ - __dirty: 1
257
+ - _transmission: 3
258
+ m_Colors:
259
+ - _ASEOutlineColor: {r: 0, g: 0, b: 0, a: 0}
260
+ - _AmbientColor: {r: 1, g: 0.80689657, b: 0, a: 1}
261
+ - _Color: {r: 0.91744417, g: 1, b: 0.83823526, a: 1}
262
+ - _ColorVariation: {r: 1, g: 0.7981892, b: 0.6556604, a: 1}
263
+ - _CustomLightColor: {r: 0.6704477, g: 1, b: 0, a: 1}
264
+ - _DiffusionProfile_asset: {r: -6.315383e-37, g: -7.0622125e-27, b: 4.6171996e-22, a: -8.3853756e-30}
265
+ - _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
266
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
267
+ - _HueVariationColor: {r: 1, g: 0.5, b: 0, a: 0.1}
268
+ - _LightColor: {r: 1, g: 1, b: 1, a: 1}
269
+ - _LightingCustomColor: {r: 0.34117648, g: 0.32941175, b: 0.25098038, a: 1}
270
+ - _OutlineColor: {r: 0, g: 0, b: 0, a: 0}
271
+ - _SSSColor: {r: 1, g: 0.89350915, b: 0.7794118, a: 1}
272
+ - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
273
+ - _SubsurfaceColor: {r: 1, g: 1, b: 1, a: 1}
274
+ - _SubsurfaceCustomColor: {r: 0.3411765, g: 0.3294118, b: 0.2509804, a: 1}
275
+ - _TranslucencyColor: {r: 1, g: 0, b: 0, a: 1}
276
+ - _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
277
+ - _TranslucencyTint: {r: 1, g: 1, b: 1, a: 1}
278
+ - _TranslucentColor: {r: 1, g: 1, b: 1, a: 1}
279
+ - _TransmissionTint: {r: 0.2352941, g: 0.3294118, b: 0, a: 1}
280
+ m_BuildTextureStacks: []
281
+ m_AllowLocking: 1
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 31f484e835bc40b48a18f868813de926
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 2100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,267 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!114 &-7106456841906463396
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 Stone Pine
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
+ - _WINDQUALITY_NONE
33
+ m_LightmapFlags: 4
34
+ m_EnableInstancingVariants: 1
35
+ m_DoubleSidedGI: 0
36
+ m_CustomRenderQueue: -1
37
+ stringTagMap: {}
38
+ disabledShaderPasses:
39
+ - MOTIONVECTORS
40
+ m_LockedProperties:
41
+ m_SavedProperties:
42
+ serializedVersion: 3
43
+ m_TexEnvs:
44
+ - _Albedo:
45
+ m_Texture: {fileID: 2800000, guid: 8981b5bb2b6f2cb46a7660180b7fbbb8, type: 3}
46
+ m_Scale: {x: 1, y: 1}
47
+ m_Offset: {x: 0, y: 0}
48
+ - _BumpMap:
49
+ m_Texture: {fileID: 2800000, guid: 6abcf175224a4044a85c0d091d35f7b7, type: 3}
50
+ m_Scale: {x: 1, y: 1}
51
+ m_Offset: {x: 0, y: 0}
52
+ - _DetailAlbedoMap:
53
+ m_Texture: {fileID: 0}
54
+ m_Scale: {x: 1, y: 1}
55
+ m_Offset: {x: 0, y: 0}
56
+ - _DetailMask:
57
+ m_Texture: {fileID: 0}
58
+ m_Scale: {x: 1, y: 1}
59
+ m_Offset: {x: 0, y: 0}
60
+ - _DetailNormalMap:
61
+ m_Texture: {fileID: 0}
62
+ m_Scale: {x: 1, y: 1}
63
+ m_Offset: {x: 0, y: 0}
64
+ - _DetailTex:
65
+ m_Texture: {fileID: 0}
66
+ m_Scale: {x: 1, y: 1}
67
+ m_Offset: {x: 0, y: 0}
68
+ - _EmissionMap:
69
+ m_Texture: {fileID: 0}
70
+ m_Scale: {x: 1, y: 1}
71
+ m_Offset: {x: 0, y: 0}
72
+ - _ExtraTex:
73
+ m_Texture: {fileID: 0}
74
+ m_Scale: {x: 1, y: 1}
75
+ m_Offset: {x: 0, y: 0}
76
+ - _MainTex:
77
+ m_Texture: {fileID: 2800000, guid: 8981b5bb2b6f2cb46a7660180b7fbbb8, type: 3}
78
+ m_Scale: {x: 1, y: 1}
79
+ m_Offset: {x: 0, y: 0}
80
+ - _MetallicGlossMap:
81
+ m_Texture: {fileID: 0}
82
+ m_Scale: {x: 1, y: 1}
83
+ m_Offset: {x: 0, y: 0}
84
+ - _OcclusionMap:
85
+ m_Texture: {fileID: 0}
86
+ m_Scale: {x: 1, y: 1}
87
+ m_Offset: {x: 0, y: 0}
88
+ - _ParallaxMap:
89
+ m_Texture: {fileID: 0}
90
+ m_Scale: {x: 1, y: 1}
91
+ m_Offset: {x: 0, y: 0}
92
+ - _SubsurfaceTex:
93
+ m_Texture: {fileID: 0}
94
+ m_Scale: {x: 1, y: 1}
95
+ m_Offset: {x: 0, y: 0}
96
+ - _texcoord:
97
+ m_Texture: {fileID: 0}
98
+ m_Scale: {x: 1, y: 1}
99
+ m_Offset: {x: 0, y: 0}
100
+ - _texcoord4:
101
+ m_Texture: {fileID: 0}
102
+ m_Scale: {x: 1, y: 1}
103
+ m_Offset: {x: 0, y: 0}
104
+ - unity_Lightmaps:
105
+ m_Texture: {fileID: 0}
106
+ m_Scale: {x: 1, y: 1}
107
+ m_Offset: {x: 0, y: 0}
108
+ - unity_LightmapsInd:
109
+ m_Texture: {fileID: 0}
110
+ m_Scale: {x: 1, y: 1}
111
+ m_Offset: {x: 0, y: 0}
112
+ - unity_ShadowMasks:
113
+ m_Texture: {fileID: 0}
114
+ m_Scale: {x: 1, y: 1}
115
+ m_Offset: {x: 0, y: 0}
116
+ m_Ints: []
117
+ m_Floats:
118
+ - GlobalWindInfluence: 1
119
+ - _AlphaCutoff: 0.5
120
+ - _AlphaCutoffEnable: 0
121
+ - _AlphaDstBlend: 0
122
+ - _AlphaSrcBlend: 1
123
+ - _Ao: 0.685
124
+ - _Attentuation: 2
125
+ - _BillboardKwToggle: 0
126
+ - _BillboardShadowFade: 0.5
127
+ - _BlendMode: 0
128
+ - _BumpScale: 1
129
+ - _BumpStrength: 1.44
130
+ - _Clip: 0.4
131
+ - _ColorShifting: 1
132
+ - _ColorSource: 1
133
+ - _ColorVariation: 0.139
134
+ - _Cull: 2
135
+ - _CullMode: 0
136
+ - _CullModeForward: 2
137
+ - _CustomLightIntensity: 3
138
+ - _CustomLightMode: 1
139
+ - _Cutoff: 0.2
140
+ - _Cutout: 0.5
141
+ - _DetailNormalMapScale: 1
142
+ - _DiffusionProfile: 1
143
+ - _Distortion: 1.38
144
+ - _DoubleSidedEnable: 1
145
+ - _DoubleSidedNormalMode: 2
146
+ - _DstBlend: 0
147
+ - _GlobalTurbulenceInfluence: 1
148
+ - _GlobalWindInflucene: 1
149
+ - _GlobalWindInfluence: 1
150
+ - _GlobalWindInfluence1: 1
151
+ - _GlossMapScale: 1
152
+ - _Glossiness: 0
153
+ - _GlossinessThreshold: 0
154
+ - _GlossinessVariance: 0
155
+ - _GlossyReflections: 0
156
+ - _Hello: 2
157
+ - _Hue: -0.1
158
+ - _HueVariationKwToggle: 0
159
+ - _Leaftype: 0
160
+ - _LightAttentuation: 1
161
+ - _LightIntensity: 1
162
+ - _LightSouce: 0
163
+ - _LightingGlobal: 1
164
+ - _LightingGlobalContribution: 1
165
+ - _LightingGlobalIntensity: 1
166
+ - _LocalWindStrength: 0
167
+ - _MaskClipValue: 0.5
168
+ - _Metallic: 0
169
+ - _Mode: 0
170
+ - _NormalMapKwToggle: 0
171
+ - _OcclusionStrength: 1
172
+ - _Parallax: 0.02
173
+ - _Power: 1
174
+ - _QueueControl: -1
175
+ - _QueueOffset: 0
176
+ - _ReceivesSSR: 1
177
+ - _RenderQueueType: 1
178
+ - _RequireSplitLighting: 0
179
+ - _SSSPower: 2.5
180
+ - _SSSScale: 8.82
181
+ - _Saturation: 0.9
182
+ - _Scale: 2
183
+ - _Smoothness: 0.1176471
184
+ - _Smoothness1: 0
185
+ - _SmoothnessTextureChannel: 0
186
+ - _SmoothnessThreshold: 0
187
+ - _SmoothnessThreshold1: 0
188
+ - _SmoothnessVariance: 0.5
189
+ - _SmoothnessVariance1: 0.5
190
+ - _Specular: 1
191
+ - _SpecularHighlights: 0
192
+ - _Specularity: 0
193
+ - _SrcBlend: 1
194
+ - _StencilRef: 0
195
+ - _StencilRefDepth: 0
196
+ - _StencilRefDistortionVec: 64
197
+ - _StencilRefGBuffer: 2
198
+ - _StencilRefMV: 128
199
+ - _StencilWriteMask: 3
200
+ - _StencilWriteMaskDepth: 32
201
+ - _StencilWriteMaskDistortionVec: 64
202
+ - _StencilWriteMaskGBuffer: 3
203
+ - _StencilWriteMaskMV: 128
204
+ - _SubsurfaceDistortion: 0.8
205
+ - _SubsurfaceIndirect: 0.25
206
+ - _SubsurfaceIntensity: 0.9658048
207
+ - _SubsurfaceKwToggle: 0
208
+ - _SubsurfaceLightIntensity: 1
209
+ - _SubsurfaceMode: 1
210
+ - _SubsurfacePower: 1
211
+ - _SurfaceType: 0
212
+ - _ThicknessStrength: 1
213
+ - _TransAmbient: 0.479
214
+ - _TransDirect: 0.615
215
+ - _TransNormalDistortion: 0.26
216
+ - _TransScale: 1
217
+ - _TransScattering: 12.1
218
+ - _TransShadow: 0.521
219
+ - _Translucency: 25
220
+ - _TranslucencyEnum: 1
221
+ - _TranslucencyMapPower: 2.05
222
+ - _TranslucenyDistortion: 1
223
+ - _TranslucenyIntensity: 0.2
224
+ - _TranslucenyLightIntensity: 1
225
+ - _TranslucenyLightSouce: 0
226
+ - _TranslucenyMode: 0
227
+ - _TranslucenyPower: 1
228
+ - _Transmission: 3
229
+ - _TransparentBackfaceEnable: 0
230
+ - _TransparentCullMode: 2
231
+ - _TransparentSortPriority: 0
232
+ - _TwoSided: 0
233
+ - _UVSec: 0
234
+ - _UseShadowThreshold: 0
235
+ - _Value: 1.34
236
+ - _WindMode: 1
237
+ - _WindModeLeaves: 0
238
+ - _WindQuality: 0
239
+ - _WindStrength: 0.1
240
+ - _ZTestDepthEqualForOpaque: 4
241
+ - _ZTestGBuffer: 4
242
+ - _ZTestTransparent: 4
243
+ - _ZWrite: 1
244
+ - __dirty: 0
245
+ - _transmission: 2
246
+ m_Colors:
247
+ - _AmbientColor: {r: 0, g: 0, b: 0, a: 1}
248
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
249
+ - _ColorVariation: {r: 0.5, g: 1, b: 0.50344825, a: 1}
250
+ - _CustomLightColor: {r: 0.6704477, g: 1, b: 0, a: 1}
251
+ - _DiffusionProfile_asset: {r: -6.315383e-37, g: -7.0622125e-27, b: 4.6171996e-22, a: -8.3853756e-30}
252
+ - _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
253
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
254
+ - _HueVariation: {r: 1, g: 0.5, b: 0, a: 0.1}
255
+ - _HueVariationColor: {r: 1, g: 0.5, b: 0, a: 0.1}
256
+ - _LightColor: {r: 1, g: 1, b: 1, a: 1}
257
+ - _LightingCustomColor: {r: 0.34117648, g: 0.32941175, b: 0.25098038, a: 1}
258
+ - _SSSColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
259
+ - _SubsurfaceColor: {r: 1, g: 1, b: 1, a: 1}
260
+ - _SubsurfaceCustomColor: {r: 0.3411765, g: 0.3294118, b: 0.2509804, a: 1}
261
+ - _TranslucencyColor: {r: 1, g: 1, b: 1, a: 1}
262
+ - _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
263
+ - _TranslucencyTint: {r: 1, g: 1, b: 1, a: 1}
264
+ - _TranslucentColor: {r: 1, g: 1, b: 1, a: 1}
265
+ - _TransmissionTint: {r: 0.2352941, g: 0.3294118, b: 0, a: 1}
266
+ m_BuildTextureStacks: []
267
+ m_AllowLocking: 1
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 1ed37f0624f7e9f4fa1d71b0fc5226b9
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 2100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant: