DemoAsteroids-GameScene.unity 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!29 &1
  4. OcclusionCullingSettings:
  5. m_ObjectHideFlags: 0
  6. serializedVersion: 2
  7. m_OcclusionBakeSettings:
  8. smallestOccluder: 5
  9. smallestHole: 0.25
  10. backfaceThreshold: 100
  11. m_SceneGUID: 00000000000000000000000000000000
  12. m_OcclusionCullingData: {fileID: 0}
  13. --- !u!104 &2
  14. RenderSettings:
  15. m_ObjectHideFlags: 0
  16. serializedVersion: 8
  17. m_Fog: 0
  18. m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
  19. m_FogMode: 3
  20. m_FogDensity: 0.01
  21. m_LinearFogStart: 0
  22. m_LinearFogEnd: 300
  23. m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
  24. m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
  25. m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
  26. m_AmbientIntensity: 1
  27. m_AmbientMode: 0
  28. m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
  29. m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
  30. m_HaloStrength: 0.5
  31. m_FlareStrength: 1
  32. m_FlareFadeSpeed: 3
  33. m_HaloTexture: {fileID: 0}
  34. m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
  35. m_DefaultReflectionMode: 0
  36. m_DefaultReflectionResolution: 128
  37. m_ReflectionBounces: 1
  38. m_ReflectionIntensity: 1
  39. m_CustomReflection: {fileID: 0}
  40. m_Sun: {fileID: 0}
  41. m_IndirectSpecularColor: {r: 0.4482475, g: 0.49827433, b: 0.57558244, a: 1}
  42. --- !u!157 &3
  43. LightmapSettings:
  44. m_ObjectHideFlags: 0
  45. serializedVersion: 11
  46. m_GIWorkflowMode: 0
  47. m_GISettings:
  48. serializedVersion: 2
  49. m_BounceScale: 1
  50. m_IndirectOutputScale: 1
  51. m_AlbedoBoost: 1
  52. m_TemporalCoherenceThreshold: 1
  53. m_EnvironmentLightingMode: 0
  54. m_EnableBakedLightmaps: 1
  55. m_EnableRealtimeLightmaps: 1
  56. m_LightmapEditorSettings:
  57. serializedVersion: 9
  58. m_Resolution: 2
  59. m_BakeResolution: 40
  60. m_TextureWidth: 1024
  61. m_TextureHeight: 1024
  62. m_AO: 0
  63. m_AOMaxDistance: 1
  64. m_CompAOExponent: 0
  65. m_CompAOExponentDirect: 0
  66. m_Padding: 2
  67. m_LightmapParameters: {fileID: 0}
  68. m_LightmapsBakeMode: 1
  69. m_TextureCompression: 1
  70. m_FinalGather: 0
  71. m_FinalGatherFiltering: 1
  72. m_FinalGatherRayCount: 1024
  73. m_ReflectionCompression: 2
  74. m_MixedBakeMode: 1
  75. m_BakeBackend: 0
  76. m_PVRSampling: 1
  77. m_PVRDirectSampleCount: 32
  78. m_PVRSampleCount: 500
  79. m_PVRBounces: 2
  80. m_PVRFilterTypeDirect: 0
  81. m_PVRFilterTypeIndirect: 0
  82. m_PVRFilterTypeAO: 0
  83. m_PVRFilteringMode: 0
  84. m_PVRCulling: 1
  85. m_PVRFilteringGaussRadiusDirect: 1
  86. m_PVRFilteringGaussRadiusIndirect: 5
  87. m_PVRFilteringGaussRadiusAO: 2
  88. m_PVRFilteringAtrousPositionSigmaDirect: 0.5
  89. m_PVRFilteringAtrousPositionSigmaIndirect: 2
  90. m_PVRFilteringAtrousPositionSigmaAO: 1
  91. m_ShowResolutionOverlay: 1
  92. m_LightingDataAsset: {fileID: 0}
  93. m_UseShadowmask: 0
  94. --- !u!196 &4
  95. NavMeshSettings:
  96. serializedVersion: 2
  97. m_ObjectHideFlags: 0
  98. m_BuildSettings:
  99. serializedVersion: 2
  100. agentTypeID: 0
  101. agentRadius: 0.5
  102. agentHeight: 2
  103. agentSlope: 45
  104. agentClimb: 0.4
  105. ledgeDropHeight: 0
  106. maxJumpAcrossDistance: 0
  107. minRegionArea: 2
  108. manualCellSize: 0
  109. cellSize: 0.16666667
  110. manualTileSize: 0
  111. tileSize: 256
  112. accuratePlacement: 0
  113. debug:
  114. m_Flags: 0
  115. m_NavMeshData: {fileID: 0}
  116. --- !u!1 &385559766
  117. GameObject:
  118. m_ObjectHideFlags: 0
  119. m_PrefabParentObject: {fileID: 0}
  120. m_PrefabInternal: {fileID: 0}
  121. serializedVersion: 5
  122. m_Component:
  123. - component: {fileID: 385559770}
  124. - component: {fileID: 385559767}
  125. m_Layer: 0
  126. m_Name: EventSystem
  127. m_TagString: Untagged
  128. m_Icon: {fileID: 0}
  129. m_NavMeshLayer: 0
  130. m_StaticEditorFlags: 0
  131. m_IsActive: 1
  132. --- !u!114 &385559767
  133. MonoBehaviour:
  134. m_ObjectHideFlags: 0
  135. m_PrefabParentObject: {fileID: 0}
  136. m_PrefabInternal: {fileID: 0}
  137. m_GameObject: {fileID: 385559766}
  138. m_Enabled: 1
  139. m_EditorHideFlags: 0
  140. m_Script: {fileID: 11500000, guid: 68187d3cf4c8746aaa64930f1a766a38, type: 3}
  141. m_Name:
  142. m_EditorClassIdentifier:
  143. --- !u!4 &385559770
  144. Transform:
  145. m_ObjectHideFlags: 0
  146. m_PrefabParentObject: {fileID: 0}
  147. m_PrefabInternal: {fileID: 0}
  148. m_GameObject: {fileID: 385559766}
  149. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  150. m_LocalPosition: {x: 0, y: 0, z: 0}
  151. m_LocalScale: {x: 1, y: 1, z: 1}
  152. m_Children: []
  153. m_Father: {fileID: 0}
  154. m_RootOrder: 3
  155. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  156. --- !u!1 &502488015
  157. GameObject:
  158. m_ObjectHideFlags: 0
  159. m_PrefabParentObject: {fileID: 0}
  160. m_PrefabInternal: {fileID: 0}
  161. serializedVersion: 5
  162. m_Component:
  163. - component: {fileID: 502488017}
  164. - component: {fileID: 502488016}
  165. m_Layer: 0
  166. m_Name: Directional Light
  167. m_TagString: Untagged
  168. m_Icon: {fileID: 0}
  169. m_NavMeshLayer: 0
  170. m_StaticEditorFlags: 0
  171. m_IsActive: 1
  172. --- !u!108 &502488016
  173. Light:
  174. m_ObjectHideFlags: 0
  175. m_PrefabParentObject: {fileID: 0}
  176. m_PrefabInternal: {fileID: 0}
  177. m_GameObject: {fileID: 502488015}
  178. m_Enabled: 1
  179. serializedVersion: 8
  180. m_Type: 1
  181. m_Color: {r: 1, g: 1, b: 1, a: 1}
  182. m_Intensity: 0.75
  183. m_Range: 10
  184. m_SpotAngle: 30
  185. m_CookieSize: 10
  186. m_Shadows:
  187. m_Type: 2
  188. m_Resolution: -1
  189. m_CustomResolution: -1
  190. m_Strength: 1
  191. m_Bias: 0.05
  192. m_NormalBias: 0.4
  193. m_NearPlane: 0.2
  194. m_Cookie: {fileID: 0}
  195. m_DrawHalo: 0
  196. m_Flare: {fileID: 0}
  197. m_RenderMode: 0
  198. m_CullingMask:
  199. serializedVersion: 2
  200. m_Bits: 4294967295
  201. m_Lightmapping: 4
  202. m_AreaSize: {x: 1, y: 1}
  203. m_BounceIntensity: 1
  204. m_ColorTemperature: 6570
  205. m_UseColorTemperature: 0
  206. m_ShadowRadius: 0
  207. m_ShadowAngle: 0
  208. --- !u!4 &502488017
  209. Transform:
  210. m_ObjectHideFlags: 0
  211. m_PrefabParentObject: {fileID: 0}
  212. m_PrefabInternal: {fileID: 0}
  213. m_GameObject: {fileID: 502488015}
  214. m_LocalRotation: {x: 0.5609856, y: -0.43045935, z: -0.09229592, w: 0.7010574}
  215. m_LocalPosition: {x: 0, y: 3, z: 0}
  216. m_LocalScale: {x: 1, y: 1, z: 1}
  217. m_Children: []
  218. m_Father: {fileID: 0}
  219. m_RootOrder: 1
  220. m_LocalEulerAnglesHint: {x: 45, y: -90, z: -60}
  221. --- !u!1 &523789977
  222. GameObject:
  223. m_ObjectHideFlags: 0
  224. m_PrefabParentObject: {fileID: 0}
  225. m_PrefabInternal: {fileID: 0}
  226. serializedVersion: 5
  227. m_Component:
  228. - component: {fileID: 523789982}
  229. - component: {fileID: 523789981}
  230. - component: {fileID: 523789979}
  231. - component: {fileID: 523789978}
  232. m_Layer: 0
  233. m_Name: Main Camera
  234. m_TagString: MainCamera
  235. m_Icon: {fileID: 0}
  236. m_NavMeshLayer: 0
  237. m_StaticEditorFlags: 0
  238. m_IsActive: 1
  239. --- !u!81 &523789978
  240. AudioListener:
  241. m_ObjectHideFlags: 0
  242. m_PrefabParentObject: {fileID: 0}
  243. m_PrefabInternal: {fileID: 0}
  244. m_GameObject: {fileID: 523789977}
  245. m_Enabled: 1
  246. --- !u!124 &523789979
  247. Behaviour:
  248. m_ObjectHideFlags: 0
  249. m_PrefabParentObject: {fileID: 0}
  250. m_PrefabInternal: {fileID: 0}
  251. m_GameObject: {fileID: 523789977}
  252. m_Enabled: 1
  253. --- !u!20 &523789981
  254. Camera:
  255. m_ObjectHideFlags: 0
  256. m_PrefabParentObject: {fileID: 0}
  257. m_PrefabInternal: {fileID: 0}
  258. m_GameObject: {fileID: 523789977}
  259. m_Enabled: 1
  260. serializedVersion: 2
  261. m_ClearFlags: 2
  262. m_BackGroundColor: {r: 0.11764706, g: 0.11764706, b: 0.1764706, a: 0}
  263. m_NormalizedViewPortRect:
  264. serializedVersion: 2
  265. x: 0
  266. y: 0
  267. width: 1
  268. height: 1
  269. near clip plane: 0.3
  270. far clip plane: 1000
  271. field of view: 60
  272. orthographic: 1
  273. orthographic size: 80
  274. m_Depth: -1
  275. m_CullingMask:
  276. serializedVersion: 2
  277. m_Bits: 4294967295
  278. m_RenderingPath: -1
  279. m_TargetTexture: {fileID: 0}
  280. m_TargetDisplay: 0
  281. m_TargetEye: 3
  282. m_HDR: 0
  283. m_AllowMSAA: 1
  284. m_AllowDynamicResolution: 0
  285. m_ForceIntoRT: 0
  286. m_OcclusionCulling: 1
  287. m_StereoConvergence: 10
  288. m_StereoSeparation: 0.022
  289. --- !u!4 &523789982
  290. Transform:
  291. m_ObjectHideFlags: 0
  292. m_PrefabParentObject: {fileID: 0}
  293. m_PrefabInternal: {fileID: 0}
  294. m_GameObject: {fileID: 523789977}
  295. m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
  296. m_LocalPosition: {x: 0, y: 20, z: 0}
  297. m_LocalScale: {x: 1, y: 1, z: 1}
  298. m_Children: []
  299. m_Father: {fileID: 0}
  300. m_RootOrder: 0
  301. m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
  302. --- !u!1 &601629550
  303. GameObject:
  304. m_ObjectHideFlags: 0
  305. m_PrefabParentObject: {fileID: 0}
  306. m_PrefabInternal: {fileID: 0}
  307. serializedVersion: 5
  308. m_Component:
  309. - component: {fileID: 601629551}
  310. - component: {fileID: 601629553}
  311. - component: {fileID: 601629552}
  312. m_Layer: 5
  313. m_Name: InfoText
  314. m_TagString: Untagged
  315. m_Icon: {fileID: 0}
  316. m_NavMeshLayer: 0
  317. m_StaticEditorFlags: 0
  318. m_IsActive: 1
  319. --- !u!224 &601629551
  320. RectTransform:
  321. m_ObjectHideFlags: 0
  322. m_PrefabParentObject: {fileID: 0}
  323. m_PrefabInternal: {fileID: 0}
  324. m_GameObject: {fileID: 601629550}
  325. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  326. m_LocalPosition: {x: 0, y: 0, z: 0}
  327. m_LocalScale: {x: 1, y: 1, z: 1}
  328. m_Children: []
  329. m_Father: {fileID: 2024847293}
  330. m_RootOrder: 0
  331. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  332. m_AnchorMin: {x: 0.5, y: 0.5}
  333. m_AnchorMax: {x: 0.5, y: 0.5}
  334. m_AnchoredPosition: {x: 0, y: 0}
  335. m_SizeDelta: {x: 800, y: 100}
  336. m_Pivot: {x: 0.5, y: 0.5}
  337. --- !u!114 &601629552
  338. MonoBehaviour:
  339. m_ObjectHideFlags: 0
  340. m_PrefabParentObject: {fileID: 0}
  341. m_PrefabInternal: {fileID: 0}
  342. m_GameObject: {fileID: 601629550}
  343. m_Enabled: 1
  344. m_EditorHideFlags: 0
  345. m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  346. m_Name:
  347. m_EditorClassIdentifier:
  348. m_Material: {fileID: 0}
  349. m_Color: {r: 1, g: 1, b: 1, a: 1}
  350. m_RaycastTarget: 1
  351. m_OnCullStateChanged:
  352. m_PersistentCalls:
  353. m_Calls: []
  354. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  355. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  356. m_FontData:
  357. m_Font: {fileID: 12800000, guid: 495c9e2a934bcc640a8d7427b13cb680, type: 3}
  358. m_FontSize: 24
  359. m_FontStyle: 0
  360. m_BestFit: 0
  361. m_MinSize: 2
  362. m_MaxSize: 40
  363. m_Alignment: 4
  364. m_AlignByGeometry: 0
  365. m_RichText: 1
  366. m_HorizontalOverflow: 0
  367. m_VerticalOverflow: 0
  368. m_LineSpacing: 1
  369. m_Text:
  370. --- !u!222 &601629553
  371. CanvasRenderer:
  372. m_ObjectHideFlags: 0
  373. m_PrefabParentObject: {fileID: 0}
  374. m_PrefabInternal: {fileID: 0}
  375. m_GameObject: {fileID: 601629550}
  376. --- !u!1 &964925485
  377. GameObject:
  378. m_ObjectHideFlags: 0
  379. m_PrefabParentObject: {fileID: 0}
  380. m_PrefabInternal: {fileID: 0}
  381. serializedVersion: 5
  382. m_Component:
  383. - component: {fileID: 964925486}
  384. - component: {fileID: 964925487}
  385. - component: {fileID: 964925488}
  386. - component: {fileID: 964925489}
  387. m_Layer: 0
  388. m_Name: GameManager
  389. m_TagString: Untagged
  390. m_Icon: {fileID: 0}
  391. m_NavMeshLayer: 0
  392. m_StaticEditorFlags: 0
  393. m_IsActive: 1
  394. --- !u!4 &964925486
  395. Transform:
  396. m_ObjectHideFlags: 0
  397. m_PrefabParentObject: {fileID: 0}
  398. m_PrefabInternal: {fileID: 0}
  399. m_GameObject: {fileID: 964925485}
  400. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  401. m_LocalPosition: {x: 0, y: 0, z: 0}
  402. m_LocalScale: {x: 1, y: 1, z: 1}
  403. m_Children: []
  404. m_Father: {fileID: 0}
  405. m_RootOrder: 4
  406. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  407. --- !u!114 &964925487
  408. MonoBehaviour:
  409. m_ObjectHideFlags: 0
  410. m_PrefabParentObject: {fileID: 0}
  411. m_PrefabInternal: {fileID: 0}
  412. m_GameObject: {fileID: 964925485}
  413. m_Enabled: 1
  414. m_EditorHideFlags: 0
  415. m_Script: {fileID: 11500000, guid: 86aba39379844aa428b0d3c0a3d92534, type: 3}
  416. m_Name:
  417. m_EditorClassIdentifier:
  418. InfoText: {fileID: 601629552}
  419. AsteroidPrefabs:
  420. - {fileID: 151774, guid: 18a79aea49b60d342b7a672b7a34edbe, type: 2}
  421. - {fileID: 140850, guid: 15f43343ba0a60e47a63d28496373c3f, type: 2}
  422. --- !u!114 &964925488
  423. MonoBehaviour:
  424. m_ObjectHideFlags: 0
  425. m_PrefabParentObject: {fileID: 0}
  426. m_PrefabInternal: {fileID: 0}
  427. m_GameObject: {fileID: 964925485}
  428. m_Enabled: 1
  429. m_EditorHideFlags: 0
  430. m_Script: {fileID: 11500000, guid: b579f4077cd5953489882224d803b137, type: 3}
  431. m_Name:
  432. m_EditorClassIdentifier:
  433. PlayerOverviewEntryPrefab: {fileID: 168392, guid: f03d1c686a26a1d4da99a4186b0bb1ab,
  434. type: 2}
  435. --- !u!114 &964925489
  436. MonoBehaviour:
  437. m_ObjectHideFlags: 0
  438. m_PrefabParentObject: {fileID: 0}
  439. m_PrefabInternal: {fileID: 0}
  440. m_GameObject: {fileID: 964925485}
  441. m_Enabled: 1
  442. m_EditorHideFlags: 0
  443. m_Script: {fileID: 11500000, guid: ffc398cf76e6d458caf303b5fceea504, type: 3}
  444. m_Name:
  445. m_EditorClassIdentifier:
  446. Countdown: 5
  447. Text: {fileID: 601629552}
  448. --- !u!1 &1363212416
  449. GameObject:
  450. m_ObjectHideFlags: 0
  451. m_PrefabParentObject: {fileID: 0}
  452. m_PrefabInternal: {fileID: 0}
  453. serializedVersion: 5
  454. m_Component:
  455. - component: {fileID: 1363212417}
  456. - component: {fileID: 1363212420}
  457. - component: {fileID: 1363212419}
  458. - component: {fileID: 1363212418}
  459. m_Layer: 5
  460. m_Name: PlayerOverviewPanel
  461. m_TagString: Untagged
  462. m_Icon: {fileID: 0}
  463. m_NavMeshLayer: 0
  464. m_StaticEditorFlags: 0
  465. m_IsActive: 1
  466. --- !u!224 &1363212417
  467. RectTransform:
  468. m_ObjectHideFlags: 0
  469. m_PrefabParentObject: {fileID: 0}
  470. m_PrefabInternal: {fileID: 0}
  471. m_GameObject: {fileID: 1363212416}
  472. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  473. m_LocalPosition: {x: 0, y: 0, z: 0}
  474. m_LocalScale: {x: 1, y: 1, z: 1}
  475. m_Children: []
  476. m_Father: {fileID: 2024847293}
  477. m_RootOrder: 1
  478. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  479. m_AnchorMin: {x: 0, y: 1}
  480. m_AnchorMax: {x: 1, y: 1}
  481. m_AnchoredPosition: {x: 0, y: -100}
  482. m_SizeDelta: {x: 0, y: 200}
  483. m_Pivot: {x: 0.5, y: 0.5}
  484. --- !u!114 &1363212418
  485. MonoBehaviour:
  486. m_ObjectHideFlags: 0
  487. m_PrefabParentObject: {fileID: 0}
  488. m_PrefabInternal: {fileID: 0}
  489. m_GameObject: {fileID: 1363212416}
  490. m_Enabled: 1
  491. m_EditorHideFlags: 0
  492. m_Script: {fileID: 11500000, guid: b579f4077cd5953489882224d803b137, type: 3}
  493. m_Name:
  494. m_EditorClassIdentifier:
  495. PlayerOverviewEntryPrefab: {fileID: 168392, guid: f03d1c686a26a1d4da99a4186b0bb1ab,
  496. type: 2}
  497. --- !u!114 &1363212419
  498. MonoBehaviour:
  499. m_ObjectHideFlags: 0
  500. m_PrefabParentObject: {fileID: 0}
  501. m_PrefabInternal: {fileID: 0}
  502. m_GameObject: {fileID: 1363212416}
  503. m_Enabled: 1
  504. m_EditorHideFlags: 0
  505. m_Script: {fileID: -2095666955, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  506. m_Name:
  507. m_EditorClassIdentifier:
  508. m_Padding:
  509. m_Left: 10
  510. m_Right: 10
  511. m_Top: 10
  512. m_Bottom: 10
  513. m_ChildAlignment: 4
  514. m_StartCorner: 0
  515. m_StartAxis: 1
  516. m_CellSize: {x: 250, y: 150}
  517. m_Spacing: {x: 0, y: 0}
  518. m_Constraint: 0
  519. m_ConstraintCount: 2
  520. --- !u!222 &1363212420
  521. CanvasRenderer:
  522. m_ObjectHideFlags: 0
  523. m_PrefabParentObject: {fileID: 0}
  524. m_PrefabInternal: {fileID: 0}
  525. m_GameObject: {fileID: 1363212416}
  526. --- !u!1 &1638220037
  527. GameObject:
  528. m_ObjectHideFlags: 0
  529. m_PrefabParentObject: {fileID: 0}
  530. m_PrefabInternal: {fileID: 0}
  531. serializedVersion: 5
  532. m_Component:
  533. - component: {fileID: 1638220040}
  534. - component: {fileID: 1638220039}
  535. - component: {fileID: 1638220038}
  536. m_Layer: 0
  537. m_Name: StarField
  538. m_TagString: Untagged
  539. m_Icon: {fileID: 0}
  540. m_NavMeshLayer: 0
  541. m_StaticEditorFlags: 0
  542. m_IsActive: 1
  543. --- !u!199 &1638220038
  544. ParticleSystemRenderer:
  545. serializedVersion: 4
  546. m_ObjectHideFlags: 0
  547. m_PrefabParentObject: {fileID: 0}
  548. m_PrefabInternal: {fileID: 0}
  549. m_GameObject: {fileID: 1638220037}
  550. m_Enabled: 1
  551. m_CastShadows: 1
  552. m_ReceiveShadows: 1
  553. m_DynamicOccludee: 1
  554. m_MotionVectors: 1
  555. m_LightProbeUsage: 1
  556. m_ReflectionProbeUsage: 0
  557. m_Materials:
  558. - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
  559. - {fileID: 0}
  560. m_StaticBatchInfo:
  561. firstSubMesh: 0
  562. subMeshCount: 0
  563. m_StaticBatchRoot: {fileID: 0}
  564. m_ProbeAnchor: {fileID: 0}
  565. m_LightProbeVolumeOverride: {fileID: 0}
  566. m_ScaleInLightmap: 1
  567. m_PreserveUVs: 0
  568. m_IgnoreNormalsForChartDetection: 0
  569. m_ImportantGI: 0
  570. m_StitchLightmapSeams: 0
  571. m_SelectedEditorRenderState: 3
  572. m_MinimumChartSize: 4
  573. m_AutoUVMaxDistance: 0.5
  574. m_AutoUVMaxAngle: 89
  575. m_LightmapParameters: {fileID: 0}
  576. m_SortingLayerID: 0
  577. m_SortingLayer: 0
  578. m_SortingOrder: 0
  579. m_RenderMode: 0
  580. m_SortMode: 0
  581. m_MinParticleSize: 0
  582. m_MaxParticleSize: 0.5
  583. m_CameraVelocityScale: 0
  584. m_VelocityScale: 0
  585. m_LengthScale: 2
  586. m_SortingFudge: 0
  587. m_NormalDirection: 1
  588. m_RenderAlignment: 0
  589. m_Pivot: {x: 0, y: 0, z: 0}
  590. m_UseCustomVertexStreams: 0
  591. m_VertexStreams: 0001030405
  592. m_Mesh: {fileID: 0}
  593. m_Mesh1: {fileID: 0}
  594. m_Mesh2: {fileID: 0}
  595. m_Mesh3: {fileID: 0}
  596. m_MaskInteraction: 0
  597. --- !u!198 &1638220039
  598. ParticleSystem:
  599. m_ObjectHideFlags: 0
  600. m_PrefabParentObject: {fileID: 0}
  601. m_PrefabInternal: {fileID: 0}
  602. m_GameObject: {fileID: 1638220037}
  603. serializedVersion: 5
  604. lengthInSec: 999
  605. simulationSpeed: 1
  606. stopAction: 0
  607. looping: 1
  608. prewarm: 1
  609. playOnAwake: 1
  610. useUnscaledTime: 0
  611. autoRandomSeed: 1
  612. useRigidbodyForVelocity: 1
  613. startDelay:
  614. serializedVersion: 2
  615. minMaxState: 0
  616. scalar: 0
  617. minScalar: 0
  618. maxCurve:
  619. serializedVersion: 2
  620. m_Curve:
  621. - serializedVersion: 2
  622. time: 0
  623. value: 0
  624. inSlope: 0
  625. outSlope: 0
  626. tangentMode: 0
  627. - serializedVersion: 2
  628. time: 1
  629. value: 0
  630. inSlope: 0
  631. outSlope: 0
  632. tangentMode: 0
  633. m_PreInfinity: 2
  634. m_PostInfinity: 2
  635. m_RotationOrder: 4
  636. minCurve:
  637. serializedVersion: 2
  638. m_Curve:
  639. - serializedVersion: 2
  640. time: 0
  641. value: 0
  642. inSlope: 0
  643. outSlope: 0
  644. tangentMode: 0
  645. - serializedVersion: 2
  646. time: 1
  647. value: 0
  648. inSlope: 0
  649. outSlope: 0
  650. tangentMode: 0
  651. m_PreInfinity: 2
  652. m_PostInfinity: 2
  653. m_RotationOrder: 4
  654. moveWithTransform: 0
  655. moveWithCustomTransform: {fileID: 0}
  656. scalingMode: 2
  657. randomSeed: 0
  658. InitialModule:
  659. serializedVersion: 3
  660. enabled: 1
  661. startLifetime:
  662. serializedVersion: 2
  663. minMaxState: 0
  664. scalar: 20
  665. minScalar: 5
  666. maxCurve:
  667. serializedVersion: 2
  668. m_Curve:
  669. - serializedVersion: 2
  670. time: 0
  671. value: 1
  672. inSlope: 0
  673. outSlope: 0
  674. tangentMode: 0
  675. - serializedVersion: 2
  676. time: 1
  677. value: 1
  678. inSlope: 0
  679. outSlope: 0
  680. tangentMode: 0
  681. m_PreInfinity: 2
  682. m_PostInfinity: 2
  683. m_RotationOrder: 4
  684. minCurve:
  685. serializedVersion: 2
  686. m_Curve:
  687. - serializedVersion: 2
  688. time: 0
  689. value: 0
  690. inSlope: 0
  691. outSlope: 0
  692. tangentMode: 0
  693. - serializedVersion: 2
  694. time: 1
  695. value: 0
  696. inSlope: 0
  697. outSlope: 0
  698. tangentMode: 0
  699. m_PreInfinity: 2
  700. m_PostInfinity: 2
  701. m_RotationOrder: 4
  702. startSpeed:
  703. serializedVersion: 2
  704. minMaxState: 0
  705. scalar: 1
  706. minScalar: 5
  707. maxCurve:
  708. serializedVersion: 2
  709. m_Curve:
  710. - serializedVersion: 2
  711. time: 0
  712. value: 1
  713. inSlope: 0
  714. outSlope: 0
  715. tangentMode: 0
  716. - serializedVersion: 2
  717. time: 1
  718. value: 1
  719. inSlope: 0
  720. outSlope: 0
  721. tangentMode: 0
  722. m_PreInfinity: 2
  723. m_PostInfinity: 2
  724. m_RotationOrder: 4
  725. minCurve:
  726. serializedVersion: 2
  727. m_Curve:
  728. - serializedVersion: 2
  729. time: 0
  730. value: 0
  731. inSlope: 0
  732. outSlope: 0
  733. tangentMode: 0
  734. - serializedVersion: 2
  735. time: 1
  736. value: 0
  737. inSlope: 0
  738. outSlope: 0
  739. tangentMode: 0
  740. m_PreInfinity: 2
  741. m_PostInfinity: 2
  742. m_RotationOrder: 4
  743. startColor:
  744. serializedVersion: 2
  745. minMaxState: 2
  746. minColor: {r: 0.8745098, g: 0.99607843, b: 1, a: 1}
  747. maxColor: {r: 1, g: 0.99215686, b: 0.7647059, a: 1}
  748. maxGradient:
  749. serializedVersion: 2
  750. key0: {r: 1, g: 1, b: 1, a: 1}
  751. key1: {r: 1, g: 1, b: 1, a: 1}
  752. key2: {r: 0, g: 0, b: 0, a: 0}
  753. key3: {r: 0, g: 0, b: 0, a: 0}
  754. key4: {r: 0, g: 0, b: 0, a: 0}
  755. key5: {r: 0, g: 0, b: 0, a: 0}
  756. key6: {r: 0, g: 0, b: 0, a: 0}
  757. key7: {r: 0, g: 0, b: 0, a: 0}
  758. ctime0: 0
  759. ctime1: 65535
  760. ctime2: 0
  761. ctime3: 0
  762. ctime4: 0
  763. ctime5: 0
  764. ctime6: 0
  765. ctime7: 0
  766. atime0: 0
  767. atime1: 65535
  768. atime2: 0
  769. atime3: 0
  770. atime4: 0
  771. atime5: 0
  772. atime6: 0
  773. atime7: 0
  774. m_Mode: 0
  775. m_NumColorKeys: 2
  776. m_NumAlphaKeys: 2
  777. minGradient:
  778. serializedVersion: 2
  779. key0: {r: 1, g: 1, b: 1, a: 1}
  780. key1: {r: 1, g: 1, b: 1, a: 1}
  781. key2: {r: 0, g: 0, b: 0, a: 0}
  782. key3: {r: 0, g: 0, b: 0, a: 0}
  783. key4: {r: 0, g: 0, b: 0, a: 0}
  784. key5: {r: 0, g: 0, b: 0, a: 0}
  785. key6: {r: 0, g: 0, b: 0, a: 0}
  786. key7: {r: 0, g: 0, b: 0, a: 0}
  787. ctime0: 0
  788. ctime1: 65535
  789. ctime2: 0
  790. ctime3: 0
  791. ctime4: 0
  792. ctime5: 0
  793. ctime6: 0
  794. ctime7: 0
  795. atime0: 0
  796. atime1: 65535
  797. atime2: 0
  798. atime3: 0
  799. atime4: 0
  800. atime5: 0
  801. atime6: 0
  802. atime7: 0
  803. m_Mode: 0
  804. m_NumColorKeys: 2
  805. m_NumAlphaKeys: 2
  806. startSize:
  807. serializedVersion: 2
  808. minMaxState: 3
  809. scalar: 3
  810. minScalar: 0.10000001
  811. maxCurve:
  812. serializedVersion: 2
  813. m_Curve:
  814. - serializedVersion: 2
  815. time: 0
  816. value: 1
  817. inSlope: 0
  818. outSlope: 0
  819. tangentMode: 0
  820. m_PreInfinity: 2
  821. m_PostInfinity: 2
  822. m_RotationOrder: 0
  823. minCurve:
  824. serializedVersion: 2
  825. m_Curve:
  826. - serializedVersion: 2
  827. time: 0
  828. value: 0.033333335
  829. inSlope: 0
  830. outSlope: 0
  831. tangentMode: 0
  832. m_PreInfinity: 2
  833. m_PostInfinity: 2
  834. m_RotationOrder: 0
  835. startSizeY:
  836. serializedVersion: 2
  837. minMaxState: 3
  838. scalar: 1
  839. minScalar: 1
  840. maxCurve:
  841. serializedVersion: 2
  842. m_Curve:
  843. - serializedVersion: 2
  844. time: 0
  845. value: 1
  846. inSlope: 0
  847. outSlope: 0
  848. tangentMode: 0
  849. - serializedVersion: 2
  850. time: 1
  851. value: 1
  852. inSlope: 0
  853. outSlope: 0
  854. tangentMode: 0
  855. m_PreInfinity: 2
  856. m_PostInfinity: 2
  857. m_RotationOrder: 4
  858. minCurve:
  859. serializedVersion: 2
  860. m_Curve:
  861. - serializedVersion: 2
  862. time: 0
  863. value: 1
  864. inSlope: 0
  865. outSlope: 0
  866. tangentMode: 0
  867. - serializedVersion: 2
  868. time: 1
  869. value: 1
  870. inSlope: 0
  871. outSlope: 0
  872. tangentMode: 0
  873. m_PreInfinity: 2
  874. m_PostInfinity: 2
  875. m_RotationOrder: 4
  876. startSizeZ:
  877. serializedVersion: 2
  878. minMaxState: 3
  879. scalar: 1
  880. minScalar: 1
  881. maxCurve:
  882. serializedVersion: 2
  883. m_Curve:
  884. - serializedVersion: 2
  885. time: 0
  886. value: 1
  887. inSlope: 0
  888. outSlope: 0
  889. tangentMode: 0
  890. - serializedVersion: 2
  891. time: 1
  892. value: 1
  893. inSlope: 0
  894. outSlope: 0
  895. tangentMode: 0
  896. m_PreInfinity: 2
  897. m_PostInfinity: 2
  898. m_RotationOrder: 4
  899. minCurve:
  900. serializedVersion: 2
  901. m_Curve:
  902. - serializedVersion: 2
  903. time: 0
  904. value: 1
  905. inSlope: 0
  906. outSlope: 0
  907. tangentMode: 0
  908. - serializedVersion: 2
  909. time: 1
  910. value: 1
  911. inSlope: 0
  912. outSlope: 0
  913. tangentMode: 0
  914. m_PreInfinity: 2
  915. m_PostInfinity: 2
  916. m_RotationOrder: 4
  917. startRotationX:
  918. serializedVersion: 2
  919. minMaxState: 0
  920. scalar: 0
  921. minScalar: 0
  922. maxCurve:
  923. serializedVersion: 2
  924. m_Curve:
  925. - serializedVersion: 2
  926. time: 0
  927. value: 1
  928. inSlope: 0
  929. outSlope: 0
  930. tangentMode: 0
  931. - serializedVersion: 2
  932. time: 1
  933. value: 1
  934. inSlope: 0
  935. outSlope: 0
  936. tangentMode: 0
  937. m_PreInfinity: 2
  938. m_PostInfinity: 2
  939. m_RotationOrder: 4
  940. minCurve:
  941. serializedVersion: 2
  942. m_Curve:
  943. - serializedVersion: 2
  944. time: 0
  945. value: 0
  946. inSlope: 0
  947. outSlope: 0
  948. tangentMode: 0
  949. - serializedVersion: 2
  950. time: 1
  951. value: 0
  952. inSlope: 0
  953. outSlope: 0
  954. tangentMode: 0
  955. m_PreInfinity: 2
  956. m_PostInfinity: 2
  957. m_RotationOrder: 4
  958. startRotationY:
  959. serializedVersion: 2
  960. minMaxState: 0
  961. scalar: 0
  962. minScalar: 0
  963. maxCurve:
  964. serializedVersion: 2
  965. m_Curve:
  966. - serializedVersion: 2
  967. time: 0
  968. value: 1
  969. inSlope: 0
  970. outSlope: 0
  971. tangentMode: 0
  972. - serializedVersion: 2
  973. time: 1
  974. value: 1
  975. inSlope: 0
  976. outSlope: 0
  977. tangentMode: 0
  978. m_PreInfinity: 2
  979. m_PostInfinity: 2
  980. m_RotationOrder: 4
  981. minCurve:
  982. serializedVersion: 2
  983. m_Curve:
  984. - serializedVersion: 2
  985. time: 0
  986. value: 0
  987. inSlope: 0
  988. outSlope: 0
  989. tangentMode: 0
  990. - serializedVersion: 2
  991. time: 1
  992. value: 0
  993. inSlope: 0
  994. outSlope: 0
  995. tangentMode: 0
  996. m_PreInfinity: 2
  997. m_PostInfinity: 2
  998. m_RotationOrder: 4
  999. startRotation:
  1000. serializedVersion: 2
  1001. minMaxState: 0
  1002. scalar: 0
  1003. minScalar: 0
  1004. maxCurve:
  1005. serializedVersion: 2
  1006. m_Curve:
  1007. - serializedVersion: 2
  1008. time: 0
  1009. value: 1
  1010. inSlope: 0
  1011. outSlope: 0
  1012. tangentMode: 0
  1013. - serializedVersion: 2
  1014. time: 1
  1015. value: 1
  1016. inSlope: 0
  1017. outSlope: 0
  1018. tangentMode: 0
  1019. m_PreInfinity: 2
  1020. m_PostInfinity: 2
  1021. m_RotationOrder: 4
  1022. minCurve:
  1023. serializedVersion: 2
  1024. m_Curve:
  1025. - serializedVersion: 2
  1026. time: 0
  1027. value: 0
  1028. inSlope: 0
  1029. outSlope: 0
  1030. tangentMode: 0
  1031. - serializedVersion: 2
  1032. time: 1
  1033. value: 0
  1034. inSlope: 0
  1035. outSlope: 0
  1036. tangentMode: 0
  1037. m_PreInfinity: 2
  1038. m_PostInfinity: 2
  1039. m_RotationOrder: 4
  1040. randomizeRotationDirection: 0
  1041. maxNumParticles: 500
  1042. size3D: 0
  1043. rotation3D: 0
  1044. gravityModifier:
  1045. serializedVersion: 2
  1046. minMaxState: 0
  1047. scalar: 0
  1048. minScalar: 0
  1049. maxCurve:
  1050. serializedVersion: 2
  1051. m_Curve:
  1052. - serializedVersion: 2
  1053. time: 0
  1054. value: 0
  1055. inSlope: 0
  1056. outSlope: 0
  1057. tangentMode: 0
  1058. - serializedVersion: 2
  1059. time: 1
  1060. value: 0
  1061. inSlope: 0
  1062. outSlope: 0
  1063. tangentMode: 0
  1064. m_PreInfinity: 2
  1065. m_PostInfinity: 2
  1066. m_RotationOrder: 4
  1067. minCurve:
  1068. serializedVersion: 2
  1069. m_Curve:
  1070. - serializedVersion: 2
  1071. time: 0
  1072. value: 0
  1073. inSlope: 0
  1074. outSlope: 0
  1075. tangentMode: 0
  1076. - serializedVersion: 2
  1077. time: 1
  1078. value: 0
  1079. inSlope: 0
  1080. outSlope: 0
  1081. tangentMode: 0
  1082. m_PreInfinity: 2
  1083. m_PostInfinity: 2
  1084. m_RotationOrder: 4
  1085. ShapeModule:
  1086. serializedVersion: 5
  1087. enabled: 1
  1088. type: 5
  1089. angle: 25
  1090. length: 5
  1091. boxThickness: {x: 0, y: 0, z: 0}
  1092. radiusThickness: 1
  1093. donutRadius: 0.2
  1094. m_Position: {x: 0, y: 0, z: 0}
  1095. m_Rotation: {x: 0, y: 0, z: 0}
  1096. m_Scale: {x: 300, y: 200, z: 1}
  1097. placementMode: 0
  1098. m_MeshMaterialIndex: 0
  1099. m_MeshNormalOffset: 0
  1100. m_Mesh: {fileID: 0}
  1101. m_MeshRenderer: {fileID: 0}
  1102. m_SkinnedMeshRenderer: {fileID: 0}
  1103. m_UseMeshMaterialIndex: 0
  1104. m_UseMeshColors: 1
  1105. alignToDirection: 0
  1106. randomDirectionAmount: 0
  1107. sphericalDirectionAmount: 0
  1108. randomPositionAmount: 0
  1109. radius:
  1110. value: 1
  1111. mode: 0
  1112. spread: 0
  1113. speed:
  1114. serializedVersion: 2
  1115. minMaxState: 0
  1116. scalar: 1
  1117. minScalar: 1
  1118. maxCurve:
  1119. serializedVersion: 2
  1120. m_Curve:
  1121. - serializedVersion: 2
  1122. time: 0
  1123. value: 1
  1124. inSlope: 0
  1125. outSlope: 0
  1126. tangentMode: 0
  1127. - serializedVersion: 2
  1128. time: 1
  1129. value: 1
  1130. inSlope: 0
  1131. outSlope: 0
  1132. tangentMode: 0
  1133. m_PreInfinity: 2
  1134. m_PostInfinity: 2
  1135. m_RotationOrder: 4
  1136. minCurve:
  1137. serializedVersion: 2
  1138. m_Curve:
  1139. - serializedVersion: 2
  1140. time: 0
  1141. value: 1
  1142. inSlope: 0
  1143. outSlope: 0
  1144. tangentMode: 0
  1145. - serializedVersion: 2
  1146. time: 1
  1147. value: 1
  1148. inSlope: 0
  1149. outSlope: 0
  1150. tangentMode: 0
  1151. m_PreInfinity: 2
  1152. m_PostInfinity: 2
  1153. m_RotationOrder: 4
  1154. arc:
  1155. value: 360
  1156. mode: 0
  1157. spread: 0
  1158. speed:
  1159. serializedVersion: 2
  1160. minMaxState: 0
  1161. scalar: 1
  1162. minScalar: 1
  1163. maxCurve:
  1164. serializedVersion: 2
  1165. m_Curve:
  1166. - serializedVersion: 2
  1167. time: 0
  1168. value: 1
  1169. inSlope: 0
  1170. outSlope: 0
  1171. tangentMode: 0
  1172. - serializedVersion: 2
  1173. time: 1
  1174. value: 1
  1175. inSlope: 0
  1176. outSlope: 0
  1177. tangentMode: 0
  1178. m_PreInfinity: 2
  1179. m_PostInfinity: 2
  1180. m_RotationOrder: 4
  1181. minCurve:
  1182. serializedVersion: 2
  1183. m_Curve:
  1184. - serializedVersion: 2
  1185. time: 0
  1186. value: 1
  1187. inSlope: 0
  1188. outSlope: 0
  1189. tangentMode: 0
  1190. - serializedVersion: 2
  1191. time: 1
  1192. value: 1
  1193. inSlope: 0
  1194. outSlope: 0
  1195. tangentMode: 0
  1196. m_PreInfinity: 2
  1197. m_PostInfinity: 2
  1198. m_RotationOrder: 4
  1199. EmissionModule:
  1200. enabled: 1
  1201. serializedVersion: 4
  1202. rateOverTime:
  1203. serializedVersion: 2
  1204. minMaxState: 0
  1205. scalar: 10
  1206. minScalar: 10
  1207. maxCurve:
  1208. serializedVersion: 2
  1209. m_Curve:
  1210. - serializedVersion: 2
  1211. time: 0
  1212. value: 1
  1213. inSlope: 0
  1214. outSlope: 0
  1215. tangentMode: 0
  1216. - serializedVersion: 2
  1217. time: 1
  1218. value: 1
  1219. inSlope: 0
  1220. outSlope: 0
  1221. tangentMode: 0
  1222. m_PreInfinity: 2
  1223. m_PostInfinity: 2
  1224. m_RotationOrder: 4
  1225. minCurve:
  1226. serializedVersion: 2
  1227. m_Curve:
  1228. - serializedVersion: 2
  1229. time: 0
  1230. value: 0
  1231. inSlope: 0
  1232. outSlope: 0
  1233. tangentMode: 0
  1234. - serializedVersion: 2
  1235. time: 1
  1236. value: 0
  1237. inSlope: 0
  1238. outSlope: 0
  1239. tangentMode: 0
  1240. m_PreInfinity: 2
  1241. m_PostInfinity: 2
  1242. m_RotationOrder: 4
  1243. rateOverDistance:
  1244. serializedVersion: 2
  1245. minMaxState: 0
  1246. scalar: 0
  1247. minScalar: 0
  1248. maxCurve:
  1249. serializedVersion: 2
  1250. m_Curve:
  1251. - serializedVersion: 2
  1252. time: 0
  1253. value: 0
  1254. inSlope: 0
  1255. outSlope: 0
  1256. tangentMode: 0
  1257. - serializedVersion: 2
  1258. time: 1
  1259. value: 0
  1260. inSlope: 0
  1261. outSlope: 0
  1262. tangentMode: 0
  1263. m_PreInfinity: 2
  1264. m_PostInfinity: 2
  1265. m_RotationOrder: 4
  1266. minCurve:
  1267. serializedVersion: 2
  1268. m_Curve:
  1269. - serializedVersion: 2
  1270. time: 0
  1271. value: 0
  1272. inSlope: 0
  1273. outSlope: 0
  1274. tangentMode: 0
  1275. - serializedVersion: 2
  1276. time: 1
  1277. value: 0
  1278. inSlope: 0
  1279. outSlope: 0
  1280. tangentMode: 0
  1281. m_PreInfinity: 2
  1282. m_PostInfinity: 2
  1283. m_RotationOrder: 4
  1284. m_BurstCount: 0
  1285. m_Bursts: []
  1286. SizeModule:
  1287. enabled: 1
  1288. curve:
  1289. serializedVersion: 2
  1290. minMaxState: 1
  1291. scalar: 1
  1292. minScalar: 1
  1293. maxCurve:
  1294. serializedVersion: 2
  1295. m_Curve:
  1296. - serializedVersion: 2
  1297. time: 0
  1298. value: 1
  1299. inSlope: 0
  1300. outSlope: 0
  1301. tangentMode: 0
  1302. - serializedVersion: 2
  1303. time: 1
  1304. value: 0
  1305. inSlope: 0
  1306. outSlope: 0
  1307. tangentMode: 0
  1308. m_PreInfinity: 2
  1309. m_PostInfinity: 2
  1310. m_RotationOrder: 0
  1311. minCurve:
  1312. serializedVersion: 2
  1313. m_Curve:
  1314. - serializedVersion: 2
  1315. time: 0
  1316. value: 0
  1317. inSlope: 0
  1318. outSlope: 0
  1319. tangentMode: 0
  1320. - serializedVersion: 2
  1321. time: 1
  1322. value: 0
  1323. inSlope: 0
  1324. outSlope: 0
  1325. tangentMode: 0
  1326. m_PreInfinity: 2
  1327. m_PostInfinity: 2
  1328. m_RotationOrder: 4
  1329. y:
  1330. serializedVersion: 2
  1331. minMaxState: 1
  1332. scalar: 1
  1333. minScalar: 1
  1334. maxCurve:
  1335. serializedVersion: 2
  1336. m_Curve:
  1337. - serializedVersion: 2
  1338. time: 0
  1339. value: 0
  1340. inSlope: 0
  1341. outSlope: 1
  1342. tangentMode: 0
  1343. - serializedVersion: 2
  1344. time: 1
  1345. value: 1
  1346. inSlope: 1
  1347. outSlope: 0
  1348. tangentMode: 0
  1349. m_PreInfinity: 2
  1350. m_PostInfinity: 2
  1351. m_RotationOrder: 4
  1352. minCurve:
  1353. serializedVersion: 2
  1354. m_Curve:
  1355. - serializedVersion: 2
  1356. time: 0
  1357. value: 1
  1358. inSlope: 0
  1359. outSlope: 0
  1360. tangentMode: 0
  1361. - serializedVersion: 2
  1362. time: 1
  1363. value: 1
  1364. inSlope: 0
  1365. outSlope: 0
  1366. tangentMode: 0
  1367. m_PreInfinity: 2
  1368. m_PostInfinity: 2
  1369. m_RotationOrder: 4
  1370. z:
  1371. serializedVersion: 2
  1372. minMaxState: 1
  1373. scalar: 1
  1374. minScalar: 1
  1375. maxCurve:
  1376. serializedVersion: 2
  1377. m_Curve:
  1378. - serializedVersion: 2
  1379. time: 0
  1380. value: 0
  1381. inSlope: 0
  1382. outSlope: 1
  1383. tangentMode: 0
  1384. - serializedVersion: 2
  1385. time: 1
  1386. value: 1
  1387. inSlope: 1
  1388. outSlope: 0
  1389. tangentMode: 0
  1390. m_PreInfinity: 2
  1391. m_PostInfinity: 2
  1392. m_RotationOrder: 4
  1393. minCurve:
  1394. serializedVersion: 2
  1395. m_Curve:
  1396. - serializedVersion: 2
  1397. time: 0
  1398. value: 1
  1399. inSlope: 0
  1400. outSlope: 0
  1401. tangentMode: 0
  1402. - serializedVersion: 2
  1403. time: 1
  1404. value: 1
  1405. inSlope: 0
  1406. outSlope: 0
  1407. tangentMode: 0
  1408. m_PreInfinity: 2
  1409. m_PostInfinity: 2
  1410. m_RotationOrder: 4
  1411. separateAxes: 0
  1412. RotationModule:
  1413. enabled: 0
  1414. x:
  1415. serializedVersion: 2
  1416. minMaxState: 0
  1417. scalar: 0
  1418. minScalar: 0
  1419. maxCurve:
  1420. serializedVersion: 2
  1421. m_Curve:
  1422. - serializedVersion: 2
  1423. time: 0
  1424. value: 1
  1425. inSlope: 0
  1426. outSlope: 0
  1427. tangentMode: 0
  1428. - serializedVersion: 2
  1429. time: 1
  1430. value: 1
  1431. inSlope: 0
  1432. outSlope: 0
  1433. tangentMode: 0
  1434. m_PreInfinity: 2
  1435. m_PostInfinity: 2
  1436. m_RotationOrder: 4
  1437. minCurve:
  1438. serializedVersion: 2
  1439. m_Curve:
  1440. - serializedVersion: 2
  1441. time: 0
  1442. value: 0
  1443. inSlope: 0
  1444. outSlope: 0
  1445. tangentMode: 0
  1446. - serializedVersion: 2
  1447. time: 1
  1448. value: 0
  1449. inSlope: 0
  1450. outSlope: 0
  1451. tangentMode: 0
  1452. m_PreInfinity: 2
  1453. m_PostInfinity: 2
  1454. m_RotationOrder: 4
  1455. y:
  1456. serializedVersion: 2
  1457. minMaxState: 0
  1458. scalar: 0
  1459. minScalar: 0
  1460. maxCurve:
  1461. serializedVersion: 2
  1462. m_Curve:
  1463. - serializedVersion: 2
  1464. time: 0
  1465. value: 1
  1466. inSlope: 0
  1467. outSlope: 0
  1468. tangentMode: 0
  1469. - serializedVersion: 2
  1470. time: 1
  1471. value: 1
  1472. inSlope: 0
  1473. outSlope: 0
  1474. tangentMode: 0
  1475. m_PreInfinity: 2
  1476. m_PostInfinity: 2
  1477. m_RotationOrder: 4
  1478. minCurve:
  1479. serializedVersion: 2
  1480. m_Curve:
  1481. - serializedVersion: 2
  1482. time: 0
  1483. value: 0
  1484. inSlope: 0
  1485. outSlope: 0
  1486. tangentMode: 0
  1487. - serializedVersion: 2
  1488. time: 1
  1489. value: 0
  1490. inSlope: 0
  1491. outSlope: 0
  1492. tangentMode: 0
  1493. m_PreInfinity: 2
  1494. m_PostInfinity: 2
  1495. m_RotationOrder: 4
  1496. curve:
  1497. serializedVersion: 2
  1498. minMaxState: 0
  1499. scalar: 0.7853982
  1500. minScalar: 0.7853982
  1501. maxCurve:
  1502. serializedVersion: 2
  1503. m_Curve:
  1504. - serializedVersion: 2
  1505. time: 0
  1506. value: 1
  1507. inSlope: 0
  1508. outSlope: 0
  1509. tangentMode: 0
  1510. - serializedVersion: 2
  1511. time: 1
  1512. value: 1
  1513. inSlope: 0
  1514. outSlope: 0
  1515. tangentMode: 0
  1516. m_PreInfinity: 2
  1517. m_PostInfinity: 2
  1518. m_RotationOrder: 4
  1519. minCurve:
  1520. serializedVersion: 2
  1521. m_Curve:
  1522. - serializedVersion: 2
  1523. time: 0
  1524. value: 0
  1525. inSlope: 0
  1526. outSlope: 0
  1527. tangentMode: 0
  1528. - serializedVersion: 2
  1529. time: 1
  1530. value: 0
  1531. inSlope: 0
  1532. outSlope: 0
  1533. tangentMode: 0
  1534. m_PreInfinity: 2
  1535. m_PostInfinity: 2
  1536. m_RotationOrder: 4
  1537. separateAxes: 0
  1538. ColorModule:
  1539. enabled: 1
  1540. gradient:
  1541. serializedVersion: 2
  1542. minMaxState: 1
  1543. minColor: {r: 1, g: 1, b: 1, a: 1}
  1544. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1545. maxGradient:
  1546. serializedVersion: 2
  1547. key0: {r: 1, g: 1, b: 1, a: 0}
  1548. key1: {r: 1, g: 1, b: 1, a: 1}
  1549. key2: {r: 0, g: 0, b: 0, a: 0.98039216}
  1550. key3: {r: 0, g: 0, b: 0, a: 0}
  1551. key4: {r: 0, g: 0, b: 0, a: 0}
  1552. key5: {r: 0, g: 0, b: 0, a: 0}
  1553. key6: {r: 0, g: 0, b: 0, a: 0}
  1554. key7: {r: 0, g: 0, b: 0, a: 0}
  1555. ctime0: 0
  1556. ctime1: 65535
  1557. ctime2: 0
  1558. ctime3: 0
  1559. ctime4: 0
  1560. ctime5: 0
  1561. ctime6: 0
  1562. ctime7: 0
  1563. atime0: 0
  1564. atime1: 12722
  1565. atime2: 43562
  1566. atime3: 65535
  1567. atime4: 0
  1568. atime5: 0
  1569. atime6: 0
  1570. atime7: 0
  1571. m_Mode: 0
  1572. m_NumColorKeys: 2
  1573. m_NumAlphaKeys: 4
  1574. minGradient:
  1575. serializedVersion: 2
  1576. key0: {r: 1, g: 1, b: 1, a: 1}
  1577. key1: {r: 1, g: 1, b: 1, a: 1}
  1578. key2: {r: 0, g: 0, b: 0, a: 0}
  1579. key3: {r: 0, g: 0, b: 0, a: 0}
  1580. key4: {r: 0, g: 0, b: 0, a: 0}
  1581. key5: {r: 0, g: 0, b: 0, a: 0}
  1582. key6: {r: 0, g: 0, b: 0, a: 0}
  1583. key7: {r: 0, g: 0, b: 0, a: 0}
  1584. ctime0: 0
  1585. ctime1: 65535
  1586. ctime2: 0
  1587. ctime3: 0
  1588. ctime4: 0
  1589. ctime5: 0
  1590. ctime6: 0
  1591. ctime7: 0
  1592. atime0: 0
  1593. atime1: 65535
  1594. atime2: 0
  1595. atime3: 0
  1596. atime4: 0
  1597. atime5: 0
  1598. atime6: 0
  1599. atime7: 0
  1600. m_Mode: 0
  1601. m_NumColorKeys: 2
  1602. m_NumAlphaKeys: 2
  1603. UVModule:
  1604. enabled: 0
  1605. mode: 0
  1606. frameOverTime:
  1607. serializedVersion: 2
  1608. minMaxState: 1
  1609. scalar: 0.9999
  1610. minScalar: 0.9999
  1611. maxCurve:
  1612. serializedVersion: 2
  1613. m_Curve:
  1614. - serializedVersion: 2
  1615. time: 0
  1616. value: 0
  1617. inSlope: 0
  1618. outSlope: 1
  1619. tangentMode: 0
  1620. - serializedVersion: 2
  1621. time: 1
  1622. value: 1
  1623. inSlope: 1
  1624. outSlope: 0
  1625. tangentMode: 0
  1626. m_PreInfinity: 2
  1627. m_PostInfinity: 2
  1628. m_RotationOrder: 4
  1629. minCurve:
  1630. serializedVersion: 2
  1631. m_Curve:
  1632. - serializedVersion: 2
  1633. time: 0
  1634. value: 0
  1635. inSlope: 0
  1636. outSlope: 1
  1637. tangentMode: 0
  1638. - serializedVersion: 2
  1639. time: 1
  1640. value: 1
  1641. inSlope: 1
  1642. outSlope: 0
  1643. tangentMode: 0
  1644. m_PreInfinity: 2
  1645. m_PostInfinity: 2
  1646. m_RotationOrder: 4
  1647. startFrame:
  1648. serializedVersion: 2
  1649. minMaxState: 0
  1650. scalar: 0
  1651. minScalar: 0
  1652. maxCurve:
  1653. serializedVersion: 2
  1654. m_Curve:
  1655. - serializedVersion: 2
  1656. time: 0
  1657. value: 0
  1658. inSlope: 0
  1659. outSlope: 0
  1660. tangentMode: 0
  1661. - serializedVersion: 2
  1662. time: 1
  1663. value: 0
  1664. inSlope: 0
  1665. outSlope: 0
  1666. tangentMode: 0
  1667. m_PreInfinity: 2
  1668. m_PostInfinity: 2
  1669. m_RotationOrder: 4
  1670. minCurve:
  1671. serializedVersion: 2
  1672. m_Curve:
  1673. - serializedVersion: 2
  1674. time: 0
  1675. value: 0
  1676. inSlope: 0
  1677. outSlope: 0
  1678. tangentMode: 0
  1679. - serializedVersion: 2
  1680. time: 1
  1681. value: 0
  1682. inSlope: 0
  1683. outSlope: 0
  1684. tangentMode: 0
  1685. m_PreInfinity: 2
  1686. m_PostInfinity: 2
  1687. m_RotationOrder: 4
  1688. tilesX: 1
  1689. tilesY: 1
  1690. animationType: 0
  1691. rowIndex: 0
  1692. cycles: 1
  1693. uvChannelMask: -1
  1694. flipU: 0
  1695. flipV: 0
  1696. randomRow: 1
  1697. sprites:
  1698. - sprite: {fileID: 0}
  1699. VelocityModule:
  1700. enabled: 0
  1701. x:
  1702. serializedVersion: 2
  1703. minMaxState: 0
  1704. scalar: 0
  1705. minScalar: 0
  1706. maxCurve:
  1707. serializedVersion: 2
  1708. m_Curve:
  1709. - serializedVersion: 2
  1710. time: 0
  1711. value: 1
  1712. inSlope: 0
  1713. outSlope: 0
  1714. tangentMode: 0
  1715. - serializedVersion: 2
  1716. time: 1
  1717. value: 1
  1718. inSlope: 0
  1719. outSlope: 0
  1720. tangentMode: 0
  1721. m_PreInfinity: 2
  1722. m_PostInfinity: 2
  1723. m_RotationOrder: 4
  1724. minCurve:
  1725. serializedVersion: 2
  1726. m_Curve:
  1727. - serializedVersion: 2
  1728. time: 0
  1729. value: 0
  1730. inSlope: 0
  1731. outSlope: 0
  1732. tangentMode: 0
  1733. - serializedVersion: 2
  1734. time: 1
  1735. value: 0
  1736. inSlope: 0
  1737. outSlope: 0
  1738. tangentMode: 0
  1739. m_PreInfinity: 2
  1740. m_PostInfinity: 2
  1741. m_RotationOrder: 4
  1742. y:
  1743. serializedVersion: 2
  1744. minMaxState: 0
  1745. scalar: 0
  1746. minScalar: 0
  1747. maxCurve:
  1748. serializedVersion: 2
  1749. m_Curve:
  1750. - serializedVersion: 2
  1751. time: 0
  1752. value: 1
  1753. inSlope: 0
  1754. outSlope: 0
  1755. tangentMode: 0
  1756. - serializedVersion: 2
  1757. time: 1
  1758. value: 1
  1759. inSlope: 0
  1760. outSlope: 0
  1761. tangentMode: 0
  1762. m_PreInfinity: 2
  1763. m_PostInfinity: 2
  1764. m_RotationOrder: 4
  1765. minCurve:
  1766. serializedVersion: 2
  1767. m_Curve:
  1768. - serializedVersion: 2
  1769. time: 0
  1770. value: 0
  1771. inSlope: 0
  1772. outSlope: 0
  1773. tangentMode: 0
  1774. - serializedVersion: 2
  1775. time: 1
  1776. value: 0
  1777. inSlope: 0
  1778. outSlope: 0
  1779. tangentMode: 0
  1780. m_PreInfinity: 2
  1781. m_PostInfinity: 2
  1782. m_RotationOrder: 4
  1783. z:
  1784. serializedVersion: 2
  1785. minMaxState: 0
  1786. scalar: 0
  1787. minScalar: 0
  1788. maxCurve:
  1789. serializedVersion: 2
  1790. m_Curve:
  1791. - serializedVersion: 2
  1792. time: 0
  1793. value: 1
  1794. inSlope: 0
  1795. outSlope: 0
  1796. tangentMode: 0
  1797. - serializedVersion: 2
  1798. time: 1
  1799. value: 1
  1800. inSlope: 0
  1801. outSlope: 0
  1802. tangentMode: 0
  1803. m_PreInfinity: 2
  1804. m_PostInfinity: 2
  1805. m_RotationOrder: 4
  1806. minCurve:
  1807. serializedVersion: 2
  1808. m_Curve:
  1809. - serializedVersion: 2
  1810. time: 0
  1811. value: 0
  1812. inSlope: 0
  1813. outSlope: 0
  1814. tangentMode: 0
  1815. - serializedVersion: 2
  1816. time: 1
  1817. value: 0
  1818. inSlope: 0
  1819. outSlope: 0
  1820. tangentMode: 0
  1821. m_PreInfinity: 2
  1822. m_PostInfinity: 2
  1823. m_RotationOrder: 4
  1824. speedModifier:
  1825. serializedVersion: 2
  1826. minMaxState: 0
  1827. scalar: 1
  1828. minScalar: 1
  1829. maxCurve:
  1830. serializedVersion: 2
  1831. m_Curve:
  1832. - serializedVersion: 2
  1833. time: 0
  1834. value: 1
  1835. inSlope: 0
  1836. outSlope: 0
  1837. tangentMode: 0
  1838. - serializedVersion: 2
  1839. time: 1
  1840. value: 1
  1841. inSlope: 0
  1842. outSlope: 0
  1843. tangentMode: 0
  1844. m_PreInfinity: 2
  1845. m_PostInfinity: 2
  1846. m_RotationOrder: 4
  1847. minCurve:
  1848. serializedVersion: 2
  1849. m_Curve:
  1850. - serializedVersion: 2
  1851. time: 0
  1852. value: 1
  1853. inSlope: 0
  1854. outSlope: 0
  1855. tangentMode: 0
  1856. - serializedVersion: 2
  1857. time: 1
  1858. value: 1
  1859. inSlope: 0
  1860. outSlope: 0
  1861. tangentMode: 0
  1862. m_PreInfinity: 2
  1863. m_PostInfinity: 2
  1864. m_RotationOrder: 4
  1865. inWorldSpace: 0
  1866. InheritVelocityModule:
  1867. enabled: 0
  1868. m_Mode: 0
  1869. m_Curve:
  1870. serializedVersion: 2
  1871. minMaxState: 0
  1872. scalar: 0
  1873. minScalar: 0
  1874. maxCurve:
  1875. serializedVersion: 2
  1876. m_Curve:
  1877. - serializedVersion: 2
  1878. time: 0
  1879. value: 1
  1880. inSlope: 0
  1881. outSlope: 0
  1882. tangentMode: 0
  1883. - serializedVersion: 2
  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. - serializedVersion: 2
  1896. time: 0
  1897. value: 0
  1898. inSlope: 0
  1899. outSlope: 0
  1900. tangentMode: 0
  1901. - serializedVersion: 2
  1902. time: 1
  1903. value: 0
  1904. inSlope: 0
  1905. outSlope: 0
  1906. tangentMode: 0
  1907. m_PreInfinity: 2
  1908. m_PostInfinity: 2
  1909. m_RotationOrder: 4
  1910. ForceModule:
  1911. enabled: 0
  1912. x:
  1913. serializedVersion: 2
  1914. minMaxState: 0
  1915. scalar: 0
  1916. minScalar: 0
  1917. maxCurve:
  1918. serializedVersion: 2
  1919. m_Curve:
  1920. - serializedVersion: 2
  1921. time: 0
  1922. value: 1
  1923. inSlope: 0
  1924. outSlope: 0
  1925. tangentMode: 0
  1926. - serializedVersion: 2
  1927. time: 1
  1928. value: 1
  1929. inSlope: 0
  1930. outSlope: 0
  1931. tangentMode: 0
  1932. m_PreInfinity: 2
  1933. m_PostInfinity: 2
  1934. m_RotationOrder: 4
  1935. minCurve:
  1936. serializedVersion: 2
  1937. m_Curve:
  1938. - serializedVersion: 2
  1939. time: 0
  1940. value: 0
  1941. inSlope: 0
  1942. outSlope: 0
  1943. tangentMode: 0
  1944. - serializedVersion: 2
  1945. time: 1
  1946. value: 0
  1947. inSlope: 0
  1948. outSlope: 0
  1949. tangentMode: 0
  1950. m_PreInfinity: 2
  1951. m_PostInfinity: 2
  1952. m_RotationOrder: 4
  1953. y:
  1954. serializedVersion: 2
  1955. minMaxState: 0
  1956. scalar: 0
  1957. minScalar: 0
  1958. maxCurve:
  1959. serializedVersion: 2
  1960. m_Curve:
  1961. - serializedVersion: 2
  1962. time: 0
  1963. value: 1
  1964. inSlope: 0
  1965. outSlope: 0
  1966. tangentMode: 0
  1967. - serializedVersion: 2
  1968. time: 1
  1969. value: 1
  1970. inSlope: 0
  1971. outSlope: 0
  1972. tangentMode: 0
  1973. m_PreInfinity: 2
  1974. m_PostInfinity: 2
  1975. m_RotationOrder: 4
  1976. minCurve:
  1977. serializedVersion: 2
  1978. m_Curve:
  1979. - serializedVersion: 2
  1980. time: 0
  1981. value: 0
  1982. inSlope: 0
  1983. outSlope: 0
  1984. tangentMode: 0
  1985. - serializedVersion: 2
  1986. time: 1
  1987. value: 0
  1988. inSlope: 0
  1989. outSlope: 0
  1990. tangentMode: 0
  1991. m_PreInfinity: 2
  1992. m_PostInfinity: 2
  1993. m_RotationOrder: 4
  1994. z:
  1995. serializedVersion: 2
  1996. minMaxState: 0
  1997. scalar: 0
  1998. minScalar: 0
  1999. maxCurve:
  2000. serializedVersion: 2
  2001. m_Curve:
  2002. - serializedVersion: 2
  2003. time: 0
  2004. value: 1
  2005. inSlope: 0
  2006. outSlope: 0
  2007. tangentMode: 0
  2008. - serializedVersion: 2
  2009. time: 1
  2010. value: 1
  2011. inSlope: 0
  2012. outSlope: 0
  2013. tangentMode: 0
  2014. m_PreInfinity: 2
  2015. m_PostInfinity: 2
  2016. m_RotationOrder: 4
  2017. minCurve:
  2018. serializedVersion: 2
  2019. m_Curve:
  2020. - serializedVersion: 2
  2021. time: 0
  2022. value: 0
  2023. inSlope: 0
  2024. outSlope: 0
  2025. tangentMode: 0
  2026. - serializedVersion: 2
  2027. time: 1
  2028. value: 0
  2029. inSlope: 0
  2030. outSlope: 0
  2031. tangentMode: 0
  2032. m_PreInfinity: 2
  2033. m_PostInfinity: 2
  2034. m_RotationOrder: 4
  2035. inWorldSpace: 0
  2036. randomizePerFrame: 0
  2037. ExternalForcesModule:
  2038. enabled: 0
  2039. multiplier: 1
  2040. ClampVelocityModule:
  2041. enabled: 0
  2042. x:
  2043. serializedVersion: 2
  2044. minMaxState: 0
  2045. scalar: 1
  2046. minScalar: 1
  2047. maxCurve:
  2048. serializedVersion: 2
  2049. m_Curve:
  2050. - serializedVersion: 2
  2051. time: 0
  2052. value: 1
  2053. inSlope: 0
  2054. outSlope: 0
  2055. tangentMode: 0
  2056. - serializedVersion: 2
  2057. time: 1
  2058. value: 1
  2059. inSlope: 0
  2060. outSlope: 0
  2061. tangentMode: 0
  2062. m_PreInfinity: 2
  2063. m_PostInfinity: 2
  2064. m_RotationOrder: 4
  2065. minCurve:
  2066. serializedVersion: 2
  2067. m_Curve:
  2068. - serializedVersion: 2
  2069. time: 0
  2070. value: 0
  2071. inSlope: 0
  2072. outSlope: 0
  2073. tangentMode: 0
  2074. - serializedVersion: 2
  2075. time: 1
  2076. value: 0
  2077. inSlope: 0
  2078. outSlope: 0
  2079. tangentMode: 0
  2080. m_PreInfinity: 2
  2081. m_PostInfinity: 2
  2082. m_RotationOrder: 4
  2083. y:
  2084. serializedVersion: 2
  2085. minMaxState: 0
  2086. scalar: 1
  2087. minScalar: 1
  2088. maxCurve:
  2089. serializedVersion: 2
  2090. m_Curve:
  2091. - serializedVersion: 2
  2092. time: 0
  2093. value: 1
  2094. inSlope: 0
  2095. outSlope: 0
  2096. tangentMode: 0
  2097. - serializedVersion: 2
  2098. time: 1
  2099. value: 1
  2100. inSlope: 0
  2101. outSlope: 0
  2102. tangentMode: 0
  2103. m_PreInfinity: 2
  2104. m_PostInfinity: 2
  2105. m_RotationOrder: 4
  2106. minCurve:
  2107. serializedVersion: 2
  2108. m_Curve:
  2109. - serializedVersion: 2
  2110. time: 0
  2111. value: 0
  2112. inSlope: 0
  2113. outSlope: 0
  2114. tangentMode: 0
  2115. - serializedVersion: 2
  2116. time: 1
  2117. value: 0
  2118. inSlope: 0
  2119. outSlope: 0
  2120. tangentMode: 0
  2121. m_PreInfinity: 2
  2122. m_PostInfinity: 2
  2123. m_RotationOrder: 4
  2124. z:
  2125. serializedVersion: 2
  2126. minMaxState: 0
  2127. scalar: 1
  2128. minScalar: 1
  2129. maxCurve:
  2130. serializedVersion: 2
  2131. m_Curve:
  2132. - serializedVersion: 2
  2133. time: 0
  2134. value: 1
  2135. inSlope: 0
  2136. outSlope: 0
  2137. tangentMode: 0
  2138. - serializedVersion: 2
  2139. time: 1
  2140. value: 1
  2141. inSlope: 0
  2142. outSlope: 0
  2143. tangentMode: 0
  2144. m_PreInfinity: 2
  2145. m_PostInfinity: 2
  2146. m_RotationOrder: 4
  2147. minCurve:
  2148. serializedVersion: 2
  2149. m_Curve:
  2150. - serializedVersion: 2
  2151. time: 0
  2152. value: 0
  2153. inSlope: 0
  2154. outSlope: 0
  2155. tangentMode: 0
  2156. - serializedVersion: 2
  2157. time: 1
  2158. value: 0
  2159. inSlope: 0
  2160. outSlope: 0
  2161. tangentMode: 0
  2162. m_PreInfinity: 2
  2163. m_PostInfinity: 2
  2164. m_RotationOrder: 4
  2165. magnitude:
  2166. serializedVersion: 2
  2167. minMaxState: 0
  2168. scalar: 1
  2169. minScalar: 1
  2170. maxCurve:
  2171. serializedVersion: 2
  2172. m_Curve:
  2173. - serializedVersion: 2
  2174. time: 0
  2175. value: 1
  2176. inSlope: 0
  2177. outSlope: 0
  2178. tangentMode: 0
  2179. - serializedVersion: 2
  2180. time: 1
  2181. value: 1
  2182. inSlope: 0
  2183. outSlope: 0
  2184. tangentMode: 0
  2185. m_PreInfinity: 2
  2186. m_PostInfinity: 2
  2187. m_RotationOrder: 4
  2188. minCurve:
  2189. serializedVersion: 2
  2190. m_Curve:
  2191. - serializedVersion: 2
  2192. time: 0
  2193. value: 0
  2194. inSlope: 0
  2195. outSlope: 0
  2196. tangentMode: 0
  2197. - serializedVersion: 2
  2198. time: 1
  2199. value: 0
  2200. inSlope: 0
  2201. outSlope: 0
  2202. tangentMode: 0
  2203. m_PreInfinity: 2
  2204. m_PostInfinity: 2
  2205. m_RotationOrder: 4
  2206. separateAxis: 0
  2207. inWorldSpace: 0
  2208. multiplyDragByParticleSize: 1
  2209. multiplyDragByParticleVelocity: 1
  2210. dampen: 1
  2211. drag:
  2212. serializedVersion: 2
  2213. minMaxState: 0
  2214. scalar: 0
  2215. minScalar: 0
  2216. maxCurve:
  2217. serializedVersion: 2
  2218. m_Curve:
  2219. - serializedVersion: 2
  2220. time: 0
  2221. value: 0
  2222. inSlope: 0
  2223. outSlope: 0
  2224. tangentMode: 0
  2225. - serializedVersion: 2
  2226. time: 1
  2227. value: 0
  2228. inSlope: 0
  2229. outSlope: 0
  2230. tangentMode: 0
  2231. m_PreInfinity: 2
  2232. m_PostInfinity: 2
  2233. m_RotationOrder: 4
  2234. minCurve:
  2235. serializedVersion: 2
  2236. m_Curve:
  2237. - serializedVersion: 2
  2238. time: 0
  2239. value: 0
  2240. inSlope: 0
  2241. outSlope: 0
  2242. tangentMode: 0
  2243. - serializedVersion: 2
  2244. time: 1
  2245. value: 0
  2246. inSlope: 0
  2247. outSlope: 0
  2248. tangentMode: 0
  2249. m_PreInfinity: 2
  2250. m_PostInfinity: 2
  2251. m_RotationOrder: 4
  2252. NoiseModule:
  2253. enabled: 0
  2254. strength:
  2255. serializedVersion: 2
  2256. minMaxState: 0
  2257. scalar: 1
  2258. minScalar: 1
  2259. maxCurve:
  2260. serializedVersion: 2
  2261. m_Curve:
  2262. - serializedVersion: 2
  2263. time: 0
  2264. value: 1
  2265. inSlope: 0
  2266. outSlope: 0
  2267. tangentMode: 0
  2268. - serializedVersion: 2
  2269. time: 1
  2270. value: 1
  2271. inSlope: 0
  2272. outSlope: 0
  2273. tangentMode: 0
  2274. m_PreInfinity: 2
  2275. m_PostInfinity: 2
  2276. m_RotationOrder: 4
  2277. minCurve:
  2278. serializedVersion: 2
  2279. m_Curve:
  2280. - serializedVersion: 2
  2281. time: 0
  2282. value: 1
  2283. inSlope: 0
  2284. outSlope: 0
  2285. tangentMode: 0
  2286. - serializedVersion: 2
  2287. time: 1
  2288. value: 1
  2289. inSlope: 0
  2290. outSlope: 0
  2291. tangentMode: 0
  2292. m_PreInfinity: 2
  2293. m_PostInfinity: 2
  2294. m_RotationOrder: 4
  2295. strengthY:
  2296. serializedVersion: 2
  2297. minMaxState: 0
  2298. scalar: 1
  2299. minScalar: 1
  2300. maxCurve:
  2301. serializedVersion: 2
  2302. m_Curve:
  2303. - serializedVersion: 2
  2304. time: 0
  2305. value: 1
  2306. inSlope: 0
  2307. outSlope: 0
  2308. tangentMode: 0
  2309. - serializedVersion: 2
  2310. time: 1
  2311. value: 1
  2312. inSlope: 0
  2313. outSlope: 0
  2314. tangentMode: 0
  2315. m_PreInfinity: 2
  2316. m_PostInfinity: 2
  2317. m_RotationOrder: 4
  2318. minCurve:
  2319. serializedVersion: 2
  2320. m_Curve:
  2321. - serializedVersion: 2
  2322. time: 0
  2323. value: 1
  2324. inSlope: 0
  2325. outSlope: 0
  2326. tangentMode: 0
  2327. - serializedVersion: 2
  2328. time: 1
  2329. value: 1
  2330. inSlope: 0
  2331. outSlope: 0
  2332. tangentMode: 0
  2333. m_PreInfinity: 2
  2334. m_PostInfinity: 2
  2335. m_RotationOrder: 4
  2336. strengthZ:
  2337. serializedVersion: 2
  2338. minMaxState: 0
  2339. scalar: 1
  2340. minScalar: 1
  2341. maxCurve:
  2342. serializedVersion: 2
  2343. m_Curve:
  2344. - serializedVersion: 2
  2345. time: 0
  2346. value: 1
  2347. inSlope: 0
  2348. outSlope: 0
  2349. tangentMode: 0
  2350. - serializedVersion: 2
  2351. time: 1
  2352. value: 1
  2353. inSlope: 0
  2354. outSlope: 0
  2355. tangentMode: 0
  2356. m_PreInfinity: 2
  2357. m_PostInfinity: 2
  2358. m_RotationOrder: 4
  2359. minCurve:
  2360. serializedVersion: 2
  2361. m_Curve:
  2362. - serializedVersion: 2
  2363. time: 0
  2364. value: 1
  2365. inSlope: 0
  2366. outSlope: 0
  2367. tangentMode: 0
  2368. - serializedVersion: 2
  2369. time: 1
  2370. value: 1
  2371. inSlope: 0
  2372. outSlope: 0
  2373. tangentMode: 0
  2374. m_PreInfinity: 2
  2375. m_PostInfinity: 2
  2376. m_RotationOrder: 4
  2377. separateAxes: 0
  2378. frequency: 0.5
  2379. damping: 1
  2380. octaves: 1
  2381. octaveMultiplier: 0.5
  2382. octaveScale: 2
  2383. quality: 2
  2384. scrollSpeed:
  2385. serializedVersion: 2
  2386. minMaxState: 0
  2387. scalar: 0
  2388. minScalar: 0
  2389. maxCurve:
  2390. serializedVersion: 2
  2391. m_Curve:
  2392. - serializedVersion: 2
  2393. time: 0
  2394. value: 0
  2395. inSlope: 0
  2396. outSlope: 0
  2397. tangentMode: 0
  2398. - serializedVersion: 2
  2399. time: 1
  2400. value: 0
  2401. inSlope: 0
  2402. outSlope: 0
  2403. tangentMode: 0
  2404. m_PreInfinity: 2
  2405. m_PostInfinity: 2
  2406. m_RotationOrder: 4
  2407. minCurve:
  2408. serializedVersion: 2
  2409. m_Curve:
  2410. - serializedVersion: 2
  2411. time: 0
  2412. value: 0
  2413. inSlope: 0
  2414. outSlope: 0
  2415. tangentMode: 0
  2416. - serializedVersion: 2
  2417. time: 1
  2418. value: 0
  2419. inSlope: 0
  2420. outSlope: 0
  2421. tangentMode: 0
  2422. m_PreInfinity: 2
  2423. m_PostInfinity: 2
  2424. m_RotationOrder: 4
  2425. remap:
  2426. serializedVersion: 2
  2427. minMaxState: 1
  2428. scalar: 1
  2429. minScalar: 1
  2430. maxCurve:
  2431. serializedVersion: 2
  2432. m_Curve:
  2433. - serializedVersion: 2
  2434. time: 0
  2435. value: 0
  2436. inSlope: 0
  2437. outSlope: 1
  2438. tangentMode: 0
  2439. - serializedVersion: 2
  2440. time: 1
  2441. value: 1
  2442. inSlope: 1
  2443. outSlope: 0
  2444. tangentMode: 0
  2445. m_PreInfinity: 2
  2446. m_PostInfinity: 2
  2447. m_RotationOrder: 4
  2448. minCurve:
  2449. serializedVersion: 2
  2450. m_Curve:
  2451. - serializedVersion: 2
  2452. time: 0
  2453. value: 1
  2454. inSlope: 0
  2455. outSlope: 0
  2456. tangentMode: 0
  2457. - serializedVersion: 2
  2458. time: 1
  2459. value: 1
  2460. inSlope: 0
  2461. outSlope: 0
  2462. tangentMode: 0
  2463. m_PreInfinity: 2
  2464. m_PostInfinity: 2
  2465. m_RotationOrder: 4
  2466. remapY:
  2467. serializedVersion: 2
  2468. minMaxState: 1
  2469. scalar: 1
  2470. minScalar: 1
  2471. maxCurve:
  2472. serializedVersion: 2
  2473. m_Curve:
  2474. - serializedVersion: 2
  2475. time: 0
  2476. value: 0
  2477. inSlope: 0
  2478. outSlope: 1
  2479. tangentMode: 0
  2480. - serializedVersion: 2
  2481. time: 1
  2482. value: 1
  2483. inSlope: 1
  2484. outSlope: 0
  2485. tangentMode: 0
  2486. m_PreInfinity: 2
  2487. m_PostInfinity: 2
  2488. m_RotationOrder: 4
  2489. minCurve:
  2490. serializedVersion: 2
  2491. m_Curve:
  2492. - serializedVersion: 2
  2493. time: 0
  2494. value: 1
  2495. inSlope: 0
  2496. outSlope: 0
  2497. tangentMode: 0
  2498. - serializedVersion: 2
  2499. time: 1
  2500. value: 1
  2501. inSlope: 0
  2502. outSlope: 0
  2503. tangentMode: 0
  2504. m_PreInfinity: 2
  2505. m_PostInfinity: 2
  2506. m_RotationOrder: 4
  2507. remapZ:
  2508. serializedVersion: 2
  2509. minMaxState: 1
  2510. scalar: 1
  2511. minScalar: 1
  2512. maxCurve:
  2513. serializedVersion: 2
  2514. m_Curve:
  2515. - serializedVersion: 2
  2516. time: 0
  2517. value: 0
  2518. inSlope: 0
  2519. outSlope: 1
  2520. tangentMode: 0
  2521. - serializedVersion: 2
  2522. time: 1
  2523. value: 1
  2524. inSlope: 1
  2525. outSlope: 0
  2526. tangentMode: 0
  2527. m_PreInfinity: 2
  2528. m_PostInfinity: 2
  2529. m_RotationOrder: 4
  2530. minCurve:
  2531. serializedVersion: 2
  2532. m_Curve:
  2533. - serializedVersion: 2
  2534. time: 0
  2535. value: 1
  2536. inSlope: 0
  2537. outSlope: 0
  2538. tangentMode: 0
  2539. - serializedVersion: 2
  2540. time: 1
  2541. value: 1
  2542. inSlope: 0
  2543. outSlope: 0
  2544. tangentMode: 0
  2545. m_PreInfinity: 2
  2546. m_PostInfinity: 2
  2547. m_RotationOrder: 4
  2548. remapEnabled: 0
  2549. positionAmount:
  2550. serializedVersion: 2
  2551. minMaxState: 0
  2552. scalar: 1
  2553. minScalar: 1
  2554. maxCurve:
  2555. serializedVersion: 2
  2556. m_Curve:
  2557. - serializedVersion: 2
  2558. time: 0
  2559. value: 1
  2560. inSlope: 0
  2561. outSlope: 0
  2562. tangentMode: 0
  2563. - serializedVersion: 2
  2564. time: 1
  2565. value: 1
  2566. inSlope: 0
  2567. outSlope: 0
  2568. tangentMode: 0
  2569. m_PreInfinity: 2
  2570. m_PostInfinity: 2
  2571. m_RotationOrder: 4
  2572. minCurve:
  2573. serializedVersion: 2
  2574. m_Curve:
  2575. - serializedVersion: 2
  2576. time: 0
  2577. value: 1
  2578. inSlope: 0
  2579. outSlope: 0
  2580. tangentMode: 0
  2581. - serializedVersion: 2
  2582. time: 1
  2583. value: 1
  2584. inSlope: 0
  2585. outSlope: 0
  2586. tangentMode: 0
  2587. m_PreInfinity: 2
  2588. m_PostInfinity: 2
  2589. m_RotationOrder: 4
  2590. rotationAmount:
  2591. serializedVersion: 2
  2592. minMaxState: 0
  2593. scalar: 0
  2594. minScalar: 0
  2595. maxCurve:
  2596. serializedVersion: 2
  2597. m_Curve:
  2598. - serializedVersion: 2
  2599. time: 0
  2600. value: 0
  2601. inSlope: 0
  2602. outSlope: 0
  2603. tangentMode: 0
  2604. - serializedVersion: 2
  2605. time: 1
  2606. value: 0
  2607. inSlope: 0
  2608. outSlope: 0
  2609. tangentMode: 0
  2610. m_PreInfinity: 2
  2611. m_PostInfinity: 2
  2612. m_RotationOrder: 4
  2613. minCurve:
  2614. serializedVersion: 2
  2615. m_Curve:
  2616. - serializedVersion: 2
  2617. time: 0
  2618. value: 0
  2619. inSlope: 0
  2620. outSlope: 0
  2621. tangentMode: 0
  2622. - serializedVersion: 2
  2623. time: 1
  2624. value: 0
  2625. inSlope: 0
  2626. outSlope: 0
  2627. tangentMode: 0
  2628. m_PreInfinity: 2
  2629. m_PostInfinity: 2
  2630. m_RotationOrder: 4
  2631. sizeAmount:
  2632. serializedVersion: 2
  2633. minMaxState: 0
  2634. scalar: 0
  2635. minScalar: 0
  2636. maxCurve:
  2637. serializedVersion: 2
  2638. m_Curve:
  2639. - serializedVersion: 2
  2640. time: 0
  2641. value: 0
  2642. inSlope: 0
  2643. outSlope: 0
  2644. tangentMode: 0
  2645. - serializedVersion: 2
  2646. time: 1
  2647. value: 0
  2648. inSlope: 0
  2649. outSlope: 0
  2650. tangentMode: 0
  2651. m_PreInfinity: 2
  2652. m_PostInfinity: 2
  2653. m_RotationOrder: 4
  2654. minCurve:
  2655. serializedVersion: 2
  2656. m_Curve:
  2657. - serializedVersion: 2
  2658. time: 0
  2659. value: 0
  2660. inSlope: 0
  2661. outSlope: 0
  2662. tangentMode: 0
  2663. - serializedVersion: 2
  2664. time: 1
  2665. value: 0
  2666. inSlope: 0
  2667. outSlope: 0
  2668. tangentMode: 0
  2669. m_PreInfinity: 2
  2670. m_PostInfinity: 2
  2671. m_RotationOrder: 4
  2672. SizeBySpeedModule:
  2673. enabled: 0
  2674. curve:
  2675. serializedVersion: 2
  2676. minMaxState: 1
  2677. scalar: 1
  2678. minScalar: 1
  2679. maxCurve:
  2680. serializedVersion: 2
  2681. m_Curve:
  2682. - serializedVersion: 2
  2683. time: 0
  2684. value: 1
  2685. inSlope: 0
  2686. outSlope: 0
  2687. tangentMode: 0
  2688. - serializedVersion: 2
  2689. time: 1
  2690. value: 1
  2691. inSlope: 0
  2692. outSlope: 0
  2693. tangentMode: 0
  2694. m_PreInfinity: 2
  2695. m_PostInfinity: 2
  2696. m_RotationOrder: 4
  2697. minCurve:
  2698. serializedVersion: 2
  2699. m_Curve:
  2700. - serializedVersion: 2
  2701. time: 0
  2702. value: 0
  2703. inSlope: 0
  2704. outSlope: 0
  2705. tangentMode: 0
  2706. - serializedVersion: 2
  2707. time: 1
  2708. value: 0
  2709. inSlope: 0
  2710. outSlope: 0
  2711. tangentMode: 0
  2712. m_PreInfinity: 2
  2713. m_PostInfinity: 2
  2714. m_RotationOrder: 4
  2715. y:
  2716. serializedVersion: 2
  2717. minMaxState: 1
  2718. scalar: 1
  2719. minScalar: 1
  2720. maxCurve:
  2721. serializedVersion: 2
  2722. m_Curve:
  2723. - serializedVersion: 2
  2724. time: 0
  2725. value: 0
  2726. inSlope: 0
  2727. outSlope: 1
  2728. tangentMode: 0
  2729. - serializedVersion: 2
  2730. time: 1
  2731. value: 1
  2732. inSlope: 1
  2733. outSlope: 0
  2734. tangentMode: 0
  2735. m_PreInfinity: 2
  2736. m_PostInfinity: 2
  2737. m_RotationOrder: 4
  2738. minCurve:
  2739. serializedVersion: 2
  2740. m_Curve:
  2741. - serializedVersion: 2
  2742. time: 0
  2743. value: 1
  2744. inSlope: 0
  2745. outSlope: 0
  2746. tangentMode: 0
  2747. - serializedVersion: 2
  2748. time: 1
  2749. value: 1
  2750. inSlope: 0
  2751. outSlope: 0
  2752. tangentMode: 0
  2753. m_PreInfinity: 2
  2754. m_PostInfinity: 2
  2755. m_RotationOrder: 4
  2756. z:
  2757. serializedVersion: 2
  2758. minMaxState: 1
  2759. scalar: 1
  2760. minScalar: 1
  2761. maxCurve:
  2762. serializedVersion: 2
  2763. m_Curve:
  2764. - serializedVersion: 2
  2765. time: 0
  2766. value: 0
  2767. inSlope: 0
  2768. outSlope: 1
  2769. tangentMode: 0
  2770. - serializedVersion: 2
  2771. time: 1
  2772. value: 1
  2773. inSlope: 1
  2774. outSlope: 0
  2775. tangentMode: 0
  2776. m_PreInfinity: 2
  2777. m_PostInfinity: 2
  2778. m_RotationOrder: 4
  2779. minCurve:
  2780. serializedVersion: 2
  2781. m_Curve:
  2782. - serializedVersion: 2
  2783. time: 0
  2784. value: 1
  2785. inSlope: 0
  2786. outSlope: 0
  2787. tangentMode: 0
  2788. - serializedVersion: 2
  2789. time: 1
  2790. value: 1
  2791. inSlope: 0
  2792. outSlope: 0
  2793. tangentMode: 0
  2794. m_PreInfinity: 2
  2795. m_PostInfinity: 2
  2796. m_RotationOrder: 4
  2797. range: {x: 0, y: 1}
  2798. separateAxes: 0
  2799. RotationBySpeedModule:
  2800. enabled: 0
  2801. x:
  2802. serializedVersion: 2
  2803. minMaxState: 0
  2804. scalar: 0
  2805. minScalar: 0
  2806. maxCurve:
  2807. serializedVersion: 2
  2808. m_Curve:
  2809. - serializedVersion: 2
  2810. time: 0
  2811. value: 1
  2812. inSlope: 0
  2813. outSlope: 0
  2814. tangentMode: 0
  2815. - serializedVersion: 2
  2816. time: 1
  2817. value: 1
  2818. inSlope: 0
  2819. outSlope: 0
  2820. tangentMode: 0
  2821. m_PreInfinity: 2
  2822. m_PostInfinity: 2
  2823. m_RotationOrder: 4
  2824. minCurve:
  2825. serializedVersion: 2
  2826. m_Curve:
  2827. - serializedVersion: 2
  2828. time: 0
  2829. value: 0
  2830. inSlope: 0
  2831. outSlope: 0
  2832. tangentMode: 0
  2833. - serializedVersion: 2
  2834. time: 1
  2835. value: 0
  2836. inSlope: 0
  2837. outSlope: 0
  2838. tangentMode: 0
  2839. m_PreInfinity: 2
  2840. m_PostInfinity: 2
  2841. m_RotationOrder: 4
  2842. y:
  2843. serializedVersion: 2
  2844. minMaxState: 0
  2845. scalar: 0
  2846. minScalar: 0
  2847. maxCurve:
  2848. serializedVersion: 2
  2849. m_Curve:
  2850. - serializedVersion: 2
  2851. time: 0
  2852. value: 1
  2853. inSlope: 0
  2854. outSlope: 0
  2855. tangentMode: 0
  2856. - serializedVersion: 2
  2857. time: 1
  2858. value: 1
  2859. inSlope: 0
  2860. outSlope: 0
  2861. tangentMode: 0
  2862. m_PreInfinity: 2
  2863. m_PostInfinity: 2
  2864. m_RotationOrder: 4
  2865. minCurve:
  2866. serializedVersion: 2
  2867. m_Curve:
  2868. - serializedVersion: 2
  2869. time: 0
  2870. value: 0
  2871. inSlope: 0
  2872. outSlope: 0
  2873. tangentMode: 0
  2874. - serializedVersion: 2
  2875. time: 1
  2876. value: 0
  2877. inSlope: 0
  2878. outSlope: 0
  2879. tangentMode: 0
  2880. m_PreInfinity: 2
  2881. m_PostInfinity: 2
  2882. m_RotationOrder: 4
  2883. curve:
  2884. serializedVersion: 2
  2885. minMaxState: 0
  2886. scalar: 0.7853982
  2887. minScalar: 0.7853982
  2888. maxCurve:
  2889. serializedVersion: 2
  2890. m_Curve:
  2891. - serializedVersion: 2
  2892. time: 0
  2893. value: 1
  2894. inSlope: 0
  2895. outSlope: 0
  2896. tangentMode: 0
  2897. - serializedVersion: 2
  2898. time: 1
  2899. value: 1
  2900. inSlope: 0
  2901. outSlope: 0
  2902. tangentMode: 0
  2903. m_PreInfinity: 2
  2904. m_PostInfinity: 2
  2905. m_RotationOrder: 4
  2906. minCurve:
  2907. serializedVersion: 2
  2908. m_Curve:
  2909. - serializedVersion: 2
  2910. time: 0
  2911. value: 0
  2912. inSlope: 0
  2913. outSlope: 0
  2914. tangentMode: 0
  2915. - serializedVersion: 2
  2916. time: 1
  2917. value: 0
  2918. inSlope: 0
  2919. outSlope: 0
  2920. tangentMode: 0
  2921. m_PreInfinity: 2
  2922. m_PostInfinity: 2
  2923. m_RotationOrder: 4
  2924. separateAxes: 0
  2925. range: {x: 0, y: 1}
  2926. ColorBySpeedModule:
  2927. enabled: 0
  2928. gradient:
  2929. serializedVersion: 2
  2930. minMaxState: 1
  2931. minColor: {r: 1, g: 1, b: 1, a: 1}
  2932. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2933. maxGradient:
  2934. serializedVersion: 2
  2935. key0: {r: 1, g: 1, b: 1, a: 1}
  2936. key1: {r: 1, g: 1, b: 1, a: 1}
  2937. key2: {r: 0, g: 0, b: 0, a: 0}
  2938. key3: {r: 0, g: 0, b: 0, a: 0}
  2939. key4: {r: 0, g: 0, b: 0, a: 0}
  2940. key5: {r: 0, g: 0, b: 0, a: 0}
  2941. key6: {r: 0, g: 0, b: 0, a: 0}
  2942. key7: {r: 0, g: 0, b: 0, a: 0}
  2943. ctime0: 0
  2944. ctime1: 65535
  2945. ctime2: 0
  2946. ctime3: 0
  2947. ctime4: 0
  2948. ctime5: 0
  2949. ctime6: 0
  2950. ctime7: 0
  2951. atime0: 0
  2952. atime1: 65535
  2953. atime2: 0
  2954. atime3: 0
  2955. atime4: 0
  2956. atime5: 0
  2957. atime6: 0
  2958. atime7: 0
  2959. m_Mode: 0
  2960. m_NumColorKeys: 2
  2961. m_NumAlphaKeys: 2
  2962. minGradient:
  2963. serializedVersion: 2
  2964. key0: {r: 1, g: 1, b: 1, a: 1}
  2965. key1: {r: 1, g: 1, b: 1, a: 1}
  2966. key2: {r: 0, g: 0, b: 0, a: 0}
  2967. key3: {r: 0, g: 0, b: 0, a: 0}
  2968. key4: {r: 0, g: 0, b: 0, a: 0}
  2969. key5: {r: 0, g: 0, b: 0, a: 0}
  2970. key6: {r: 0, g: 0, b: 0, a: 0}
  2971. key7: {r: 0, g: 0, b: 0, a: 0}
  2972. ctime0: 0
  2973. ctime1: 65535
  2974. ctime2: 0
  2975. ctime3: 0
  2976. ctime4: 0
  2977. ctime5: 0
  2978. ctime6: 0
  2979. ctime7: 0
  2980. atime0: 0
  2981. atime1: 65535
  2982. atime2: 0
  2983. atime3: 0
  2984. atime4: 0
  2985. atime5: 0
  2986. atime6: 0
  2987. atime7: 0
  2988. m_Mode: 0
  2989. m_NumColorKeys: 2
  2990. m_NumAlphaKeys: 2
  2991. range: {x: 0, y: 1}
  2992. CollisionModule:
  2993. enabled: 0
  2994. serializedVersion: 3
  2995. type: 0
  2996. collisionMode: 0
  2997. colliderForce: 0
  2998. multiplyColliderForceByParticleSize: 0
  2999. multiplyColliderForceByParticleSpeed: 0
  3000. multiplyColliderForceByCollisionAngle: 1
  3001. plane0: {fileID: 0}
  3002. plane1: {fileID: 0}
  3003. plane2: {fileID: 0}
  3004. plane3: {fileID: 0}
  3005. plane4: {fileID: 0}
  3006. plane5: {fileID: 0}
  3007. m_Dampen:
  3008. serializedVersion: 2
  3009. minMaxState: 0
  3010. scalar: 0
  3011. minScalar: 0
  3012. maxCurve:
  3013. serializedVersion: 2
  3014. m_Curve:
  3015. - serializedVersion: 2
  3016. time: 0
  3017. value: 1
  3018. inSlope: 0
  3019. outSlope: 0
  3020. tangentMode: 0
  3021. - serializedVersion: 2
  3022. time: 1
  3023. value: 1
  3024. inSlope: 0
  3025. outSlope: 0
  3026. tangentMode: 0
  3027. m_PreInfinity: 2
  3028. m_PostInfinity: 2
  3029. m_RotationOrder: 4
  3030. minCurve:
  3031. serializedVersion: 2
  3032. m_Curve:
  3033. - serializedVersion: 2
  3034. time: 0
  3035. value: 0
  3036. inSlope: 0
  3037. outSlope: 0
  3038. tangentMode: 0
  3039. - serializedVersion: 2
  3040. time: 1
  3041. value: 0
  3042. inSlope: 0
  3043. outSlope: 0
  3044. tangentMode: 0
  3045. m_PreInfinity: 2
  3046. m_PostInfinity: 2
  3047. m_RotationOrder: 4
  3048. m_Bounce:
  3049. serializedVersion: 2
  3050. minMaxState: 0
  3051. scalar: 1
  3052. minScalar: 1
  3053. maxCurve:
  3054. serializedVersion: 2
  3055. m_Curve:
  3056. - serializedVersion: 2
  3057. time: 0
  3058. value: 1
  3059. inSlope: 0
  3060. outSlope: 0
  3061. tangentMode: 0
  3062. - serializedVersion: 2
  3063. time: 1
  3064. value: 1
  3065. inSlope: 0
  3066. outSlope: 0
  3067. tangentMode: 0
  3068. m_PreInfinity: 2
  3069. m_PostInfinity: 2
  3070. m_RotationOrder: 4
  3071. minCurve:
  3072. serializedVersion: 2
  3073. m_Curve:
  3074. - serializedVersion: 2
  3075. time: 0
  3076. value: 0
  3077. inSlope: 0
  3078. outSlope: 0
  3079. tangentMode: 0
  3080. - serializedVersion: 2
  3081. time: 1
  3082. value: 0
  3083. inSlope: 0
  3084. outSlope: 0
  3085. tangentMode: 0
  3086. m_PreInfinity: 2
  3087. m_PostInfinity: 2
  3088. m_RotationOrder: 4
  3089. m_EnergyLossOnCollision:
  3090. serializedVersion: 2
  3091. minMaxState: 0
  3092. scalar: 0
  3093. minScalar: 0
  3094. maxCurve:
  3095. serializedVersion: 2
  3096. m_Curve:
  3097. - serializedVersion: 2
  3098. time: 0
  3099. value: 1
  3100. inSlope: 0
  3101. outSlope: 0
  3102. tangentMode: 0
  3103. - serializedVersion: 2
  3104. time: 1
  3105. value: 1
  3106. inSlope: 0
  3107. outSlope: 0
  3108. tangentMode: 0
  3109. m_PreInfinity: 2
  3110. m_PostInfinity: 2
  3111. m_RotationOrder: 4
  3112. minCurve:
  3113. serializedVersion: 2
  3114. m_Curve:
  3115. - serializedVersion: 2
  3116. time: 0
  3117. value: 0
  3118. inSlope: 0
  3119. outSlope: 0
  3120. tangentMode: 0
  3121. - serializedVersion: 2
  3122. time: 1
  3123. value: 0
  3124. inSlope: 0
  3125. outSlope: 0
  3126. tangentMode: 0
  3127. m_PreInfinity: 2
  3128. m_PostInfinity: 2
  3129. m_RotationOrder: 4
  3130. minKillSpeed: 0
  3131. maxKillSpeed: 10000
  3132. radiusScale: 1
  3133. collidesWith:
  3134. serializedVersion: 2
  3135. m_Bits: 4294967295
  3136. maxCollisionShapes: 256
  3137. quality: 0
  3138. voxelSize: 0.5
  3139. collisionMessages: 0
  3140. collidesWithDynamic: 1
  3141. interiorCollisions: 1
  3142. TriggerModule:
  3143. enabled: 0
  3144. collisionShape0: {fileID: 0}
  3145. collisionShape1: {fileID: 0}
  3146. collisionShape2: {fileID: 0}
  3147. collisionShape3: {fileID: 0}
  3148. collisionShape4: {fileID: 0}
  3149. collisionShape5: {fileID: 0}
  3150. inside: 1
  3151. outside: 0
  3152. enter: 0
  3153. exit: 0
  3154. radiusScale: 1
  3155. SubModule:
  3156. serializedVersion: 2
  3157. enabled: 0
  3158. subEmitters:
  3159. - serializedVersion: 2
  3160. emitter: {fileID: 0}
  3161. type: 0
  3162. properties: 0
  3163. LightsModule:
  3164. enabled: 0
  3165. ratio: 0
  3166. light: {fileID: 0}
  3167. randomDistribution: 1
  3168. color: 1
  3169. range: 1
  3170. intensity: 1
  3171. rangeCurve:
  3172. serializedVersion: 2
  3173. minMaxState: 0
  3174. scalar: 1
  3175. minScalar: 1
  3176. maxCurve:
  3177. serializedVersion: 2
  3178. m_Curve:
  3179. - serializedVersion: 2
  3180. time: 0
  3181. value: 1
  3182. inSlope: 0
  3183. outSlope: 0
  3184. tangentMode: 0
  3185. - serializedVersion: 2
  3186. time: 1
  3187. value: 1
  3188. inSlope: 0
  3189. outSlope: 0
  3190. tangentMode: 0
  3191. m_PreInfinity: 2
  3192. m_PostInfinity: 2
  3193. m_RotationOrder: 4
  3194. minCurve:
  3195. serializedVersion: 2
  3196. m_Curve:
  3197. - serializedVersion: 2
  3198. time: 0
  3199. value: 1
  3200. inSlope: 0
  3201. outSlope: 0
  3202. tangentMode: 0
  3203. - serializedVersion: 2
  3204. time: 1
  3205. value: 1
  3206. inSlope: 0
  3207. outSlope: 0
  3208. tangentMode: 0
  3209. m_PreInfinity: 2
  3210. m_PostInfinity: 2
  3211. m_RotationOrder: 4
  3212. intensityCurve:
  3213. serializedVersion: 2
  3214. minMaxState: 0
  3215. scalar: 1
  3216. minScalar: 1
  3217. maxCurve:
  3218. serializedVersion: 2
  3219. m_Curve:
  3220. - serializedVersion: 2
  3221. time: 0
  3222. value: 1
  3223. inSlope: 0
  3224. outSlope: 0
  3225. tangentMode: 0
  3226. - serializedVersion: 2
  3227. time: 1
  3228. value: 1
  3229. inSlope: 0
  3230. outSlope: 0
  3231. tangentMode: 0
  3232. m_PreInfinity: 2
  3233. m_PostInfinity: 2
  3234. m_RotationOrder: 4
  3235. minCurve:
  3236. serializedVersion: 2
  3237. m_Curve:
  3238. - serializedVersion: 2
  3239. time: 0
  3240. value: 1
  3241. inSlope: 0
  3242. outSlope: 0
  3243. tangentMode: 0
  3244. - serializedVersion: 2
  3245. time: 1
  3246. value: 1
  3247. inSlope: 0
  3248. outSlope: 0
  3249. tangentMode: 0
  3250. m_PreInfinity: 2
  3251. m_PostInfinity: 2
  3252. m_RotationOrder: 4
  3253. maxLights: 20
  3254. TrailModule:
  3255. enabled: 0
  3256. mode: 0
  3257. ratio: 1
  3258. lifetime:
  3259. serializedVersion: 2
  3260. minMaxState: 0
  3261. scalar: 1
  3262. minScalar: 1
  3263. maxCurve:
  3264. serializedVersion: 2
  3265. m_Curve:
  3266. - serializedVersion: 2
  3267. time: 0
  3268. value: 1
  3269. inSlope: 0
  3270. outSlope: 0
  3271. tangentMode: 0
  3272. - serializedVersion: 2
  3273. time: 1
  3274. value: 1
  3275. inSlope: 0
  3276. outSlope: 0
  3277. tangentMode: 0
  3278. m_PreInfinity: 2
  3279. m_PostInfinity: 2
  3280. m_RotationOrder: 4
  3281. minCurve:
  3282. serializedVersion: 2
  3283. m_Curve:
  3284. - serializedVersion: 2
  3285. time: 0
  3286. value: 1
  3287. inSlope: 0
  3288. outSlope: 0
  3289. tangentMode: 0
  3290. - serializedVersion: 2
  3291. time: 1
  3292. value: 1
  3293. inSlope: 0
  3294. outSlope: 0
  3295. tangentMode: 0
  3296. m_PreInfinity: 2
  3297. m_PostInfinity: 2
  3298. m_RotationOrder: 4
  3299. minVertexDistance: 0.2
  3300. textureMode: 0
  3301. ribbonCount: 1
  3302. worldSpace: 0
  3303. dieWithParticles: 1
  3304. sizeAffectsWidth: 1
  3305. sizeAffectsLifetime: 0
  3306. inheritParticleColor: 1
  3307. generateLightingData: 0
  3308. splitSubEmitterRibbons: 0
  3309. colorOverLifetime:
  3310. serializedVersion: 2
  3311. minMaxState: 0
  3312. minColor: {r: 1, g: 1, b: 1, a: 1}
  3313. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3314. maxGradient:
  3315. serializedVersion: 2
  3316. key0: {r: 1, g: 1, b: 1, a: 1}
  3317. key1: {r: 1, g: 1, b: 1, a: 1}
  3318. key2: {r: 0, g: 0, b: 0, a: 0}
  3319. key3: {r: 0, g: 0, b: 0, a: 0}
  3320. key4: {r: 0, g: 0, b: 0, a: 0}
  3321. key5: {r: 0, g: 0, b: 0, a: 0}
  3322. key6: {r: 0, g: 0, b: 0, a: 0}
  3323. key7: {r: 0, g: 0, b: 0, a: 0}
  3324. ctime0: 0
  3325. ctime1: 65535
  3326. ctime2: 0
  3327. ctime3: 0
  3328. ctime4: 0
  3329. ctime5: 0
  3330. ctime6: 0
  3331. ctime7: 0
  3332. atime0: 0
  3333. atime1: 65535
  3334. atime2: 0
  3335. atime3: 0
  3336. atime4: 0
  3337. atime5: 0
  3338. atime6: 0
  3339. atime7: 0
  3340. m_Mode: 0
  3341. m_NumColorKeys: 2
  3342. m_NumAlphaKeys: 2
  3343. minGradient:
  3344. serializedVersion: 2
  3345. key0: {r: 1, g: 1, b: 1, a: 1}
  3346. key1: {r: 1, g: 1, b: 1, a: 1}
  3347. key2: {r: 0, g: 0, b: 0, a: 0}
  3348. key3: {r: 0, g: 0, b: 0, a: 0}
  3349. key4: {r: 0, g: 0, b: 0, a: 0}
  3350. key5: {r: 0, g: 0, b: 0, a: 0}
  3351. key6: {r: 0, g: 0, b: 0, a: 0}
  3352. key7: {r: 0, g: 0, b: 0, a: 0}
  3353. ctime0: 0
  3354. ctime1: 65535
  3355. ctime2: 0
  3356. ctime3: 0
  3357. ctime4: 0
  3358. ctime5: 0
  3359. ctime6: 0
  3360. ctime7: 0
  3361. atime0: 0
  3362. atime1: 65535
  3363. atime2: 0
  3364. atime3: 0
  3365. atime4: 0
  3366. atime5: 0
  3367. atime6: 0
  3368. atime7: 0
  3369. m_Mode: 0
  3370. m_NumColorKeys: 2
  3371. m_NumAlphaKeys: 2
  3372. widthOverTrail:
  3373. serializedVersion: 2
  3374. minMaxState: 0
  3375. scalar: 1
  3376. minScalar: 1
  3377. maxCurve:
  3378. serializedVersion: 2
  3379. m_Curve:
  3380. - serializedVersion: 2
  3381. time: 0
  3382. value: 1
  3383. inSlope: 0
  3384. outSlope: 0
  3385. tangentMode: 0
  3386. - serializedVersion: 2
  3387. time: 1
  3388. value: 1
  3389. inSlope: 0
  3390. outSlope: 0
  3391. tangentMode: 0
  3392. m_PreInfinity: 2
  3393. m_PostInfinity: 2
  3394. m_RotationOrder: 4
  3395. minCurve:
  3396. serializedVersion: 2
  3397. m_Curve:
  3398. - serializedVersion: 2
  3399. time: 0
  3400. value: 1
  3401. inSlope: 0
  3402. outSlope: 0
  3403. tangentMode: 0
  3404. - serializedVersion: 2
  3405. time: 1
  3406. value: 1
  3407. inSlope: 0
  3408. outSlope: 0
  3409. tangentMode: 0
  3410. m_PreInfinity: 2
  3411. m_PostInfinity: 2
  3412. m_RotationOrder: 4
  3413. colorOverTrail:
  3414. serializedVersion: 2
  3415. minMaxState: 0
  3416. minColor: {r: 1, g: 1, b: 1, a: 1}
  3417. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3418. maxGradient:
  3419. serializedVersion: 2
  3420. key0: {r: 1, g: 1, b: 1, a: 1}
  3421. key1: {r: 1, g: 1, b: 1, a: 1}
  3422. key2: {r: 0, g: 0, b: 0, a: 0}
  3423. key3: {r: 0, g: 0, b: 0, a: 0}
  3424. key4: {r: 0, g: 0, b: 0, a: 0}
  3425. key5: {r: 0, g: 0, b: 0, a: 0}
  3426. key6: {r: 0, g: 0, b: 0, a: 0}
  3427. key7: {r: 0, g: 0, b: 0, a: 0}
  3428. ctime0: 0
  3429. ctime1: 65535
  3430. ctime2: 0
  3431. ctime3: 0
  3432. ctime4: 0
  3433. ctime5: 0
  3434. ctime6: 0
  3435. ctime7: 0
  3436. atime0: 0
  3437. atime1: 65535
  3438. atime2: 0
  3439. atime3: 0
  3440. atime4: 0
  3441. atime5: 0
  3442. atime6: 0
  3443. atime7: 0
  3444. m_Mode: 0
  3445. m_NumColorKeys: 2
  3446. m_NumAlphaKeys: 2
  3447. minGradient:
  3448. serializedVersion: 2
  3449. key0: {r: 1, g: 1, b: 1, a: 1}
  3450. key1: {r: 1, g: 1, b: 1, a: 1}
  3451. key2: {r: 0, g: 0, b: 0, a: 0}
  3452. key3: {r: 0, g: 0, b: 0, a: 0}
  3453. key4: {r: 0, g: 0, b: 0, a: 0}
  3454. key5: {r: 0, g: 0, b: 0, a: 0}
  3455. key6: {r: 0, g: 0, b: 0, a: 0}
  3456. key7: {r: 0, g: 0, b: 0, a: 0}
  3457. ctime0: 0
  3458. ctime1: 65535
  3459. ctime2: 0
  3460. ctime3: 0
  3461. ctime4: 0
  3462. ctime5: 0
  3463. ctime6: 0
  3464. ctime7: 0
  3465. atime0: 0
  3466. atime1: 65535
  3467. atime2: 0
  3468. atime3: 0
  3469. atime4: 0
  3470. atime5: 0
  3471. atime6: 0
  3472. atime7: 0
  3473. m_Mode: 0
  3474. m_NumColorKeys: 2
  3475. m_NumAlphaKeys: 2
  3476. CustomDataModule:
  3477. enabled: 0
  3478. mode0: 0
  3479. vectorComponentCount0: 4
  3480. color0:
  3481. serializedVersion: 2
  3482. minMaxState: 0
  3483. minColor: {r: 1, g: 1, b: 1, a: 1}
  3484. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3485. maxGradient:
  3486. serializedVersion: 2
  3487. key0: {r: 1, g: 1, b: 1, a: 1}
  3488. key1: {r: 1, g: 1, b: 1, a: 1}
  3489. key2: {r: 0, g: 0, b: 0, a: 0}
  3490. key3: {r: 0, g: 0, b: 0, a: 0}
  3491. key4: {r: 0, g: 0, b: 0, a: 0}
  3492. key5: {r: 0, g: 0, b: 0, a: 0}
  3493. key6: {r: 0, g: 0, b: 0, a: 0}
  3494. key7: {r: 0, g: 0, b: 0, a: 0}
  3495. ctime0: 0
  3496. ctime1: 65535
  3497. ctime2: 0
  3498. ctime3: 0
  3499. ctime4: 0
  3500. ctime5: 0
  3501. ctime6: 0
  3502. ctime7: 0
  3503. atime0: 0
  3504. atime1: 65535
  3505. atime2: 0
  3506. atime3: 0
  3507. atime4: 0
  3508. atime5: 0
  3509. atime6: 0
  3510. atime7: 0
  3511. m_Mode: 0
  3512. m_NumColorKeys: 2
  3513. m_NumAlphaKeys: 2
  3514. minGradient:
  3515. serializedVersion: 2
  3516. key0: {r: 1, g: 1, b: 1, a: 1}
  3517. key1: {r: 1, g: 1, b: 1, a: 1}
  3518. key2: {r: 0, g: 0, b: 0, a: 0}
  3519. key3: {r: 0, g: 0, b: 0, a: 0}
  3520. key4: {r: 0, g: 0, b: 0, a: 0}
  3521. key5: {r: 0, g: 0, b: 0, a: 0}
  3522. key6: {r: 0, g: 0, b: 0, a: 0}
  3523. key7: {r: 0, g: 0, b: 0, a: 0}
  3524. ctime0: 0
  3525. ctime1: 65535
  3526. ctime2: 0
  3527. ctime3: 0
  3528. ctime4: 0
  3529. ctime5: 0
  3530. ctime6: 0
  3531. ctime7: 0
  3532. atime0: 0
  3533. atime1: 65535
  3534. atime2: 0
  3535. atime3: 0
  3536. atime4: 0
  3537. atime5: 0
  3538. atime6: 0
  3539. atime7: 0
  3540. m_Mode: 0
  3541. m_NumColorKeys: 2
  3542. m_NumAlphaKeys: 2
  3543. colorLabel0: Color
  3544. vector0_0:
  3545. serializedVersion: 2
  3546. minMaxState: 0
  3547. scalar: 0
  3548. minScalar: 0
  3549. maxCurve:
  3550. serializedVersion: 2
  3551. m_Curve:
  3552. - serializedVersion: 2
  3553. time: 0
  3554. value: 0
  3555. inSlope: 0
  3556. outSlope: 0
  3557. tangentMode: 0
  3558. - serializedVersion: 2
  3559. time: 1
  3560. value: 0
  3561. inSlope: 0
  3562. outSlope: 0
  3563. tangentMode: 0
  3564. m_PreInfinity: 2
  3565. m_PostInfinity: 2
  3566. m_RotationOrder: 4
  3567. minCurve:
  3568. serializedVersion: 2
  3569. m_Curve:
  3570. - serializedVersion: 2
  3571. time: 0
  3572. value: 0
  3573. inSlope: 0
  3574. outSlope: 0
  3575. tangentMode: 0
  3576. - serializedVersion: 2
  3577. time: 1
  3578. value: 0
  3579. inSlope: 0
  3580. outSlope: 0
  3581. tangentMode: 0
  3582. m_PreInfinity: 2
  3583. m_PostInfinity: 2
  3584. m_RotationOrder: 4
  3585. vectorLabel0_0: X
  3586. vector0_1:
  3587. serializedVersion: 2
  3588. minMaxState: 0
  3589. scalar: 0
  3590. minScalar: 0
  3591. maxCurve:
  3592. serializedVersion: 2
  3593. m_Curve:
  3594. - serializedVersion: 2
  3595. time: 0
  3596. value: 0
  3597. inSlope: 0
  3598. outSlope: 0
  3599. tangentMode: 0
  3600. - serializedVersion: 2
  3601. time: 1
  3602. value: 0
  3603. inSlope: 0
  3604. outSlope: 0
  3605. tangentMode: 0
  3606. m_PreInfinity: 2
  3607. m_PostInfinity: 2
  3608. m_RotationOrder: 4
  3609. minCurve:
  3610. serializedVersion: 2
  3611. m_Curve:
  3612. - serializedVersion: 2
  3613. time: 0
  3614. value: 0
  3615. inSlope: 0
  3616. outSlope: 0
  3617. tangentMode: 0
  3618. - serializedVersion: 2
  3619. time: 1
  3620. value: 0
  3621. inSlope: 0
  3622. outSlope: 0
  3623. tangentMode: 0
  3624. m_PreInfinity: 2
  3625. m_PostInfinity: 2
  3626. m_RotationOrder: 4
  3627. vectorLabel0_1: Y
  3628. vector0_2:
  3629. serializedVersion: 2
  3630. minMaxState: 0
  3631. scalar: 0
  3632. minScalar: 0
  3633. maxCurve:
  3634. serializedVersion: 2
  3635. m_Curve:
  3636. - serializedVersion: 2
  3637. time: 0
  3638. value: 0
  3639. inSlope: 0
  3640. outSlope: 0
  3641. tangentMode: 0
  3642. - serializedVersion: 2
  3643. time: 1
  3644. value: 0
  3645. inSlope: 0
  3646. outSlope: 0
  3647. tangentMode: 0
  3648. m_PreInfinity: 2
  3649. m_PostInfinity: 2
  3650. m_RotationOrder: 4
  3651. minCurve:
  3652. serializedVersion: 2
  3653. m_Curve:
  3654. - serializedVersion: 2
  3655. time: 0
  3656. value: 0
  3657. inSlope: 0
  3658. outSlope: 0
  3659. tangentMode: 0
  3660. - serializedVersion: 2
  3661. time: 1
  3662. value: 0
  3663. inSlope: 0
  3664. outSlope: 0
  3665. tangentMode: 0
  3666. m_PreInfinity: 2
  3667. m_PostInfinity: 2
  3668. m_RotationOrder: 4
  3669. vectorLabel0_2: Z
  3670. vector0_3:
  3671. serializedVersion: 2
  3672. minMaxState: 0
  3673. scalar: 0
  3674. minScalar: 0
  3675. maxCurve:
  3676. serializedVersion: 2
  3677. m_Curve:
  3678. - serializedVersion: 2
  3679. time: 0
  3680. value: 0
  3681. inSlope: 0
  3682. outSlope: 0
  3683. tangentMode: 0
  3684. - serializedVersion: 2
  3685. time: 1
  3686. value: 0
  3687. inSlope: 0
  3688. outSlope: 0
  3689. tangentMode: 0
  3690. m_PreInfinity: 2
  3691. m_PostInfinity: 2
  3692. m_RotationOrder: 4
  3693. minCurve:
  3694. serializedVersion: 2
  3695. m_Curve:
  3696. - serializedVersion: 2
  3697. time: 0
  3698. value: 0
  3699. inSlope: 0
  3700. outSlope: 0
  3701. tangentMode: 0
  3702. - serializedVersion: 2
  3703. time: 1
  3704. value: 0
  3705. inSlope: 0
  3706. outSlope: 0
  3707. tangentMode: 0
  3708. m_PreInfinity: 2
  3709. m_PostInfinity: 2
  3710. m_RotationOrder: 4
  3711. vectorLabel0_3: W
  3712. mode1: 0
  3713. vectorComponentCount1: 4
  3714. color1:
  3715. serializedVersion: 2
  3716. minMaxState: 0
  3717. minColor: {r: 1, g: 1, b: 1, a: 1}
  3718. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3719. maxGradient:
  3720. serializedVersion: 2
  3721. key0: {r: 1, g: 1, b: 1, a: 1}
  3722. key1: {r: 1, g: 1, b: 1, a: 1}
  3723. key2: {r: 0, g: 0, b: 0, a: 0}
  3724. key3: {r: 0, g: 0, b: 0, a: 0}
  3725. key4: {r: 0, g: 0, b: 0, a: 0}
  3726. key5: {r: 0, g: 0, b: 0, a: 0}
  3727. key6: {r: 0, g: 0, b: 0, a: 0}
  3728. key7: {r: 0, g: 0, b: 0, a: 0}
  3729. ctime0: 0
  3730. ctime1: 65535
  3731. ctime2: 0
  3732. ctime3: 0
  3733. ctime4: 0
  3734. ctime5: 0
  3735. ctime6: 0
  3736. ctime7: 0
  3737. atime0: 0
  3738. atime1: 65535
  3739. atime2: 0
  3740. atime3: 0
  3741. atime4: 0
  3742. atime5: 0
  3743. atime6: 0
  3744. atime7: 0
  3745. m_Mode: 0
  3746. m_NumColorKeys: 2
  3747. m_NumAlphaKeys: 2
  3748. minGradient:
  3749. serializedVersion: 2
  3750. key0: {r: 1, g: 1, b: 1, a: 1}
  3751. key1: {r: 1, g: 1, b: 1, a: 1}
  3752. key2: {r: 0, g: 0, b: 0, a: 0}
  3753. key3: {r: 0, g: 0, b: 0, a: 0}
  3754. key4: {r: 0, g: 0, b: 0, a: 0}
  3755. key5: {r: 0, g: 0, b: 0, a: 0}
  3756. key6: {r: 0, g: 0, b: 0, a: 0}
  3757. key7: {r: 0, g: 0, b: 0, a: 0}
  3758. ctime0: 0
  3759. ctime1: 65535
  3760. ctime2: 0
  3761. ctime3: 0
  3762. ctime4: 0
  3763. ctime5: 0
  3764. ctime6: 0
  3765. ctime7: 0
  3766. atime0: 0
  3767. atime1: 65535
  3768. atime2: 0
  3769. atime3: 0
  3770. atime4: 0
  3771. atime5: 0
  3772. atime6: 0
  3773. atime7: 0
  3774. m_Mode: 0
  3775. m_NumColorKeys: 2
  3776. m_NumAlphaKeys: 2
  3777. colorLabel1: Color
  3778. vector1_0:
  3779. serializedVersion: 2
  3780. minMaxState: 0
  3781. scalar: 0
  3782. minScalar: 0
  3783. maxCurve:
  3784. serializedVersion: 2
  3785. m_Curve:
  3786. - serializedVersion: 2
  3787. time: 0
  3788. value: 0
  3789. inSlope: 0
  3790. outSlope: 0
  3791. tangentMode: 0
  3792. - serializedVersion: 2
  3793. time: 1
  3794. value: 0
  3795. inSlope: 0
  3796. outSlope: 0
  3797. tangentMode: 0
  3798. m_PreInfinity: 2
  3799. m_PostInfinity: 2
  3800. m_RotationOrder: 4
  3801. minCurve:
  3802. serializedVersion: 2
  3803. m_Curve:
  3804. - serializedVersion: 2
  3805. time: 0
  3806. value: 0
  3807. inSlope: 0
  3808. outSlope: 0
  3809. tangentMode: 0
  3810. - serializedVersion: 2
  3811. time: 1
  3812. value: 0
  3813. inSlope: 0
  3814. outSlope: 0
  3815. tangentMode: 0
  3816. m_PreInfinity: 2
  3817. m_PostInfinity: 2
  3818. m_RotationOrder: 4
  3819. vectorLabel1_0: X
  3820. vector1_1:
  3821. serializedVersion: 2
  3822. minMaxState: 0
  3823. scalar: 0
  3824. minScalar: 0
  3825. maxCurve:
  3826. serializedVersion: 2
  3827. m_Curve:
  3828. - serializedVersion: 2
  3829. time: 0
  3830. value: 0
  3831. inSlope: 0
  3832. outSlope: 0
  3833. tangentMode: 0
  3834. - serializedVersion: 2
  3835. time: 1
  3836. value: 0
  3837. inSlope: 0
  3838. outSlope: 0
  3839. tangentMode: 0
  3840. m_PreInfinity: 2
  3841. m_PostInfinity: 2
  3842. m_RotationOrder: 4
  3843. minCurve:
  3844. serializedVersion: 2
  3845. m_Curve:
  3846. - serializedVersion: 2
  3847. time: 0
  3848. value: 0
  3849. inSlope: 0
  3850. outSlope: 0
  3851. tangentMode: 0
  3852. - serializedVersion: 2
  3853. time: 1
  3854. value: 0
  3855. inSlope: 0
  3856. outSlope: 0
  3857. tangentMode: 0
  3858. m_PreInfinity: 2
  3859. m_PostInfinity: 2
  3860. m_RotationOrder: 4
  3861. vectorLabel1_1: Y
  3862. vector1_2:
  3863. serializedVersion: 2
  3864. minMaxState: 0
  3865. scalar: 0
  3866. minScalar: 0
  3867. maxCurve:
  3868. serializedVersion: 2
  3869. m_Curve:
  3870. - serializedVersion: 2
  3871. time: 0
  3872. value: 0
  3873. inSlope: 0
  3874. outSlope: 0
  3875. tangentMode: 0
  3876. - serializedVersion: 2
  3877. time: 1
  3878. value: 0
  3879. inSlope: 0
  3880. outSlope: 0
  3881. tangentMode: 0
  3882. m_PreInfinity: 2
  3883. m_PostInfinity: 2
  3884. m_RotationOrder: 4
  3885. minCurve:
  3886. serializedVersion: 2
  3887. m_Curve:
  3888. - serializedVersion: 2
  3889. time: 0
  3890. value: 0
  3891. inSlope: 0
  3892. outSlope: 0
  3893. tangentMode: 0
  3894. - serializedVersion: 2
  3895. time: 1
  3896. value: 0
  3897. inSlope: 0
  3898. outSlope: 0
  3899. tangentMode: 0
  3900. m_PreInfinity: 2
  3901. m_PostInfinity: 2
  3902. m_RotationOrder: 4
  3903. vectorLabel1_2: Z
  3904. vector1_3:
  3905. serializedVersion: 2
  3906. minMaxState: 0
  3907. scalar: 0
  3908. minScalar: 0
  3909. maxCurve:
  3910. serializedVersion: 2
  3911. m_Curve:
  3912. - serializedVersion: 2
  3913. time: 0
  3914. value: 0
  3915. inSlope: 0
  3916. outSlope: 0
  3917. tangentMode: 0
  3918. - serializedVersion: 2
  3919. time: 1
  3920. value: 0
  3921. inSlope: 0
  3922. outSlope: 0
  3923. tangentMode: 0
  3924. m_PreInfinity: 2
  3925. m_PostInfinity: 2
  3926. m_RotationOrder: 4
  3927. minCurve:
  3928. serializedVersion: 2
  3929. m_Curve:
  3930. - serializedVersion: 2
  3931. time: 0
  3932. value: 0
  3933. inSlope: 0
  3934. outSlope: 0
  3935. tangentMode: 0
  3936. - serializedVersion: 2
  3937. time: 1
  3938. value: 0
  3939. inSlope: 0
  3940. outSlope: 0
  3941. tangentMode: 0
  3942. m_PreInfinity: 2
  3943. m_PostInfinity: 2
  3944. m_RotationOrder: 4
  3945. vectorLabel1_3: W
  3946. --- !u!4 &1638220040
  3947. Transform:
  3948. m_ObjectHideFlags: 0
  3949. m_PrefabParentObject: {fileID: 0}
  3950. m_PrefabInternal: {fileID: 0}
  3951. m_GameObject: {fileID: 1638220037}
  3952. m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068}
  3953. m_LocalPosition: {x: 0, y: -20, z: 0}
  3954. m_LocalScale: {x: 1, y: 1, z: 1}
  3955. m_Children: []
  3956. m_Father: {fileID: 0}
  3957. m_RootOrder: 5
  3958. m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0}
  3959. --- !u!1 &2024847289
  3960. GameObject:
  3961. m_ObjectHideFlags: 0
  3962. m_PrefabParentObject: {fileID: 0}
  3963. m_PrefabInternal: {fileID: 0}
  3964. serializedVersion: 5
  3965. m_Component:
  3966. - component: {fileID: 2024847293}
  3967. - component: {fileID: 2024847292}
  3968. - component: {fileID: 2024847291}
  3969. - component: {fileID: 2024847290}
  3970. m_Layer: 5
  3971. m_Name: Canvas
  3972. m_TagString: Untagged
  3973. m_Icon: {fileID: 0}
  3974. m_NavMeshLayer: 0
  3975. m_StaticEditorFlags: 0
  3976. m_IsActive: 1
  3977. --- !u!114 &2024847290
  3978. MonoBehaviour:
  3979. m_ObjectHideFlags: 0
  3980. m_PrefabParentObject: {fileID: 0}
  3981. m_PrefabInternal: {fileID: 0}
  3982. m_GameObject: {fileID: 2024847289}
  3983. m_Enabled: 1
  3984. m_EditorHideFlags: 0
  3985. m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  3986. m_Name:
  3987. m_EditorClassIdentifier:
  3988. m_IgnoreReversedGraphics: 1
  3989. m_BlockingObjects: 0
  3990. m_BlockingMask:
  3991. serializedVersion: 2
  3992. m_Bits: 4294967295
  3993. --- !u!114 &2024847291
  3994. MonoBehaviour:
  3995. m_ObjectHideFlags: 0
  3996. m_PrefabParentObject: {fileID: 0}
  3997. m_PrefabInternal: {fileID: 0}
  3998. m_GameObject: {fileID: 2024847289}
  3999. m_Enabled: 1
  4000. m_EditorHideFlags: 0
  4001. m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  4002. m_Name:
  4003. m_EditorClassIdentifier:
  4004. m_UiScaleMode: 1
  4005. m_ReferencePixelsPerUnit: 100
  4006. m_ScaleFactor: 1
  4007. m_ReferenceResolution: {x: 1920, y: 1080}
  4008. m_ScreenMatchMode: 0
  4009. m_MatchWidthOrHeight: 1
  4010. m_PhysicalUnit: 3
  4011. m_FallbackScreenDPI: 96
  4012. m_DefaultSpriteDPI: 96
  4013. m_DynamicPixelsPerUnit: 1
  4014. --- !u!223 &2024847292
  4015. Canvas:
  4016. m_ObjectHideFlags: 0
  4017. m_PrefabParentObject: {fileID: 0}
  4018. m_PrefabInternal: {fileID: 0}
  4019. m_GameObject: {fileID: 2024847289}
  4020. m_Enabled: 1
  4021. serializedVersion: 3
  4022. m_RenderMode: 0
  4023. m_Camera: {fileID: 0}
  4024. m_PlaneDistance: 100
  4025. m_PixelPerfect: 0
  4026. m_ReceivesEvents: 1
  4027. m_OverrideSorting: 0
  4028. m_OverridePixelPerfect: 0
  4029. m_SortingBucketNormalizedSize: 0
  4030. m_AdditionalShaderChannelsFlag: 25
  4031. m_SortingLayerID: 0
  4032. m_SortingOrder: 0
  4033. m_TargetDisplay: 0
  4034. --- !u!224 &2024847293
  4035. RectTransform:
  4036. m_ObjectHideFlags: 0
  4037. m_PrefabParentObject: {fileID: 0}
  4038. m_PrefabInternal: {fileID: 0}
  4039. m_GameObject: {fileID: 2024847289}
  4040. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  4041. m_LocalPosition: {x: 0, y: 0, z: 0}
  4042. m_LocalScale: {x: 0, y: 0, z: 0}
  4043. m_Children:
  4044. - {fileID: 601629551}
  4045. - {fileID: 1363212417}
  4046. m_Father: {fileID: 0}
  4047. m_RootOrder: 2
  4048. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  4049. m_AnchorMin: {x: 0, y: 0}
  4050. m_AnchorMax: {x: 0, y: 0}
  4051. m_AnchoredPosition: {x: 0, y: 0}
  4052. m_SizeDelta: {x: 0, y: 0}
  4053. m_Pivot: {x: 0, y: 0}