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,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 86effeea9430f8049808d25ea9f6440e
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 2100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,181 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!21 &2100000
4
+ Material:
5
+ serializedVersion: 8
6
+ m_ObjectHideFlags: 0
7
+ m_CorrespondingSourceObject: {fileID: 0}
8
+ m_PrefabInstance: {fileID: 0}
9
+ m_PrefabAsset: {fileID: 0}
10
+ m_Name: Bark Fern
11
+ m_Shader: {fileID: -6465566751694194690, guid: 2139360011e9319499772e0bfe994b7e, type: 3}
12
+ m_Parent: {fileID: 0}
13
+ m_ModifiedSerializedProperties: 0
14
+ m_ValidKeywords: []
15
+ m_InvalidKeywords: []
16
+ m_LightmapFlags: 4
17
+ m_EnableInstancingVariants: 0
18
+ m_DoubleSidedGI: 0
19
+ m_CustomRenderQueue: -1
20
+ stringTagMap: {}
21
+ disabledShaderPasses:
22
+ - MOTIONVECTORS
23
+ m_LockedProperties:
24
+ m_SavedProperties:
25
+ serializedVersion: 3
26
+ m_TexEnvs:
27
+ - _BumpMap:
28
+ m_Texture: {fileID: 0}
29
+ m_Scale: {x: 1, y: 1}
30
+ m_Offset: {x: 0, y: 0}
31
+ - _DetailAlbedoMap:
32
+ m_Texture: {fileID: 0}
33
+ m_Scale: {x: 1, y: 1}
34
+ m_Offset: {x: 0, y: 0}
35
+ - _DetailMask:
36
+ m_Texture: {fileID: 0}
37
+ m_Scale: {x: 1, y: 1}
38
+ m_Offset: {x: 0, y: 0}
39
+ - _DetailNormalMap:
40
+ m_Texture: {fileID: 0}
41
+ m_Scale: {x: 1, y: 1}
42
+ m_Offset: {x: 0, y: 0}
43
+ - _EmissionMap:
44
+ m_Texture: {fileID: 0}
45
+ m_Scale: {x: 1, y: 1}
46
+ m_Offset: {x: 0, y: 0}
47
+ - _MainTex:
48
+ m_Texture: {fileID: 0}
49
+ m_Scale: {x: 1, y: 1}
50
+ m_Offset: {x: 0, y: 0}
51
+ - _MetallicGlossMap:
52
+ m_Texture: {fileID: 0}
53
+ m_Scale: {x: 1, y: 1}
54
+ m_Offset: {x: 0, y: 0}
55
+ - _OcclusionMap:
56
+ m_Texture: {fileID: 0}
57
+ m_Scale: {x: 1, y: 1}
58
+ m_Offset: {x: 0, y: 0}
59
+ - _ParallaxMap:
60
+ m_Texture: {fileID: 0}
61
+ m_Scale: {x: 1, y: 1}
62
+ m_Offset: {x: 0, y: 0}
63
+ - _texcoord:
64
+ m_Texture: {fileID: 0}
65
+ m_Scale: {x: 1, y: 1}
66
+ m_Offset: {x: 0, y: 0}
67
+ - _texcoord4:
68
+ m_Texture: {fileID: 0}
69
+ m_Scale: {x: 1, y: 1}
70
+ m_Offset: {x: 0, y: 0}
71
+ - unity_Lightmaps:
72
+ m_Texture: {fileID: 0}
73
+ m_Scale: {x: 1, y: 1}
74
+ m_Offset: {x: 0, y: 0}
75
+ - unity_LightmapsInd:
76
+ m_Texture: {fileID: 0}
77
+ m_Scale: {x: 1, y: 1}
78
+ m_Offset: {x: 0, y: 0}
79
+ - unity_ShadowMasks:
80
+ m_Texture: {fileID: 0}
81
+ m_Scale: {x: 1, y: 1}
82
+ m_Offset: {x: 0, y: 0}
83
+ m_Ints: []
84
+ m_Floats:
85
+ - _AlphaCutoff: 0.5
86
+ - _AlphaCutoffEnable: 0
87
+ - _AlphaDstBlend: 0
88
+ - _AlphaSrcBlend: 1
89
+ - _BaseDetail: 1
90
+ - _BlendMode: 0
91
+ - _BumpScale: 1
92
+ - _ColorShifting: 1
93
+ - _ColorSource: 0
94
+ - _ColorVariation: 0.15
95
+ - _CullMode: 2
96
+ - _CullModeForward: 2
97
+ - _Cutoff: 0.5
98
+ - _DetailNormalMapScale: 1
99
+ - _DoubleSidedEnable: 0
100
+ - _DoubleSidedNormalMode: 0
101
+ - _DstBlend: 0
102
+ - _GlobalTurbulenceInfluence: 1
103
+ - _GlobalWindInfluence: 1
104
+ - _GlobalWindInfluence1: 1
105
+ - _GlossMapScale: 1
106
+ - _Glossiness: 0
107
+ - _GlossinessThreshold: 0
108
+ - _GlossinessVariance: 0
109
+ - _GlossyReflections: 1
110
+ - _Height: 0
111
+ - _Hue: -0.5
112
+ - _Metallic: 0
113
+ - _Mode: 0
114
+ - _OcclusionStrength: 1
115
+ - _Parallax: 0.02
116
+ - _QueueControl: 0
117
+ - _QueueOffset: 0
118
+ - _ReceivesSSR: 1
119
+ - _RenderQueueType: 1
120
+ - _RequireSplitLighting: 0
121
+ - _Saturation: 1
122
+ - _Smooth: 0.01
123
+ - _SmoothnessTextureChannel: 0
124
+ - _SpecularHighlights: 0
125
+ - _SrcBlend: 1
126
+ - _StencilRef: 0
127
+ - _StencilRefDepth: 0
128
+ - _StencilRefDistortionVec: 64
129
+ - _StencilRefGBuffer: 2
130
+ - _StencilRefMV: 128
131
+ - _StencilWriteMask: 3
132
+ - _StencilWriteMaskDepth: 32
133
+ - _StencilWriteMaskDistortionVec: 64
134
+ - _StencilWriteMaskGBuffer: 3
135
+ - _StencilWriteMaskMV: 128
136
+ - _SurfaceType: 0
137
+ - _TextureInfluence: 0
138
+ - _TransAmbient: 0.2
139
+ - _TransDirect: 1
140
+ - _TransNormalDistortion: 0.1
141
+ - _TransScale: 1
142
+ - _TransScattering: 2
143
+ - _TransShadow: 0.9
144
+ - _Translucency: 1
145
+ - _TranslucencyEnum: 1
146
+ - _TransparentBackfaceEnable: 0
147
+ - _TransparentCullMode: 2
148
+ - _TransparentSortPriority: 0
149
+ - _UVSec: 0
150
+ - _UseShadowThreshold: 0
151
+ - _Value: 1
152
+ - _WindMode: 3
153
+ - _WindModeLeaves: 0
154
+ - _ZTestDepthEqualForOpaque: 4
155
+ - _ZTestGBuffer: 4
156
+ - _ZTestTransparent: 4
157
+ - _ZWrite: 1
158
+ - __dirty: 1
159
+ m_Colors:
160
+ - _Color: {r: 0.18705893, g: 0.24528301, b: 0.17702028, a: 1}
161
+ - _DetailColor: {r: 1, g: 1, b: 1, a: 0}
162
+ - _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
163
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
164
+ - _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
165
+ - _TranslucencyTint: {r: 0.2364577, g: 0.3301887, b: 0, a: 1}
166
+ - _TransmissionTint: {r: 0.2352941, g: 0.3294118, b: 0, a: 1}
167
+ m_BuildTextureStacks: []
168
+ m_AllowLocking: 1
169
+ --- !u!114 &8819288865831261833
170
+ MonoBehaviour:
171
+ m_ObjectHideFlags: 11
172
+ m_CorrespondingSourceObject: {fileID: 0}
173
+ m_PrefabInstance: {fileID: 0}
174
+ m_PrefabAsset: {fileID: 0}
175
+ m_GameObject: {fileID: 0}
176
+ m_Enabled: 1
177
+ m_EditorHideFlags: 0
178
+ m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
179
+ m_Name:
180
+ m_EditorClassIdentifier:
181
+ version: 10
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 0dd95616f27d6c445868b7eb9060fb87
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 2100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,201 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!114 &-5395137640208321579
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: Bark HighPoly
24
+ m_Shader: {fileID: -6465566751694194690, guid: 2139360011e9319499772e0bfe994b7e, type: 3}
25
+ m_Parent: {fileID: 0}
26
+ m_ModifiedSerializedProperties: 0
27
+ m_ValidKeywords: []
28
+ m_InvalidKeywords: []
29
+ m_LightmapFlags: 4
30
+ m_EnableInstancingVariants: 0
31
+ m_DoubleSidedGI: 0
32
+ m_CustomRenderQueue: -1
33
+ stringTagMap: {}
34
+ disabledShaderPasses:
35
+ - MOTIONVECTORS
36
+ m_LockedProperties:
37
+ m_SavedProperties:
38
+ serializedVersion: 3
39
+ m_TexEnvs:
40
+ - _Albedo:
41
+ m_Texture: {fileID: 2800000, guid: e98b9c4e568a01b4faa0854229529f3b, type: 3}
42
+ m_Scale: {x: 1.55, y: 1}
43
+ m_Offset: {x: 0, y: 0}
44
+ - _BumpMap:
45
+ m_Texture: {fileID: 2800000, guid: b3a8b02284c008548941ccb056fa869a, type: 3}
46
+ m_Scale: {x: 1, y: 1}
47
+ m_Offset: {x: 0, y: 0}
48
+ - _Detail:
49
+ m_Texture: {fileID: 2800000, guid: 874120e7f6d062442a131836cdfec782, 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
+ - _DetailNormal:
57
+ m_Texture: {fileID: 2800000, guid: b3a8b02284c008548941ccb056fa869a, type: 3}
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
+ - _MainTex:
65
+ m_Texture: {fileID: 2800000, guid: 9e2bd545dcb51d645bc6ad55a98bf40f, type: 3}
66
+ m_Scale: {x: 1, y: 1}
67
+ m_Offset: {x: 0, y: 0}
68
+ - _Maintex:
69
+ m_Texture: {fileID: 2800000, guid: e98b9c4e568a01b4faa0854229529f3b, type: 3}
70
+ m_Scale: {x: 1, y: 1}
71
+ m_Offset: {x: 0, y: 0}
72
+ - _NormalMap:
73
+ m_Texture: {fileID: 2800000, guid: 04ec949d3d83ae8488d1bc5a692822ec, type: 3}
74
+ m_Scale: {x: 1, y: 1}
75
+ m_Offset: {x: 0, y: 0}
76
+ - _SSSMap:
77
+ m_Texture: {fileID: 0}
78
+ m_Scale: {x: 1, y: 1}
79
+ m_Offset: {x: 0, y: 0}
80
+ - _texcoord:
81
+ m_Texture: {fileID: 0}
82
+ m_Scale: {x: 1, y: 1}
83
+ m_Offset: {x: 0, y: 0}
84
+ - unity_Lightmaps:
85
+ m_Texture: {fileID: 0}
86
+ m_Scale: {x: 1, y: 1}
87
+ m_Offset: {x: 0, y: 0}
88
+ - unity_LightmapsInd:
89
+ m_Texture: {fileID: 0}
90
+ m_Scale: {x: 1, y: 1}
91
+ m_Offset: {x: 0, y: 0}
92
+ - unity_ShadowMasks:
93
+ m_Texture: {fileID: 0}
94
+ m_Scale: {x: 1, y: 1}
95
+ m_Offset: {x: 0, y: 0}
96
+ m_Ints: []
97
+ m_Floats:
98
+ - GlobalWindInfluence: 1
99
+ - GlobalWindInfluence1: 1
100
+ - _AOstrength: 0.545
101
+ - _AlphaCutoff: 0.5
102
+ - _AlphaCutoffEnable: 0
103
+ - _AlphaDstBlend: 0
104
+ - _AlphaSrcBlend: 1
105
+ - _Ao: 0.682
106
+ - _BaseDetail: 1
107
+ - _BlendMode: 0
108
+ - _BumpScale: 1
109
+ - _BumpStrength: 1
110
+ - _ColorShifting: 1
111
+ - _ColorSource: 0
112
+ - _ColorVariation: 0.119
113
+ - _CullMode: 2
114
+ - _CullMode1: 2
115
+ - _CullModeForward: 2
116
+ - _Cutoff: 0.475
117
+ - _Cutout: 0.5
118
+ - _DiffusionProfile1: 1
119
+ - _Distortion: 2
120
+ - _DoubleSidedEnable: 0
121
+ - _DoubleSidedNormalMode: 0
122
+ - _DstBlend: 0
123
+ - _GlobalTurbulenceInfluence: 1
124
+ - _GlobalWindInflucene1: 1
125
+ - _GlobalWindInfluence: 1
126
+ - _GlobalWindInfluence1: 1
127
+ - _Glossiness: 0.211
128
+ - _GlossinessThreshold: 0
129
+ - _GlossinessVariance: 0.5
130
+ - _GlossyReflections: 1
131
+ - _Height: 0
132
+ - _Hue: -0.103
133
+ - _LocalWindStrength: 0
134
+ - _MaskClipValue: 0.5
135
+ - _Metallic: 0
136
+ - _NormalStrength: 1.27
137
+ - _OcclusionStrength: 0.6
138
+ - _Power: 2
139
+ - _QueueControl: 0
140
+ - _QueueOffset: 0
141
+ - _ReceivesSSR: 1
142
+ - _RenderQueueType: 1
143
+ - _RequireSplitLighting: 0
144
+ - _SSSPower: 2.5
145
+ - _SSSScale: 0.1
146
+ - _Saturation: 1.28
147
+ - _Scale: 2
148
+ - _Smooth: 0.11
149
+ - _Smoothness: 0.209
150
+ - _Smoothness1: 0
151
+ - _SmoothnessThreshold: 0.318
152
+ - _SmoothnessThreshold1: 0
153
+ - _SmoothnessVariance: 0.397
154
+ - _SmoothnessVariance1: 0.5
155
+ - _SpecularHighlights: 1
156
+ - _SrcBlend: 1
157
+ - _StencilRef: 0
158
+ - _StencilRefDepth: 0
159
+ - _StencilRefDistortionVec: 64
160
+ - _StencilRefGBuffer: 2
161
+ - _StencilRefMV: 128
162
+ - _StencilWriteMask: 3
163
+ - _StencilWriteMaskDepth: 32
164
+ - _StencilWriteMaskDistortionVec: 64
165
+ - _StencilWriteMaskGBuffer: 3
166
+ - _StencilWriteMaskMV: 128
167
+ - _SubsurfaceDistortion: 0.8
168
+ - _SurfaceType: 0
169
+ - _TextureInfluence: 0.236
170
+ - _Thickness: 0
171
+ - _TransNormalDistortion: 1
172
+ - _TransScale: 1
173
+ - _TransScattering: 1
174
+ - _Translucency: 0.92
175
+ - _TranslucencyEnum: 1
176
+ - _Transmission: 3
177
+ - _TransparentBackfaceEnable: 0
178
+ - _TransparentCullMode: 2
179
+ - _TransparentSortPriority: 0
180
+ - _UseShadowThreshold: 0
181
+ - _Value: 1.87
182
+ - _WindMode: 0
183
+ - _WindModeLeaves: 0
184
+ - _WindStrength: 0.2
185
+ - _ZTestDepthEqualForOpaque: 4
186
+ - _ZTestGBuffer: 4
187
+ - _ZTestTransparent: 4
188
+ - _ZWrite: 0
189
+ - __dirty: 0
190
+ - _transmission: 2
191
+ m_Colors:
192
+ - _Color: {r: 1, g: 1, b: 1, a: 0}
193
+ - _ColorVariation: {r: 0.28676468, g: 1, b: 0.43924943, a: 1}
194
+ - _DetailColor: {r: 0.75, g: 0.75, b: 0.75, a: 0}
195
+ - _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
196
+ - _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
197
+ - _SSSColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
198
+ - _TranslucencyColor: {r: 0.88357, g: 1, b: 0.6985294, a: 1}
199
+ - _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
200
+ m_BuildTextureStacks: []
201
+ m_AllowLocking: 1
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: b1dbe6baef54f1647ad2262951dcb6b8
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 2100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,208 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!21 &2100000
4
+ Material:
5
+ serializedVersion: 8
6
+ m_ObjectHideFlags: 0
7
+ m_CorrespondingSourceObject: {fileID: 0}
8
+ m_PrefabInstance: {fileID: 0}
9
+ m_PrefabAsset: {fileID: 0}
10
+ m_Name: Bark Oak
11
+ m_Shader: {fileID: -6465566751694194690, guid: 2139360011e9319499772e0bfe994b7e, type: 3}
12
+ m_Parent: {fileID: 0}
13
+ m_ModifiedSerializedProperties: 0
14
+ m_ValidKeywords: []
15
+ m_InvalidKeywords: []
16
+ m_LightmapFlags: 4
17
+ m_EnableInstancingVariants: 1
18
+ m_DoubleSidedGI: 0
19
+ m_CustomRenderQueue: -1
20
+ stringTagMap:
21
+ MotionVector: User
22
+ disabledShaderPasses:
23
+ - MOTIONVECTORS
24
+ m_LockedProperties:
25
+ m_SavedProperties:
26
+ serializedVersion: 3
27
+ m_TexEnvs:
28
+ - _Albedo:
29
+ m_Texture: {fileID: 2800000, guid: 22d7e1b6540cf8d4ba00f70d0617863f, type: 3}
30
+ m_Scale: {x: 1, y: 1}
31
+ m_Offset: {x: 0, y: 0}
32
+ - _BumpMap:
33
+ m_Texture: {fileID: 2800000, guid: d8e4c639cdebf4e4a82404ea5668733b, type: 3}
34
+ m_Scale: {x: 1, y: 1}
35
+ m_Offset: {x: 0, y: 0}
36
+ - _Detail:
37
+ m_Texture: {fileID: 0}
38
+ m_Scale: {x: 1, y: 1}
39
+ m_Offset: {x: 0, y: 0}
40
+ - _DetailAlbedoMap:
41
+ m_Texture: {fileID: 2800000, guid: 874120e7f6d062442a131836cdfec782, type: 3}
42
+ m_Scale: {x: 1, y: 1}
43
+ m_Offset: {x: 0, y: 0}
44
+ - _DetailMask:
45
+ m_Texture: {fileID: 0}
46
+ m_Scale: {x: 1, y: 1}
47
+ m_Offset: {x: 0, y: 0}
48
+ - _DetailNormal:
49
+ m_Texture: {fileID: 0}
50
+ m_Scale: {x: 1, y: 1}
51
+ m_Offset: {x: 0, y: 0}
52
+ - _DetailNormalMap:
53
+ m_Texture: {fileID: 2800000, guid: 97f9c8e269ef2f941a8492f6f28cda2c, type: 3}
54
+ m_Scale: {x: 1, y: 1}
55
+ m_Offset: {x: 0, y: 0}
56
+ - _EmissionMap:
57
+ m_Texture: {fileID: 0}
58
+ m_Scale: {x: 1, y: 1}
59
+ m_Offset: {x: 0, y: 0}
60
+ - _MainTex:
61
+ m_Texture: {fileID: 2800000, guid: 2fcf5f7228e38b347849b5adb05e9b9c, type: 3}
62
+ m_Scale: {x: 1, y: 0.5}
63
+ m_Offset: {x: 0, y: 0}
64
+ - _MetallicGlossMap:
65
+ m_Texture: {fileID: 0}
66
+ m_Scale: {x: 1, y: 1}
67
+ m_Offset: {x: 0, y: 0}
68
+ - _OcclusionMap:
69
+ m_Texture: {fileID: 0}
70
+ m_Scale: {x: 1, y: 1}
71
+ m_Offset: {x: 0, y: 0}
72
+ - _ParallaxMap:
73
+ m_Texture: {fileID: 0}
74
+ m_Scale: {x: 1, y: 1}
75
+ m_Offset: {x: 0, y: 0}
76
+ - _SSSMap:
77
+ m_Texture: {fileID: 0}
78
+ m_Scale: {x: 1, y: 1}
79
+ m_Offset: {x: 0, y: 0}
80
+ - _texcoord:
81
+ m_Texture: {fileID: 0}
82
+ m_Scale: {x: 1, y: 1}
83
+ m_Offset: {x: 0, y: 0}
84
+ - unity_Lightmaps:
85
+ m_Texture: {fileID: 0}
86
+ m_Scale: {x: 1, y: 1}
87
+ m_Offset: {x: 0, y: 0}
88
+ - unity_LightmapsInd:
89
+ m_Texture: {fileID: 0}
90
+ m_Scale: {x: 1, y: 1}
91
+ m_Offset: {x: 0, y: 0}
92
+ - unity_ShadowMasks:
93
+ m_Texture: {fileID: 0}
94
+ m_Scale: {x: 1, y: 1}
95
+ m_Offset: {x: 0, y: 0}
96
+ m_Ints: []
97
+ m_Floats:
98
+ - GlobalWindInfluence: 1
99
+ - GlobalWindInfluence1: 1
100
+ - _AlphaCutoff: 0.5
101
+ - _AlphaCutoffEnable: 0
102
+ - _AlphaDstBlend: 0
103
+ - _AlphaSrcBlend: 1
104
+ - _Ao: 0.682
105
+ - _BaseDetail: 1
106
+ - _BlendMode: 0
107
+ - _BumpScale: 1
108
+ - _BumpStrength: 1.5
109
+ - _ColorShifting: 1
110
+ - _ColorSource: 0
111
+ - _ColorVariation: 0.15
112
+ - _CullMode: 2
113
+ - _CullMode1: 0
114
+ - _CullModeForward: 2
115
+ - _Cutoff: 0.5
116
+ - _DetailNormalMapScale: 1
117
+ - _Distortion: 2
118
+ - _DoubleSidedEnable: 0
119
+ - _DoubleSidedNormalMode: 0
120
+ - _DstBlend: 0
121
+ - _GlobalTurbulenceInfluence: 1
122
+ - _GlobalWindInflucene1: 1
123
+ - _GlobalWindInfluence: 1
124
+ - _GlobalWindInfluence1: 1
125
+ - _GlossMapScale: 1
126
+ - _Glossiness: 0
127
+ - _GlossinessThreshold: 0
128
+ - _GlossinessVariance: 0
129
+ - _GlossyReflections: 1
130
+ - _Height: 0.716
131
+ - _Hue: 0
132
+ - _LocalWindStrength: 0
133
+ - _LocalWindStrength1: 0
134
+ - _Metallic: 0
135
+ - _Mode: 0
136
+ - _OcclusionStrength: 1
137
+ - _Parallax: 0.02
138
+ - _Power: 2
139
+ - _QueueControl: 0
140
+ - _QueueOffset: 0
141
+ - _ReceivesSSR: 1
142
+ - _RenderQueueType: 1
143
+ - _RequireSplitLighting: 0
144
+ - _SSSPower: 2.5
145
+ - _SSSScale: 0.1
146
+ - _Saturation: 1
147
+ - _Scale: 2
148
+ - _Smooth: 0.212
149
+ - _Smoothness: 0.209
150
+ - _SmoothnessTextureChannel: 0
151
+ - _SmoothnessThreshold: 0.318
152
+ - _SmoothnessVariance: 0.397
153
+ - _SpecularHighlights: 1
154
+ - _SrcBlend: 1
155
+ - _StencilRef: 0
156
+ - _StencilRefDepth: 0
157
+ - _StencilRefDistortionVec: 64
158
+ - _StencilRefGBuffer: 2
159
+ - _StencilRefMV: 128
160
+ - _StencilWriteMask: 3
161
+ - _StencilWriteMaskDepth: 32
162
+ - _StencilWriteMaskDistortionVec: 64
163
+ - _StencilWriteMaskGBuffer: 3
164
+ - _StencilWriteMaskMV: 128
165
+ - _SubsurfaceDistortion: 0.8
166
+ - _SurfaceType: 0
167
+ - _TextureInfluence: 0.512
168
+ - _TransNormalDistortion: 1
169
+ - _TransScale: 1
170
+ - _TransScattering: 1
171
+ - _Translucency: 4
172
+ - _TranslucencyEnum: 1
173
+ - _TransparentBackfaceEnable: 0
174
+ - _TransparentCullMode: 2
175
+ - _TransparentSortPriority: 0
176
+ - _UVSec: 0
177
+ - _UseShadowThreshold: 0
178
+ - _Value: 1
179
+ - _WindMode: 0
180
+ - _WindModeLeaves: 0
181
+ - _WindStrength: 0.1
182
+ - _ZTestDepthEqualForOpaque: 4
183
+ - _ZTestGBuffer: 4
184
+ - _ZTestTransparent: 4
185
+ - _ZWrite: 1
186
+ - __dirty: 1
187
+ m_Colors:
188
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
189
+ - _DetailColor: {r: 1, g: 1, b: 1, a: 0}
190
+ - _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
191
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
192
+ - _SSSColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
193
+ - _TranslucencyTilt: {r: 1, g: 1, b: 1, a: 0}
194
+ m_BuildTextureStacks: []
195
+ m_AllowLocking: 1
196
+ --- !u!114 &7530383011238153192
197
+ MonoBehaviour:
198
+ m_ObjectHideFlags: 11
199
+ m_CorrespondingSourceObject: {fileID: 0}
200
+ m_PrefabInstance: {fileID: 0}
201
+ m_PrefabAsset: {fileID: 0}
202
+ m_GameObject: {fileID: 0}
203
+ m_Enabled: 1
204
+ m_EditorHideFlags: 0
205
+ m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
206
+ m_Name:
207
+ m_EditorClassIdentifier:
208
+ version: 10
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 30e9603a178fb9c4db45f6007f1a0e70
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 2100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant: