PlayerEngine.prefab 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1 &100866
  4. GameObject:
  5. m_ObjectHideFlags: 0
  6. m_PrefabParentObject: {fileID: 0}
  7. m_PrefabInternal: {fileID: 100100000}
  8. serializedVersion: 4
  9. m_Component:
  10. - 4: {fileID: 407380}
  11. - 198: {fileID: 19800762}
  12. - 199: {fileID: 19954692}
  13. m_Layer: 0
  14. m_Name: part_jet_core
  15. m_TagString: Untagged
  16. m_Icon: {fileID: 0}
  17. m_NavMeshLayer: 0
  18. m_StaticEditorFlags: 0
  19. m_IsActive: 1
  20. --- !u!1 &127850
  21. GameObject:
  22. m_ObjectHideFlags: 0
  23. m_PrefabParentObject: {fileID: 0}
  24. m_PrefabInternal: {fileID: 100100000}
  25. serializedVersion: 4
  26. m_Component:
  27. - 4: {fileID: 471502}
  28. m_Layer: 0
  29. m_Name: PlayerEngine
  30. m_TagString: Untagged
  31. m_Icon: {fileID: 0}
  32. m_NavMeshLayer: 0
  33. m_StaticEditorFlags: 0
  34. m_IsActive: 1
  35. --- !u!1 &194994
  36. GameObject:
  37. m_ObjectHideFlags: 0
  38. m_PrefabParentObject: {fileID: 0}
  39. m_PrefabInternal: {fileID: 100100000}
  40. serializedVersion: 4
  41. m_Component:
  42. - 4: {fileID: 411976}
  43. - 198: {fileID: 19840092}
  44. - 199: {fileID: 19980674}
  45. m_Layer: 0
  46. m_Name: part_jet_flare
  47. m_TagString: Untagged
  48. m_Icon: {fileID: 0}
  49. m_NavMeshLayer: 0
  50. m_StaticEditorFlags: 0
  51. m_IsActive: 1
  52. --- !u!4 &407380
  53. Transform:
  54. m_ObjectHideFlags: 1
  55. m_PrefabParentObject: {fileID: 0}
  56. m_PrefabInternal: {fileID: 100100000}
  57. m_GameObject: {fileID: 100866}
  58. m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
  59. m_LocalPosition: {x: 0.006505981, y: 0, z: -0.40934622}
  60. m_LocalScale: {x: 1, y: 1, z: 1}
  61. m_LocalEulerAnglesHint: {x: 0, y: -180, z: 0}
  62. m_Children: []
  63. m_Father: {fileID: 471502}
  64. m_RootOrder: 1
  65. --- !u!4 &411976
  66. Transform:
  67. m_ObjectHideFlags: 1
  68. m_PrefabParentObject: {fileID: 0}
  69. m_PrefabInternal: {fileID: 100100000}
  70. m_GameObject: {fileID: 194994}
  71. m_LocalRotation: {x: 0, y: 1, z: 0, w: -0.00000004371139}
  72. m_LocalPosition: {x: 0, y: 0, z: -0.3480724}
  73. m_LocalScale: {x: 1, y: 1, z: 1}
  74. m_LocalEulerAnglesHint: {x: 0, y: -180, z: 0}
  75. m_Children: []
  76. m_Father: {fileID: 471502}
  77. m_RootOrder: 0
  78. --- !u!4 &471502
  79. Transform:
  80. m_ObjectHideFlags: 1
  81. m_PrefabParentObject: {fileID: 0}
  82. m_PrefabInternal: {fileID: 100100000}
  83. m_GameObject: {fileID: 127850}
  84. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  85. m_LocalPosition: {x: 0, y: 0, z: 0}
  86. m_LocalScale: {x: 1, y: 1, z: 1}
  87. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  88. m_Children:
  89. - {fileID: 411976}
  90. - {fileID: 407380}
  91. m_Father: {fileID: 0}
  92. m_RootOrder: 0
  93. --- !u!198 &19800762
  94. ParticleSystem:
  95. m_ObjectHideFlags: 1
  96. m_PrefabParentObject: {fileID: 0}
  97. m_PrefabInternal: {fileID: 100100000}
  98. m_GameObject: {fileID: 100866}
  99. serializedVersion: 2
  100. lengthInSec: 5
  101. startDelay:
  102. scalar: 0
  103. maxCurve:
  104. serializedVersion: 2
  105. m_Curve:
  106. - time: 0
  107. value: 1
  108. inSlope: 0
  109. outSlope: 0
  110. tangentMode: 0
  111. - time: 1
  112. value: 1
  113. inSlope: 0
  114. outSlope: 0
  115. tangentMode: 0
  116. m_PreInfinity: 2
  117. m_PostInfinity: 2
  118. m_RotationOrder: 4
  119. minCurve:
  120. serializedVersion: 2
  121. m_Curve:
  122. - time: 0
  123. value: 0
  124. inSlope: 0
  125. outSlope: 0
  126. tangentMode: 0
  127. - time: 1
  128. value: 0
  129. inSlope: 0
  130. outSlope: 0
  131. tangentMode: 0
  132. m_PreInfinity: 2
  133. m_PostInfinity: 2
  134. m_RotationOrder: 4
  135. minMaxState: 0
  136. speed: 1
  137. randomSeed: 0
  138. looping: 1
  139. prewarm: 1
  140. playOnAwake: 1
  141. moveWithTransform: 1
  142. scalingMode: 2
  143. InitialModule:
  144. serializedVersion: 2
  145. enabled: 1
  146. startLifetime:
  147. scalar: 0.26
  148. maxCurve:
  149. serializedVersion: 2
  150. m_Curve:
  151. - time: 0
  152. value: 0.3846154
  153. inSlope: 0
  154. outSlope: 0
  155. tangentMode: 0
  156. m_PreInfinity: 2
  157. m_PostInfinity: 2
  158. m_RotationOrder: 4
  159. minCurve:
  160. serializedVersion: 2
  161. m_Curve:
  162. - time: 0
  163. value: 1
  164. inSlope: 0
  165. outSlope: 0
  166. tangentMode: 0
  167. m_PreInfinity: 2
  168. m_PostInfinity: 2
  169. m_RotationOrder: 4
  170. minMaxState: 3
  171. startSpeed:
  172. scalar: 0
  173. maxCurve:
  174. serializedVersion: 2
  175. m_Curve:
  176. - time: 0
  177. value: 1
  178. inSlope: 0
  179. outSlope: 0
  180. tangentMode: 0
  181. - time: 1
  182. value: 1
  183. inSlope: 0
  184. outSlope: 0
  185. tangentMode: 0
  186. m_PreInfinity: 2
  187. m_PostInfinity: 2
  188. m_RotationOrder: 4
  189. minCurve:
  190. serializedVersion: 2
  191. m_Curve:
  192. - time: 0
  193. value: 0
  194. inSlope: 0
  195. outSlope: 0
  196. tangentMode: 0
  197. - time: 1
  198. value: 0
  199. inSlope: 0
  200. outSlope: 0
  201. tangentMode: 0
  202. m_PreInfinity: 2
  203. m_PostInfinity: 2
  204. m_RotationOrder: 4
  205. minMaxState: 0
  206. startColor:
  207. maxGradient:
  208. key0:
  209. serializedVersion: 2
  210. rgba: 4294951815
  211. key1:
  212. serializedVersion: 2
  213. rgba: 4294967295
  214. key2:
  215. serializedVersion: 2
  216. rgba: 0
  217. key3:
  218. serializedVersion: 2
  219. rgba: 0
  220. key4:
  221. serializedVersion: 2
  222. rgba: 0
  223. key5:
  224. serializedVersion: 2
  225. rgba: 0
  226. key6:
  227. serializedVersion: 2
  228. rgba: 0
  229. key7:
  230. serializedVersion: 2
  231. rgba: 0
  232. ctime0: 0
  233. ctime1: 65535
  234. ctime2: 0
  235. ctime3: 0
  236. ctime4: 0
  237. ctime5: 0
  238. ctime6: 0
  239. ctime7: 0
  240. atime0: 0
  241. atime1: 65535
  242. atime2: 0
  243. atime3: 0
  244. atime4: 0
  245. atime5: 0
  246. atime6: 0
  247. atime7: 0
  248. m_NumColorKeys: 2
  249. m_NumAlphaKeys: 2
  250. minGradient:
  251. key0:
  252. serializedVersion: 2
  253. rgba: 4294967295
  254. key1:
  255. serializedVersion: 2
  256. rgba: 4294967295
  257. key2:
  258. serializedVersion: 2
  259. rgba: 0
  260. key3:
  261. serializedVersion: 2
  262. rgba: 0
  263. key4:
  264. serializedVersion: 2
  265. rgba: 0
  266. key5:
  267. serializedVersion: 2
  268. rgba: 0
  269. key6:
  270. serializedVersion: 2
  271. rgba: 0
  272. key7:
  273. serializedVersion: 2
  274. rgba: 0
  275. ctime0: 0
  276. ctime1: 65535
  277. ctime2: 0
  278. ctime3: 0
  279. ctime4: 0
  280. ctime5: 0
  281. ctime6: 0
  282. ctime7: 0
  283. atime0: 0
  284. atime1: 65535
  285. atime2: 0
  286. atime3: 0
  287. atime4: 0
  288. atime5: 0
  289. atime6: 0
  290. atime7: 0
  291. m_NumColorKeys: 2
  292. m_NumAlphaKeys: 2
  293. minColor:
  294. serializedVersion: 2
  295. rgba: 4294967295
  296. maxColor:
  297. serializedVersion: 2
  298. rgba: 4294967295
  299. minMaxState: 2
  300. startSize:
  301. scalar: 1.3
  302. maxCurve:
  303. serializedVersion: 2
  304. m_Curve:
  305. - time: 0
  306. value: 1
  307. inSlope: 0
  308. outSlope: 0
  309. tangentMode: 0
  310. m_PreInfinity: 2
  311. m_PostInfinity: 2
  312. m_RotationOrder: 4
  313. minCurve:
  314. serializedVersion: 2
  315. m_Curve:
  316. - time: 0
  317. value: 0.3846154
  318. inSlope: 0
  319. outSlope: 0
  320. tangentMode: 0
  321. m_PreInfinity: 2
  322. m_PostInfinity: 2
  323. m_RotationOrder: 4
  324. minMaxState: 3
  325. startRotationX:
  326. scalar: 0
  327. maxCurve:
  328. serializedVersion: 2
  329. m_Curve:
  330. - time: 0
  331. value: 1
  332. inSlope: 0
  333. outSlope: 0
  334. tangentMode: 0
  335. - time: 1
  336. value: 1
  337. inSlope: 0
  338. outSlope: 0
  339. tangentMode: 0
  340. m_PreInfinity: 2
  341. m_PostInfinity: 2
  342. m_RotationOrder: 4
  343. minCurve:
  344. serializedVersion: 2
  345. m_Curve:
  346. - time: 0
  347. value: 0
  348. inSlope: 0
  349. outSlope: 0
  350. tangentMode: 0
  351. - time: 1
  352. value: 0
  353. inSlope: 0
  354. outSlope: 0
  355. tangentMode: 0
  356. m_PreInfinity: 2
  357. m_PostInfinity: 2
  358. m_RotationOrder: 4
  359. minMaxState: 0
  360. startRotationY:
  361. scalar: 0
  362. maxCurve:
  363. serializedVersion: 2
  364. m_Curve:
  365. - time: 0
  366. value: 1
  367. inSlope: 0
  368. outSlope: 0
  369. tangentMode: 0
  370. - time: 1
  371. value: 1
  372. inSlope: 0
  373. outSlope: 0
  374. tangentMode: 0
  375. m_PreInfinity: 2
  376. m_PostInfinity: 2
  377. m_RotationOrder: 4
  378. minCurve:
  379. serializedVersion: 2
  380. m_Curve:
  381. - time: 0
  382. value: 0
  383. inSlope: 0
  384. outSlope: 0
  385. tangentMode: 0
  386. - time: 1
  387. value: 0
  388. inSlope: 0
  389. outSlope: 0
  390. tangentMode: 0
  391. m_PreInfinity: 2
  392. m_PostInfinity: 2
  393. m_RotationOrder: 4
  394. minMaxState: 0
  395. startRotation:
  396. scalar: 0
  397. maxCurve:
  398. serializedVersion: 2
  399. m_Curve:
  400. - time: 0
  401. value: 1
  402. inSlope: 0
  403. outSlope: 0
  404. tangentMode: 0
  405. - time: 1
  406. value: 1
  407. inSlope: 0
  408. outSlope: 0
  409. tangentMode: 0
  410. m_PreInfinity: 2
  411. m_PostInfinity: 2
  412. m_RotationOrder: 4
  413. minCurve:
  414. serializedVersion: 2
  415. m_Curve:
  416. - time: 0
  417. value: 0
  418. inSlope: 0
  419. outSlope: 0
  420. tangentMode: 0
  421. - time: 1
  422. value: 0
  423. inSlope: 0
  424. outSlope: 0
  425. tangentMode: 0
  426. m_PreInfinity: 2
  427. m_PostInfinity: 2
  428. m_RotationOrder: 4
  429. minMaxState: 0
  430. randomizeRotationDirection: 0
  431. gravityModifier: 0
  432. maxNumParticles: 20
  433. rotation3D: 0
  434. ShapeModule:
  435. serializedVersion: 2
  436. enabled: 0
  437. type: 4
  438. radius: 0.01
  439. angle: 12.11
  440. length: 5
  441. boxX: 1
  442. boxY: 1
  443. boxZ: 1
  444. arc: 360
  445. placementMode: 0
  446. m_Mesh: {fileID: 0}
  447. m_MeshRenderer: {fileID: 0}
  448. m_SkinnedMeshRenderer: {fileID: 0}
  449. m_MeshMaterialIndex: 0
  450. m_MeshNormalOffset: 0
  451. m_UseMeshMaterialIndex: 0
  452. m_UseMeshColors: 1
  453. randomDirection: 0
  454. EmissionModule:
  455. enabled: 1
  456. serializedVersion: 2
  457. m_Type: 0
  458. rate:
  459. scalar: 10
  460. maxCurve:
  461. serializedVersion: 2
  462. m_Curve:
  463. - time: 0
  464. value: 1
  465. inSlope: 0
  466. outSlope: 0
  467. tangentMode: 0
  468. - time: 1
  469. value: 1
  470. inSlope: 0
  471. outSlope: 0
  472. tangentMode: 0
  473. m_PreInfinity: 2
  474. m_PostInfinity: 2
  475. m_RotationOrder: 4
  476. minCurve:
  477. serializedVersion: 2
  478. m_Curve:
  479. - time: 0
  480. value: 0
  481. inSlope: 0
  482. outSlope: 0
  483. tangentMode: 0
  484. - time: 1
  485. value: 0
  486. inSlope: 0
  487. outSlope: 0
  488. tangentMode: 0
  489. m_PreInfinity: 2
  490. m_PostInfinity: 2
  491. m_RotationOrder: 4
  492. minMaxState: 0
  493. cnt0: 30
  494. cnt1: 30
  495. cnt2: 30
  496. cnt3: 30
  497. cntmax0: 30
  498. cntmax1: 30
  499. cntmax2: 30
  500. cntmax3: 30
  501. time0: 0
  502. time1: 0
  503. time2: 0
  504. time3: 0
  505. m_BurstCount: 0
  506. SizeModule:
  507. enabled: 0
  508. curve:
  509. scalar: 1
  510. maxCurve:
  511. serializedVersion: 2
  512. m_Curve:
  513. - time: 0
  514. value: 0.027027024
  515. inSlope: 0
  516. outSlope: 0
  517. tangentMode: 0
  518. - time: 0.008842725
  519. value: 1
  520. inSlope: 0.8754432
  521. outSlope: 0.8754432
  522. tangentMode: 0
  523. - time: 0.9650365
  524. value: 1
  525. inSlope: -0.17106533
  526. outSlope: -0.17106533
  527. tangentMode: 0
  528. - time: 1
  529. value: 0
  530. inSlope: 0
  531. outSlope: 0
  532. tangentMode: 0
  533. m_PreInfinity: 2
  534. m_PostInfinity: 2
  535. m_RotationOrder: 4
  536. minCurve:
  537. serializedVersion: 2
  538. m_Curve:
  539. - time: 0
  540. value: 0
  541. inSlope: 0
  542. outSlope: 0
  543. tangentMode: 0
  544. - time: 1
  545. value: 0
  546. inSlope: 0
  547. outSlope: 0
  548. tangentMode: 0
  549. m_PreInfinity: 2
  550. m_PostInfinity: 2
  551. m_RotationOrder: 4
  552. minMaxState: 1
  553. RotationModule:
  554. enabled: 0
  555. x:
  556. scalar: 0
  557. maxCurve:
  558. serializedVersion: 2
  559. m_Curve:
  560. - time: 0
  561. value: 1
  562. inSlope: 0
  563. outSlope: 0
  564. tangentMode: 0
  565. - time: 1
  566. value: 1
  567. inSlope: 0
  568. outSlope: 0
  569. tangentMode: 0
  570. m_PreInfinity: 2
  571. m_PostInfinity: 2
  572. m_RotationOrder: 4
  573. minCurve:
  574. serializedVersion: 2
  575. m_Curve:
  576. - time: 0
  577. value: 0
  578. inSlope: 0
  579. outSlope: 0
  580. tangentMode: 0
  581. - time: 1
  582. value: 0
  583. inSlope: 0
  584. outSlope: 0
  585. tangentMode: 0
  586. m_PreInfinity: 2
  587. m_PostInfinity: 2
  588. m_RotationOrder: 4
  589. minMaxState: 0
  590. y:
  591. scalar: 0
  592. maxCurve:
  593. serializedVersion: 2
  594. m_Curve:
  595. - time: 0
  596. value: 1
  597. inSlope: 0
  598. outSlope: 0
  599. tangentMode: 0
  600. - time: 1
  601. value: 1
  602. inSlope: 0
  603. outSlope: 0
  604. tangentMode: 0
  605. m_PreInfinity: 2
  606. m_PostInfinity: 2
  607. m_RotationOrder: 4
  608. minCurve:
  609. serializedVersion: 2
  610. m_Curve:
  611. - time: 0
  612. value: 0
  613. inSlope: 0
  614. outSlope: 0
  615. tangentMode: 0
  616. - time: 1
  617. value: 0
  618. inSlope: 0
  619. outSlope: 0
  620. tangentMode: 0
  621. m_PreInfinity: 2
  622. m_PostInfinity: 2
  623. m_RotationOrder: 4
  624. minMaxState: 0
  625. curve:
  626. scalar: 0.7853981
  627. maxCurve:
  628. serializedVersion: 2
  629. m_Curve:
  630. - time: 0
  631. value: 1
  632. inSlope: 0
  633. outSlope: 0
  634. tangentMode: 0
  635. - time: 1
  636. value: 1
  637. inSlope: 0
  638. outSlope: 0
  639. tangentMode: 0
  640. m_PreInfinity: 2
  641. m_PostInfinity: 2
  642. m_RotationOrder: 4
  643. minCurve:
  644. serializedVersion: 2
  645. m_Curve:
  646. - time: 0
  647. value: 0
  648. inSlope: 0
  649. outSlope: 0
  650. tangentMode: 0
  651. - time: 1
  652. value: 0
  653. inSlope: 0
  654. outSlope: 0
  655. tangentMode: 0
  656. m_PreInfinity: 2
  657. m_PostInfinity: 2
  658. m_RotationOrder: 4
  659. minMaxState: 0
  660. separateAxes: 0
  661. ColorModule:
  662. enabled: 1
  663. gradient:
  664. maxGradient:
  665. key0:
  666. serializedVersion: 2
  667. rgba: 16777215
  668. key1:
  669. serializedVersion: 2
  670. rgba: 4293848814
  671. key2:
  672. serializedVersion: 2
  673. rgba: 4293848814
  674. key3:
  675. serializedVersion: 2
  676. rgba: 0
  677. key4:
  678. serializedVersion: 2
  679. rgba: 0
  680. key5:
  681. serializedVersion: 2
  682. rgba: 0
  683. key6:
  684. serializedVersion: 2
  685. rgba: 0
  686. key7:
  687. serializedVersion: 2
  688. rgba: 0
  689. ctime0: 0
  690. ctime1: 65535
  691. ctime2: 65535
  692. ctime3: 65535
  693. ctime4: 0
  694. ctime5: 0
  695. ctime6: 0
  696. ctime7: 0
  697. atime0: 0
  698. atime1: 3470
  699. atime2: 49730
  700. atime3: 65535
  701. atime4: 0
  702. atime5: 0
  703. atime6: 0
  704. atime7: 0
  705. m_NumColorKeys: 2
  706. m_NumAlphaKeys: 4
  707. minGradient:
  708. key0:
  709. serializedVersion: 2
  710. rgba: 4294967295
  711. key1:
  712. serializedVersion: 2
  713. rgba: 4294967295
  714. key2:
  715. serializedVersion: 2
  716. rgba: 0
  717. key3:
  718. serializedVersion: 2
  719. rgba: 0
  720. key4:
  721. serializedVersion: 2
  722. rgba: 0
  723. key5:
  724. serializedVersion: 2
  725. rgba: 0
  726. key6:
  727. serializedVersion: 2
  728. rgba: 0
  729. key7:
  730. serializedVersion: 2
  731. rgba: 0
  732. ctime0: 0
  733. ctime1: 65535
  734. ctime2: 0
  735. ctime3: 0
  736. ctime4: 0
  737. ctime5: 0
  738. ctime6: 0
  739. ctime7: 0
  740. atime0: 0
  741. atime1: 65535
  742. atime2: 0
  743. atime3: 0
  744. atime4: 0
  745. atime5: 0
  746. atime6: 0
  747. atime7: 0
  748. m_NumColorKeys: 2
  749. m_NumAlphaKeys: 2
  750. minColor:
  751. serializedVersion: 2
  752. rgba: 4294967295
  753. maxColor:
  754. serializedVersion: 2
  755. rgba: 4294967295
  756. minMaxState: 1
  757. UVModule:
  758. enabled: 0
  759. frameOverTime:
  760. scalar: 0.9999
  761. maxCurve:
  762. serializedVersion: 2
  763. m_Curve:
  764. - time: 0
  765. value: 0
  766. inSlope: 0
  767. outSlope: 1
  768. tangentMode: 0
  769. - time: 1
  770. value: 1
  771. inSlope: 1
  772. outSlope: 0
  773. tangentMode: 0
  774. m_PreInfinity: 2
  775. m_PostInfinity: 2
  776. m_RotationOrder: 4
  777. minCurve:
  778. serializedVersion: 2
  779. m_Curve:
  780. - time: 0
  781. value: 0
  782. inSlope: 0
  783. outSlope: 1
  784. tangentMode: 0
  785. - time: 1
  786. value: 1
  787. inSlope: 1
  788. outSlope: 0
  789. tangentMode: 0
  790. m_PreInfinity: 2
  791. m_PostInfinity: 2
  792. m_RotationOrder: 4
  793. minMaxState: 1
  794. tilesX: 1
  795. tilesY: 1
  796. animationType: 0
  797. rowIndex: 0
  798. cycles: 1
  799. randomRow: 1
  800. VelocityModule:
  801. enabled: 0
  802. x:
  803. scalar: 1
  804. maxCurve:
  805. serializedVersion: 2
  806. m_Curve:
  807. - time: 0
  808. value: 0
  809. inSlope: 0
  810. outSlope: 0
  811. tangentMode: 0
  812. m_PreInfinity: 2
  813. m_PostInfinity: 2
  814. m_RotationOrder: 4
  815. minCurve:
  816. serializedVersion: 2
  817. m_Curve:
  818. - time: 0
  819. value: 0
  820. inSlope: 0
  821. outSlope: 0
  822. tangentMode: 0
  823. - time: 1
  824. value: 0
  825. inSlope: 0
  826. outSlope: 0
  827. tangentMode: 0
  828. m_PreInfinity: 2
  829. m_PostInfinity: 2
  830. m_RotationOrder: 4
  831. minMaxState: 1
  832. y:
  833. scalar: 1
  834. maxCurve:
  835. serializedVersion: 2
  836. m_Curve:
  837. - time: 0
  838. value: 0
  839. inSlope: 0
  840. outSlope: 0
  841. tangentMode: 0
  842. m_PreInfinity: 2
  843. m_PostInfinity: 2
  844. m_RotationOrder: 4
  845. minCurve:
  846. serializedVersion: 2
  847. m_Curve:
  848. - time: 0
  849. value: 0
  850. inSlope: 0
  851. outSlope: 0
  852. tangentMode: 0
  853. - time: 1
  854. value: 0
  855. inSlope: 0
  856. outSlope: 0
  857. tangentMode: 0
  858. m_PreInfinity: 2
  859. m_PostInfinity: 2
  860. m_RotationOrder: 4
  861. minMaxState: 1
  862. z:
  863. scalar: 1
  864. maxCurve:
  865. serializedVersion: 2
  866. m_Curve:
  867. - time: 0
  868. value: 0
  869. inSlope: 0
  870. outSlope: 0
  871. tangentMode: 0
  872. - time: 1
  873. value: 1
  874. inSlope: 0.029003924
  875. outSlope: 0.029003924
  876. tangentMode: 0
  877. m_PreInfinity: 2
  878. m_PostInfinity: 2
  879. m_RotationOrder: 4
  880. minCurve:
  881. serializedVersion: 2
  882. m_Curve:
  883. - time: 0
  884. value: 0
  885. inSlope: 0
  886. outSlope: 0
  887. tangentMode: 0
  888. - time: 1
  889. value: 0
  890. inSlope: 0
  891. outSlope: 0
  892. tangentMode: 0
  893. m_PreInfinity: 2
  894. m_PostInfinity: 2
  895. m_RotationOrder: 4
  896. minMaxState: 1
  897. inWorldSpace: 0
  898. InheritVelocityModule:
  899. enabled: 0
  900. m_Mode: 0
  901. m_Curve:
  902. scalar: 0
  903. maxCurve:
  904. serializedVersion: 2
  905. m_Curve:
  906. - time: 0
  907. value: 1
  908. inSlope: 0
  909. outSlope: 0
  910. tangentMode: 0
  911. - time: 1
  912. value: 1
  913. inSlope: 0
  914. outSlope: 0
  915. tangentMode: 0
  916. m_PreInfinity: 2
  917. m_PostInfinity: 2
  918. m_RotationOrder: 4
  919. minCurve:
  920. serializedVersion: 2
  921. m_Curve:
  922. - time: 0
  923. value: 0
  924. inSlope: 0
  925. outSlope: 0
  926. tangentMode: 0
  927. - time: 1
  928. value: 0
  929. inSlope: 0
  930. outSlope: 0
  931. tangentMode: 0
  932. m_PreInfinity: 2
  933. m_PostInfinity: 2
  934. m_RotationOrder: 4
  935. minMaxState: 0
  936. ForceModule:
  937. enabled: 0
  938. x:
  939. scalar: 0
  940. maxCurve:
  941. serializedVersion: 2
  942. m_Curve:
  943. - time: 0
  944. value: 1
  945. inSlope: 0
  946. outSlope: 0
  947. tangentMode: 0
  948. - time: 1
  949. value: 1
  950. inSlope: 0
  951. outSlope: 0
  952. tangentMode: 0
  953. m_PreInfinity: 2
  954. m_PostInfinity: 2
  955. m_RotationOrder: 4
  956. minCurve:
  957. serializedVersion: 2
  958. m_Curve:
  959. - time: 0
  960. value: 0
  961. inSlope: 0
  962. outSlope: 0
  963. tangentMode: 0
  964. - time: 1
  965. value: 0
  966. inSlope: 0
  967. outSlope: 0
  968. tangentMode: 0
  969. m_PreInfinity: 2
  970. m_PostInfinity: 2
  971. m_RotationOrder: 4
  972. minMaxState: 0
  973. y:
  974. scalar: 0
  975. maxCurve:
  976. serializedVersion: 2
  977. m_Curve:
  978. - time: 0
  979. value: 1
  980. inSlope: 0
  981. outSlope: 0
  982. tangentMode: 0
  983. - time: 1
  984. value: 1
  985. inSlope: 0
  986. outSlope: 0
  987. tangentMode: 0
  988. m_PreInfinity: 2
  989. m_PostInfinity: 2
  990. m_RotationOrder: 4
  991. minCurve:
  992. serializedVersion: 2
  993. m_Curve:
  994. - time: 0
  995. value: 0
  996. inSlope: 0
  997. outSlope: 0
  998. tangentMode: 0
  999. - time: 1
  1000. value: 0
  1001. inSlope: 0
  1002. outSlope: 0
  1003. tangentMode: 0
  1004. m_PreInfinity: 2
  1005. m_PostInfinity: 2
  1006. m_RotationOrder: 4
  1007. minMaxState: 0
  1008. z:
  1009. scalar: 0
  1010. maxCurve:
  1011. serializedVersion: 2
  1012. m_Curve:
  1013. - time: 0
  1014. value: 1
  1015. inSlope: 0
  1016. outSlope: 0
  1017. tangentMode: 0
  1018. - time: 1
  1019. value: 1
  1020. inSlope: 0
  1021. outSlope: 0
  1022. tangentMode: 0
  1023. m_PreInfinity: 2
  1024. m_PostInfinity: 2
  1025. m_RotationOrder: 4
  1026. minCurve:
  1027. serializedVersion: 2
  1028. m_Curve:
  1029. - time: 0
  1030. value: 0
  1031. inSlope: 0
  1032. outSlope: 0
  1033. tangentMode: 0
  1034. - time: 1
  1035. value: 0
  1036. inSlope: 0
  1037. outSlope: 0
  1038. tangentMode: 0
  1039. m_PreInfinity: 2
  1040. m_PostInfinity: 2
  1041. m_RotationOrder: 4
  1042. minMaxState: 0
  1043. inWorldSpace: 0
  1044. randomizePerFrame: 0
  1045. ExternalForcesModule:
  1046. enabled: 0
  1047. multiplier: 1
  1048. ClampVelocityModule:
  1049. enabled: 0
  1050. x:
  1051. scalar: 1
  1052. maxCurve:
  1053. serializedVersion: 2
  1054. m_Curve:
  1055. - time: 0
  1056. value: 1
  1057. inSlope: 0
  1058. outSlope: 0
  1059. tangentMode: 0
  1060. - time: 1
  1061. value: 1
  1062. inSlope: 0
  1063. outSlope: 0
  1064. tangentMode: 0
  1065. m_PreInfinity: 2
  1066. m_PostInfinity: 2
  1067. m_RotationOrder: 4
  1068. minCurve:
  1069. serializedVersion: 2
  1070. m_Curve:
  1071. - time: 0
  1072. value: 0
  1073. inSlope: 0
  1074. outSlope: 0
  1075. tangentMode: 0
  1076. - time: 1
  1077. value: 0
  1078. inSlope: 0
  1079. outSlope: 0
  1080. tangentMode: 0
  1081. m_PreInfinity: 2
  1082. m_PostInfinity: 2
  1083. m_RotationOrder: 4
  1084. minMaxState: 0
  1085. y:
  1086. scalar: 1
  1087. maxCurve:
  1088. serializedVersion: 2
  1089. m_Curve:
  1090. - time: 0
  1091. value: 1
  1092. inSlope: 0
  1093. outSlope: 0
  1094. tangentMode: 0
  1095. - time: 1
  1096. value: 1
  1097. inSlope: 0
  1098. outSlope: 0
  1099. tangentMode: 0
  1100. m_PreInfinity: 2
  1101. m_PostInfinity: 2
  1102. m_RotationOrder: 4
  1103. minCurve:
  1104. serializedVersion: 2
  1105. m_Curve:
  1106. - time: 0
  1107. value: 0
  1108. inSlope: 0
  1109. outSlope: 0
  1110. tangentMode: 0
  1111. - time: 1
  1112. value: 0
  1113. inSlope: 0
  1114. outSlope: 0
  1115. tangentMode: 0
  1116. m_PreInfinity: 2
  1117. m_PostInfinity: 2
  1118. m_RotationOrder: 4
  1119. minMaxState: 0
  1120. z:
  1121. scalar: 1
  1122. maxCurve:
  1123. serializedVersion: 2
  1124. m_Curve:
  1125. - time: 0
  1126. value: 1
  1127. inSlope: 0
  1128. outSlope: 0
  1129. tangentMode: 0
  1130. - time: 1
  1131. value: 1
  1132. inSlope: 0
  1133. outSlope: 0
  1134. tangentMode: 0
  1135. m_PreInfinity: 2
  1136. m_PostInfinity: 2
  1137. m_RotationOrder: 4
  1138. minCurve:
  1139. serializedVersion: 2
  1140. m_Curve:
  1141. - time: 0
  1142. value: 0
  1143. inSlope: 0
  1144. outSlope: 0
  1145. tangentMode: 0
  1146. - time: 1
  1147. value: 0
  1148. inSlope: 0
  1149. outSlope: 0
  1150. tangentMode: 0
  1151. m_PreInfinity: 2
  1152. m_PostInfinity: 2
  1153. m_RotationOrder: 4
  1154. minMaxState: 0
  1155. magnitude:
  1156. scalar: 1
  1157. maxCurve:
  1158. serializedVersion: 2
  1159. m_Curve:
  1160. - time: 0
  1161. value: 1
  1162. inSlope: 0
  1163. outSlope: 0
  1164. tangentMode: 0
  1165. - time: 1
  1166. value: 1
  1167. inSlope: 0
  1168. outSlope: 0
  1169. tangentMode: 0
  1170. m_PreInfinity: 2
  1171. m_PostInfinity: 2
  1172. m_RotationOrder: 4
  1173. minCurve:
  1174. serializedVersion: 2
  1175. m_Curve:
  1176. - time: 0
  1177. value: 0
  1178. inSlope: 0
  1179. outSlope: 0
  1180. tangentMode: 0
  1181. - time: 1
  1182. value: 0
  1183. inSlope: 0
  1184. outSlope: 0
  1185. tangentMode: 0
  1186. m_PreInfinity: 2
  1187. m_PostInfinity: 2
  1188. m_RotationOrder: 4
  1189. minMaxState: 0
  1190. separateAxis: 0
  1191. inWorldSpace: 0
  1192. dampen: 1
  1193. SizeBySpeedModule:
  1194. enabled: 0
  1195. curve:
  1196. scalar: 1
  1197. maxCurve:
  1198. serializedVersion: 2
  1199. m_Curve:
  1200. - time: 0
  1201. value: 1
  1202. inSlope: 0
  1203. outSlope: 0
  1204. tangentMode: 0
  1205. - time: 1
  1206. value: 1
  1207. inSlope: 0
  1208. outSlope: 0
  1209. tangentMode: 0
  1210. m_PreInfinity: 2
  1211. m_PostInfinity: 2
  1212. m_RotationOrder: 4
  1213. minCurve:
  1214. serializedVersion: 2
  1215. m_Curve:
  1216. - time: 0
  1217. value: 0
  1218. inSlope: 0
  1219. outSlope: 0
  1220. tangentMode: 0
  1221. - time: 1
  1222. value: 0
  1223. inSlope: 0
  1224. outSlope: 0
  1225. tangentMode: 0
  1226. m_PreInfinity: 2
  1227. m_PostInfinity: 2
  1228. m_RotationOrder: 4
  1229. minMaxState: 1
  1230. range: {x: 0, y: 1}
  1231. RotationBySpeedModule:
  1232. enabled: 0
  1233. x:
  1234. scalar: 0
  1235. maxCurve:
  1236. serializedVersion: 2
  1237. m_Curve:
  1238. - time: 0
  1239. value: 1
  1240. inSlope: 0
  1241. outSlope: 0
  1242. tangentMode: 0
  1243. - time: 1
  1244. value: 1
  1245. inSlope: 0
  1246. outSlope: 0
  1247. tangentMode: 0
  1248. m_PreInfinity: 2
  1249. m_PostInfinity: 2
  1250. m_RotationOrder: 4
  1251. minCurve:
  1252. serializedVersion: 2
  1253. m_Curve:
  1254. - time: 0
  1255. value: 0
  1256. inSlope: 0
  1257. outSlope: 0
  1258. tangentMode: 0
  1259. - time: 1
  1260. value: 0
  1261. inSlope: 0
  1262. outSlope: 0
  1263. tangentMode: 0
  1264. m_PreInfinity: 2
  1265. m_PostInfinity: 2
  1266. m_RotationOrder: 4
  1267. minMaxState: 0
  1268. y:
  1269. scalar: 0
  1270. maxCurve:
  1271. serializedVersion: 2
  1272. m_Curve:
  1273. - time: 0
  1274. value: 1
  1275. inSlope: 0
  1276. outSlope: 0
  1277. tangentMode: 0
  1278. - time: 1
  1279. value: 1
  1280. inSlope: 0
  1281. outSlope: 0
  1282. tangentMode: 0
  1283. m_PreInfinity: 2
  1284. m_PostInfinity: 2
  1285. m_RotationOrder: 4
  1286. minCurve:
  1287. serializedVersion: 2
  1288. m_Curve:
  1289. - time: 0
  1290. value: 0
  1291. inSlope: 0
  1292. outSlope: 0
  1293. tangentMode: 0
  1294. - time: 1
  1295. value: 0
  1296. inSlope: 0
  1297. outSlope: 0
  1298. tangentMode: 0
  1299. m_PreInfinity: 2
  1300. m_PostInfinity: 2
  1301. m_RotationOrder: 4
  1302. minMaxState: 0
  1303. curve:
  1304. scalar: 0.7853982
  1305. maxCurve:
  1306. serializedVersion: 2
  1307. m_Curve:
  1308. - time: 0
  1309. value: 1
  1310. inSlope: 0
  1311. outSlope: 0
  1312. tangentMode: 0
  1313. - time: 1
  1314. value: 1
  1315. inSlope: 0
  1316. outSlope: 0
  1317. tangentMode: 0
  1318. m_PreInfinity: 2
  1319. m_PostInfinity: 2
  1320. m_RotationOrder: 4
  1321. minCurve:
  1322. serializedVersion: 2
  1323. m_Curve:
  1324. - time: 0
  1325. value: 0
  1326. inSlope: 0
  1327. outSlope: 0
  1328. tangentMode: 0
  1329. - time: 1
  1330. value: 0
  1331. inSlope: 0
  1332. outSlope: 0
  1333. tangentMode: 0
  1334. m_PreInfinity: 2
  1335. m_PostInfinity: 2
  1336. m_RotationOrder: 4
  1337. minMaxState: 0
  1338. separateAxes: 0
  1339. range: {x: 0, y: 1}
  1340. ColorBySpeedModule:
  1341. enabled: 0
  1342. gradient:
  1343. maxGradient:
  1344. key0:
  1345. serializedVersion: 2
  1346. rgba: 4294967295
  1347. key1:
  1348. serializedVersion: 2
  1349. rgba: 4293590271
  1350. key2:
  1351. serializedVersion: 2
  1352. rgba: 1696255
  1353. key3:
  1354. serializedVersion: 2
  1355. rgba: 204031
  1356. key4:
  1357. serializedVersion: 2
  1358. rgba: 204031
  1359. key5:
  1360. serializedVersion: 2
  1361. rgba: 0
  1362. key6:
  1363. serializedVersion: 2
  1364. rgba: 0
  1365. key7:
  1366. serializedVersion: 2
  1367. rgba: 0
  1368. ctime0: 0
  1369. ctime1: 16384
  1370. ctime2: 32768
  1371. ctime3: 49151
  1372. ctime4: 56283
  1373. ctime5: 0
  1374. ctime6: 0
  1375. ctime7: 0
  1376. atime0: 0
  1377. atime1: 65535
  1378. atime2: 0
  1379. atime3: 0
  1380. atime4: 0
  1381. atime5: 0
  1382. atime6: 0
  1383. atime7: 0
  1384. m_NumColorKeys: 4
  1385. m_NumAlphaKeys: 2
  1386. minGradient:
  1387. key0:
  1388. serializedVersion: 2
  1389. rgba: 4294967295
  1390. key1:
  1391. serializedVersion: 2
  1392. rgba: 4294967295
  1393. key2:
  1394. serializedVersion: 2
  1395. rgba: 0
  1396. key3:
  1397. serializedVersion: 2
  1398. rgba: 0
  1399. key4:
  1400. serializedVersion: 2
  1401. rgba: 0
  1402. key5:
  1403. serializedVersion: 2
  1404. rgba: 0
  1405. key6:
  1406. serializedVersion: 2
  1407. rgba: 0
  1408. key7:
  1409. serializedVersion: 2
  1410. rgba: 0
  1411. ctime0: 0
  1412. ctime1: 65535
  1413. ctime2: 0
  1414. ctime3: 0
  1415. ctime4: 0
  1416. ctime5: 0
  1417. ctime6: 0
  1418. ctime7: 0
  1419. atime0: 0
  1420. atime1: 65535
  1421. atime2: 0
  1422. atime3: 0
  1423. atime4: 0
  1424. atime5: 0
  1425. atime6: 0
  1426. atime7: 0
  1427. m_NumColorKeys: 2
  1428. m_NumAlphaKeys: 2
  1429. minColor:
  1430. serializedVersion: 2
  1431. rgba: 4294967295
  1432. maxColor:
  1433. serializedVersion: 2
  1434. rgba: 4294967295
  1435. minMaxState: 1
  1436. range: {x: 0, y: 1}
  1437. CollisionModule:
  1438. enabled: 0
  1439. serializedVersion: 2
  1440. type: 0
  1441. collisionMode: 0
  1442. plane0: {fileID: 0}
  1443. plane1: {fileID: 0}
  1444. plane2: {fileID: 0}
  1445. plane3: {fileID: 0}
  1446. plane4: {fileID: 0}
  1447. plane5: {fileID: 0}
  1448. m_Dampen:
  1449. scalar: 0
  1450. maxCurve:
  1451. serializedVersion: 2
  1452. m_Curve:
  1453. - time: 0
  1454. value: 1
  1455. inSlope: 0
  1456. outSlope: 0
  1457. tangentMode: 0
  1458. - time: 1
  1459. value: 1
  1460. inSlope: 0
  1461. outSlope: 0
  1462. tangentMode: 0
  1463. m_PreInfinity: 2
  1464. m_PostInfinity: 2
  1465. m_RotationOrder: 4
  1466. minCurve:
  1467. serializedVersion: 2
  1468. m_Curve:
  1469. - time: 0
  1470. value: 0
  1471. inSlope: 0
  1472. outSlope: 0
  1473. tangentMode: 0
  1474. - time: 1
  1475. value: 0
  1476. inSlope: 0
  1477. outSlope: 0
  1478. tangentMode: 0
  1479. m_PreInfinity: 2
  1480. m_PostInfinity: 2
  1481. m_RotationOrder: 4
  1482. minMaxState: 0
  1483. m_Bounce:
  1484. scalar: 1
  1485. maxCurve:
  1486. serializedVersion: 2
  1487. m_Curve:
  1488. - time: 0
  1489. value: 1
  1490. inSlope: 0
  1491. outSlope: 0
  1492. tangentMode: 0
  1493. - time: 1
  1494. value: 1
  1495. inSlope: 0
  1496. outSlope: 0
  1497. tangentMode: 0
  1498. m_PreInfinity: 2
  1499. m_PostInfinity: 2
  1500. m_RotationOrder: 4
  1501. minCurve:
  1502. serializedVersion: 2
  1503. m_Curve:
  1504. - time: 0
  1505. value: 0
  1506. inSlope: 0
  1507. outSlope: 0
  1508. tangentMode: 0
  1509. - time: 1
  1510. value: 0
  1511. inSlope: 0
  1512. outSlope: 0
  1513. tangentMode: 0
  1514. m_PreInfinity: 2
  1515. m_PostInfinity: 2
  1516. m_RotationOrder: 4
  1517. minMaxState: 0
  1518. m_EnergyLossOnCollision:
  1519. scalar: 0
  1520. maxCurve:
  1521. serializedVersion: 2
  1522. m_Curve:
  1523. - time: 0
  1524. value: 1
  1525. inSlope: 0
  1526. outSlope: 0
  1527. tangentMode: 0
  1528. - time: 1
  1529. value: 1
  1530. inSlope: 0
  1531. outSlope: 0
  1532. tangentMode: 0
  1533. m_PreInfinity: 2
  1534. m_PostInfinity: 2
  1535. m_RotationOrder: 4
  1536. minCurve:
  1537. serializedVersion: 2
  1538. m_Curve:
  1539. - time: 0
  1540. value: 0
  1541. inSlope: 0
  1542. outSlope: 0
  1543. tangentMode: 0
  1544. - time: 1
  1545. value: 0
  1546. inSlope: 0
  1547. outSlope: 0
  1548. tangentMode: 0
  1549. m_PreInfinity: 2
  1550. m_PostInfinity: 2
  1551. m_RotationOrder: 4
  1552. minMaxState: 0
  1553. minKillSpeed: 0
  1554. radiusScale: 1
  1555. collidesWith:
  1556. serializedVersion: 2
  1557. m_Bits: 4294967295
  1558. maxCollisionShapes: 256
  1559. quality: 0
  1560. voxelSize: 0.5
  1561. collisionMessages: 0
  1562. collidesWithDynamic: 1
  1563. interiorCollisions: 1
  1564. SubModule:
  1565. enabled: 0
  1566. subEmitterBirth: {fileID: 0}
  1567. subEmitterBirth1: {fileID: 0}
  1568. subEmitterCollision: {fileID: 0}
  1569. subEmitterCollision1: {fileID: 0}
  1570. subEmitterDeath: {fileID: 0}
  1571. subEmitterDeath1: {fileID: 0}
  1572. --- !u!198 &19840092
  1573. ParticleSystem:
  1574. m_ObjectHideFlags: 1
  1575. m_PrefabParentObject: {fileID: 0}
  1576. m_PrefabInternal: {fileID: 100100000}
  1577. m_GameObject: {fileID: 194994}
  1578. serializedVersion: 2
  1579. lengthInSec: 5
  1580. startDelay:
  1581. scalar: 0
  1582. maxCurve:
  1583. serializedVersion: 2
  1584. m_Curve:
  1585. - time: 0
  1586. value: 1
  1587. inSlope: 0
  1588. outSlope: 0
  1589. tangentMode: 0
  1590. - time: 1
  1591. value: 1
  1592. inSlope: 0
  1593. outSlope: 0
  1594. tangentMode: 0
  1595. m_PreInfinity: 2
  1596. m_PostInfinity: 2
  1597. m_RotationOrder: 4
  1598. minCurve:
  1599. serializedVersion: 2
  1600. m_Curve:
  1601. - time: 0
  1602. value: 0
  1603. inSlope: 0
  1604. outSlope: 0
  1605. tangentMode: 0
  1606. - time: 1
  1607. value: 0
  1608. inSlope: 0
  1609. outSlope: 0
  1610. tangentMode: 0
  1611. m_PreInfinity: 2
  1612. m_PostInfinity: 2
  1613. m_RotationOrder: 4
  1614. minMaxState: 0
  1615. speed: 1
  1616. randomSeed: 0
  1617. looping: 1
  1618. prewarm: 1
  1619. playOnAwake: 1
  1620. moveWithTransform: 1
  1621. scalingMode: 2
  1622. InitialModule:
  1623. serializedVersion: 2
  1624. enabled: 1
  1625. startLifetime:
  1626. scalar: 0.81
  1627. maxCurve:
  1628. serializedVersion: 2
  1629. m_Curve:
  1630. - time: 0
  1631. value: 0.8641975
  1632. inSlope: 0
  1633. outSlope: 0
  1634. tangentMode: 0
  1635. m_PreInfinity: 2
  1636. m_PostInfinity: 2
  1637. m_RotationOrder: 4
  1638. minCurve:
  1639. serializedVersion: 2
  1640. m_Curve:
  1641. - time: 0
  1642. value: 1
  1643. inSlope: 0
  1644. outSlope: 0
  1645. tangentMode: 0
  1646. m_PreInfinity: 2
  1647. m_PostInfinity: 2
  1648. m_RotationOrder: 4
  1649. minMaxState: 3
  1650. startSpeed:
  1651. scalar: 0
  1652. maxCurve:
  1653. serializedVersion: 2
  1654. m_Curve:
  1655. - time: 0
  1656. value: 1
  1657. inSlope: 0
  1658. outSlope: 0
  1659. tangentMode: 0
  1660. - time: 1
  1661. value: 1
  1662. inSlope: 0
  1663. outSlope: 0
  1664. tangentMode: 0
  1665. m_PreInfinity: 2
  1666. m_PostInfinity: 2
  1667. m_RotationOrder: 4
  1668. minCurve:
  1669. serializedVersion: 2
  1670. m_Curve:
  1671. - time: 0
  1672. value: 0
  1673. inSlope: 0
  1674. outSlope: 0
  1675. tangentMode: 0
  1676. - time: 1
  1677. value: 0
  1678. inSlope: 0
  1679. outSlope: 0
  1680. tangentMode: 0
  1681. m_PreInfinity: 2
  1682. m_PostInfinity: 2
  1683. m_RotationOrder: 4
  1684. minMaxState: 0
  1685. startColor:
  1686. maxGradient:
  1687. key0:
  1688. serializedVersion: 2
  1689. rgba: 4294951815
  1690. key1:
  1691. serializedVersion: 2
  1692. rgba: 4294967295
  1693. key2:
  1694. serializedVersion: 2
  1695. rgba: 0
  1696. key3:
  1697. serializedVersion: 2
  1698. rgba: 0
  1699. key4:
  1700. serializedVersion: 2
  1701. rgba: 0
  1702. key5:
  1703. serializedVersion: 2
  1704. rgba: 0
  1705. key6:
  1706. serializedVersion: 2
  1707. rgba: 0
  1708. key7:
  1709. serializedVersion: 2
  1710. rgba: 0
  1711. ctime0: 0
  1712. ctime1: 65535
  1713. ctime2: 0
  1714. ctime3: 0
  1715. ctime4: 0
  1716. ctime5: 0
  1717. ctime6: 0
  1718. ctime7: 0
  1719. atime0: 0
  1720. atime1: 65535
  1721. atime2: 0
  1722. atime3: 0
  1723. atime4: 0
  1724. atime5: 0
  1725. atime6: 0
  1726. atime7: 0
  1727. m_NumColorKeys: 2
  1728. m_NumAlphaKeys: 2
  1729. minGradient:
  1730. key0:
  1731. serializedVersion: 2
  1732. rgba: 4294967295
  1733. key1:
  1734. serializedVersion: 2
  1735. rgba: 4294967295
  1736. key2:
  1737. serializedVersion: 2
  1738. rgba: 0
  1739. key3:
  1740. serializedVersion: 2
  1741. rgba: 0
  1742. key4:
  1743. serializedVersion: 2
  1744. rgba: 0
  1745. key5:
  1746. serializedVersion: 2
  1747. rgba: 0
  1748. key6:
  1749. serializedVersion: 2
  1750. rgba: 0
  1751. key7:
  1752. serializedVersion: 2
  1753. rgba: 0
  1754. ctime0: 0
  1755. ctime1: 65535
  1756. ctime2: 0
  1757. ctime3: 0
  1758. ctime4: 0
  1759. ctime5: 0
  1760. ctime6: 0
  1761. ctime7: 0
  1762. atime0: 0
  1763. atime1: 65535
  1764. atime2: 0
  1765. atime3: 0
  1766. atime4: 0
  1767. atime5: 0
  1768. atime6: 0
  1769. atime7: 0
  1770. m_NumColorKeys: 2
  1771. m_NumAlphaKeys: 2
  1772. minColor:
  1773. serializedVersion: 2
  1774. rgba: 4294967295
  1775. maxColor:
  1776. serializedVersion: 2
  1777. rgba: 4294967295
  1778. minMaxState: 2
  1779. startSize:
  1780. scalar: 1
  1781. maxCurve:
  1782. serializedVersion: 2
  1783. m_Curve:
  1784. - time: 0
  1785. value: 1
  1786. inSlope: 0
  1787. outSlope: 0
  1788. tangentMode: 0
  1789. m_PreInfinity: 2
  1790. m_PostInfinity: 2
  1791. m_RotationOrder: 4
  1792. minCurve:
  1793. serializedVersion: 2
  1794. m_Curve:
  1795. - time: 0
  1796. value: 0.5
  1797. inSlope: 0
  1798. outSlope: 0
  1799. tangentMode: 0
  1800. m_PreInfinity: 2
  1801. m_PostInfinity: 2
  1802. m_RotationOrder: 4
  1803. minMaxState: 3
  1804. startRotationX:
  1805. scalar: 0
  1806. maxCurve:
  1807. serializedVersion: 2
  1808. m_Curve:
  1809. - time: 0
  1810. value: 1
  1811. inSlope: 0
  1812. outSlope: 0
  1813. tangentMode: 0
  1814. - time: 1
  1815. value: 1
  1816. inSlope: 0
  1817. outSlope: 0
  1818. tangentMode: 0
  1819. m_PreInfinity: 2
  1820. m_PostInfinity: 2
  1821. m_RotationOrder: 4
  1822. minCurve:
  1823. serializedVersion: 2
  1824. m_Curve:
  1825. - time: 0
  1826. value: 0
  1827. inSlope: 0
  1828. outSlope: 0
  1829. tangentMode: 0
  1830. - time: 1
  1831. value: 0
  1832. inSlope: 0
  1833. outSlope: 0
  1834. tangentMode: 0
  1835. m_PreInfinity: 2
  1836. m_PostInfinity: 2
  1837. m_RotationOrder: 4
  1838. minMaxState: 0
  1839. startRotationY:
  1840. scalar: 0
  1841. maxCurve:
  1842. serializedVersion: 2
  1843. m_Curve:
  1844. - time: 0
  1845. value: 1
  1846. inSlope: 0
  1847. outSlope: 0
  1848. tangentMode: 0
  1849. - time: 1
  1850. value: 1
  1851. inSlope: 0
  1852. outSlope: 0
  1853. tangentMode: 0
  1854. m_PreInfinity: 2
  1855. m_PostInfinity: 2
  1856. m_RotationOrder: 4
  1857. minCurve:
  1858. serializedVersion: 2
  1859. m_Curve:
  1860. - time: 0
  1861. value: 0
  1862. inSlope: 0
  1863. outSlope: 0
  1864. tangentMode: 0
  1865. - time: 1
  1866. value: 0
  1867. inSlope: 0
  1868. outSlope: 0
  1869. tangentMode: 0
  1870. m_PreInfinity: 2
  1871. m_PostInfinity: 2
  1872. m_RotationOrder: 4
  1873. minMaxState: 0
  1874. startRotation:
  1875. scalar: 0
  1876. maxCurve:
  1877. serializedVersion: 2
  1878. m_Curve:
  1879. - time: 0
  1880. value: 1
  1881. inSlope: 0
  1882. outSlope: 0
  1883. tangentMode: 0
  1884. - time: 1
  1885. value: 1
  1886. inSlope: 0
  1887. outSlope: 0
  1888. tangentMode: 0
  1889. m_PreInfinity: 2
  1890. m_PostInfinity: 2
  1891. m_RotationOrder: 4
  1892. minCurve:
  1893. serializedVersion: 2
  1894. m_Curve:
  1895. - time: 0
  1896. value: 0
  1897. inSlope: 0
  1898. outSlope: 0
  1899. tangentMode: 0
  1900. - time: 1
  1901. value: 0
  1902. inSlope: 0
  1903. outSlope: 0
  1904. tangentMode: 0
  1905. m_PreInfinity: 2
  1906. m_PostInfinity: 2
  1907. m_RotationOrder: 4
  1908. minMaxState: 0
  1909. randomizeRotationDirection: 0
  1910. gravityModifier: 0
  1911. maxNumParticles: 20
  1912. rotation3D: 0
  1913. ShapeModule:
  1914. serializedVersion: 2
  1915. enabled: 0
  1916. type: 4
  1917. radius: 0.01
  1918. angle: 12.11
  1919. length: 5
  1920. boxX: 1
  1921. boxY: 1
  1922. boxZ: 1
  1923. arc: 360
  1924. placementMode: 0
  1925. m_Mesh: {fileID: 0}
  1926. m_MeshRenderer: {fileID: 0}
  1927. m_SkinnedMeshRenderer: {fileID: 0}
  1928. m_MeshMaterialIndex: 0
  1929. m_MeshNormalOffset: 0
  1930. m_UseMeshMaterialIndex: 0
  1931. m_UseMeshColors: 1
  1932. randomDirection: 0
  1933. EmissionModule:
  1934. enabled: 1
  1935. serializedVersion: 2
  1936. m_Type: 0
  1937. rate:
  1938. scalar: 10
  1939. maxCurve:
  1940. serializedVersion: 2
  1941. m_Curve:
  1942. - time: 0
  1943. value: 1
  1944. inSlope: 0
  1945. outSlope: 0
  1946. tangentMode: 0
  1947. - time: 1
  1948. value: 1
  1949. inSlope: 0
  1950. outSlope: 0
  1951. tangentMode: 0
  1952. m_PreInfinity: 2
  1953. m_PostInfinity: 2
  1954. m_RotationOrder: 4
  1955. minCurve:
  1956. serializedVersion: 2
  1957. m_Curve:
  1958. - time: 0
  1959. value: 0
  1960. inSlope: 0
  1961. outSlope: 0
  1962. tangentMode: 0
  1963. - time: 1
  1964. value: 0
  1965. inSlope: 0
  1966. outSlope: 0
  1967. tangentMode: 0
  1968. m_PreInfinity: 2
  1969. m_PostInfinity: 2
  1970. m_RotationOrder: 4
  1971. minMaxState: 0
  1972. cnt0: 30
  1973. cnt1: 30
  1974. cnt2: 30
  1975. cnt3: 30
  1976. cntmax0: 30
  1977. cntmax1: 30
  1978. cntmax2: 30
  1979. cntmax3: 30
  1980. time0: 0
  1981. time1: 0
  1982. time2: 0
  1983. time3: 0
  1984. m_BurstCount: 0
  1985. SizeModule:
  1986. enabled: 0
  1987. curve:
  1988. scalar: 1
  1989. maxCurve:
  1990. serializedVersion: 2
  1991. m_Curve:
  1992. - time: 0
  1993. value: 0.027027024
  1994. inSlope: 0
  1995. outSlope: 0
  1996. tangentMode: 0
  1997. - time: 0.008842725
  1998. value: 1
  1999. inSlope: 0.8754432
  2000. outSlope: 0.8754432
  2001. tangentMode: 0
  2002. - time: 0.9650365
  2003. value: 1
  2004. inSlope: -0.17106533
  2005. outSlope: -0.17106533
  2006. tangentMode: 0
  2007. - time: 1
  2008. value: 0
  2009. inSlope: 0
  2010. outSlope: 0
  2011. tangentMode: 0
  2012. m_PreInfinity: 2
  2013. m_PostInfinity: 2
  2014. m_RotationOrder: 4
  2015. minCurve:
  2016. serializedVersion: 2
  2017. m_Curve:
  2018. - time: 0
  2019. value: 0
  2020. inSlope: 0
  2021. outSlope: 0
  2022. tangentMode: 0
  2023. - time: 1
  2024. value: 0
  2025. inSlope: 0
  2026. outSlope: 0
  2027. tangentMode: 0
  2028. m_PreInfinity: 2
  2029. m_PostInfinity: 2
  2030. m_RotationOrder: 4
  2031. minMaxState: 1
  2032. RotationModule:
  2033. enabled: 0
  2034. x:
  2035. scalar: 0
  2036. maxCurve:
  2037. serializedVersion: 2
  2038. m_Curve:
  2039. - time: 0
  2040. value: 1
  2041. inSlope: 0
  2042. outSlope: 0
  2043. tangentMode: 0
  2044. - time: 1
  2045. value: 1
  2046. inSlope: 0
  2047. outSlope: 0
  2048. tangentMode: 0
  2049. m_PreInfinity: 2
  2050. m_PostInfinity: 2
  2051. m_RotationOrder: 4
  2052. minCurve:
  2053. serializedVersion: 2
  2054. m_Curve:
  2055. - time: 0
  2056. value: 0
  2057. inSlope: 0
  2058. outSlope: 0
  2059. tangentMode: 0
  2060. - time: 1
  2061. value: 0
  2062. inSlope: 0
  2063. outSlope: 0
  2064. tangentMode: 0
  2065. m_PreInfinity: 2
  2066. m_PostInfinity: 2
  2067. m_RotationOrder: 4
  2068. minMaxState: 0
  2069. y:
  2070. scalar: 0
  2071. maxCurve:
  2072. serializedVersion: 2
  2073. m_Curve:
  2074. - time: 0
  2075. value: 1
  2076. inSlope: 0
  2077. outSlope: 0
  2078. tangentMode: 0
  2079. - time: 1
  2080. value: 1
  2081. inSlope: 0
  2082. outSlope: 0
  2083. tangentMode: 0
  2084. m_PreInfinity: 2
  2085. m_PostInfinity: 2
  2086. m_RotationOrder: 4
  2087. minCurve:
  2088. serializedVersion: 2
  2089. m_Curve:
  2090. - time: 0
  2091. value: 0
  2092. inSlope: 0
  2093. outSlope: 0
  2094. tangentMode: 0
  2095. - time: 1
  2096. value: 0
  2097. inSlope: 0
  2098. outSlope: 0
  2099. tangentMode: 0
  2100. m_PreInfinity: 2
  2101. m_PostInfinity: 2
  2102. m_RotationOrder: 4
  2103. minMaxState: 0
  2104. curve:
  2105. scalar: 0.7853981
  2106. maxCurve:
  2107. serializedVersion: 2
  2108. m_Curve:
  2109. - time: 0
  2110. value: 1
  2111. inSlope: 0
  2112. outSlope: 0
  2113. tangentMode: 0
  2114. - time: 1
  2115. value: 1
  2116. inSlope: 0
  2117. outSlope: 0
  2118. tangentMode: 0
  2119. m_PreInfinity: 2
  2120. m_PostInfinity: 2
  2121. m_RotationOrder: 4
  2122. minCurve:
  2123. serializedVersion: 2
  2124. m_Curve:
  2125. - time: 0
  2126. value: 0
  2127. inSlope: 0
  2128. outSlope: 0
  2129. tangentMode: 0
  2130. - time: 1
  2131. value: 0
  2132. inSlope: 0
  2133. outSlope: 0
  2134. tangentMode: 0
  2135. m_PreInfinity: 2
  2136. m_PostInfinity: 2
  2137. m_RotationOrder: 4
  2138. minMaxState: 0
  2139. separateAxes: 0
  2140. ColorModule:
  2141. enabled: 1
  2142. gradient:
  2143. maxGradient:
  2144. key0:
  2145. serializedVersion: 2
  2146. rgba: 16777215
  2147. key1:
  2148. serializedVersion: 2
  2149. rgba: 4293848814
  2150. key2:
  2151. serializedVersion: 2
  2152. rgba: 4293848814
  2153. key3:
  2154. serializedVersion: 2
  2155. rgba: 0
  2156. key4:
  2157. serializedVersion: 2
  2158. rgba: 0
  2159. key5:
  2160. serializedVersion: 2
  2161. rgba: 0
  2162. key6:
  2163. serializedVersion: 2
  2164. rgba: 0
  2165. key7:
  2166. serializedVersion: 2
  2167. rgba: 0
  2168. ctime0: 0
  2169. ctime1: 65535
  2170. ctime2: 65535
  2171. ctime3: 65535
  2172. ctime4: 0
  2173. ctime5: 0
  2174. ctime6: 0
  2175. ctime7: 0
  2176. atime0: 0
  2177. atime1: 3470
  2178. atime2: 49730
  2179. atime3: 65535
  2180. atime4: 0
  2181. atime5: 0
  2182. atime6: 0
  2183. atime7: 0
  2184. m_NumColorKeys: 2
  2185. m_NumAlphaKeys: 4
  2186. minGradient:
  2187. key0:
  2188. serializedVersion: 2
  2189. rgba: 4294967295
  2190. key1:
  2191. serializedVersion: 2
  2192. rgba: 4294967295
  2193. key2:
  2194. serializedVersion: 2
  2195. rgba: 0
  2196. key3:
  2197. serializedVersion: 2
  2198. rgba: 0
  2199. key4:
  2200. serializedVersion: 2
  2201. rgba: 0
  2202. key5:
  2203. serializedVersion: 2
  2204. rgba: 0
  2205. key6:
  2206. serializedVersion: 2
  2207. rgba: 0
  2208. key7:
  2209. serializedVersion: 2
  2210. rgba: 0
  2211. ctime0: 0
  2212. ctime1: 65535
  2213. ctime2: 0
  2214. ctime3: 0
  2215. ctime4: 0
  2216. ctime5: 0
  2217. ctime6: 0
  2218. ctime7: 0
  2219. atime0: 0
  2220. atime1: 65535
  2221. atime2: 0
  2222. atime3: 0
  2223. atime4: 0
  2224. atime5: 0
  2225. atime6: 0
  2226. atime7: 0
  2227. m_NumColorKeys: 2
  2228. m_NumAlphaKeys: 2
  2229. minColor:
  2230. serializedVersion: 2
  2231. rgba: 4294967295
  2232. maxColor:
  2233. serializedVersion: 2
  2234. rgba: 4294967295
  2235. minMaxState: 1
  2236. UVModule:
  2237. enabled: 0
  2238. frameOverTime:
  2239. scalar: 0.9999
  2240. maxCurve:
  2241. serializedVersion: 2
  2242. m_Curve:
  2243. - time: 0
  2244. value: 0
  2245. inSlope: 0
  2246. outSlope: 1
  2247. tangentMode: 0
  2248. - time: 1
  2249. value: 1
  2250. inSlope: 1
  2251. outSlope: 0
  2252. tangentMode: 0
  2253. m_PreInfinity: 2
  2254. m_PostInfinity: 2
  2255. m_RotationOrder: 4
  2256. minCurve:
  2257. serializedVersion: 2
  2258. m_Curve:
  2259. - time: 0
  2260. value: 0
  2261. inSlope: 0
  2262. outSlope: 1
  2263. tangentMode: 0
  2264. - time: 1
  2265. value: 1
  2266. inSlope: 1
  2267. outSlope: 0
  2268. tangentMode: 0
  2269. m_PreInfinity: 2
  2270. m_PostInfinity: 2
  2271. m_RotationOrder: 4
  2272. minMaxState: 1
  2273. tilesX: 1
  2274. tilesY: 1
  2275. animationType: 0
  2276. rowIndex: 0
  2277. cycles: 1
  2278. randomRow: 1
  2279. VelocityModule:
  2280. enabled: 0
  2281. x:
  2282. scalar: 1
  2283. maxCurve:
  2284. serializedVersion: 2
  2285. m_Curve:
  2286. - time: 0
  2287. value: 0
  2288. inSlope: 0
  2289. outSlope: 0
  2290. tangentMode: 0
  2291. m_PreInfinity: 2
  2292. m_PostInfinity: 2
  2293. m_RotationOrder: 4
  2294. minCurve:
  2295. serializedVersion: 2
  2296. m_Curve:
  2297. - time: 0
  2298. value: 0
  2299. inSlope: 0
  2300. outSlope: 0
  2301. tangentMode: 0
  2302. - time: 1
  2303. value: 0
  2304. inSlope: 0
  2305. outSlope: 0
  2306. tangentMode: 0
  2307. m_PreInfinity: 2
  2308. m_PostInfinity: 2
  2309. m_RotationOrder: 4
  2310. minMaxState: 1
  2311. y:
  2312. scalar: 1
  2313. maxCurve:
  2314. serializedVersion: 2
  2315. m_Curve:
  2316. - time: 0
  2317. value: 0
  2318. inSlope: 0
  2319. outSlope: 0
  2320. tangentMode: 0
  2321. m_PreInfinity: 2
  2322. m_PostInfinity: 2
  2323. m_RotationOrder: 4
  2324. minCurve:
  2325. serializedVersion: 2
  2326. m_Curve:
  2327. - time: 0
  2328. value: 0
  2329. inSlope: 0
  2330. outSlope: 0
  2331. tangentMode: 0
  2332. - time: 1
  2333. value: 0
  2334. inSlope: 0
  2335. outSlope: 0
  2336. tangentMode: 0
  2337. m_PreInfinity: 2
  2338. m_PostInfinity: 2
  2339. m_RotationOrder: 4
  2340. minMaxState: 1
  2341. z:
  2342. scalar: 1
  2343. maxCurve:
  2344. serializedVersion: 2
  2345. m_Curve:
  2346. - time: 0
  2347. value: 0
  2348. inSlope: 1
  2349. outSlope: 1
  2350. tangentMode: 10
  2351. - time: 1
  2352. value: 1
  2353. inSlope: 1
  2354. outSlope: 1
  2355. tangentMode: 10
  2356. m_PreInfinity: 2
  2357. m_PostInfinity: 2
  2358. m_RotationOrder: 4
  2359. minCurve:
  2360. serializedVersion: 2
  2361. m_Curve:
  2362. - time: 0
  2363. value: 0
  2364. inSlope: 0
  2365. outSlope: 0
  2366. tangentMode: 0
  2367. - time: 1
  2368. value: 0
  2369. inSlope: 0
  2370. outSlope: 0
  2371. tangentMode: 0
  2372. m_PreInfinity: 2
  2373. m_PostInfinity: 2
  2374. m_RotationOrder: 4
  2375. minMaxState: 1
  2376. inWorldSpace: 0
  2377. InheritVelocityModule:
  2378. enabled: 0
  2379. m_Mode: 0
  2380. m_Curve:
  2381. scalar: 0
  2382. maxCurve:
  2383. serializedVersion: 2
  2384. m_Curve:
  2385. - time: 0
  2386. value: 1
  2387. inSlope: 0
  2388. outSlope: 0
  2389. tangentMode: 0
  2390. - time: 1
  2391. value: 1
  2392. inSlope: 0
  2393. outSlope: 0
  2394. tangentMode: 0
  2395. m_PreInfinity: 2
  2396. m_PostInfinity: 2
  2397. m_RotationOrder: 4
  2398. minCurve:
  2399. serializedVersion: 2
  2400. m_Curve:
  2401. - time: 0
  2402. value: 0
  2403. inSlope: 0
  2404. outSlope: 0
  2405. tangentMode: 0
  2406. - time: 1
  2407. value: 0
  2408. inSlope: 0
  2409. outSlope: 0
  2410. tangentMode: 0
  2411. m_PreInfinity: 2
  2412. m_PostInfinity: 2
  2413. m_RotationOrder: 4
  2414. minMaxState: 0
  2415. ForceModule:
  2416. enabled: 0
  2417. x:
  2418. scalar: 0
  2419. maxCurve:
  2420. serializedVersion: 2
  2421. m_Curve:
  2422. - time: 0
  2423. value: 1
  2424. inSlope: 0
  2425. outSlope: 0
  2426. tangentMode: 0
  2427. - time: 1
  2428. value: 1
  2429. inSlope: 0
  2430. outSlope: 0
  2431. tangentMode: 0
  2432. m_PreInfinity: 2
  2433. m_PostInfinity: 2
  2434. m_RotationOrder: 4
  2435. minCurve:
  2436. serializedVersion: 2
  2437. m_Curve:
  2438. - time: 0
  2439. value: 0
  2440. inSlope: 0
  2441. outSlope: 0
  2442. tangentMode: 0
  2443. - time: 1
  2444. value: 0
  2445. inSlope: 0
  2446. outSlope: 0
  2447. tangentMode: 0
  2448. m_PreInfinity: 2
  2449. m_PostInfinity: 2
  2450. m_RotationOrder: 4
  2451. minMaxState: 0
  2452. y:
  2453. scalar: 0
  2454. maxCurve:
  2455. serializedVersion: 2
  2456. m_Curve:
  2457. - time: 0
  2458. value: 1
  2459. inSlope: 0
  2460. outSlope: 0
  2461. tangentMode: 0
  2462. - time: 1
  2463. value: 1
  2464. inSlope: 0
  2465. outSlope: 0
  2466. tangentMode: 0
  2467. m_PreInfinity: 2
  2468. m_PostInfinity: 2
  2469. m_RotationOrder: 4
  2470. minCurve:
  2471. serializedVersion: 2
  2472. m_Curve:
  2473. - time: 0
  2474. value: 0
  2475. inSlope: 0
  2476. outSlope: 0
  2477. tangentMode: 0
  2478. - time: 1
  2479. value: 0
  2480. inSlope: 0
  2481. outSlope: 0
  2482. tangentMode: 0
  2483. m_PreInfinity: 2
  2484. m_PostInfinity: 2
  2485. m_RotationOrder: 4
  2486. minMaxState: 0
  2487. z:
  2488. scalar: 0
  2489. maxCurve:
  2490. serializedVersion: 2
  2491. m_Curve:
  2492. - time: 0
  2493. value: 1
  2494. inSlope: 0
  2495. outSlope: 0
  2496. tangentMode: 0
  2497. - time: 1
  2498. value: 1
  2499. inSlope: 0
  2500. outSlope: 0
  2501. tangentMode: 0
  2502. m_PreInfinity: 2
  2503. m_PostInfinity: 2
  2504. m_RotationOrder: 4
  2505. minCurve:
  2506. serializedVersion: 2
  2507. m_Curve:
  2508. - time: 0
  2509. value: 0
  2510. inSlope: 0
  2511. outSlope: 0
  2512. tangentMode: 0
  2513. - time: 1
  2514. value: 0
  2515. inSlope: 0
  2516. outSlope: 0
  2517. tangentMode: 0
  2518. m_PreInfinity: 2
  2519. m_PostInfinity: 2
  2520. m_RotationOrder: 4
  2521. minMaxState: 0
  2522. inWorldSpace: 0
  2523. randomizePerFrame: 0
  2524. ExternalForcesModule:
  2525. enabled: 0
  2526. multiplier: 1
  2527. ClampVelocityModule:
  2528. enabled: 0
  2529. x:
  2530. scalar: 1
  2531. maxCurve:
  2532. serializedVersion: 2
  2533. m_Curve:
  2534. - time: 0
  2535. value: 1
  2536. inSlope: 0
  2537. outSlope: 0
  2538. tangentMode: 0
  2539. - time: 1
  2540. value: 1
  2541. inSlope: 0
  2542. outSlope: 0
  2543. tangentMode: 0
  2544. m_PreInfinity: 2
  2545. m_PostInfinity: 2
  2546. m_RotationOrder: 4
  2547. minCurve:
  2548. serializedVersion: 2
  2549. m_Curve:
  2550. - time: 0
  2551. value: 0
  2552. inSlope: 0
  2553. outSlope: 0
  2554. tangentMode: 0
  2555. - time: 1
  2556. value: 0
  2557. inSlope: 0
  2558. outSlope: 0
  2559. tangentMode: 0
  2560. m_PreInfinity: 2
  2561. m_PostInfinity: 2
  2562. m_RotationOrder: 4
  2563. minMaxState: 0
  2564. y:
  2565. scalar: 1
  2566. maxCurve:
  2567. serializedVersion: 2
  2568. m_Curve:
  2569. - time: 0
  2570. value: 1
  2571. inSlope: 0
  2572. outSlope: 0
  2573. tangentMode: 0
  2574. - time: 1
  2575. value: 1
  2576. inSlope: 0
  2577. outSlope: 0
  2578. tangentMode: 0
  2579. m_PreInfinity: 2
  2580. m_PostInfinity: 2
  2581. m_RotationOrder: 4
  2582. minCurve:
  2583. serializedVersion: 2
  2584. m_Curve:
  2585. - time: 0
  2586. value: 0
  2587. inSlope: 0
  2588. outSlope: 0
  2589. tangentMode: 0
  2590. - time: 1
  2591. value: 0
  2592. inSlope: 0
  2593. outSlope: 0
  2594. tangentMode: 0
  2595. m_PreInfinity: 2
  2596. m_PostInfinity: 2
  2597. m_RotationOrder: 4
  2598. minMaxState: 0
  2599. z:
  2600. scalar: 1
  2601. maxCurve:
  2602. serializedVersion: 2
  2603. m_Curve:
  2604. - time: 0
  2605. value: 1
  2606. inSlope: 0
  2607. outSlope: 0
  2608. tangentMode: 0
  2609. - time: 1
  2610. value: 1
  2611. inSlope: 0
  2612. outSlope: 0
  2613. tangentMode: 0
  2614. m_PreInfinity: 2
  2615. m_PostInfinity: 2
  2616. m_RotationOrder: 4
  2617. minCurve:
  2618. serializedVersion: 2
  2619. m_Curve:
  2620. - time: 0
  2621. value: 0
  2622. inSlope: 0
  2623. outSlope: 0
  2624. tangentMode: 0
  2625. - time: 1
  2626. value: 0
  2627. inSlope: 0
  2628. outSlope: 0
  2629. tangentMode: 0
  2630. m_PreInfinity: 2
  2631. m_PostInfinity: 2
  2632. m_RotationOrder: 4
  2633. minMaxState: 0
  2634. magnitude:
  2635. scalar: 1
  2636. maxCurve:
  2637. serializedVersion: 2
  2638. m_Curve:
  2639. - time: 0
  2640. value: 1
  2641. inSlope: 0
  2642. outSlope: 0
  2643. tangentMode: 0
  2644. - time: 1
  2645. value: 1
  2646. inSlope: 0
  2647. outSlope: 0
  2648. tangentMode: 0
  2649. m_PreInfinity: 2
  2650. m_PostInfinity: 2
  2651. m_RotationOrder: 4
  2652. minCurve:
  2653. serializedVersion: 2
  2654. m_Curve:
  2655. - time: 0
  2656. value: 0
  2657. inSlope: 0
  2658. outSlope: 0
  2659. tangentMode: 0
  2660. - time: 1
  2661. value: 0
  2662. inSlope: 0
  2663. outSlope: 0
  2664. tangentMode: 0
  2665. m_PreInfinity: 2
  2666. m_PostInfinity: 2
  2667. m_RotationOrder: 4
  2668. minMaxState: 0
  2669. separateAxis: 0
  2670. inWorldSpace: 0
  2671. dampen: 1
  2672. SizeBySpeedModule:
  2673. enabled: 0
  2674. curve:
  2675. scalar: 1
  2676. maxCurve:
  2677. serializedVersion: 2
  2678. m_Curve:
  2679. - time: 0
  2680. value: 1
  2681. inSlope: 0
  2682. outSlope: 0
  2683. tangentMode: 0
  2684. - time: 1
  2685. value: 1
  2686. inSlope: 0
  2687. outSlope: 0
  2688. tangentMode: 0
  2689. m_PreInfinity: 2
  2690. m_PostInfinity: 2
  2691. m_RotationOrder: 4
  2692. minCurve:
  2693. serializedVersion: 2
  2694. m_Curve:
  2695. - time: 0
  2696. value: 0
  2697. inSlope: 0
  2698. outSlope: 0
  2699. tangentMode: 0
  2700. - time: 1
  2701. value: 0
  2702. inSlope: 0
  2703. outSlope: 0
  2704. tangentMode: 0
  2705. m_PreInfinity: 2
  2706. m_PostInfinity: 2
  2707. m_RotationOrder: 4
  2708. minMaxState: 1
  2709. range: {x: 0, y: 1}
  2710. RotationBySpeedModule:
  2711. enabled: 0
  2712. x:
  2713. scalar: 0
  2714. maxCurve:
  2715. serializedVersion: 2
  2716. m_Curve:
  2717. - time: 0
  2718. value: 1
  2719. inSlope: 0
  2720. outSlope: 0
  2721. tangentMode: 0
  2722. - time: 1
  2723. value: 1
  2724. inSlope: 0
  2725. outSlope: 0
  2726. tangentMode: 0
  2727. m_PreInfinity: 2
  2728. m_PostInfinity: 2
  2729. m_RotationOrder: 4
  2730. minCurve:
  2731. serializedVersion: 2
  2732. m_Curve:
  2733. - time: 0
  2734. value: 0
  2735. inSlope: 0
  2736. outSlope: 0
  2737. tangentMode: 0
  2738. - time: 1
  2739. value: 0
  2740. inSlope: 0
  2741. outSlope: 0
  2742. tangentMode: 0
  2743. m_PreInfinity: 2
  2744. m_PostInfinity: 2
  2745. m_RotationOrder: 4
  2746. minMaxState: 0
  2747. y:
  2748. scalar: 0
  2749. maxCurve:
  2750. serializedVersion: 2
  2751. m_Curve:
  2752. - time: 0
  2753. value: 1
  2754. inSlope: 0
  2755. outSlope: 0
  2756. tangentMode: 0
  2757. - time: 1
  2758. value: 1
  2759. inSlope: 0
  2760. outSlope: 0
  2761. tangentMode: 0
  2762. m_PreInfinity: 2
  2763. m_PostInfinity: 2
  2764. m_RotationOrder: 4
  2765. minCurve:
  2766. serializedVersion: 2
  2767. m_Curve:
  2768. - time: 0
  2769. value: 0
  2770. inSlope: 0
  2771. outSlope: 0
  2772. tangentMode: 0
  2773. - time: 1
  2774. value: 0
  2775. inSlope: 0
  2776. outSlope: 0
  2777. tangentMode: 0
  2778. m_PreInfinity: 2
  2779. m_PostInfinity: 2
  2780. m_RotationOrder: 4
  2781. minMaxState: 0
  2782. curve:
  2783. scalar: 0.7853982
  2784. maxCurve:
  2785. serializedVersion: 2
  2786. m_Curve:
  2787. - time: 0
  2788. value: 1
  2789. inSlope: 0
  2790. outSlope: 0
  2791. tangentMode: 0
  2792. - time: 1
  2793. value: 1
  2794. inSlope: 0
  2795. outSlope: 0
  2796. tangentMode: 0
  2797. m_PreInfinity: 2
  2798. m_PostInfinity: 2
  2799. m_RotationOrder: 4
  2800. minCurve:
  2801. serializedVersion: 2
  2802. m_Curve:
  2803. - time: 0
  2804. value: 0
  2805. inSlope: 0
  2806. outSlope: 0
  2807. tangentMode: 0
  2808. - time: 1
  2809. value: 0
  2810. inSlope: 0
  2811. outSlope: 0
  2812. tangentMode: 0
  2813. m_PreInfinity: 2
  2814. m_PostInfinity: 2
  2815. m_RotationOrder: 4
  2816. minMaxState: 0
  2817. separateAxes: 0
  2818. range: {x: 0, y: 1}
  2819. ColorBySpeedModule:
  2820. enabled: 0
  2821. gradient:
  2822. maxGradient:
  2823. key0:
  2824. serializedVersion: 2
  2825. rgba: 4294967295
  2826. key1:
  2827. serializedVersion: 2
  2828. rgba: 4293590271
  2829. key2:
  2830. serializedVersion: 2
  2831. rgba: 1696255
  2832. key3:
  2833. serializedVersion: 2
  2834. rgba: 204031
  2835. key4:
  2836. serializedVersion: 2
  2837. rgba: 204031
  2838. key5:
  2839. serializedVersion: 2
  2840. rgba: 0
  2841. key6:
  2842. serializedVersion: 2
  2843. rgba: 0
  2844. key7:
  2845. serializedVersion: 2
  2846. rgba: 0
  2847. ctime0: 0
  2848. ctime1: 16384
  2849. ctime2: 32768
  2850. ctime3: 49151
  2851. ctime4: 56283
  2852. ctime5: 0
  2853. ctime6: 0
  2854. ctime7: 0
  2855. atime0: 0
  2856. atime1: 65535
  2857. atime2: 0
  2858. atime3: 0
  2859. atime4: 0
  2860. atime5: 0
  2861. atime6: 0
  2862. atime7: 0
  2863. m_NumColorKeys: 4
  2864. m_NumAlphaKeys: 2
  2865. minGradient:
  2866. key0:
  2867. serializedVersion: 2
  2868. rgba: 4294967295
  2869. key1:
  2870. serializedVersion: 2
  2871. rgba: 4294967295
  2872. key2:
  2873. serializedVersion: 2
  2874. rgba: 0
  2875. key3:
  2876. serializedVersion: 2
  2877. rgba: 0
  2878. key4:
  2879. serializedVersion: 2
  2880. rgba: 0
  2881. key5:
  2882. serializedVersion: 2
  2883. rgba: 0
  2884. key6:
  2885. serializedVersion: 2
  2886. rgba: 0
  2887. key7:
  2888. serializedVersion: 2
  2889. rgba: 0
  2890. ctime0: 0
  2891. ctime1: 65535
  2892. ctime2: 0
  2893. ctime3: 0
  2894. ctime4: 0
  2895. ctime5: 0
  2896. ctime6: 0
  2897. ctime7: 0
  2898. atime0: 0
  2899. atime1: 65535
  2900. atime2: 0
  2901. atime3: 0
  2902. atime4: 0
  2903. atime5: 0
  2904. atime6: 0
  2905. atime7: 0
  2906. m_NumColorKeys: 2
  2907. m_NumAlphaKeys: 2
  2908. minColor:
  2909. serializedVersion: 2
  2910. rgba: 4294967295
  2911. maxColor:
  2912. serializedVersion: 2
  2913. rgba: 4294967295
  2914. minMaxState: 1
  2915. range: {x: 0, y: 1}
  2916. CollisionModule:
  2917. enabled: 0
  2918. serializedVersion: 2
  2919. type: 0
  2920. collisionMode: 0
  2921. plane0: {fileID: 0}
  2922. plane1: {fileID: 0}
  2923. plane2: {fileID: 0}
  2924. plane3: {fileID: 0}
  2925. plane4: {fileID: 0}
  2926. plane5: {fileID: 0}
  2927. m_Dampen:
  2928. scalar: 0
  2929. maxCurve:
  2930. serializedVersion: 2
  2931. m_Curve:
  2932. - time: 0
  2933. value: 1
  2934. inSlope: 0
  2935. outSlope: 0
  2936. tangentMode: 0
  2937. - time: 1
  2938. value: 1
  2939. inSlope: 0
  2940. outSlope: 0
  2941. tangentMode: 0
  2942. m_PreInfinity: 2
  2943. m_PostInfinity: 2
  2944. m_RotationOrder: 4
  2945. minCurve:
  2946. serializedVersion: 2
  2947. m_Curve:
  2948. - time: 0
  2949. value: 0
  2950. inSlope: 0
  2951. outSlope: 0
  2952. tangentMode: 0
  2953. - time: 1
  2954. value: 0
  2955. inSlope: 0
  2956. outSlope: 0
  2957. tangentMode: 0
  2958. m_PreInfinity: 2
  2959. m_PostInfinity: 2
  2960. m_RotationOrder: 4
  2961. minMaxState: 0
  2962. m_Bounce:
  2963. scalar: 1
  2964. maxCurve:
  2965. serializedVersion: 2
  2966. m_Curve:
  2967. - time: 0
  2968. value: 1
  2969. inSlope: 0
  2970. outSlope: 0
  2971. tangentMode: 0
  2972. - time: 1
  2973. value: 1
  2974. inSlope: 0
  2975. outSlope: 0
  2976. tangentMode: 0
  2977. m_PreInfinity: 2
  2978. m_PostInfinity: 2
  2979. m_RotationOrder: 4
  2980. minCurve:
  2981. serializedVersion: 2
  2982. m_Curve:
  2983. - time: 0
  2984. value: 0
  2985. inSlope: 0
  2986. outSlope: 0
  2987. tangentMode: 0
  2988. - time: 1
  2989. value: 0
  2990. inSlope: 0
  2991. outSlope: 0
  2992. tangentMode: 0
  2993. m_PreInfinity: 2
  2994. m_PostInfinity: 2
  2995. m_RotationOrder: 4
  2996. minMaxState: 0
  2997. m_EnergyLossOnCollision:
  2998. scalar: 0
  2999. maxCurve:
  3000. serializedVersion: 2
  3001. m_Curve:
  3002. - time: 0
  3003. value: 1
  3004. inSlope: 0
  3005. outSlope: 0
  3006. tangentMode: 0
  3007. - time: 1
  3008. value: 1
  3009. inSlope: 0
  3010. outSlope: 0
  3011. tangentMode: 0
  3012. m_PreInfinity: 2
  3013. m_PostInfinity: 2
  3014. m_RotationOrder: 4
  3015. minCurve:
  3016. serializedVersion: 2
  3017. m_Curve:
  3018. - time: 0
  3019. value: 0
  3020. inSlope: 0
  3021. outSlope: 0
  3022. tangentMode: 0
  3023. - time: 1
  3024. value: 0
  3025. inSlope: 0
  3026. outSlope: 0
  3027. tangentMode: 0
  3028. m_PreInfinity: 2
  3029. m_PostInfinity: 2
  3030. m_RotationOrder: 4
  3031. minMaxState: 0
  3032. minKillSpeed: 0
  3033. radiusScale: 1
  3034. collidesWith:
  3035. serializedVersion: 2
  3036. m_Bits: 4294967295
  3037. maxCollisionShapes: 256
  3038. quality: 0
  3039. voxelSize: 0.5
  3040. collisionMessages: 0
  3041. collidesWithDynamic: 1
  3042. interiorCollisions: 1
  3043. SubModule:
  3044. enabled: 0
  3045. subEmitterBirth: {fileID: 0}
  3046. subEmitterBirth1: {fileID: 0}
  3047. subEmitterCollision: {fileID: 0}
  3048. subEmitterCollision1: {fileID: 0}
  3049. subEmitterDeath: {fileID: 0}
  3050. subEmitterDeath1: {fileID: 0}
  3051. --- !u!199 &19954692
  3052. ParticleSystemRenderer:
  3053. m_ObjectHideFlags: 1
  3054. m_PrefabParentObject: {fileID: 0}
  3055. m_PrefabInternal: {fileID: 100100000}
  3056. m_GameObject: {fileID: 100866}
  3057. m_Enabled: 1
  3058. m_CastShadows: 0
  3059. m_ReceiveShadows: 0
  3060. m_Materials:
  3061. - {fileID: 2100000, guid: c58c9afddbd36d14d837fa218d772996, type: 2}
  3062. m_SubsetIndices:
  3063. m_StaticBatchRoot: {fileID: 0}
  3064. m_UseLightProbes: 1
  3065. m_ReflectionProbeUsage: 0
  3066. m_ProbeAnchor: {fileID: 0}
  3067. m_ScaleInLightmap: 1
  3068. m_PreserveUVs: 0
  3069. m_IgnoreNormalsForChartDetection: 0
  3070. m_ImportantGI: 0
  3071. m_MinimumChartSize: 4
  3072. m_AutoUVMaxDistance: 0.5
  3073. m_AutoUVMaxAngle: 89
  3074. m_LightmapParameters: {fileID: 0}
  3075. m_SortingLayerID: 0
  3076. m_SortingOrder: 0
  3077. m_RenderMode: 0
  3078. m_SortMode: 0
  3079. m_MinParticleSize: 0
  3080. m_MaxParticleSize: 0.5
  3081. m_CameraVelocityScale: 0
  3082. m_VelocityScale: 0
  3083. m_LengthScale: 1.34
  3084. m_SortingFudge: 100
  3085. m_NormalDirection: 1
  3086. m_RenderAlignment: 0
  3087. m_Pivot: {x: 0, y: 0, z: 0}
  3088. m_Mesh: {fileID: 0}
  3089. m_Mesh1: {fileID: 0}
  3090. m_Mesh2: {fileID: 0}
  3091. m_Mesh3: {fileID: 0}
  3092. --- !u!199 &19980674
  3093. ParticleSystemRenderer:
  3094. m_ObjectHideFlags: 1
  3095. m_PrefabParentObject: {fileID: 0}
  3096. m_PrefabInternal: {fileID: 100100000}
  3097. m_GameObject: {fileID: 194994}
  3098. m_Enabled: 1
  3099. m_CastShadows: 0
  3100. m_ReceiveShadows: 0
  3101. m_Materials:
  3102. - {fileID: 2100000, guid: a7b030cffa2dc44478c14e49a22771c2, type: 2}
  3103. m_SubsetIndices:
  3104. m_StaticBatchRoot: {fileID: 0}
  3105. m_UseLightProbes: 1
  3106. m_ReflectionProbeUsage: 0
  3107. m_ProbeAnchor: {fileID: 0}
  3108. m_ScaleInLightmap: 1
  3109. m_PreserveUVs: 0
  3110. m_IgnoreNormalsForChartDetection: 0
  3111. m_ImportantGI: 0
  3112. m_MinimumChartSize: 4
  3113. m_AutoUVMaxDistance: 0.5
  3114. m_AutoUVMaxAngle: 89
  3115. m_LightmapParameters: {fileID: 0}
  3116. m_SortingLayerID: 0
  3117. m_SortingOrder: 0
  3118. m_RenderMode: 0
  3119. m_SortMode: 0
  3120. m_MinParticleSize: 0
  3121. m_MaxParticleSize: 0.5
  3122. m_CameraVelocityScale: 0
  3123. m_VelocityScale: 0
  3124. m_LengthScale: 1.34
  3125. m_SortingFudge: 0
  3126. m_NormalDirection: 1
  3127. m_RenderAlignment: 0
  3128. m_Pivot: {x: 0, y: 0, z: 0}
  3129. m_Mesh: {fileID: 0}
  3130. m_Mesh1: {fileID: 0}
  3131. m_Mesh2: {fileID: 0}
  3132. m_Mesh3: {fileID: 0}
  3133. --- !u!1001 &100100000
  3134. Prefab:
  3135. m_ObjectHideFlags: 1
  3136. serializedVersion: 2
  3137. m_Modification:
  3138. m_TransformParent: {fileID: 0}
  3139. m_Modifications: []
  3140. m_RemovedComponents: []
  3141. m_ParentPrefab: {fileID: 0}
  3142. m_RootGameObject: {fileID: 127850}
  3143. m_IsPrefabParent: 1