SkyProfile-6.asset 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!114 &11400000
  4. MonoBehaviour:
  5. m_ObjectHideFlags: 0
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. m_GameObject: {fileID: 0}
  10. m_Enabled: 1
  11. m_EditorHideFlags: 0
  12. m_Script: {fileID: 11500000, guid: 802ef6648d8f86f498c5fc5043f434bc, type: 3}
  13. m_Name: SkyProfile-6
  14. m_EditorClassIdentifier:
  15. m_SkyboxMaterial: {fileID: 2100000, guid: 3484c1e30d986b447a65fff54f1fe0e1, type: 2}
  16. m_ShaderName: Funly/Sky Studio/Skybox/3D Standard
  17. timelineManagedKeys: []
  18. keyframeGroups:
  19. m_ColorGroup:
  20. m_Keys:
  21. - SkyUpperColorKey
  22. - SkyMiddleColorKey
  23. - SkyLowerColorKey
  24. - CloudColor1Key
  25. - CloudColor2Key
  26. - FogColorKey
  27. - SunColorKey
  28. - SunLightColorKey
  29. - MoonColorKey
  30. - MoonLightColorKey
  31. - Star1ColorKey
  32. - Star2ColorKey
  33. - Star3ColorKey
  34. - RainTintColorKey
  35. - RainSplashTintColorKey
  36. - LightningTintColorKey
  37. - CloudCubemapTintColorKey
  38. - CloudCubemapNormalLitColorKey
  39. - CloudCubemapNormalShadowColorKey
  40. - CloudCubemapDoubleLayerTintColorKey
  41. - CloudCubemapNormalDoubleLayerLitColorKey
  42. - CloudCubemapNormalDoubleLayerShadowKey
  43. - StarBasicTintColorKey
  44. m_Values:
  45. - keyframes:
  46. - m_Id: 78e30ca3-f54d-4d48-92b4-a79be2bc4d95
  47. m_Time: 0
  48. m_InterpolationCurve: 0
  49. m_InterpolationDirection: 0
  50. color: {r: 0.65580595, g: 0.6784314, b: 0.35686275, a: 1}
  51. m_Name: Sky Upper Color
  52. m_Id: edcafd85-9dab-432b-81be-76b2ee64fc3d
  53. - keyframes:
  54. - m_Id: edceae23-da3c-4f1a-83c8-15ca775d4b84
  55. m_Time: 0
  56. m_InterpolationCurve: 0
  57. m_InterpolationDirection: 0
  58. color: {r: 1, g: 0.7120755, b: 0.13679248, a: 1}
  59. m_Name: Sky Middle Color
  60. m_Id: 737c3f4b-9a33-48c6-bc7a-43c7bb3c6380
  61. - keyframes:
  62. - m_Id: ea213651-e0cf-4fd3-8201-7ef7569ad329
  63. m_Time: 0
  64. m_InterpolationCurve: 0
  65. m_InterpolationDirection: 0
  66. color: {r: 0.62411004, g: 0.67365086, b: 0.7075472, a: 1}
  67. m_Name: Sky Lower Color
  68. m_Id: e06a7d5e-aeeb-464a-ab5c-411dcbbd3052
  69. - keyframes:
  70. - m_Id: b0368844-3993-4434-9fcb-04c4eda3931d
  71. m_Time: 0
  72. m_InterpolationCurve: 0
  73. m_InterpolationDirection: 0
  74. color: {r: 1, g: 1, b: 1, a: 1}
  75. m_Name: Cloud Color 1
  76. m_Id: 2c135b0f-0207-43ae-8ba8-e1bbe2a25c70
  77. - keyframes:
  78. - m_Id: 9129854e-e2ce-465e-b9b0-615149de3127
  79. m_Time: 0
  80. m_InterpolationCurve: 0
  81. m_InterpolationDirection: 0
  82. color: {r: 0.89705884, g: 0.89705884, b: 0.89705884, a: 1}
  83. m_Name: Cloud Color 2
  84. m_Id: 2504a86a-a902-4f97-82bf-395231ae07c2
  85. - keyframes:
  86. - m_Id: 85bddace-659c-4b1b-9838-807533674b9e
  87. m_Time: 0
  88. m_InterpolationCurve: 0
  89. m_InterpolationDirection: 0
  90. color: {r: 1, g: 1, b: 1, a: 1}
  91. m_Name: Fog Color
  92. m_Id: b832b01d-ce08-4539-aae9-296878e8346c
  93. - keyframes:
  94. - m_Id: d771788b-59df-4684-8a4d-923a46d0fb3d
  95. m_Time: 0
  96. m_InterpolationCurve: 0
  97. m_InterpolationDirection: 0
  98. color: {r: 0.99848866, g: 1, b: 0.41176468, a: 1}
  99. m_Name: Sun Color
  100. m_Id: 1e703ce0-0a08-4a91-b51f-780a098762ac
  101. - keyframes:
  102. - m_Id: 91e74d01-57c2-4f7f-8513-3885576b3117
  103. m_Time: 0
  104. m_InterpolationCurve: 0
  105. m_InterpolationDirection: 0
  106. color: {r: 1, g: 0.9886611, b: 0.8820755, a: 1}
  107. m_Name: Sun Light Color
  108. m_Id: e0798d0e-e5a4-4687-a25b-c9e86ab7ad15
  109. - keyframes:
  110. - m_Id: 5e3c228d-9298-4888-a440-bf0b3fdd296d
  111. m_Time: 0
  112. m_InterpolationCurve: 0
  113. m_InterpolationDirection: 0
  114. color: {r: 0.6985294, g: 0.65283453, b: 0.03595371, a: 1}
  115. m_Name: Moon Color
  116. m_Id: 20b15492-4312-409a-887c-2561da959d0f
  117. - keyframes:
  118. - m_Id: e3eb448a-ab15-4f5a-b83c-c71fb89ef36c
  119. m_Time: 0
  120. m_InterpolationCurve: 0
  121. m_InterpolationDirection: 0
  122. color: {r: 1, g: 1, b: 1, a: 1}
  123. m_Name: Moon Light Color
  124. m_Id: 377c61f7-653b-4a37-b6fd-9db1b11dc012
  125. - keyframes:
  126. - m_Id: c5244723-4b43-410f-bc3c-761bfd976736
  127. m_Time: 0
  128. m_InterpolationCurve: 0
  129. m_InterpolationDirection: 0
  130. color: {r: 1, g: 1, b: 1, a: 1}
  131. m_Name: Star 1 Color
  132. m_Id: da188a22-0459-420f-9ca3-978c1f6aeaa4
  133. - keyframes:
  134. - m_Id: 278e7a8b-562a-4e6d-aa28-7b0e8e254625
  135. m_Time: 0
  136. m_InterpolationCurve: 0
  137. m_InterpolationDirection: 0
  138. color: {r: 0.9955375, g: 1, b: 0.6764706, a: 1}
  139. m_Name: Star 2 Color
  140. m_Id: 54fc73c7-81fa-4dcd-a0bc-57c7d14f268e
  141. - keyframes:
  142. - m_Id: 5b613a09-a66f-48f0-995c-4f5d2e3fdc96
  143. m_Time: 0
  144. m_InterpolationCurve: 0
  145. m_InterpolationDirection: 0
  146. color: {r: 0.46323532, g: 0.6668357, b: 1, a: 1}
  147. m_Name: Star 3 Color
  148. m_Id: f7c3cabb-2ff1-4106-b899-83dd3fd2a7a8
  149. - keyframes:
  150. - m_Id: 0c0c0d08-f8f3-4b5f-90c5-9f6f42afd66d
  151. m_Time: 0
  152. m_InterpolationCurve: 0
  153. m_InterpolationDirection: 0
  154. color: {r: 1, g: 1, b: 1, a: 1}
  155. m_Name: Rain Tint Color
  156. m_Id: f4580105-441b-48ca-be9c-40fd68c2848f
  157. - keyframes:
  158. - m_Id: d773945e-82ff-4acd-8780-278795adcadd
  159. m_Time: 0
  160. m_InterpolationCurve: 0
  161. m_InterpolationDirection: 0
  162. color: {r: 1, g: 1, b: 1, a: 1}
  163. m_Name: Splash Tint Color
  164. m_Id: 96e1b942-db38-47f8-8eb9-2d9ae32ad6a2
  165. - keyframes:
  166. - m_Id: b9b5cb60-96a0-47cd-bc85-c80c939e0b47
  167. m_Time: 0
  168. m_InterpolationCurve: 0
  169. m_InterpolationDirection: 0
  170. color: {r: 0.3496972, g: 0.5852076, b: 0.9705882, a: 1}
  171. m_Name: Lightning Tint Color
  172. m_Id: 6efc6e50-6ab6-42a8-b386-5e9b7e53542a
  173. - keyframes:
  174. - m_Id: d430ac0e-515a-4b50-8983-b00a4747cfe9
  175. m_Time: 0
  176. m_InterpolationCurve: 0
  177. m_InterpolationDirection: 0
  178. color: {r: 1, g: 1, b: 1, a: 1}
  179. m_Name: Cloud Cubemap Tint Color
  180. m_Id: 88448143-97f0-4cf2-b1c3-f86c571c7e6b
  181. - keyframes:
  182. - m_Id: b407bc77-ab15-4cdb-b337-8c18f63105b3
  183. m_Time: 0
  184. m_InterpolationCurve: 0
  185. m_InterpolationDirection: 0
  186. color: {r: 1, g: 1, b: 1, a: 1}
  187. m_Name: Cloud Lit - Light Color
  188. m_Id: c73b2433-6c81-4f09-891d-e828dd49b296
  189. - keyframes:
  190. - m_Id: 4efd062b-eb1f-462b-b631-2745189832c0
  191. m_Time: 0
  192. m_InterpolationCurve: 0
  193. m_InterpolationDirection: 0
  194. color: {r: 0.5, g: 0.5, b: 0.5, a: 1}
  195. m_Name: Cloud Lit - Shadow Color
  196. m_Id: ee7d1b9c-7222-401a-8d6f-b1eaa126356c
  197. - keyframes:
  198. - m_Id: f8ec8bbe-e30b-4af7-97c4-6d3a7db7a0e6
  199. m_Time: 0
  200. m_InterpolationCurve: 0
  201. m_InterpolationDirection: 0
  202. color: {r: 1, g: 1, b: 1, a: 1}
  203. m_Name: Cloud Cubemap Double Layer Tint Color
  204. m_Id: 9ee79ec1-f796-4d53-ae5c-678e5c3e712f
  205. - keyframes:
  206. - m_Id: 420fecf4-5474-4e4b-9a85-02462acdef5b
  207. m_Time: 0
  208. m_InterpolationCurve: 0
  209. m_InterpolationDirection: 0
  210. color: {r: 1, g: 1, b: 1, a: 1}
  211. m_Name: Cloud Lit - Double Layer Lit Color
  212. m_Id: fe34afbc-bab6-486a-8a52-ba4b21226af1
  213. - keyframes:
  214. - m_Id: b5474813-d846-4f30-ade1-b67e01b5e112
  215. m_Time: 0
  216. m_InterpolationCurve: 0
  217. m_InterpolationDirection: 0
  218. color: {r: 0.5, g: 0.5, b: 0.5, a: 1}
  219. m_Name: Cloud Lit - Double Layer Shadow Color
  220. m_Id: 625b6b3e-1f67-4f51-bbc7-c4394749da5d
  221. - keyframes:
  222. - m_Id: 60691790-e942-4cb1-b09c-fbc69b871103
  223. m_Time: 0
  224. m_InterpolationCurve: 0
  225. m_InterpolationDirection: 0
  226. color: {r: 1, g: 1, b: 1, a: 1}
  227. m_Name: Star Tint Color
  228. m_Id: 2c2ab34b-1570-404e-9e40-ffa1ec43a3a1
  229. m_NumberGroup:
  230. m_Keys:
  231. - SkyMiddleColorPosition
  232. - HorizonTransitionStartKey
  233. - HorizonTransitionLengthKey
  234. - StarTransitionStartKey
  235. - StarTransitionLengthKey
  236. - HorizonStarScaleKey
  237. - CloudDensityKey
  238. - CloudSpeedKey
  239. - CloudDirectionKey
  240. - CloudHeightKey
  241. - CloudFadePositionKey
  242. - CloudFadeAmountKey
  243. - FogDensityKey
  244. - FogLengthKey
  245. - SunRotationSpeedKey
  246. - SunSizeKey
  247. - SunEdgeFeatheringKey
  248. - SunColorIntensityKey
  249. - SunLightIntensityKey
  250. - SunOrbitRotation
  251. - SunOrbitTilt
  252. - SunOrbitProgress
  253. - MoonRotationSpeedKey
  254. - MoonSizeKey
  255. - MoonEdgeFeatheringKey
  256. - MoonColorIntensityKey
  257. - MoonLightIntensityKey
  258. - MoonOrbitRotation
  259. - MoonOrbitTilt
  260. - MoonOrbitProgress
  261. - MoonOrbitSpeed
  262. - Star1RotationSpeed
  263. - Star1SizeKey
  264. - Star1DensityKey
  265. - Star1TwinkleAmountKey
  266. - Star1TwinkleSpeedKey
  267. - Star1EdgeFeathering
  268. - Star1ColorIntensityKey
  269. - Star2RotationSpeed
  270. - Star2SizeKey
  271. - Star2DensityKey
  272. - Star2TwinkleAmountKey
  273. - Star2TwinkleSpeedKey
  274. - Star2EdgeFeathering
  275. - Star2ColorIntensityKey
  276. - Star3RotationSpeed
  277. - Star3SizeKey
  278. - Star3DensityKey
  279. - Star3TwinkleAmountKey
  280. - Star3TwinkleSpeedKey
  281. - Star3EdgeFeathering
  282. - Star3ColorIntensityKey
  283. - SunSpriteColumnCountKey
  284. - SunSpriteRowCountKey
  285. - SunSpriteItemCount
  286. - SunSpriteAnimationSpeed
  287. - MoonSpriteColumnCountKey
  288. - MoonSpriteRowCountKey
  289. - MoonSpriteItemCount
  290. - MoonSpriteAnimationSpeed
  291. - Star1SpriteColumnCountKey
  292. - Star1SpriteRowCountKey
  293. - Star1SpriteItemCount
  294. - Star1SpriteAnimationSpeed
  295. - Star2SpriteColumnCountKey
  296. - Star2SpriteRowCountKey
  297. - Star2SpriteItemCount
  298. - Star2SpriteAnimationSpeed
  299. - Star3SpriteColumnCountKey
  300. - Star3SpriteRowCountKey
  301. - Star3SpriteItemCount
  302. - Star3SpriteAnimationSpeed
  303. - CloudTextureTiling
  304. - RainNearIntensityKey
  305. - RainFarIntensityKey
  306. - RainNearSpeedKey
  307. - RainFarSpeedKey
  308. - RainSoundVolume
  309. - RainSplashColumnCountKey
  310. - RainSplashRowCountKey
  311. - RainSplashItemCountKey
  312. - RainSplashSpriteAnimationSpeedKey
  313. - RainSplashMaxConcurrentKey
  314. - RainSplashMinDistanceKey
  315. - RainSplashMaxDistanceKey
  316. - RainSplashScaleKey
  317. - RainSplashScaleVarienceKey
  318. - RainSplashIntensityKey
  319. - RainSplashSurfaceOffsetKey
  320. - ThunderSoundVolumeKey
  321. - ThunderSoundDelayKey
  322. - LightningSpawnDelayKey
  323. - LightningSpriteColumnCountKey
  324. - LightningSpriteRowCountKey
  325. - LightningSpriteItemCountKey
  326. - LightningSpriteAnimationSpeedKey
  327. - RainWindTurbulenceKey
  328. - RainWindTurbulenceSpeedKey
  329. - RainSplashAreaStartKey
  330. - RainSplashAreaLengthKey
  331. - LightningProbabilityKey
  332. - LightningStrikeCoolDown
  333. - LightningIntensityKey
  334. - RainNearTextureTiling
  335. - RainFarTextureTiling
  336. - CloudCubemapRotationSpeedKey
  337. - CloudCubemapHeightKey
  338. - CloudCubemapDoubleLayerRotationSpeedKey
  339. - CloudCubemapDoubleLayerHeightKey
  340. - CloudCubemapNormalRotationSpeedKey
  341. - CloudCubemapNormalHeightKey
  342. - CloudCubemapNormalAmbientIntensityKey
  343. - CloudCubemapNormalDoubleLayerRotationSpeedKey
  344. - CloudCubemapNormalDoubleLayerHeightKey
  345. - StarBasicTwinkleSpeedKey
  346. - StarBasicTwinkleAmountKey
  347. - StarBasicOpacityKey
  348. - StarBasicExponentKey
  349. - StarBasicIntensityKey
  350. m_Values:
  351. - keyframes:
  352. - m_Id: 5fe07780-1a76-4719-8470-320b6364e60d
  353. m_Time: 0
  354. m_InterpolationCurve: 0
  355. m_InterpolationDirection: 0
  356. value: 0.26
  357. m_Name: Sky Middle Color Balance
  358. m_Id: f2fa9790-04eb-4644-aeda-e81a08b70814
  359. minValue: 0
  360. maxValue: 1
  361. - keyframes:
  362. - m_Id: 3e90841e-1476-499a-b686-58a154c92415
  363. m_Time: 0
  364. m_InterpolationCurve: 0
  365. m_InterpolationDirection: 0
  366. value: 0.01
  367. m_Name: Horizon Position
  368. m_Id: 0d215a4b-f845-4855-b7b7-26d3b1f78953
  369. minValue: -1
  370. maxValue: 1
  371. - keyframes:
  372. - m_Id: 9e38c3d7-ea09-434f-9db0-4cda23a7db75
  373. m_Time: 0
  374. m_InterpolationCurve: 0
  375. m_InterpolationDirection: 0
  376. value: 0.98
  377. m_Name: Sky Gradient Length
  378. m_Id: 404d6edd-0cb2-4f7f-9b62-fef6389aca17
  379. minValue: 0
  380. maxValue: 2
  381. - keyframes:
  382. - m_Id: e24d13c6-ff85-45e8-b2a5-6bca8b6afd0f
  383. m_Time: 0
  384. m_InterpolationCurve: 0
  385. m_InterpolationDirection: 0
  386. value: -0.114
  387. m_Name: Star Start
  388. m_Id: 9e3c289b-5897-4c99-8aa3-7579a65224c3
  389. minValue: -1
  390. maxValue: 1
  391. - keyframes:
  392. - m_Id: 6a36f341-8cde-44d6-9bdb-29eb939c0187
  393. m_Time: 0
  394. m_InterpolationCurve: 0
  395. m_InterpolationDirection: 0
  396. value: 1.051
  397. m_Name: Star Transition Length
  398. m_Id: 1af60c16-63ab-4abc-8195-6ef95798b12b
  399. minValue: 0
  400. maxValue: 2
  401. - keyframes:
  402. - m_Id: eafa682d-48f0-4912-b447-5555d7c976bb
  403. m_Time: 0
  404. m_InterpolationCurve: 0
  405. m_InterpolationDirection: 0
  406. value: 0.7
  407. m_Name: Star Distance Scale
  408. m_Id: 7fff175e-df67-4292-b615-f2c0badc8eaa
  409. minValue: 0.01
  410. maxValue: 1
  411. - keyframes:
  412. - m_Id: 3e87ffdd-51a2-4891-ba2b-dedc58531c0f
  413. m_Time: 0
  414. m_InterpolationCurve: 0
  415. m_InterpolationDirection: 0
  416. value: 0.713
  417. m_Name: Cloud Density
  418. m_Id: 57d22e1d-2ec5-4f24-bac6-235f8630e7e6
  419. minValue: 0
  420. maxValue: 1
  421. - keyframes:
  422. - m_Id: d873e8ca-fb80-48d1-a54a-1c6d2a27bd08
  423. m_Time: 0
  424. m_InterpolationCurve: 0
  425. m_InterpolationDirection: 0
  426. value: 0.067
  427. m_Name: Cloud Speed
  428. m_Id: 80a899e7-5bef-4f3d-8599-4445a878fc25
  429. minValue: 0
  430. maxValue: 1
  431. - keyframes:
  432. - m_Id: 10d529cd-cd8f-4f1f-851d-262601e0d1ef
  433. m_Time: 0
  434. m_InterpolationCurve: 0
  435. m_InterpolationDirection: 0
  436. value: 0.18
  437. m_Name: Cloud Direction
  438. m_Id: 58f9b61b-70b5-4af4-bbc5-d0fcb4d7c6a5
  439. minValue: 0
  440. maxValue: 6.2831855
  441. - keyframes:
  442. - m_Id: 1d713e61-b23b-4fa7-a68a-91a6bf16f185
  443. m_Time: 0
  444. m_InterpolationCurve: 0
  445. m_InterpolationDirection: 0
  446. value: 0.7
  447. m_Name: Cloud Height
  448. m_Id: dd76783e-79c0-4d34-9fb7-39bb1f94a9ae
  449. minValue: 0
  450. maxValue: 1
  451. - keyframes:
  452. - m_Id: 72e32369-a3c7-4135-8c23-42460517fac9
  453. m_Time: 0
  454. m_InterpolationCurve: 0
  455. m_InterpolationDirection: 0
  456. value: 0.978
  457. m_Name: Cloud Fade-Out Distance
  458. m_Id: 2d57e070-3b47-4f6f-b937-29fdde788bcc
  459. minValue: 0
  460. maxValue: 1
  461. - keyframes:
  462. - m_Id: e6bb4786-952d-4e15-92b4-8037947e02d8
  463. m_Time: 0
  464. m_InterpolationCurve: 0
  465. m_InterpolationDirection: 0
  466. value: 1
  467. m_Name: Cloud Fade-Out Amount
  468. m_Id: decb53a3-9ab8-408e-9a24-ff12f0ee5072
  469. minValue: 0
  470. maxValue: 1
  471. - keyframes:
  472. - m_Id: 6417358f-2257-4dfa-8c17-9d179186ab3d
  473. m_Time: 0
  474. m_InterpolationCurve: 0
  475. m_InterpolationDirection: 0
  476. value: 0
  477. m_Name: Fog Density
  478. m_Id: 8a44447f-05b8-46df-978c-be306a2df63c
  479. minValue: 0
  480. maxValue: 1
  481. - keyframes:
  482. - m_Id: 34fc5294-a62b-4300-b668-9a7f80a7cd80
  483. m_Time: 0
  484. m_InterpolationCurve: 0
  485. m_InterpolationDirection: 0
  486. value: 0.1
  487. m_Name: Fog Height
  488. m_Id: bcee77f6-16d3-4763-b5d7-010e38db8cdc
  489. minValue: 0.03
  490. maxValue: 1
  491. - keyframes:
  492. - m_Id: ea51c636-856c-4a3f-9656-5f90b7edef94
  493. m_Time: 0
  494. m_InterpolationCurve: 0
  495. m_InterpolationDirection: 0
  496. value: 1
  497. m_Name: Sun Rotation Speed
  498. m_Id: 1154b0a8-3a46-4e31-a111-b2b915c46e24
  499. minValue: -10
  500. maxValue: 10
  501. - keyframes:
  502. - m_Id: 3761740c-cdb5-4db5-81bd-a44ba52745de
  503. m_Time: 0
  504. m_InterpolationCurve: 0
  505. m_InterpolationDirection: 0
  506. value: 0.254
  507. m_Name: Sun Size
  508. m_Id: e3737087-706a-4240-a0fc-978822ce08dd
  509. minValue: 0
  510. maxValue: 1
  511. - keyframes:
  512. - m_Id: 29532f9a-f775-42ba-955f-d7cbd965dba6
  513. m_Time: 0
  514. m_InterpolationCurve: 0
  515. m_InterpolationDirection: 0
  516. value: 0.841
  517. m_Name: Sun Edge Feathering
  518. m_Id: 5bd244f7-a047-4c37-9395-9aae3f3a2066
  519. minValue: 0.0001
  520. maxValue: 1
  521. - keyframes:
  522. - m_Id: 8716ae4e-a7c5-45e6-bfbb-451340fcdbcb
  523. m_Time: 0
  524. m_InterpolationCurve: 0
  525. m_InterpolationDirection: 0
  526. value: 1
  527. m_Name: Sun Bloom Intensity
  528. m_Id: 8d1e415d-caca-45ed-aa34-6460f4e9e38b
  529. minValue: 1
  530. maxValue: 25
  531. - keyframes:
  532. - m_Id: 4da12b00-0d2b-40cd-8771-b39e783869f7
  533. m_Time: 0
  534. m_InterpolationCurve: 0
  535. m_InterpolationDirection: 0
  536. value: 2.5
  537. m_Name: Sun Light Intensity
  538. m_Id: 279922cd-5969-41cc-9a98-5e2cf53db4fa
  539. minValue: 0
  540. maxValue: 5
  541. - keyframes:
  542. - m_Id: b3427de3-440f-435f-860a-348e9d73f0d0
  543. m_Time: 0
  544. m_InterpolationCurve: 0
  545. m_InterpolationDirection: 0
  546. value: 0
  547. m_Name: Sun Orbit Rotation
  548. m_Id: 6e9faa0d-db33-4594-9ced-83080e97f951
  549. minValue: 0
  550. maxValue: 1
  551. - keyframes:
  552. - m_Id: ac7a0fb4-4d7a-4ca0-8675-bf41cc793ad1
  553. m_Time: 0
  554. m_InterpolationCurve: 0
  555. m_InterpolationDirection: 0
  556. value: 0
  557. m_Name: Sun Orbit Tilt
  558. m_Id: 0f678585-be4c-41d8-b864-747eecbb7e68
  559. minValue: -1
  560. maxValue: 1
  561. - keyframes:
  562. - m_Id: 9835fea6-6331-497a-a1a4-a3da488a5102
  563. m_Time: 0
  564. m_InterpolationCurve: 0
  565. m_InterpolationDirection: 0
  566. value: 0.25
  567. m_Name: Sun Orbit Progress
  568. m_Id: b50d897a-053f-408e-83b1-0f08d23feffc
  569. minValue: 0
  570. maxValue: 1
  571. - keyframes:
  572. - m_Id: 20c8a202-a64a-4926-b467-0c580e986fc7
  573. m_Time: 0
  574. m_InterpolationCurve: 0
  575. m_InterpolationDirection: 0
  576. value: 1
  577. m_Name: Moon Rotation Speed
  578. m_Id: 64eb9567-1c22-408a-9855-e2b331add9b9
  579. minValue: -10
  580. maxValue: 10
  581. - keyframes:
  582. - m_Id: 5e16638f-f083-4e3f-9048-10c18bc097b2
  583. m_Time: 0
  584. m_InterpolationCurve: 0
  585. m_InterpolationDirection: 0
  586. value: 0.08
  587. m_Name: Moon Size
  588. m_Id: 0d2e1a42-1a65-45b4-b3b8-46cdf7caf68d
  589. minValue: 0
  590. maxValue: 1
  591. - keyframes:
  592. - m_Id: d6b72f52-7934-4035-be51-f3052fe81b17
  593. m_Time: 0
  594. m_InterpolationCurve: 0
  595. m_InterpolationDirection: 0
  596. value: 0.188
  597. m_Name: Moon Edge Feathering
  598. m_Id: 070fe8d8-d300-4c96-b14f-fd21451d063f
  599. minValue: 0.0001
  600. maxValue: 1
  601. - keyframes:
  602. - m_Id: 2b94530d-5036-4975-9d0a-81ecbe9a570d
  603. m_Time: 0
  604. m_InterpolationCurve: 0
  605. m_InterpolationDirection: 0
  606. value: 1
  607. m_Name: Moon Bloom Intensity
  608. m_Id: 4cc4d041-b64a-41e9-b59b-340128e71176
  609. minValue: 1
  610. maxValue: 25
  611. - keyframes:
  612. - m_Id: 687ad318-edde-46ca-885e-69b4bc9835ee
  613. m_Time: 0
  614. m_InterpolationCurve: 0
  615. m_InterpolationDirection: 0
  616. value: 0.25
  617. m_Name: Moon Light Intensity
  618. m_Id: b2f5b879-63a7-4b89-8e54-c3fc7adb6834
  619. minValue: 0
  620. maxValue: 5
  621. - keyframes:
  622. - m_Id: d9817d43-ebe1-4383-8544-0c65d87fe1a1
  623. m_Time: 0
  624. m_InterpolationCurve: 0
  625. m_InterpolationDirection: 0
  626. value: 0
  627. m_Name: Moon Orbit Rotation
  628. m_Id: 0717608c-1e8a-4ae4-a86a-d96b13f0957d
  629. minValue: 0
  630. maxValue: 1
  631. - keyframes:
  632. - m_Id: 0b4fb67e-9084-47ef-8955-e87c89070f71
  633. m_Time: 0
  634. m_InterpolationCurve: 0
  635. m_InterpolationDirection: 0
  636. value: 0
  637. m_Name: Moon Orbit Tilt
  638. m_Id: bec5f3eb-0ba4-43a6-9b10-be9e80a19f7c
  639. minValue: -1
  640. maxValue: 1
  641. - keyframes:
  642. - m_Id: 9cfa422d-4f7e-4462-aa46-00bb77be1ee4
  643. m_Time: 0
  644. m_InterpolationCurve: 0
  645. m_InterpolationDirection: 0
  646. value: 0.139
  647. m_Name: Moon Orbit Progress
  648. m_Id: 931bd2f3-cf0a-4386-ae4f-85908021f8c7
  649. minValue: 0
  650. maxValue: 1
  651. - keyframes:
  652. - m_Id: d0b1184c-35a8-4b55-b4cc-9027dfda3930
  653. m_Time: 0
  654. m_InterpolationCurve: 0
  655. m_InterpolationDirection: 0
  656. value: 1
  657. m_Name: Moon Orbit Speed
  658. m_Id: 3586efcb-8b12-420b-9689-f673f71ea0b0
  659. minValue: 0
  660. maxValue: 3
  661. - keyframes:
  662. - m_Id: 5814181c-d895-493d-97d1-3d901dedbded
  663. m_Time: 0
  664. m_InterpolationCurve: 0
  665. m_InterpolationDirection: 0
  666. value: 0
  667. m_Name: Star 1 Rotation Speed
  668. m_Id: c9b8e747-c444-4c73-af4e-2e8a0b8d2736
  669. minValue: -10
  670. maxValue: 10
  671. - keyframes:
  672. - m_Id: dd326f72-eb71-456a-af0e-c497ac086515
  673. m_Time: 0
  674. m_InterpolationCurve: 0
  675. m_InterpolationDirection: 0
  676. value: 0.0039
  677. m_Name: Star 1 Size
  678. m_Id: c45fafb0-a5e8-417a-823c-ac2851792848
  679. minValue: 0
  680. maxValue: 0.2
  681. - keyframes:
  682. - m_Id: 449e596d-6905-490f-86ec-85d90ef96ee1
  683. m_Time: 0
  684. m_InterpolationCurve: 0
  685. m_InterpolationDirection: 0
  686. value: 0.0067
  687. m_Name: Star 1 Density
  688. m_Id: 7c8f1c1a-ae79-4874-9bda-27b4c30f507a
  689. minValue: 0
  690. maxValue: 1
  691. - keyframes:
  692. - m_Id: 9523f71a-dc64-42c0-95ff-9f83e3fb1b03
  693. m_Time: 0
  694. m_InterpolationCurve: 0
  695. m_InterpolationDirection: 0
  696. value: 0.7
  697. m_Name: Star 1 Twinkle Amount
  698. m_Id: 7de3d274-4c96-46ce-be25-4121399c57a7
  699. minValue: 0
  700. maxValue: 1
  701. - keyframes:
  702. - m_Id: ebcc46d8-01d4-4bf2-9570-97ccaf7a78a8
  703. m_Time: 0
  704. m_InterpolationCurve: 0
  705. m_InterpolationDirection: 0
  706. value: 5
  707. m_Name: Star 1 Twinkle Speed
  708. m_Id: c46e41c2-0420-4884-b7a0-02607e02d822
  709. minValue: 0
  710. maxValue: 10
  711. - keyframes:
  712. - m_Id: a0dc0dfe-e33a-4383-b46d-072b2e905be6
  713. m_Time: 0
  714. m_InterpolationCurve: 0
  715. m_InterpolationDirection: 0
  716. value: 0.4
  717. m_Name: Star 1 Edge Feathering
  718. m_Id: 134775b2-f112-4d5e-a320-0311f0e3961d
  719. minValue: 0.0001
  720. maxValue: 1
  721. - keyframes:
  722. - m_Id: a08588eb-0609-472d-bd17-3acfd1cdf086
  723. m_Time: 0
  724. m_InterpolationCurve: 0
  725. m_InterpolationDirection: 0
  726. value: 1
  727. m_Name: Star 1 Bloom Intensity
  728. m_Id: 226bf1ce-be8e-4fab-982b-1c7e6e8f388a
  729. minValue: 1
  730. maxValue: 25
  731. - keyframes:
  732. - m_Id: d63f5cb0-c476-451f-85d7-c3f689dc83c6
  733. m_Time: 0
  734. m_InterpolationCurve: 0
  735. m_InterpolationDirection: 0
  736. value: 0
  737. m_Name: Star 2 Rotation Speed
  738. m_Id: 06dc5928-85b3-408b-ab33-4ae37dc1c147
  739. minValue: -10
  740. maxValue: 10
  741. - keyframes:
  742. - m_Id: adc31732-3303-4418-9462-59d503ea4a80
  743. m_Time: 0
  744. m_InterpolationCurve: 0
  745. m_InterpolationDirection: 0
  746. value: 0.0054
  747. m_Name: Star 2 Size
  748. m_Id: df1fabb1-56c9-4603-8185-c6aa5e783fc9
  749. minValue: 0
  750. maxValue: 0.2
  751. - keyframes:
  752. - m_Id: 15059b12-9295-4b58-8476-83df363b9c86
  753. m_Time: 0
  754. m_InterpolationCurve: 0
  755. m_InterpolationDirection: 0
  756. value: 0.01
  757. m_Name: Star 2 Density
  758. m_Id: 2b97d4dd-f073-42a3-97dc-c8a13ddac260
  759. minValue: 0
  760. maxValue: 1
  761. - keyframes:
  762. - m_Id: 5f50e1e4-96cb-4e32-86ec-1851ae57a2ab
  763. m_Time: 0
  764. m_InterpolationCurve: 0
  765. m_InterpolationDirection: 0
  766. value: 0.7
  767. m_Name: Star 2 Twinkle Amount
  768. m_Id: 3a38c523-4ff0-4e09-9b8c-4de250371875
  769. minValue: 0
  770. maxValue: 1
  771. - keyframes:
  772. - m_Id: 65cb6b2b-6167-49ed-9af5-ef9362905685
  773. m_Time: 0
  774. m_InterpolationCurve: 0
  775. m_InterpolationDirection: 0
  776. value: 5
  777. m_Name: Star 2 Twinkle Speed
  778. m_Id: db2a43be-c868-472d-817e-cbf37fdb884c
  779. minValue: 0
  780. maxValue: 10
  781. - keyframes:
  782. - m_Id: d47b9bc1-ae8c-41ac-bf43-8b9b935c0564
  783. m_Time: 0
  784. m_InterpolationCurve: 0
  785. m_InterpolationDirection: 0
  786. value: 0.4
  787. m_Name: Star 2 Edge Feathering
  788. m_Id: 98ec0cd8-8518-4254-922e-6cfff5c5e1d4
  789. minValue: 0.0001
  790. maxValue: 1
  791. - keyframes:
  792. - m_Id: 9a73b3ce-ae9a-44ac-8c2a-bc3ae2e73e25
  793. m_Time: 0
  794. m_InterpolationCurve: 0
  795. m_InterpolationDirection: 0
  796. value: 1
  797. m_Name: Star 2 Bloom Intensity
  798. m_Id: b0e3f84f-9c0c-453e-9492-d0ebd84b091d
  799. minValue: 1
  800. maxValue: 25
  801. - keyframes:
  802. - m_Id: 74f74f92-0d84-48f5-a139-36fa217a99c1
  803. m_Time: 0
  804. m_InterpolationCurve: 0
  805. m_InterpolationDirection: 0
  806. value: 0
  807. m_Name: Star 3 Rotation Speed
  808. m_Id: ae0becdb-a10a-4fd0-9454-bb2c9cfa02a1
  809. minValue: -10
  810. maxValue: 10
  811. - keyframes:
  812. - m_Id: fc3c992f-4ea3-4fd6-9620-c4269146b3ce
  813. m_Time: 0
  814. m_InterpolationCurve: 0
  815. m_InterpolationDirection: 0
  816. value: 0.005
  817. m_Name: Star 3 Size
  818. m_Id: 957d9599-493b-48eb-a886-44afeb4b2343
  819. minValue: 0
  820. maxValue: 0.2
  821. - keyframes:
  822. - m_Id: 6c92a131-dbe2-4e58-be90-bbc85189dee0
  823. m_Time: 0
  824. m_InterpolationCurve: 0
  825. m_InterpolationDirection: 0
  826. value: 0.01
  827. m_Name: Star 3 Density
  828. m_Id: de448105-13cd-4354-a4b0-888ead28d147
  829. minValue: 0
  830. maxValue: 1
  831. - keyframes:
  832. - m_Id: a1f3ee00-e19e-40cf-82dc-543220fc1699
  833. m_Time: 0
  834. m_InterpolationCurve: 0
  835. m_InterpolationDirection: 0
  836. value: 0.7
  837. m_Name: Star 3 Twinkle Amount
  838. m_Id: 8b62fd92-aaae-4413-8766-4ecbc68a91bd
  839. minValue: 0
  840. maxValue: 1
  841. - keyframes:
  842. - m_Id: 5a33f061-bd52-45f6-ab42-7eb361143f64
  843. m_Time: 0
  844. m_InterpolationCurve: 0
  845. m_InterpolationDirection: 0
  846. value: 5
  847. m_Name: Star 3 Twinkle Speed
  848. m_Id: 769efcb8-d06f-47d5-bcd9-ec8c169349e9
  849. minValue: 0
  850. maxValue: 10
  851. - keyframes:
  852. - m_Id: 6d1f9724-67c3-4368-b3f2-164cf5a73eed
  853. m_Time: 0
  854. m_InterpolationCurve: 0
  855. m_InterpolationDirection: 0
  856. value: 0.4
  857. m_Name: Star 3 Edge Feathering
  858. m_Id: e70d8b3a-8ca7-4f54-86b5-34d06bc19be9
  859. minValue: 0.0001
  860. maxValue: 1
  861. - keyframes:
  862. - m_Id: 4c021ee6-5850-42b8-8cfa-9b877ba19b4d
  863. m_Time: 0
  864. m_InterpolationCurve: 0
  865. m_InterpolationDirection: 0
  866. value: 1
  867. m_Name: Star 3 Bloom Intensity
  868. m_Id: a8a51fd8-b3e0-4abe-a552-6f195e6e314f
  869. minValue: 1
  870. maxValue: 25
  871. - keyframes:
  872. - m_Id: 70ede605-b8f9-4dcd-bef8-d56b05a6ccf0
  873. m_Time: 0
  874. m_InterpolationCurve: 0
  875. m_InterpolationDirection: 0
  876. value: 1
  877. m_Name: Sun Sprite Columns
  878. m_Id: 5a7c0ac4-1122-46a3-9ed3-2266549dd06d
  879. minValue: 1
  880. maxValue: 100000
  881. - keyframes:
  882. - m_Id: c417cfb3-32fc-4e61-9f8a-aab13b682b04
  883. m_Time: 0
  884. m_InterpolationCurve: 0
  885. m_InterpolationDirection: 0
  886. value: 1
  887. m_Name: Sun Sprite Rows
  888. m_Id: aa6e9003-5ac2-4092-9737-a12402810955
  889. minValue: 1
  890. maxValue: 100000
  891. - keyframes:
  892. - m_Id: c0d98c91-3e24-4298-bd0b-f6f747924fbe
  893. m_Time: 0
  894. m_InterpolationCurve: 0
  895. m_InterpolationDirection: 0
  896. value: 1
  897. m_Name: Sun Sprite Item Count
  898. m_Id: 48b2bd06-2191-4616-b871-d09ab29ea05e
  899. minValue: 1
  900. maxValue: 100000
  901. - keyframes:
  902. - m_Id: bd09f828-c1eb-485a-822b-08953e4962ea
  903. m_Time: 0
  904. m_InterpolationCurve: 0
  905. m_InterpolationDirection: 0
  906. value: 15
  907. m_Name: Sun Sprite Animation Speed
  908. m_Id: a66ee17f-c0ba-487d-bd59-3d452cfed8cd
  909. minValue: 0
  910. maxValue: 90
  911. - keyframes:
  912. - m_Id: 9c3342b0-6db6-4f61-baf0-c088d56f48a8
  913. m_Time: 0
  914. m_InterpolationCurve: 0
  915. m_InterpolationDirection: 0
  916. value: 1
  917. m_Name: Moon Sprite Columns
  918. m_Id: ffe3a8cd-9bfa-46c9-9dd4-400f620110f2
  919. minValue: 1
  920. maxValue: 100000
  921. - keyframes:
  922. - m_Id: c3d5d506-951a-4fc6-aac1-9b7ab90255c7
  923. m_Time: 0
  924. m_InterpolationCurve: 0
  925. m_InterpolationDirection: 0
  926. value: 1
  927. m_Name: Moon Sprite Rows
  928. m_Id: 813045d6-6d72-4808-9242-6fd465fe8d65
  929. minValue: 1
  930. maxValue: 100000
  931. - keyframes:
  932. - m_Id: 946be54c-d6f3-46d7-ba4c-16083a353397
  933. m_Time: 0
  934. m_InterpolationCurve: 0
  935. m_InterpolationDirection: 0
  936. value: 1
  937. m_Name: Moon Sprite Item Count
  938. m_Id: 5ffe238b-2b62-476f-becf-10fa8e7ca4e3
  939. minValue: 1
  940. maxValue: 100000
  941. - keyframes:
  942. - m_Id: c850c3a9-5918-4b27-bd71-06f508babad9
  943. m_Time: 0
  944. m_InterpolationCurve: 0
  945. m_InterpolationDirection: 0
  946. value: 15
  947. m_Name: Moon Sprite Animation Speed
  948. m_Id: 2d957218-fae7-480b-8cf4-038fb93e35af
  949. minValue: 0
  950. maxValue: 90
  951. - keyframes:
  952. - m_Id: 5ef25104-a603-4db4-8c29-a81a5972c07a
  953. m_Time: 0
  954. m_InterpolationCurve: 0
  955. m_InterpolationDirection: 0
  956. value: 1
  957. m_Name: Star 1 Sprite Columns
  958. m_Id: 7dc4ab0b-e056-40ca-96c6-635b46a9ea5c
  959. minValue: 1
  960. maxValue: 100000
  961. - keyframes:
  962. - m_Id: 1a1a1c9f-3683-41ac-8fb7-caff84f391c9
  963. m_Time: 0
  964. m_InterpolationCurve: 0
  965. m_InterpolationDirection: 0
  966. value: 1
  967. m_Name: Star 1 Sprite Rows
  968. m_Id: 2875fb53-9e63-4fd7-b1c7-dabf64968793
  969. minValue: 1
  970. maxValue: 100000
  971. - keyframes:
  972. - m_Id: 074cf57b-2223-45a1-91a4-3ef40ae39a21
  973. m_Time: 0
  974. m_InterpolationCurve: 0
  975. m_InterpolationDirection: 0
  976. value: 1
  977. m_Name: Star 1 Sprite Item Count
  978. m_Id: ece7a838-e236-4520-a4d0-514ee2c53721
  979. minValue: 1
  980. maxValue: 100000
  981. - keyframes:
  982. - m_Id: 91a313cc-2621-431a-b530-17f67c4c87ca
  983. m_Time: 0
  984. m_InterpolationCurve: 0
  985. m_InterpolationDirection: 0
  986. value: 15
  987. m_Name: Star 1 Sprite Animation Speed
  988. m_Id: e6651c01-0caf-49dd-b1be-d458aab6c0e1
  989. minValue: 0
  990. maxValue: 90
  991. - keyframes:
  992. - m_Id: 693ab142-fdb1-475e-a4b6-cd80428e296e
  993. m_Time: 0
  994. m_InterpolationCurve: 0
  995. m_InterpolationDirection: 0
  996. value: 1
  997. m_Name: Star 2 Sprite Columns
  998. m_Id: 98cf8d3f-30bd-40fe-8ee5-b374e786a254
  999. minValue: 1
  1000. maxValue: 100000
  1001. - keyframes:
  1002. - m_Id: f37dd5dd-df77-4272-aed4-ae1cc3f05d5d
  1003. m_Time: 0
  1004. m_InterpolationCurve: 0
  1005. m_InterpolationDirection: 0
  1006. value: 1
  1007. m_Name: Star 2 Sprite Rows
  1008. m_Id: 3cd4853f-26c0-4beb-a9bd-3bc38ac97fb5
  1009. minValue: 1
  1010. maxValue: 100000
  1011. - keyframes:
  1012. - m_Id: 8ddcd76a-6e97-422c-86bf-617d86661642
  1013. m_Time: 0
  1014. m_InterpolationCurve: 0
  1015. m_InterpolationDirection: 0
  1016. value: 1
  1017. m_Name: Star 2 Sprite Item Count
  1018. m_Id: 4e398573-0824-4bdb-83b6-e8859668036e
  1019. minValue: 1
  1020. maxValue: 100000
  1021. - keyframes:
  1022. - m_Id: ea73f5b4-2bc6-4862-9c36-80ff261b8064
  1023. m_Time: 0
  1024. m_InterpolationCurve: 0
  1025. m_InterpolationDirection: 0
  1026. value: 15
  1027. m_Name: Star 2 Sprite Animation Speed
  1028. m_Id: 421578cb-8471-49ba-b2a1-9fd74a9676ba
  1029. minValue: 0
  1030. maxValue: 90
  1031. - keyframes:
  1032. - m_Id: e01f9ed2-49a4-437c-95fd-0382c5a6f6e7
  1033. m_Time: 0
  1034. m_InterpolationCurve: 0
  1035. m_InterpolationDirection: 0
  1036. value: 1
  1037. m_Name: Star 3 Sprite Columns
  1038. m_Id: 518a3135-185f-460f-accb-fd28ed6365ad
  1039. minValue: 1
  1040. maxValue: 100000
  1041. - keyframes:
  1042. - m_Id: a8044587-0a03-44ed-949e-f7904626f721
  1043. m_Time: 0
  1044. m_InterpolationCurve: 0
  1045. m_InterpolationDirection: 0
  1046. value: 1
  1047. m_Name: Star 3 Sprite Rows
  1048. m_Id: 75139c28-679f-46b8-b789-ea6489ccf499
  1049. minValue: 1
  1050. maxValue: 100000
  1051. - keyframes:
  1052. - m_Id: a55668ea-8321-4fb3-9ed8-1920890c0594
  1053. m_Time: 0
  1054. m_InterpolationCurve: 0
  1055. m_InterpolationDirection: 0
  1056. value: 1
  1057. m_Name: Star 3 Sprite Item Count
  1058. m_Id: be560776-9d3a-4404-9ed5-54386681b05f
  1059. minValue: 1
  1060. maxValue: 100000
  1061. - keyframes:
  1062. - m_Id: f46fed4b-4ec1-4f61-ae30-f486fd29a405
  1063. m_Time: 0
  1064. m_InterpolationCurve: 0
  1065. m_InterpolationDirection: 0
  1066. value: 15
  1067. m_Name: Star 3 Sprite Animation Speed
  1068. m_Id: 1f778560-4105-4bd5-8091-5d060aae66dd
  1069. minValue: 0
  1070. maxValue: 90
  1071. - keyframes:
  1072. - m_Id: 1ccc9dbb-7e3c-474b-b07b-72346cb5065a
  1073. m_Time: 0
  1074. m_InterpolationCurve: 0
  1075. m_InterpolationDirection: 0
  1076. value: 0.9
  1077. m_Name: Cloud Texture Tiling
  1078. m_Id: a833b147-1ca2-4aa6-af3b-9559b9f05ae9
  1079. minValue: 0.1
  1080. maxValue: 20
  1081. - keyframes:
  1082. - m_Id: ddda8453-82b5-4548-8060-002411626a23
  1083. m_Time: 0
  1084. m_InterpolationCurve: 0
  1085. m_InterpolationDirection: 0
  1086. value: 0.506
  1087. m_Name: Rain Near Visibility
  1088. m_Id: 680c75aa-92d5-4865-a780-28996a0a15fd
  1089. minValue: 0
  1090. maxValue: 1
  1091. - keyframes:
  1092. - m_Id: d821bc7c-3c65-424a-9262-dc40e065cc6f
  1093. m_Time: 0
  1094. m_InterpolationCurve: 0
  1095. m_InterpolationDirection: 0
  1096. value: 1
  1097. m_Name: Rain Far Visibility
  1098. m_Id: 2a60f4b0-230f-432b-9ced-6201b3be677b
  1099. minValue: 0
  1100. maxValue: 1
  1101. - keyframes:
  1102. - m_Id: 7f55ee5e-3ae7-4409-b7bd-48139eb7043f
  1103. m_Time: 0
  1104. m_InterpolationCurve: 0
  1105. m_InterpolationDirection: 0
  1106. value: 3.32
  1107. m_Name: Rain Near Speed
  1108. m_Id: 21a099e7-66e8-446e-9747-aabbdb47f61e
  1109. minValue: 0
  1110. maxValue: 5
  1111. - keyframes:
  1112. - m_Id: 369e361b-e943-4f8a-9ed0-059579bd7a2a
  1113. m_Time: 0
  1114. m_InterpolationCurve: 0
  1115. m_InterpolationDirection: 0
  1116. value: 4.56
  1117. m_Name: Rain Far Speed
  1118. m_Id: e505d0af-5fcf-4b15-999c-1ad7b47e2963
  1119. minValue: 0
  1120. maxValue: 5
  1121. - keyframes:
  1122. - m_Id: 52d7766f-bc06-465c-83bc-92ec1369304f
  1123. m_Time: 0
  1124. m_InterpolationCurve: 0
  1125. m_InterpolationDirection: 0
  1126. value: 0.749
  1127. m_Name: Rain Sound Volume
  1128. m_Id: 92e8642e-f41b-4aa2-869c-78feacef5ff1
  1129. minValue: 0
  1130. maxValue: 1
  1131. - keyframes:
  1132. - m_Id: 96f8371b-8d17-4cda-aaea-9ffc449166d6
  1133. m_Time: 0
  1134. m_InterpolationCurve: 0
  1135. m_InterpolationDirection: 0
  1136. value: 4
  1137. m_Name: Splash Sprite Columns
  1138. m_Id: 81c79b77-6573-4f77-9962-502ae3ed9517
  1139. minValue: 0
  1140. maxValue: 100
  1141. - keyframes:
  1142. - m_Id: 064b5551-71a1-4c34-9900-802598545476
  1143. m_Time: 0
  1144. m_InterpolationCurve: 0
  1145. m_InterpolationDirection: 0
  1146. value: 4
  1147. m_Name: Splash Sprite Rows
  1148. m_Id: aff85129-8e18-42c4-b25b-0962eee0b019
  1149. minValue: 0
  1150. maxValue: 100
  1151. - keyframes:
  1152. - m_Id: 0665ab33-3a49-4c5f-864d-6b655be7df63
  1153. m_Time: 0
  1154. m_InterpolationCurve: 0
  1155. m_InterpolationDirection: 0
  1156. value: 16
  1157. m_Name: Splash Sprite Item Count
  1158. m_Id: 61bea7af-0213-4857-952a-ed21cb751313
  1159. minValue: 0
  1160. maxValue: 1000
  1161. - keyframes:
  1162. - m_Id: 3b9cc418-90dc-48dd-918c-149041510ce0
  1163. m_Time: 0
  1164. m_InterpolationCurve: 0
  1165. m_InterpolationDirection: 0
  1166. value: 25
  1167. m_Name: Splash Sprite Speed
  1168. m_Id: 0c7525cf-9517-4d59-9a7d-8336eb983134
  1169. minValue: 0
  1170. maxValue: 100
  1171. - keyframes:
  1172. - m_Id: 297cd6df-3efb-490b-a95f-35a6755efac6
  1173. m_Time: 0
  1174. m_InterpolationCurve: 0
  1175. m_InterpolationDirection: 0
  1176. value: 776
  1177. m_Name: Splash Count
  1178. m_Id: ef021ba0-670e-48e3-ab5a-9f6661368123
  1179. minValue: 0
  1180. maxValue: 1000
  1181. - keyframes:
  1182. - m_Id: 0b4574ee-598e-4ab7-a7fb-c2d75a8e038a
  1183. m_Time: 0
  1184. m_InterpolationCurve: 0
  1185. m_InterpolationDirection: 0
  1186. value: 1.5
  1187. m_Name: Minimum Splash Distance
  1188. m_Id: 69eebdd4-d0ee-47a9-94e6-ed739f26bd0d
  1189. minValue: 0
  1190. maxValue: 10
  1191. - keyframes:
  1192. - m_Id: bbead3a3-5c02-4de1-822b-ed042b522400
  1193. m_Time: 0
  1194. m_InterpolationCurve: 0
  1195. m_InterpolationDirection: 0
  1196. value: 6
  1197. m_Name: Maximum Splash Distance
  1198. m_Id: c3fbbb49-d443-47a1-951d-2fe574119001
  1199. minValue: 0
  1200. maxValue: 50
  1201. - keyframes:
  1202. - m_Id: 26afdd66-ced7-4f60-b215-7f8638723ed8
  1203. m_Time: 0
  1204. m_InterpolationCurve: 0
  1205. m_InterpolationDirection: 0
  1206. value: 5.19
  1207. m_Name: Splash Scale
  1208. m_Id: b3636402-f265-43a5-b36a-404e317dfb6d
  1209. minValue: 0.001
  1210. maxValue: 60
  1211. - keyframes:
  1212. - m_Id: 9a442314-d241-4bb3-89ee-b5481834d3d5
  1213. m_Time: 0
  1214. m_InterpolationCurve: 0
  1215. m_InterpolationDirection: 0
  1216. value: 0.439
  1217. m_Name: Splash Scale Varience
  1218. m_Id: 473eca4b-4a73-461c-bb6f-235ff54cd9d3
  1219. minValue: 0
  1220. maxValue: 1
  1221. - keyframes:
  1222. - m_Id: 54605501-8e3c-47fb-bb15-2bae182099df
  1223. m_Time: 0
  1224. m_InterpolationCurve: 0
  1225. m_InterpolationDirection: 0
  1226. value: 0.75
  1227. m_Name: Splash Intensity
  1228. m_Id: a2cd0198-c4b5-46d1-a805-d027801cfca6
  1229. minValue: 0
  1230. maxValue: 1
  1231. - keyframes:
  1232. - m_Id: 2e2d3633-85a3-46de-9abc-d10b98ea66b3
  1233. m_Time: 0
  1234. m_InterpolationCurve: 0
  1235. m_InterpolationDirection: 0
  1236. value: 0.15
  1237. m_Name: Splash Surfce Offset
  1238. m_Id: 7938f8e1-1ba9-4e98-b9a8-f4580dc8d3e9
  1239. minValue: 0
  1240. maxValue: 1
  1241. - keyframes:
  1242. - m_Id: 4c35dd4f-5782-42e3-a03c-1712e94b6e12
  1243. m_Time: 0
  1244. m_InterpolationCurve: 0
  1245. m_InterpolationDirection: 0
  1246. value: 0.5
  1247. m_Name: Thunder Sound Volume
  1248. m_Id: a23ba4d7-93a6-423b-812b-ba845358e66b
  1249. minValue: 0
  1250. maxValue: 1
  1251. - keyframes:
  1252. - m_Id: 1976b082-8ab1-420b-8533-930ef27ec376
  1253. m_Time: 0
  1254. m_InterpolationCurve: 0
  1255. m_InterpolationDirection: 0
  1256. value: 0.4
  1257. m_Name: Thunder Sound Delay
  1258. m_Id: 89ae50a5-b4b3-4385-bcfc-734dfe9fb746
  1259. minValue: 0
  1260. maxValue: 20
  1261. - keyframes:
  1262. - m_Id: 827ef775-8fe9-439a-b4fa-40755799a455
  1263. m_Time: 0
  1264. m_InterpolationCurve: 0
  1265. m_InterpolationDirection: 0
  1266. value: 1
  1267. m_Name: Lightning Spawn Delay
  1268. m_Id: effaeaf6-526c-4fe9-8d56-1bead2dd43a9
  1269. minValue: 0
  1270. maxValue: 20
  1271. - keyframes:
  1272. - m_Id: 4bd8a309-0732-4da8-9097-a7365b3455bb
  1273. m_Time: 0
  1274. m_InterpolationCurve: 0
  1275. m_InterpolationDirection: 0
  1276. value: 4
  1277. m_Name: Lightning Sprite Columns
  1278. m_Id: 7f955fa7-abda-44dd-b207-462340f1c0a2
  1279. minValue: 0
  1280. maxValue: 100
  1281. - keyframes:
  1282. - m_Id: c962fcff-23da-4446-9856-5244fd13414c
  1283. m_Time: 0
  1284. m_InterpolationCurve: 0
  1285. m_InterpolationDirection: 0
  1286. value: 4
  1287. m_Name: Lightning Sprite Rows
  1288. m_Id: 5cd14a50-a36e-428a-b4d8-ec974fbd3fc7
  1289. minValue: 0
  1290. maxValue: 100
  1291. - keyframes:
  1292. - m_Id: 20225553-1ed1-4cc0-8c54-6ffd6020bffd
  1293. m_Time: 0
  1294. m_InterpolationCurve: 0
  1295. m_InterpolationDirection: 0
  1296. value: 16
  1297. m_Name: Lightning Sprite Item Count
  1298. m_Id: f8e368b7-0d35-4674-86cd-5aac5af209eb
  1299. minValue: 0
  1300. maxValue: 1000
  1301. - keyframes:
  1302. - m_Id: 253c506f-c4ed-48cb-b549-ead0894f1721
  1303. m_Time: 0
  1304. m_InterpolationCurve: 0
  1305. m_InterpolationDirection: 0
  1306. value: 25
  1307. m_Name: Lightning Sprite Speed
  1308. m_Id: 6a1917bc-74e0-41f4-866d-d3627e0823b7
  1309. minValue: 0
  1310. maxValue: 100
  1311. - keyframes:
  1312. - m_Id: 7a7a2af7-0ba8-44d4-af72-7356f6e2f2bf
  1313. m_Time: 0
  1314. m_InterpolationCurve: 0
  1315. m_InterpolationDirection: 0
  1316. value: 0.131
  1317. m_Name: Rain Turbulence
  1318. m_Id: 28096b08-f856-4540-86f0-c9d9e982d944
  1319. minValue: 0
  1320. maxValue: 1
  1321. - keyframes:
  1322. - m_Id: 13f0752c-8c40-4520-b6b7-551a626a03b9
  1323. m_Time: 0
  1324. m_InterpolationCurve: 0
  1325. m_InterpolationDirection: 0
  1326. value: 1.49
  1327. m_Name: Rain Turbulence Speed
  1328. m_Id: c4cdceab-e4a0-4064-b906-255e122ece96
  1329. minValue: 0
  1330. maxValue: 2
  1331. - keyframes:
  1332. - m_Id: cd235e76-9f44-4210-adc2-c1fa7accb606
  1333. m_Time: 0
  1334. m_InterpolationCurve: 0
  1335. m_InterpolationDirection: 0
  1336. value: 1.5
  1337. m_Name: Splash Area Start
  1338. m_Id: e225b82f-4162-45db-bbc2-d03922f7591d
  1339. minValue: 0
  1340. maxValue: 50
  1341. - keyframes:
  1342. - m_Id: ee9d5740-b826-48fb-a31c-35c34763e96e
  1343. m_Time: 0
  1344. m_InterpolationCurve: 0
  1345. m_InterpolationDirection: 0
  1346. value: 13.3
  1347. m_Name: Splash Area Length
  1348. m_Id: 94b4cc94-5afa-4a85-a7db-17086ade3d66
  1349. minValue: 0
  1350. maxValue: 40
  1351. - keyframes:
  1352. - m_Id: 6e8a2ae4-ca36-478b-9e83-122c694a4354
  1353. m_Time: 0
  1354. m_InterpolationCurve: 0
  1355. m_InterpolationDirection: 0
  1356. value: 0.051
  1357. m_Name: Lightning Probability
  1358. m_Id: 859a5989-0a70-49b0-bfec-4fc7c6ff36e1
  1359. minValue: 0
  1360. maxValue: 1
  1361. - keyframes:
  1362. - m_Id: 4c296f35-34d8-4a35-a15b-d7e69d1a99c1
  1363. m_Time: 0
  1364. m_InterpolationCurve: 0
  1365. m_InterpolationDirection: 0
  1366. value: 6
  1367. m_Name: Lightning Cool Down
  1368. m_Id: 64ff7e60-cbba-472b-be7d-757aac5db0a1
  1369. minValue: 0
  1370. maxValue: 30
  1371. - keyframes:
  1372. - m_Id: e1d55aff-5357-4826-b120-4ddb51b763fb
  1373. m_Time: 0
  1374. m_InterpolationCurve: 0
  1375. m_InterpolationDirection: 0
  1376. value: 1
  1377. m_Name: Lightning Intensity
  1378. m_Id: 2d6e05d2-bce3-4960-b251-5ff065531bc3
  1379. minValue: 0
  1380. maxValue: 1
  1381. - keyframes:
  1382. - m_Id: daef4fa0-47a3-42d4-9d86-2e7b05a0b104
  1383. m_Time: 0
  1384. m_InterpolationCurve: 0
  1385. m_InterpolationDirection: 0
  1386. value: 2.84
  1387. m_Name: Rain Near Texture Tiling
  1388. m_Id: cd85fa35-9ae3-4ae3-9e8b-330605c63078
  1389. minValue: 0.01
  1390. maxValue: 20
  1391. - keyframes:
  1392. - m_Id: c07beabd-6451-4fa5-bd50-c6917f905287
  1393. m_Time: 0
  1394. m_InterpolationCurve: 0
  1395. m_InterpolationDirection: 0
  1396. value: 13.15
  1397. m_Name: Rain Far Texture Tiling
  1398. m_Id: 2fc3bdbd-a813-42ab-904b-a8661e13cc9e
  1399. minValue: 0.01
  1400. maxValue: 20
  1401. - keyframes:
  1402. - m_Id: dbf1d4da-e6f8-4c1d-b768-2dcb67420b84
  1403. m_Time: 0
  1404. m_InterpolationCurve: 0
  1405. m_InterpolationDirection: 0
  1406. value: 0.1
  1407. m_Name: Cloud Cubemap Rotation Speed
  1408. m_Id: 612d3f7e-626c-4cba-b58b-916f090287dd
  1409. minValue: -0.5
  1410. maxValue: 0.5
  1411. - keyframes:
  1412. - m_Id: b7aff5b0-46d8-49e5-b423-625a919c9df5
  1413. m_Time: 0
  1414. m_InterpolationCurve: 0
  1415. m_InterpolationDirection: 0
  1416. value: 0
  1417. m_Name: Cloud Cubemap Height
  1418. m_Id: ad98840a-7937-4c06-ab69-d2a637e1e588
  1419. minValue: -1
  1420. maxValue: 1
  1421. - keyframes:
  1422. - m_Id: 4dc419ee-71f7-4641-a3f9-8c308ab4b335
  1423. m_Time: 0
  1424. m_InterpolationCurve: 0
  1425. m_InterpolationDirection: 0
  1426. value: 0.15
  1427. m_Name: Cloud Cubemap Double Layer Rotation Speed
  1428. m_Id: 6e9214fd-fcfc-4ae1-a12d-d074f7c147f1
  1429. minValue: -0.5
  1430. maxValue: 0.5
  1431. - keyframes:
  1432. - m_Id: 6fb61cd2-e542-4bcd-95cd-7c8c858fc949
  1433. m_Time: 0
  1434. m_InterpolationCurve: 0
  1435. m_InterpolationDirection: 0
  1436. value: 0
  1437. m_Name: Cloud Cubemap Double Layer Height
  1438. m_Id: 28cd57a2-ceb0-44c8-a1d4-c954110ad902
  1439. minValue: -1
  1440. maxValue: 1
  1441. - keyframes:
  1442. - m_Id: 9f32d658-55f8-4eb3-8fcb-65e250d31623
  1443. m_Time: 0
  1444. m_InterpolationCurve: 0
  1445. m_InterpolationDirection: 0
  1446. value: 0.1
  1447. m_Name: Cloud Lit - Rotation Speed
  1448. m_Id: 388df885-8d83-4666-be5d-570adbc04093
  1449. minValue: -0.5
  1450. maxValue: 0.5
  1451. - keyframes:
  1452. - m_Id: 99aef635-8ccc-46fd-9d73-db564be0f43e
  1453. m_Time: 0
  1454. m_InterpolationCurve: 0
  1455. m_InterpolationDirection: 0
  1456. value: 0
  1457. m_Name: Cloud Lit - Height
  1458. m_Id: caa2cbd9-348f-4ba2-9aea-8a2d2b940e58
  1459. minValue: -1
  1460. maxValue: 1
  1461. - keyframes:
  1462. - m_Id: 51378eef-78d9-4e96-bb0f-f006d020b6a4
  1463. m_Time: 0
  1464. m_InterpolationCurve: 0
  1465. m_InterpolationDirection: 0
  1466. value: 0.1
  1467. m_Name: Cloud Lit - Ambient Intensity
  1468. m_Id: bb277dfb-f23f-4b4a-ae74-f312e01eb62c
  1469. minValue: 0
  1470. maxValue: 1
  1471. - keyframes:
  1472. - m_Id: 760ffef8-b5f2-4520-b2e7-dbba8780fbea
  1473. m_Time: 0
  1474. m_InterpolationCurve: 0
  1475. m_InterpolationDirection: 0
  1476. value: 0.15
  1477. m_Name: Cloud Lit - Double Layer Rotation Speed
  1478. m_Id: d7f57294-d778-4a5b-acf4-9aa991b686c5
  1479. minValue: -0.5
  1480. maxValue: 0.5
  1481. - keyframes:
  1482. - m_Id: 199c06b4-917b-4ab7-88fd-fd6e60d7d4ed
  1483. m_Time: 0
  1484. m_InterpolationCurve: 0
  1485. m_InterpolationDirection: 0
  1486. value: 0
  1487. m_Name: Cloud Lit - Double Layer Height
  1488. m_Id: 46e855b0-00cb-44cd-b2c2-4e908105cb03
  1489. minValue: -1
  1490. maxValue: 1
  1491. - keyframes:
  1492. - m_Id: 6f84a402-e19b-4b80-8dac-7bb4c706b4f6
  1493. m_Time: 0
  1494. m_InterpolationCurve: 0
  1495. m_InterpolationDirection: 0
  1496. value: 1
  1497. m_Name: Star Twinkle Speed
  1498. m_Id: f748217d-7332-4eec-bef3-f0b1e5a98c47
  1499. minValue: 0
  1500. maxValue: 10
  1501. - keyframes:
  1502. - m_Id: 35827fb8-199d-43e8-a46f-106d923fd25c
  1503. m_Time: 0
  1504. m_InterpolationCurve: 0
  1505. m_InterpolationDirection: 0
  1506. value: 0.75
  1507. m_Name: Star Twinkle Amount
  1508. m_Id: 3cca09a5-7682-4928-86eb-f3f9c32eab5b
  1509. minValue: 0
  1510. maxValue: 1
  1511. - keyframes:
  1512. - m_Id: 38ec89fb-f23b-462d-b3d2-2476b38379e0
  1513. m_Time: 0
  1514. m_InterpolationCurve: 0
  1515. m_InterpolationDirection: 0
  1516. value: 1
  1517. m_Name: Star Opacity
  1518. m_Id: df821360-d8bb-416c-9ea0-85082e406672
  1519. minValue: 0
  1520. maxValue: 1
  1521. - keyframes:
  1522. - m_Id: 1d72334a-9d69-4a75-9ea9-badce937e3e7
  1523. m_Time: 0
  1524. m_InterpolationCurve: 0
  1525. m_InterpolationDirection: 0
  1526. value: 1.1
  1527. m_Name: Star Smoothing Exponent
  1528. m_Id: 940615f6-867a-4e2f-ba85-4acf012b9d76
  1529. minValue: 0.5
  1530. maxValue: 5
  1531. - keyframes:
  1532. - m_Id: 3a7fcacf-66d9-4a43-b095-90589753a12a
  1533. m_Time: 0
  1534. m_InterpolationCurve: 0
  1535. m_InterpolationDirection: 0
  1536. value: 1
  1537. m_Name: Star Bloom Intensity (HDR)
  1538. m_Id: d2bb903f-ccc6-46f6-98f4-60b77e90089a
  1539. minValue: 1
  1540. maxValue: 25
  1541. m_TextureGroup:
  1542. m_Keys:
  1543. - SkyCubemapKey
  1544. - CloudNoiseTextureKey
  1545. - SunTextureKey
  1546. - MoonTextureKey
  1547. - Star1TextureKey
  1548. - Star2TextureKey
  1549. - Star3TextureKey
  1550. - RainNearTexture
  1551. - RainFarTexture
  1552. - RainSplashTextureKey
  1553. - LightningTextureKey
  1554. - RainNearTextureKey
  1555. - RainFarTextureKey
  1556. - CloudCubemapTextureKey
  1557. - CloudCubemapNormalTextureKey
  1558. - CloudCubemapDoubleLayerCustomTextureKey
  1559. - CloudCubemapNormalDoubleLayerCustomTextureKey
  1560. - StarBasicCubemapKey
  1561. m_Values:
  1562. - keyframes:
  1563. - m_Id: bf2d2568-e121-4646-92f0-4991f453d7eb
  1564. m_Time: 0
  1565. m_InterpolationCurve: 0
  1566. m_InterpolationDirection: 0
  1567. texture: {fileID: 0}
  1568. m_Name: Sky Cubemap
  1569. m_Id: 9baa6809-5014-400c-8f60-8d4e1bdfc1e9
  1570. - keyframes:
  1571. - m_Id: c8b2141a-bee1-4d1f-9ae8-0adcb85c76db
  1572. m_Time: 0
  1573. m_InterpolationCurve: 0
  1574. m_InterpolationDirection: 0
  1575. texture: {fileID: 2800000, guid: 9965f768a31984e6cb608340e2f4dd5a, type: 3}
  1576. m_Name: Cloud Noise Texture
  1577. m_Id: fe8f9779-cfa9-4da8-b2e9-ad88428d2e66
  1578. - keyframes:
  1579. - m_Id: 1b089d25-27bc-40ae-89b2-0f37d3e5ef3e
  1580. m_Time: 0
  1581. m_InterpolationCurve: 0
  1582. m_InterpolationDirection: 0
  1583. texture: {fileID: 0}
  1584. m_Name: Sun Texture
  1585. m_Id: bfe5bfa6-dc74-439b-8fdb-3f72671736b0
  1586. - keyframes:
  1587. - m_Id: 05a823fd-156e-4f4c-bc0c-cc434fd048d9
  1588. m_Time: 0
  1589. m_InterpolationCurve: 0
  1590. m_InterpolationDirection: 0
  1591. texture: {fileID: 2800000, guid: 68c9fa035c8a99c459969f22401eca46, type: 3}
  1592. m_Name: Moon Texture
  1593. m_Id: ab0f0b32-bb1b-4c6d-9ba9-0a8ccc6d665b
  1594. - keyframes:
  1595. - m_Id: d8d025fe-7cbb-4e13-8a22-4f041c230c53
  1596. m_Time: 0
  1597. m_InterpolationCurve: 0
  1598. m_InterpolationDirection: 0
  1599. texture: {fileID: 0}
  1600. m_Name: Star 1 Texture
  1601. m_Id: 6b15319d-cf4f-4b87-9ab2-5386293684d9
  1602. - keyframes:
  1603. - m_Id: b7478283-98a6-44b7-9cf1-4ca88ead91f2
  1604. m_Time: 0
  1605. m_InterpolationCurve: 0
  1606. m_InterpolationDirection: 0
  1607. texture: {fileID: 0}
  1608. m_Name: Star 2 Texture
  1609. m_Id: 829d565c-1cab-4d58-8006-01d86197bc2c
  1610. - keyframes:
  1611. - m_Id: a026e847-ef29-46e0-92af-f059a3f1ff5b
  1612. m_Time: 0
  1613. m_InterpolationCurve: 0
  1614. m_InterpolationDirection: 0
  1615. texture: {fileID: 0}
  1616. m_Name: Star 3 Texture
  1617. m_Id: 7d3d7adf-efaa-45dc-8082-f5f43d0c4587
  1618. - keyframes:
  1619. - m_Id: ddac89c0-734d-4edb-b864-1ef947788f6e
  1620. m_Time: 0
  1621. m_InterpolationCurve: 0
  1622. m_InterpolationDirection: 0
  1623. texture: {fileID: 0}
  1624. m_Name: Rain Near Texture
  1625. m_Id: 286d7951-f45d-4a1d-81b1-e274ceec9195
  1626. - keyframes:
  1627. - m_Id: 45212e36-27ca-4a43-862f-4b854298a7a8
  1628. m_Time: 0
  1629. m_InterpolationCurve: 0
  1630. m_InterpolationDirection: 0
  1631. texture: {fileID: 0}
  1632. m_Name: Rain Far Texture
  1633. m_Id: 96320a0f-f146-46ee-b489-77ddf45ec647
  1634. - keyframes:
  1635. - m_Id: fb5f3640-b02f-4916-a650-52e0b3316a7e
  1636. m_Time: 0
  1637. m_InterpolationCurve: 0
  1638. m_InterpolationDirection: 0
  1639. texture: {fileID: 0}
  1640. m_Name: Splash Sprite Texture
  1641. m_Id: 284e7288-6466-4663-b261-7e310c349151
  1642. - keyframes:
  1643. - m_Id: bf5b32a1-e049-43da-8843-fa0ae0a65f12
  1644. m_Time: 0
  1645. m_InterpolationCurve: 0
  1646. m_InterpolationDirection: 0
  1647. texture: {fileID: 0}
  1648. m_Name: Lightning Sprite Texture
  1649. m_Id: 79ec1cc0-0e23-4083-8c9c-0bdb9c27ac69
  1650. - keyframes:
  1651. - m_Id: be7ef527-bbf3-486b-8784-138fd8e4ee55
  1652. m_Time: 0
  1653. m_InterpolationCurve: 0
  1654. m_InterpolationDirection: 0
  1655. texture: {fileID: 2800000, guid: 222f67c212815e24bb8210a8a0362b12, type: 3}
  1656. m_Name: Rain Near Texture
  1657. m_Id: 00d5745a-bced-4f22-8984-f0c41ae47d74
  1658. - keyframes:
  1659. - m_Id: be4ff62f-cbd9-4490-9b75-76f6feb3cfe9
  1660. m_Time: 0
  1661. m_InterpolationCurve: 0
  1662. m_InterpolationDirection: 0
  1663. texture: {fileID: 2800000, guid: fe4b65401cdcd7f49ad5e44d608009ce, type: 3}
  1664. m_Name: Rain Far Texture
  1665. m_Id: 1d64b365-934c-4b0d-98af-a5edc691e986
  1666. - keyframes:
  1667. - m_Id: 06acc2ac-1493-4169-b21f-456fa9979552
  1668. m_Time: 0
  1669. m_InterpolationCurve: 0
  1670. m_InterpolationDirection: 0
  1671. texture: {fileID: 0}
  1672. m_Name: Cloud Cubemap
  1673. m_Id: a289f5a8-6b79-47b2-94b7-c1e6df635de4
  1674. - keyframes:
  1675. - m_Id: e40775f0-7965-4454-85a7-a79f43f89ba8
  1676. m_Time: 0
  1677. m_InterpolationCurve: 0
  1678. m_InterpolationDirection: 0
  1679. texture: {fileID: 2800000, guid: 9965f768a31984e6cb608340e2f4dd5a, type: 3}
  1680. m_Name: Cloud Lit Cubemap
  1681. m_Id: 31f7b147-bc7f-497a-9cb3-6e6c6bb38047
  1682. - keyframes:
  1683. - m_Id: 6f8d633e-b804-486b-acb4-b29fc0f377e3
  1684. m_Time: 0
  1685. m_InterpolationCurve: 0
  1686. m_InterpolationDirection: 0
  1687. texture: {fileID: 0}
  1688. m_Name: Cloud Cubemap Double Layer Cubemap
  1689. m_Id: 44174914-e757-4cb1-821b-3e6e1ec4bfe5
  1690. - keyframes:
  1691. - m_Id: 00c78440-a1a3-4865-b9d8-60525072b4f6
  1692. m_Time: 0
  1693. m_InterpolationCurve: 0
  1694. m_InterpolationDirection: 0
  1695. texture: {fileID: 0}
  1696. m_Name: Cloud Lit - Double Layer Cubemap
  1697. m_Id: b0eecf8c-3dc0-4c6c-a77e-ff6e73b9cd05
  1698. - keyframes:
  1699. - m_Id: aa69a431-a384-472a-a383-7b027dc29b96
  1700. m_Time: 0
  1701. m_InterpolationCurve: 0
  1702. m_InterpolationDirection: 0
  1703. texture: {fileID: 0}
  1704. m_Name: Star Cubemap
  1705. m_Id: 1def7ec8-668c-4f3a-996b-badcff666ca8
  1706. m_SpherePointGroup:
  1707. m_Keys:
  1708. - SunPositionKey
  1709. - MoonPositionKey
  1710. m_Values:
  1711. - keyframes:
  1712. - m_Id: c2e07a7e-28c3-42bb-8df7-3826ff20b4a3
  1713. m_Time: 0
  1714. m_InterpolationCurve: 0
  1715. m_InterpolationDirection: 0
  1716. spherePoint:
  1717. horizontalRotation: -0.83
  1718. verticalRotation: 0.68
  1719. m_Name: Sun Position
  1720. m_Id: 679f0e37-e4e7-42f2-b550-7bea830ded0c
  1721. - keyframes:
  1722. - m_Id: dae33cb3-7f9c-4a2c-b960-721ab1e4704d
  1723. m_Time: 0
  1724. m_InterpolationCurve: 0
  1725. m_InterpolationDirection: 0
  1726. spherePoint:
  1727. horizontalRotation: 0
  1728. verticalRotation: 0
  1729. m_Name: Moon Position
  1730. m_Id: 79975a6f-24ba-4fc3-accd-a52e9b8cc015
  1731. m_BoolGroup:
  1732. m_Keys:
  1733. - FogSyncWithGlobal
  1734. m_Values:
  1735. - keyframes:
  1736. - m_Id: 53a9ce1a-7643-45bb-a289-a9d8594c2ca2
  1737. m_Time: 0
  1738. m_InterpolationCurve: 0
  1739. m_InterpolationDirection: 0
  1740. value: 1
  1741. m_Name: Update Global Fog Color
  1742. m_Id: be56091a-1864-452e-b64c-f7cfcbb63ee2
  1743. featureStatus:
  1744. m_Keys:
  1745. - GradientSkyFeature
  1746. - SunFeature
  1747. - MoonFeature
  1748. - NoiseCloudFeature
  1749. - FogFeature
  1750. - StarLayer1Feature
  1751. - StarLayer2Feature
  1752. - StarLayer3Feature
  1753. - RainFeature
  1754. - RainSplashFeature
  1755. - LightningFeature
  1756. - SunSpriteSheetFeature
  1757. - SunAlphaBlendFeature
  1758. - SunRotationFeature
  1759. - MoonCustomTextureFeature
  1760. - MoonSpriteSheetFeature
  1761. - MoonAlphaBlendFeature
  1762. - MoonRotationFeature
  1763. - StarLayer1CustomTextureFeature
  1764. - StarLayer1SpriteSheetFeature
  1765. - StarLayer2CustomTextureFeature
  1766. - StarLayer2SpriteSheetFeature
  1767. - StarLayer3CustomTextureFeature
  1768. - StarLayer3SpriteSheetFeature
  1769. - RainSoundFeature
  1770. - ThunderFeature
  1771. - SunCustomTextureFeature
  1772. - CloudFeature
  1773. - CubemapCloudTextureFormatRGBAFeature
  1774. - CubemapCloudDoubleLayerFeature
  1775. - CubemapNormalCloudDoubleLayerFeature
  1776. - CubemapCloudFeature
  1777. - CubemapNormalCloudFeature
  1778. - MobileQualityFeature
  1779. - StarBasicFeature
  1780. - VertexGradientSkyFeature
  1781. - CubemapCloudDoubleLayerCubemap
  1782. m_Values: 01010001000000000000000000000000000000000000000001010001010000000000000000
  1783. lightningArtSet: {fileID: 11400000, guid: fcd26c6d0379bd1498f9fbfeaf211979, type: 2}
  1784. rainSplashArtSet: {fileID: 11400000, guid: bc520d172250ae746bd6c81b2ca80510, type: 2}
  1785. starLayer1DataTexture: {fileID: 0}
  1786. starLayer2DataTexture: {fileID: 0}
  1787. starLayer3DataTexture: {fileID: 0}
  1788. m_ProfileVersion: 1