RoomScanner.unity 98 KB

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