IceBallWithDistortion.unity 204 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692
  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: 9
  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.19607843, g: 0.19607843, b: 0.19607843, a: 1}
  24. m_AmbientEquatorColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
  25. m_AmbientGroundColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, 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, g: 0, b: 0, a: 1}
  42. m_UseRadianceAmbientProbe: 0
  43. --- !u!157 &4
  44. LightmapSettings:
  45. m_ObjectHideFlags: 0
  46. serializedVersion: 12
  47. m_GIWorkflowMode: 0
  48. m_GISettings:
  49. serializedVersion: 2
  50. m_BounceScale: 1
  51. m_IndirectOutputScale: 1
  52. m_AlbedoBoost: 1
  53. m_EnvironmentLightingMode: 0
  54. m_EnableBakedLightmaps: 1
  55. m_EnableRealtimeLightmaps: 1
  56. m_LightmapEditorSettings:
  57. serializedVersion: 12
  58. m_Resolution: 1
  59. m_BakeResolution: 50
  60. m_AtlasSize: 1024
  61. m_AO: 0
  62. m_AOMaxDistance: 1
  63. m_CompAOExponent: 0
  64. m_CompAOExponentDirect: 0
  65. m_ExtractAmbientOcclusion: 0
  66. m_Padding: 2
  67. m_LightmapParameters: {fileID: 0}
  68. m_LightmapsBakeMode: 1
  69. m_TextureCompression: 0
  70. m_FinalGather: 0
  71. m_FinalGatherFiltering: 1
  72. m_FinalGatherRayCount: 1024
  73. m_ReflectionCompression: 2
  74. m_MixedBakeMode: 1
  75. m_BakeBackend: 0
  76. m_PVRSampling: 1
  77. m_PVRDirectSampleCount: 32
  78. m_PVRSampleCount: 512
  79. m_PVRBounces: 2
  80. m_PVREnvironmentSampleCount: 512
  81. m_PVREnvironmentReferencePointCount: 2048
  82. m_PVRFilteringMode: 0
  83. m_PVRDenoiserTypeDirect: 0
  84. m_PVRDenoiserTypeIndirect: 0
  85. m_PVRDenoiserTypeAO: 0
  86. m_PVRFilterTypeDirect: 0
  87. m_PVRFilterTypeIndirect: 0
  88. m_PVRFilterTypeAO: 0
  89. m_PVREnvironmentMIS: 0
  90. m_PVRCulling: 1
  91. m_PVRFilteringGaussRadiusDirect: 1
  92. m_PVRFilteringGaussRadiusIndirect: 5
  93. m_PVRFilteringGaussRadiusAO: 2
  94. m_PVRFilteringAtrousPositionSigmaDirect: 0.5
  95. m_PVRFilteringAtrousPositionSigmaIndirect: 2
  96. m_PVRFilteringAtrousPositionSigmaAO: 1
  97. m_ExportTrainingData: 0
  98. m_TrainingDataDestination: TrainingData
  99. m_LightProbeSampleCountMultiplier: 4
  100. m_LightingDataAsset: {fileID: 0}
  101. m_LightingSettings: {fileID: 4890085278179872738, guid: d8bf80ce84aff08478715c8d979195e8,
  102. type: 2}
  103. --- !u!196 &5
  104. NavMeshSettings:
  105. serializedVersion: 2
  106. m_ObjectHideFlags: 0
  107. m_BuildSettings:
  108. serializedVersion: 2
  109. agentTypeID: 0
  110. agentRadius: 0.5
  111. agentHeight: 2
  112. agentSlope: 45
  113. agentClimb: 0.4
  114. ledgeDropHeight: 0
  115. maxJumpAcrossDistance: 0
  116. minRegionArea: 2
  117. manualCellSize: 0
  118. cellSize: 0.16666666
  119. manualTileSize: 0
  120. tileSize: 256
  121. accuratePlacement: 0
  122. maxJobWorkers: 0
  123. preserveTilesOutsideBounds: 0
  124. debug:
  125. m_Flags: 0
  126. m_NavMeshData: {fileID: 0}
  127. --- !u!1 &202526444
  128. GameObject:
  129. m_ObjectHideFlags: 0
  130. m_CorrespondingSourceObject: {fileID: 0}
  131. m_PrefabInstance: {fileID: 0}
  132. m_PrefabAsset: {fileID: 0}
  133. serializedVersion: 6
  134. m_Component:
  135. - component: {fileID: 202526449}
  136. - component: {fileID: 202526448}
  137. - component: {fileID: 202526446}
  138. - component: {fileID: 202526445}
  139. m_Layer: 0
  140. m_Name: Main Camera
  141. m_TagString: MainCamera
  142. m_Icon: {fileID: 0}
  143. m_NavMeshLayer: 0
  144. m_StaticEditorFlags: 0
  145. m_IsActive: 1
  146. --- !u!81 &202526445
  147. AudioListener:
  148. m_ObjectHideFlags: 0
  149. m_CorrespondingSourceObject: {fileID: 0}
  150. m_PrefabInstance: {fileID: 0}
  151. m_PrefabAsset: {fileID: 0}
  152. m_GameObject: {fileID: 202526444}
  153. m_Enabled: 1
  154. --- !u!124 &202526446
  155. Behaviour:
  156. m_ObjectHideFlags: 0
  157. m_CorrespondingSourceObject: {fileID: 0}
  158. m_PrefabInstance: {fileID: 0}
  159. m_PrefabAsset: {fileID: 0}
  160. m_GameObject: {fileID: 202526444}
  161. m_Enabled: 1
  162. --- !u!20 &202526448
  163. Camera:
  164. m_ObjectHideFlags: 0
  165. m_CorrespondingSourceObject: {fileID: 0}
  166. m_PrefabInstance: {fileID: 0}
  167. m_PrefabAsset: {fileID: 0}
  168. m_GameObject: {fileID: 202526444}
  169. m_Enabled: 1
  170. serializedVersion: 2
  171. m_ClearFlags: 1
  172. m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844}
  173. m_projectionMatrixMode: 1
  174. m_GateFitMode: 2
  175. m_FOVAxisMode: 0
  176. m_SensorSize: {x: 36, y: 24}
  177. m_LensShift: {x: 0, y: 0}
  178. m_FocalLength: 50
  179. m_NormalizedViewPortRect:
  180. serializedVersion: 2
  181. x: 0
  182. y: 0
  183. width: 1
  184. height: 1
  185. near clip plane: 0.3
  186. far clip plane: 1000
  187. field of view: 60
  188. orthographic: 0
  189. orthographic size: 5
  190. m_Depth: -1
  191. m_CullingMask:
  192. serializedVersion: 2
  193. m_Bits: 4294967295
  194. m_RenderingPath: -1
  195. m_TargetTexture: {fileID: 0}
  196. m_TargetDisplay: 0
  197. m_TargetEye: 3
  198. m_HDR: 0
  199. m_AllowMSAA: 1
  200. m_AllowDynamicResolution: 0
  201. m_ForceIntoRT: 0
  202. m_OcclusionCulling: 1
  203. m_StereoConvergence: 10
  204. m_StereoSeparation: 0.022
  205. --- !u!4 &202526449
  206. Transform:
  207. m_ObjectHideFlags: 0
  208. m_CorrespondingSourceObject: {fileID: 0}
  209. m_PrefabInstance: {fileID: 0}
  210. m_PrefabAsset: {fileID: 0}
  211. m_GameObject: {fileID: 202526444}
  212. m_LocalRotation: {x: 0.1305262, y: 0, z: 0, w: 0.9914449}
  213. m_LocalPosition: {x: 0, y: 0.6703806, z: -8.719362}
  214. m_LocalScale: {x: 1, y: 1, z: 1}
  215. m_ConstrainProportionsScale: 0
  216. m_Children: []
  217. m_Father: {fileID: 0}
  218. m_RootOrder: 3
  219. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  220. --- !u!1 &340827013
  221. GameObject:
  222. m_ObjectHideFlags: 0
  223. m_CorrespondingSourceObject: {fileID: 0}
  224. m_PrefabInstance: {fileID: 0}
  225. m_PrefabAsset: {fileID: 0}
  226. serializedVersion: 6
  227. m_Component:
  228. - component: {fileID: 340827015}
  229. - component: {fileID: 340827014}
  230. m_Layer: 0
  231. m_Name: Directional light
  232. m_TagString: Untagged
  233. m_Icon: {fileID: 0}
  234. m_NavMeshLayer: 0
  235. m_StaticEditorFlags: 0
  236. m_IsActive: 1
  237. --- !u!108 &340827014
  238. Light:
  239. m_ObjectHideFlags: 0
  240. m_CorrespondingSourceObject: {fileID: 0}
  241. m_PrefabInstance: {fileID: 0}
  242. m_PrefabAsset: {fileID: 0}
  243. m_GameObject: {fileID: 340827013}
  244. m_Enabled: 1
  245. serializedVersion: 10
  246. m_Type: 1
  247. m_Shape: 0
  248. m_Color: {r: 1, g: 1, b: 1, a: 1}
  249. m_Intensity: 0.72
  250. m_Range: 10
  251. m_SpotAngle: 30
  252. m_InnerSpotAngle: 21.80208
  253. m_CookieSize: 10
  254. m_Shadows:
  255. m_Type: 2
  256. m_Resolution: -1
  257. m_CustomResolution: -1
  258. m_Strength: 0.4
  259. m_Bias: 0.05
  260. m_NormalBias: 0.4
  261. m_NearPlane: 0.2
  262. m_CullingMatrixOverride:
  263. e00: 1
  264. e01: 0
  265. e02: 0
  266. e03: 0
  267. e10: 0
  268. e11: 1
  269. e12: 0
  270. e13: 0
  271. e20: 0
  272. e21: 0
  273. e22: 1
  274. e23: 0
  275. e30: 0
  276. e31: 0
  277. e32: 0
  278. e33: 1
  279. m_UseCullingMatrixOverride: 0
  280. m_Cookie: {fileID: 0}
  281. m_DrawHalo: 0
  282. m_Flare: {fileID: 0}
  283. m_RenderMode: 0
  284. m_CullingMask:
  285. serializedVersion: 2
  286. m_Bits: 4294967295
  287. m_RenderingLayerMask: 1
  288. m_Lightmapping: 1
  289. m_LightShadowCasterMode: 0
  290. m_AreaSize: {x: 1, y: 1}
  291. m_BounceIntensity: 1
  292. m_ColorTemperature: 6570
  293. m_UseColorTemperature: 0
  294. m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
  295. m_UseBoundingSphereOverride: 0
  296. m_UseViewFrustumForShadowCasterCull: 1
  297. m_ShadowRadius: 0
  298. m_ShadowAngle: 0
  299. --- !u!4 &340827015
  300. Transform:
  301. m_ObjectHideFlags: 0
  302. m_CorrespondingSourceObject: {fileID: 0}
  303. m_PrefabInstance: {fileID: 0}
  304. m_PrefabAsset: {fileID: 0}
  305. m_GameObject: {fileID: 340827013}
  306. m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.10938166, w: 0.8754261}
  307. m_LocalPosition: {x: -0.9498327, y: -9.989703, z: 5.210639}
  308. m_LocalScale: {x: 1, y: 1, z: 1}
  309. m_ConstrainProportionsScale: 0
  310. m_Children: []
  311. m_Father: {fileID: 0}
  312. m_RootOrder: 0
  313. m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
  314. --- !u!1001 &455195575
  315. PrefabInstance:
  316. m_ObjectHideFlags: 0
  317. serializedVersion: 2
  318. m_Modification:
  319. m_TransformParent: {fileID: 0}
  320. m_Modifications:
  321. - target: {fileID: 100002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  322. propertyPath: m_IsActive
  323. value: 1
  324. objectReference: {fileID: 0}
  325. - target: {fileID: 100090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  326. propertyPath: m_IsActive
  327. value: 1
  328. objectReference: {fileID: 0}
  329. - target: {fileID: 100092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  330. propertyPath: m_IsActive
  331. value: 1
  332. objectReference: {fileID: 0}
  333. - target: {fileID: 100094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  334. propertyPath: m_IsActive
  335. value: 1
  336. objectReference: {fileID: 0}
  337. - target: {fileID: 100096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  338. propertyPath: m_IsActive
  339. value: 1
  340. objectReference: {fileID: 0}
  341. - target: {fileID: 100098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  342. propertyPath: m_IsActive
  343. value: 1
  344. objectReference: {fileID: 0}
  345. - target: {fileID: 100100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  346. propertyPath: m_IsActive
  347. value: 1
  348. objectReference: {fileID: 0}
  349. - target: {fileID: 100102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  350. propertyPath: m_IsActive
  351. value: 1
  352. objectReference: {fileID: 0}
  353. - target: {fileID: 100104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  354. propertyPath: m_IsActive
  355. value: 1
  356. objectReference: {fileID: 0}
  357. - target: {fileID: 100106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  358. propertyPath: m_IsActive
  359. value: 1
  360. objectReference: {fileID: 0}
  361. - target: {fileID: 100108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  362. propertyPath: m_IsActive
  363. value: 1
  364. objectReference: {fileID: 0}
  365. - target: {fileID: 100110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  366. propertyPath: m_IsActive
  367. value: 1
  368. objectReference: {fileID: 0}
  369. - target: {fileID: 100112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  370. propertyPath: m_IsActive
  371. value: 1
  372. objectReference: {fileID: 0}
  373. - target: {fileID: 100114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  374. propertyPath: m_IsActive
  375. value: 1
  376. objectReference: {fileID: 0}
  377. - target: {fileID: 100116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  378. propertyPath: m_IsActive
  379. value: 1
  380. objectReference: {fileID: 0}
  381. - target: {fileID: 100118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  382. propertyPath: m_IsActive
  383. value: 1
  384. objectReference: {fileID: 0}
  385. - target: {fileID: 100120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  386. propertyPath: m_IsActive
  387. value: 1
  388. objectReference: {fileID: 0}
  389. - target: {fileID: 100122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  390. propertyPath: m_IsActive
  391. value: 1
  392. objectReference: {fileID: 0}
  393. - target: {fileID: 100124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  394. propertyPath: m_IsActive
  395. value: 1
  396. objectReference: {fileID: 0}
  397. - target: {fileID: 100126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  398. propertyPath: m_IsActive
  399. value: 1
  400. objectReference: {fileID: 0}
  401. - target: {fileID: 100128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  402. propertyPath: m_IsActive
  403. value: 1
  404. objectReference: {fileID: 0}
  405. - target: {fileID: 100130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  406. propertyPath: m_IsActive
  407. value: 1
  408. objectReference: {fileID: 0}
  409. - target: {fileID: 100132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  410. propertyPath: m_IsActive
  411. value: 1
  412. objectReference: {fileID: 0}
  413. - target: {fileID: 100134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  414. propertyPath: m_IsActive
  415. value: 1
  416. objectReference: {fileID: 0}
  417. - target: {fileID: 100136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  418. propertyPath: m_IsActive
  419. value: 1
  420. objectReference: {fileID: 0}
  421. - target: {fileID: 100138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  422. propertyPath: m_IsActive
  423. value: 1
  424. objectReference: {fileID: 0}
  425. - target: {fileID: 100140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  426. propertyPath: m_IsActive
  427. value: 1
  428. objectReference: {fileID: 0}
  429. - target: {fileID: 100142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  430. propertyPath: m_IsActive
  431. value: 1
  432. objectReference: {fileID: 0}
  433. - target: {fileID: 100144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  434. propertyPath: m_IsActive
  435. value: 1
  436. objectReference: {fileID: 0}
  437. - target: {fileID: 100146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  438. propertyPath: m_IsActive
  439. value: 1
  440. objectReference: {fileID: 0}
  441. - target: {fileID: 100148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  442. propertyPath: m_IsActive
  443. value: 1
  444. objectReference: {fileID: 0}
  445. - target: {fileID: 100150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  446. propertyPath: m_IsActive
  447. value: 1
  448. objectReference: {fileID: 0}
  449. - target: {fileID: 100152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  450. propertyPath: m_IsActive
  451. value: 1
  452. objectReference: {fileID: 0}
  453. - target: {fileID: 100154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  454. propertyPath: m_IsActive
  455. value: 1
  456. objectReference: {fileID: 0}
  457. - target: {fileID: 100156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  458. propertyPath: m_IsActive
  459. value: 1
  460. objectReference: {fileID: 0}
  461. - target: {fileID: 100158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  462. propertyPath: m_IsActive
  463. value: 1
  464. objectReference: {fileID: 0}
  465. - target: {fileID: 100160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  466. propertyPath: m_IsActive
  467. value: 1
  468. objectReference: {fileID: 0}
  469. - target: {fileID: 100162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  470. propertyPath: m_IsActive
  471. value: 1
  472. objectReference: {fileID: 0}
  473. - target: {fileID: 100164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  474. propertyPath: m_IsActive
  475. value: 1
  476. objectReference: {fileID: 0}
  477. - target: {fileID: 100166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  478. propertyPath: m_IsActive
  479. value: 1
  480. objectReference: {fileID: 0}
  481. - target: {fileID: 100168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  482. propertyPath: m_IsActive
  483. value: 1
  484. objectReference: {fileID: 0}
  485. - target: {fileID: 100170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  486. propertyPath: m_IsActive
  487. value: 1
  488. objectReference: {fileID: 0}
  489. - target: {fileID: 100172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  490. propertyPath: m_IsActive
  491. value: 1
  492. objectReference: {fileID: 0}
  493. - target: {fileID: 100174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  494. propertyPath: m_IsActive
  495. value: 1
  496. objectReference: {fileID: 0}
  497. - target: {fileID: 100176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  498. propertyPath: m_IsActive
  499. value: 1
  500. objectReference: {fileID: 0}
  501. - target: {fileID: 100178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  502. propertyPath: m_IsActive
  503. value: 1
  504. objectReference: {fileID: 0}
  505. - target: {fileID: 100180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  506. propertyPath: m_IsActive
  507. value: 1
  508. objectReference: {fileID: 0}
  509. - target: {fileID: 100182, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  510. propertyPath: m_IsActive
  511. value: 1
  512. objectReference: {fileID: 0}
  513. - target: {fileID: 100184, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  514. propertyPath: m_IsActive
  515. value: 1
  516. objectReference: {fileID: 0}
  517. - target: {fileID: 100184, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  518. propertyPath: m_StaticEditorFlags
  519. value: 0
  520. objectReference: {fileID: 0}
  521. - target: {fileID: 100186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  522. propertyPath: m_IsActive
  523. value: 1
  524. objectReference: {fileID: 0}
  525. - target: {fileID: 100188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  526. propertyPath: m_IsActive
  527. value: 1
  528. objectReference: {fileID: 0}
  529. - target: {fileID: 100190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  530. propertyPath: m_IsActive
  531. value: 1
  532. objectReference: {fileID: 0}
  533. - target: {fileID: 100192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  534. propertyPath: m_IsActive
  535. value: 1
  536. objectReference: {fileID: 0}
  537. - target: {fileID: 100194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  538. propertyPath: m_IsActive
  539. value: 1
  540. objectReference: {fileID: 0}
  541. - target: {fileID: 100196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  542. propertyPath: m_IsActive
  543. value: 1
  544. objectReference: {fileID: 0}
  545. - target: {fileID: 100198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  546. propertyPath: m_IsActive
  547. value: 1
  548. objectReference: {fileID: 0}
  549. - target: {fileID: 100200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  550. propertyPath: m_IsActive
  551. value: 1
  552. objectReference: {fileID: 0}
  553. - target: {fileID: 100202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  554. propertyPath: m_IsActive
  555. value: 1
  556. objectReference: {fileID: 0}
  557. - target: {fileID: 100204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  558. propertyPath: m_IsActive
  559. value: 1
  560. objectReference: {fileID: 0}
  561. - target: {fileID: 100206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  562. propertyPath: m_IsActive
  563. value: 1
  564. objectReference: {fileID: 0}
  565. - target: {fileID: 100208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  566. propertyPath: m_IsActive
  567. value: 1
  568. objectReference: {fileID: 0}
  569. - target: {fileID: 100210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  570. propertyPath: m_IsActive
  571. value: 1
  572. objectReference: {fileID: 0}
  573. - target: {fileID: 100212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  574. propertyPath: m_IsActive
  575. value: 1
  576. objectReference: {fileID: 0}
  577. - target: {fileID: 100214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  578. propertyPath: m_IsActive
  579. value: 1
  580. objectReference: {fileID: 0}
  581. - target: {fileID: 100216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  582. propertyPath: m_IsActive
  583. value: 1
  584. objectReference: {fileID: 0}
  585. - target: {fileID: 100218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  586. propertyPath: m_IsActive
  587. value: 1
  588. objectReference: {fileID: 0}
  589. - target: {fileID: 100220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  590. propertyPath: m_IsActive
  591. value: 1
  592. objectReference: {fileID: 0}
  593. - target: {fileID: 100222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  594. propertyPath: m_IsActive
  595. value: 1
  596. objectReference: {fileID: 0}
  597. - target: {fileID: 100224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  598. propertyPath: m_IsActive
  599. value: 1
  600. objectReference: {fileID: 0}
  601. - target: {fileID: 100226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  602. propertyPath: m_IsActive
  603. value: 1
  604. objectReference: {fileID: 0}
  605. - target: {fileID: 100228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  606. propertyPath: m_IsActive
  607. value: 1
  608. objectReference: {fileID: 0}
  609. - target: {fileID: 100230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  610. propertyPath: m_IsActive
  611. value: 1
  612. objectReference: {fileID: 0}
  613. - target: {fileID: 100232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  614. propertyPath: m_IsActive
  615. value: 1
  616. objectReference: {fileID: 0}
  617. - target: {fileID: 100234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  618. propertyPath: m_IsActive
  619. value: 1
  620. objectReference: {fileID: 0}
  621. - target: {fileID: 100236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  622. propertyPath: m_IsActive
  623. value: 1
  624. objectReference: {fileID: 0}
  625. - target: {fileID: 100238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  626. propertyPath: m_IsActive
  627. value: 1
  628. objectReference: {fileID: 0}
  629. - target: {fileID: 100240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  630. propertyPath: m_IsActive
  631. value: 1
  632. objectReference: {fileID: 0}
  633. - target: {fileID: 100242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  634. propertyPath: m_IsActive
  635. value: 1
  636. objectReference: {fileID: 0}
  637. - target: {fileID: 100244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  638. propertyPath: m_IsActive
  639. value: 1
  640. objectReference: {fileID: 0}
  641. - target: {fileID: 100246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  642. propertyPath: m_IsActive
  643. value: 1
  644. objectReference: {fileID: 0}
  645. - target: {fileID: 100248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  646. propertyPath: m_IsActive
  647. value: 1
  648. objectReference: {fileID: 0}
  649. - target: {fileID: 100250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  650. propertyPath: m_IsActive
  651. value: 1
  652. objectReference: {fileID: 0}
  653. - target: {fileID: 100252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  654. propertyPath: m_IsActive
  655. value: 1
  656. objectReference: {fileID: 0}
  657. - target: {fileID: 100254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  658. propertyPath: m_IsActive
  659. value: 1
  660. objectReference: {fileID: 0}
  661. - target: {fileID: 100256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  662. propertyPath: m_IsActive
  663. value: 1
  664. objectReference: {fileID: 0}
  665. - target: {fileID: 100258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  666. propertyPath: m_IsActive
  667. value: 1
  668. objectReference: {fileID: 0}
  669. - target: {fileID: 100260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  670. propertyPath: m_IsActive
  671. value: 1
  672. objectReference: {fileID: 0}
  673. - target: {fileID: 100262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  674. propertyPath: m_IsActive
  675. value: 1
  676. objectReference: {fileID: 0}
  677. - target: {fileID: 100264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  678. propertyPath: m_IsActive
  679. value: 1
  680. objectReference: {fileID: 0}
  681. - target: {fileID: 100266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  682. propertyPath: m_IsActive
  683. value: 1
  684. objectReference: {fileID: 0}
  685. - target: {fileID: 100268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  686. propertyPath: m_IsActive
  687. value: 1
  688. objectReference: {fileID: 0}
  689. - target: {fileID: 100270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  690. propertyPath: m_IsActive
  691. value: 1
  692. objectReference: {fileID: 0}
  693. - target: {fileID: 100272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  694. propertyPath: m_IsActive
  695. value: 1
  696. objectReference: {fileID: 0}
  697. - target: {fileID: 100274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  698. propertyPath: m_IsActive
  699. value: 1
  700. objectReference: {fileID: 0}
  701. - target: {fileID: 100276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  702. propertyPath: m_IsActive
  703. value: 1
  704. objectReference: {fileID: 0}
  705. - target: {fileID: 100278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  706. propertyPath: m_IsActive
  707. value: 1
  708. objectReference: {fileID: 0}
  709. - target: {fileID: 100280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  710. propertyPath: m_IsActive
  711. value: 1
  712. objectReference: {fileID: 0}
  713. - target: {fileID: 100282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  714. propertyPath: m_IsActive
  715. value: 1
  716. objectReference: {fileID: 0}
  717. - target: {fileID: 100284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  718. propertyPath: m_IsActive
  719. value: 1
  720. objectReference: {fileID: 0}
  721. - target: {fileID: 100286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  722. propertyPath: m_IsActive
  723. value: 1
  724. objectReference: {fileID: 0}
  725. - target: {fileID: 100288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  726. propertyPath: m_IsActive
  727. value: 1
  728. objectReference: {fileID: 0}
  729. - target: {fileID: 100290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  730. propertyPath: m_IsActive
  731. value: 1
  732. objectReference: {fileID: 0}
  733. - target: {fileID: 100292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  734. propertyPath: m_IsActive
  735. value: 1
  736. objectReference: {fileID: 0}
  737. - target: {fileID: 100294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  738. propertyPath: m_IsActive
  739. value: 1
  740. objectReference: {fileID: 0}
  741. - target: {fileID: 100296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  742. propertyPath: m_IsActive
  743. value: 1
  744. objectReference: {fileID: 0}
  745. - target: {fileID: 100298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  746. propertyPath: m_IsActive
  747. value: 1
  748. objectReference: {fileID: 0}
  749. - target: {fileID: 100300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  750. propertyPath: m_IsActive
  751. value: 1
  752. objectReference: {fileID: 0}
  753. - target: {fileID: 100302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  754. propertyPath: m_IsActive
  755. value: 1
  756. objectReference: {fileID: 0}
  757. - target: {fileID: 100304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  758. propertyPath: m_IsActive
  759. value: 1
  760. objectReference: {fileID: 0}
  761. - target: {fileID: 100306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  762. propertyPath: m_IsActive
  763. value: 1
  764. objectReference: {fileID: 0}
  765. - target: {fileID: 100308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  766. propertyPath: m_IsActive
  767. value: 1
  768. objectReference: {fileID: 0}
  769. - target: {fileID: 100310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  770. propertyPath: m_IsActive
  771. value: 1
  772. objectReference: {fileID: 0}
  773. - target: {fileID: 100312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  774. propertyPath: m_IsActive
  775. value: 1
  776. objectReference: {fileID: 0}
  777. - target: {fileID: 100314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  778. propertyPath: m_IsActive
  779. value: 1
  780. objectReference: {fileID: 0}
  781. - target: {fileID: 100316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  782. propertyPath: m_IsActive
  783. value: 1
  784. objectReference: {fileID: 0}
  785. - target: {fileID: 100318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  786. propertyPath: m_IsActive
  787. value: 1
  788. objectReference: {fileID: 0}
  789. - target: {fileID: 100320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  790. propertyPath: m_IsActive
  791. value: 1
  792. objectReference: {fileID: 0}
  793. - target: {fileID: 100322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  794. propertyPath: m_IsActive
  795. value: 1
  796. objectReference: {fileID: 0}
  797. - target: {fileID: 100324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  798. propertyPath: m_IsActive
  799. value: 1
  800. objectReference: {fileID: 0}
  801. - target: {fileID: 100326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  802. propertyPath: m_IsActive
  803. value: 1
  804. objectReference: {fileID: 0}
  805. - target: {fileID: 100328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  806. propertyPath: m_IsActive
  807. value: 1
  808. objectReference: {fileID: 0}
  809. - target: {fileID: 100330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  810. propertyPath: m_IsActive
  811. value: 1
  812. objectReference: {fileID: 0}
  813. - target: {fileID: 100332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  814. propertyPath: m_IsActive
  815. value: 1
  816. objectReference: {fileID: 0}
  817. - target: {fileID: 100334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  818. propertyPath: m_IsActive
  819. value: 1
  820. objectReference: {fileID: 0}
  821. - target: {fileID: 100336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  822. propertyPath: m_IsActive
  823. value: 1
  824. objectReference: {fileID: 0}
  825. - target: {fileID: 100338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  826. propertyPath: m_IsActive
  827. value: 1
  828. objectReference: {fileID: 0}
  829. - target: {fileID: 100340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  830. propertyPath: m_IsActive
  831. value: 1
  832. objectReference: {fileID: 0}
  833. - target: {fileID: 100342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  834. propertyPath: m_IsActive
  835. value: 1
  836. objectReference: {fileID: 0}
  837. - target: {fileID: 100344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  838. propertyPath: m_IsActive
  839. value: 1
  840. objectReference: {fileID: 0}
  841. - target: {fileID: 100346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  842. propertyPath: m_IsActive
  843. value: 1
  844. objectReference: {fileID: 0}
  845. - target: {fileID: 100348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  846. propertyPath: m_IsActive
  847. value: 1
  848. objectReference: {fileID: 0}
  849. - target: {fileID: 100350, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  850. propertyPath: m_IsActive
  851. value: 1
  852. objectReference: {fileID: 0}
  853. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  854. propertyPath: m_RootOrder
  855. value: 1
  856. objectReference: {fileID: 0}
  857. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  858. propertyPath: m_LocalPosition.x
  859. value: 0
  860. objectReference: {fileID: 0}
  861. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  862. propertyPath: m_LocalPosition.y
  863. value: 0
  864. objectReference: {fileID: 0}
  865. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  866. propertyPath: m_LocalPosition.z
  867. value: -6.3777294
  868. objectReference: {fileID: 0}
  869. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  870. propertyPath: m_LocalRotation.w
  871. value: 0.70470935
  872. objectReference: {fileID: 0}
  873. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  874. propertyPath: m_LocalRotation.x
  875. value: 0
  876. objectReference: {fileID: 0}
  877. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  878. propertyPath: m_LocalRotation.y
  879. value: -0.70949614
  880. objectReference: {fileID: 0}
  881. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  882. propertyPath: m_LocalRotation.z
  883. value: 0
  884. objectReference: {fileID: 0}
  885. - target: {fileID: 400002, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  886. propertyPath: m_LocalEulerAnglesHint.y
  887. value: -90.387794
  888. objectReference: {fileID: 0}
  889. - target: {fileID: 400090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  890. propertyPath: m_LocalRotation.w
  891. value: -0.7071068
  892. objectReference: {fileID: 0}
  893. - target: {fileID: 400090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  894. propertyPath: m_LocalRotation.x
  895. value: 0.7071068
  896. objectReference: {fileID: 0}
  897. - target: {fileID: 400090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  898. propertyPath: m_LocalRotation.y
  899. value: 0
  900. objectReference: {fileID: 0}
  901. - target: {fileID: 400090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  902. propertyPath: m_LocalRotation.z
  903. value: 0
  904. objectReference: {fileID: 0}
  905. - target: {fileID: 400092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  906. propertyPath: m_LocalRotation.w
  907. value: -0.7071068
  908. objectReference: {fileID: 0}
  909. - target: {fileID: 400092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  910. propertyPath: m_LocalRotation.x
  911. value: 0.7071068
  912. objectReference: {fileID: 0}
  913. - target: {fileID: 400092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  914. propertyPath: m_LocalRotation.y
  915. value: 0
  916. objectReference: {fileID: 0}
  917. - target: {fileID: 400092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  918. propertyPath: m_LocalRotation.z
  919. value: 0
  920. objectReference: {fileID: 0}
  921. - target: {fileID: 400094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  922. propertyPath: m_LocalRotation.w
  923. value: -0.7071068
  924. objectReference: {fileID: 0}
  925. - target: {fileID: 400094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  926. propertyPath: m_LocalRotation.x
  927. value: 0.7071068
  928. objectReference: {fileID: 0}
  929. - target: {fileID: 400094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  930. propertyPath: m_LocalRotation.y
  931. value: 0
  932. objectReference: {fileID: 0}
  933. - target: {fileID: 400094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  934. propertyPath: m_LocalRotation.z
  935. value: 0
  936. objectReference: {fileID: 0}
  937. - target: {fileID: 400096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  938. propertyPath: m_LocalRotation.w
  939. value: -0.7071068
  940. objectReference: {fileID: 0}
  941. - target: {fileID: 400096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  942. propertyPath: m_LocalRotation.x
  943. value: 0.7071068
  944. objectReference: {fileID: 0}
  945. - target: {fileID: 400096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  946. propertyPath: m_LocalRotation.y
  947. value: 0
  948. objectReference: {fileID: 0}
  949. - target: {fileID: 400096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  950. propertyPath: m_LocalRotation.z
  951. value: 0
  952. objectReference: {fileID: 0}
  953. - target: {fileID: 400098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  954. propertyPath: m_LocalRotation.w
  955. value: -0.7071068
  956. objectReference: {fileID: 0}
  957. - target: {fileID: 400098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  958. propertyPath: m_LocalRotation.x
  959. value: 0.7071068
  960. objectReference: {fileID: 0}
  961. - target: {fileID: 400098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  962. propertyPath: m_LocalRotation.y
  963. value: 0
  964. objectReference: {fileID: 0}
  965. - target: {fileID: 400098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  966. propertyPath: m_LocalRotation.z
  967. value: 0
  968. objectReference: {fileID: 0}
  969. - target: {fileID: 400100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  970. propertyPath: m_LocalRotation.w
  971. value: -0.7071068
  972. objectReference: {fileID: 0}
  973. - target: {fileID: 400100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  974. propertyPath: m_LocalRotation.x
  975. value: 0.7071068
  976. objectReference: {fileID: 0}
  977. - target: {fileID: 400100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  978. propertyPath: m_LocalRotation.y
  979. value: 0
  980. objectReference: {fileID: 0}
  981. - target: {fileID: 400100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  982. propertyPath: m_LocalRotation.z
  983. value: 0
  984. objectReference: {fileID: 0}
  985. - target: {fileID: 400102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  986. propertyPath: m_LocalRotation.w
  987. value: -0.7071068
  988. objectReference: {fileID: 0}
  989. - target: {fileID: 400102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  990. propertyPath: m_LocalRotation.x
  991. value: 0.7071068
  992. objectReference: {fileID: 0}
  993. - target: {fileID: 400102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  994. propertyPath: m_LocalRotation.y
  995. value: 0
  996. objectReference: {fileID: 0}
  997. - target: {fileID: 400102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  998. propertyPath: m_LocalRotation.z
  999. value: 0
  1000. objectReference: {fileID: 0}
  1001. - target: {fileID: 400104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1002. propertyPath: m_LocalRotation.w
  1003. value: -0.7071068
  1004. objectReference: {fileID: 0}
  1005. - target: {fileID: 400104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1006. propertyPath: m_LocalRotation.x
  1007. value: 0.7071068
  1008. objectReference: {fileID: 0}
  1009. - target: {fileID: 400104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1010. propertyPath: m_LocalRotation.y
  1011. value: 0
  1012. objectReference: {fileID: 0}
  1013. - target: {fileID: 400104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1014. propertyPath: m_LocalRotation.z
  1015. value: 0
  1016. objectReference: {fileID: 0}
  1017. - target: {fileID: 400106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1018. propertyPath: m_LocalRotation.w
  1019. value: -0.7071068
  1020. objectReference: {fileID: 0}
  1021. - target: {fileID: 400106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1022. propertyPath: m_LocalRotation.x
  1023. value: 0.7071068
  1024. objectReference: {fileID: 0}
  1025. - target: {fileID: 400106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1026. propertyPath: m_LocalRotation.y
  1027. value: 0
  1028. objectReference: {fileID: 0}
  1029. - target: {fileID: 400106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1030. propertyPath: m_LocalRotation.z
  1031. value: 0
  1032. objectReference: {fileID: 0}
  1033. - target: {fileID: 400108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1034. propertyPath: m_LocalRotation.w
  1035. value: -0.7071068
  1036. objectReference: {fileID: 0}
  1037. - target: {fileID: 400108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1038. propertyPath: m_LocalRotation.x
  1039. value: 0.7071068
  1040. objectReference: {fileID: 0}
  1041. - target: {fileID: 400108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1042. propertyPath: m_LocalRotation.y
  1043. value: 0
  1044. objectReference: {fileID: 0}
  1045. - target: {fileID: 400108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1046. propertyPath: m_LocalRotation.z
  1047. value: 0
  1048. objectReference: {fileID: 0}
  1049. - target: {fileID: 400110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1050. propertyPath: m_LocalRotation.w
  1051. value: -0.7071068
  1052. objectReference: {fileID: 0}
  1053. - target: {fileID: 400110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1054. propertyPath: m_LocalRotation.x
  1055. value: 0.7071068
  1056. objectReference: {fileID: 0}
  1057. - target: {fileID: 400110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1058. propertyPath: m_LocalRotation.y
  1059. value: 0
  1060. objectReference: {fileID: 0}
  1061. - target: {fileID: 400110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1062. propertyPath: m_LocalRotation.z
  1063. value: 0
  1064. objectReference: {fileID: 0}
  1065. - target: {fileID: 400112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1066. propertyPath: m_LocalRotation.w
  1067. value: -0.7071068
  1068. objectReference: {fileID: 0}
  1069. - target: {fileID: 400112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1070. propertyPath: m_LocalRotation.x
  1071. value: 0.7071068
  1072. objectReference: {fileID: 0}
  1073. - target: {fileID: 400112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1074. propertyPath: m_LocalRotation.y
  1075. value: 0
  1076. objectReference: {fileID: 0}
  1077. - target: {fileID: 400112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1078. propertyPath: m_LocalRotation.z
  1079. value: 0
  1080. objectReference: {fileID: 0}
  1081. - target: {fileID: 400114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1082. propertyPath: m_LocalRotation.w
  1083. value: -0.7071068
  1084. objectReference: {fileID: 0}
  1085. - target: {fileID: 400114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1086. propertyPath: m_LocalRotation.x
  1087. value: 0.7071068
  1088. objectReference: {fileID: 0}
  1089. - target: {fileID: 400114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1090. propertyPath: m_LocalRotation.y
  1091. value: 0
  1092. objectReference: {fileID: 0}
  1093. - target: {fileID: 400114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1094. propertyPath: m_LocalRotation.z
  1095. value: 0
  1096. objectReference: {fileID: 0}
  1097. - target: {fileID: 400116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1098. propertyPath: m_LocalRotation.w
  1099. value: -0.7071068
  1100. objectReference: {fileID: 0}
  1101. - target: {fileID: 400116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1102. propertyPath: m_LocalRotation.x
  1103. value: 0.7071068
  1104. objectReference: {fileID: 0}
  1105. - target: {fileID: 400116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1106. propertyPath: m_LocalRotation.y
  1107. value: 0
  1108. objectReference: {fileID: 0}
  1109. - target: {fileID: 400116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1110. propertyPath: m_LocalRotation.z
  1111. value: 0
  1112. objectReference: {fileID: 0}
  1113. - target: {fileID: 400118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1114. propertyPath: m_LocalRotation.w
  1115. value: -0.7071068
  1116. objectReference: {fileID: 0}
  1117. - target: {fileID: 400118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1118. propertyPath: m_LocalRotation.x
  1119. value: 0.7071068
  1120. objectReference: {fileID: 0}
  1121. - target: {fileID: 400118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1122. propertyPath: m_LocalRotation.y
  1123. value: 0
  1124. objectReference: {fileID: 0}
  1125. - target: {fileID: 400118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1126. propertyPath: m_LocalRotation.z
  1127. value: 0
  1128. objectReference: {fileID: 0}
  1129. - target: {fileID: 400120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1130. propertyPath: m_LocalRotation.w
  1131. value: -0.7071068
  1132. objectReference: {fileID: 0}
  1133. - target: {fileID: 400120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1134. propertyPath: m_LocalRotation.x
  1135. value: 0.7071068
  1136. objectReference: {fileID: 0}
  1137. - target: {fileID: 400120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1138. propertyPath: m_LocalRotation.y
  1139. value: 0
  1140. objectReference: {fileID: 0}
  1141. - target: {fileID: 400120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1142. propertyPath: m_LocalRotation.z
  1143. value: 0
  1144. objectReference: {fileID: 0}
  1145. - target: {fileID: 400122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1146. propertyPath: m_LocalRotation.w
  1147. value: -0.7071068
  1148. objectReference: {fileID: 0}
  1149. - target: {fileID: 400122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1150. propertyPath: m_LocalRotation.x
  1151. value: 0.7071068
  1152. objectReference: {fileID: 0}
  1153. - target: {fileID: 400122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1154. propertyPath: m_LocalRotation.y
  1155. value: 0
  1156. objectReference: {fileID: 0}
  1157. - target: {fileID: 400122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1158. propertyPath: m_LocalRotation.z
  1159. value: 0
  1160. objectReference: {fileID: 0}
  1161. - target: {fileID: 400124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1162. propertyPath: m_LocalRotation.w
  1163. value: -0.7071068
  1164. objectReference: {fileID: 0}
  1165. - target: {fileID: 400124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1166. propertyPath: m_LocalRotation.x
  1167. value: 0.7071068
  1168. objectReference: {fileID: 0}
  1169. - target: {fileID: 400124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1170. propertyPath: m_LocalRotation.y
  1171. value: 0
  1172. objectReference: {fileID: 0}
  1173. - target: {fileID: 400124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1174. propertyPath: m_LocalRotation.z
  1175. value: 0
  1176. objectReference: {fileID: 0}
  1177. - target: {fileID: 400126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1178. propertyPath: m_LocalRotation.w
  1179. value: -0.7071068
  1180. objectReference: {fileID: 0}
  1181. - target: {fileID: 400126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1182. propertyPath: m_LocalRotation.x
  1183. value: 0.7071068
  1184. objectReference: {fileID: 0}
  1185. - target: {fileID: 400126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1186. propertyPath: m_LocalRotation.y
  1187. value: 0
  1188. objectReference: {fileID: 0}
  1189. - target: {fileID: 400126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1190. propertyPath: m_LocalRotation.z
  1191. value: 0
  1192. objectReference: {fileID: 0}
  1193. - target: {fileID: 400128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1194. propertyPath: m_LocalRotation.w
  1195. value: -0.7071068
  1196. objectReference: {fileID: 0}
  1197. - target: {fileID: 400128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1198. propertyPath: m_LocalRotation.x
  1199. value: 0.7071068
  1200. objectReference: {fileID: 0}
  1201. - target: {fileID: 400128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1202. propertyPath: m_LocalRotation.y
  1203. value: 0
  1204. objectReference: {fileID: 0}
  1205. - target: {fileID: 400128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1206. propertyPath: m_LocalRotation.z
  1207. value: 0
  1208. objectReference: {fileID: 0}
  1209. - target: {fileID: 400130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1210. propertyPath: m_LocalRotation.w
  1211. value: -0.7071068
  1212. objectReference: {fileID: 0}
  1213. - target: {fileID: 400130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1214. propertyPath: m_LocalRotation.x
  1215. value: 0.7071068
  1216. objectReference: {fileID: 0}
  1217. - target: {fileID: 400130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1218. propertyPath: m_LocalRotation.y
  1219. value: 0
  1220. objectReference: {fileID: 0}
  1221. - target: {fileID: 400130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1222. propertyPath: m_LocalRotation.z
  1223. value: 0
  1224. objectReference: {fileID: 0}
  1225. - target: {fileID: 400132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1226. propertyPath: m_LocalRotation.w
  1227. value: -0.7071068
  1228. objectReference: {fileID: 0}
  1229. - target: {fileID: 400132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1230. propertyPath: m_LocalRotation.x
  1231. value: 0.7071068
  1232. objectReference: {fileID: 0}
  1233. - target: {fileID: 400132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1234. propertyPath: m_LocalRotation.y
  1235. value: 0
  1236. objectReference: {fileID: 0}
  1237. - target: {fileID: 400132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1238. propertyPath: m_LocalRotation.z
  1239. value: 0
  1240. objectReference: {fileID: 0}
  1241. - target: {fileID: 400134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1242. propertyPath: m_LocalRotation.w
  1243. value: -0.7071068
  1244. objectReference: {fileID: 0}
  1245. - target: {fileID: 400134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1246. propertyPath: m_LocalRotation.x
  1247. value: 0.7071068
  1248. objectReference: {fileID: 0}
  1249. - target: {fileID: 400134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1250. propertyPath: m_LocalRotation.y
  1251. value: 0
  1252. objectReference: {fileID: 0}
  1253. - target: {fileID: 400134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1254. propertyPath: m_LocalRotation.z
  1255. value: 0
  1256. objectReference: {fileID: 0}
  1257. - target: {fileID: 400136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1258. propertyPath: m_LocalRotation.w
  1259. value: -0.7071068
  1260. objectReference: {fileID: 0}
  1261. - target: {fileID: 400136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1262. propertyPath: m_LocalRotation.x
  1263. value: 0.7071068
  1264. objectReference: {fileID: 0}
  1265. - target: {fileID: 400136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1266. propertyPath: m_LocalRotation.y
  1267. value: 0
  1268. objectReference: {fileID: 0}
  1269. - target: {fileID: 400136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1270. propertyPath: m_LocalRotation.z
  1271. value: 0
  1272. objectReference: {fileID: 0}
  1273. - target: {fileID: 400138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1274. propertyPath: m_LocalRotation.w
  1275. value: -0.7071068
  1276. objectReference: {fileID: 0}
  1277. - target: {fileID: 400138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1278. propertyPath: m_LocalRotation.x
  1279. value: 0.7071068
  1280. objectReference: {fileID: 0}
  1281. - target: {fileID: 400138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1282. propertyPath: m_LocalRotation.y
  1283. value: 0
  1284. objectReference: {fileID: 0}
  1285. - target: {fileID: 400138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1286. propertyPath: m_LocalRotation.z
  1287. value: 0
  1288. objectReference: {fileID: 0}
  1289. - target: {fileID: 400140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1290. propertyPath: m_LocalRotation.w
  1291. value: -0.7071068
  1292. objectReference: {fileID: 0}
  1293. - target: {fileID: 400140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1294. propertyPath: m_LocalRotation.x
  1295. value: 0.7071068
  1296. objectReference: {fileID: 0}
  1297. - target: {fileID: 400140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1298. propertyPath: m_LocalRotation.y
  1299. value: 0
  1300. objectReference: {fileID: 0}
  1301. - target: {fileID: 400140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1302. propertyPath: m_LocalRotation.z
  1303. value: 0
  1304. objectReference: {fileID: 0}
  1305. - target: {fileID: 400142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1306. propertyPath: m_LocalRotation.w
  1307. value: -0.7071068
  1308. objectReference: {fileID: 0}
  1309. - target: {fileID: 400142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1310. propertyPath: m_LocalRotation.x
  1311. value: 0.7071068
  1312. objectReference: {fileID: 0}
  1313. - target: {fileID: 400142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1314. propertyPath: m_LocalRotation.y
  1315. value: 0
  1316. objectReference: {fileID: 0}
  1317. - target: {fileID: 400142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1318. propertyPath: m_LocalRotation.z
  1319. value: 0
  1320. objectReference: {fileID: 0}
  1321. - target: {fileID: 400144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1322. propertyPath: m_LocalRotation.w
  1323. value: -0.7071068
  1324. objectReference: {fileID: 0}
  1325. - target: {fileID: 400144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1326. propertyPath: m_LocalRotation.x
  1327. value: 0.7071068
  1328. objectReference: {fileID: 0}
  1329. - target: {fileID: 400144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1330. propertyPath: m_LocalRotation.y
  1331. value: 0
  1332. objectReference: {fileID: 0}
  1333. - target: {fileID: 400144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1334. propertyPath: m_LocalRotation.z
  1335. value: 0
  1336. objectReference: {fileID: 0}
  1337. - target: {fileID: 400146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1338. propertyPath: m_LocalRotation.w
  1339. value: -0.7071068
  1340. objectReference: {fileID: 0}
  1341. - target: {fileID: 400146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1342. propertyPath: m_LocalRotation.x
  1343. value: 0.7071068
  1344. objectReference: {fileID: 0}
  1345. - target: {fileID: 400146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1346. propertyPath: m_LocalRotation.y
  1347. value: 0
  1348. objectReference: {fileID: 0}
  1349. - target: {fileID: 400146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1350. propertyPath: m_LocalRotation.z
  1351. value: 0
  1352. objectReference: {fileID: 0}
  1353. - target: {fileID: 400148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1354. propertyPath: m_LocalRotation.w
  1355. value: -0.7071068
  1356. objectReference: {fileID: 0}
  1357. - target: {fileID: 400148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1358. propertyPath: m_LocalRotation.x
  1359. value: 0.7071068
  1360. objectReference: {fileID: 0}
  1361. - target: {fileID: 400148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1362. propertyPath: m_LocalRotation.y
  1363. value: 0
  1364. objectReference: {fileID: 0}
  1365. - target: {fileID: 400148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1366. propertyPath: m_LocalRotation.z
  1367. value: 0
  1368. objectReference: {fileID: 0}
  1369. - target: {fileID: 400150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1370. propertyPath: m_LocalRotation.w
  1371. value: -0.7071068
  1372. objectReference: {fileID: 0}
  1373. - target: {fileID: 400150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1374. propertyPath: m_LocalRotation.x
  1375. value: 0.7071068
  1376. objectReference: {fileID: 0}
  1377. - target: {fileID: 400150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1378. propertyPath: m_LocalRotation.y
  1379. value: 0
  1380. objectReference: {fileID: 0}
  1381. - target: {fileID: 400150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1382. propertyPath: m_LocalRotation.z
  1383. value: 0
  1384. objectReference: {fileID: 0}
  1385. - target: {fileID: 400152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1386. propertyPath: m_LocalRotation.w
  1387. value: -0.7071068
  1388. objectReference: {fileID: 0}
  1389. - target: {fileID: 400152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1390. propertyPath: m_LocalRotation.x
  1391. value: 0.7071068
  1392. objectReference: {fileID: 0}
  1393. - target: {fileID: 400152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1394. propertyPath: m_LocalRotation.y
  1395. value: 0
  1396. objectReference: {fileID: 0}
  1397. - target: {fileID: 400152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1398. propertyPath: m_LocalRotation.z
  1399. value: 0
  1400. objectReference: {fileID: 0}
  1401. - target: {fileID: 400154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1402. propertyPath: m_LocalRotation.w
  1403. value: -0.7071068
  1404. objectReference: {fileID: 0}
  1405. - target: {fileID: 400154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1406. propertyPath: m_LocalRotation.x
  1407. value: 0.7071068
  1408. objectReference: {fileID: 0}
  1409. - target: {fileID: 400154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1410. propertyPath: m_LocalRotation.y
  1411. value: 0
  1412. objectReference: {fileID: 0}
  1413. - target: {fileID: 400154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1414. propertyPath: m_LocalRotation.z
  1415. value: 0
  1416. objectReference: {fileID: 0}
  1417. - target: {fileID: 400156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1418. propertyPath: m_LocalRotation.w
  1419. value: -0.7071068
  1420. objectReference: {fileID: 0}
  1421. - target: {fileID: 400156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1422. propertyPath: m_LocalRotation.x
  1423. value: 0.7071068
  1424. objectReference: {fileID: 0}
  1425. - target: {fileID: 400156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1426. propertyPath: m_LocalRotation.y
  1427. value: 0
  1428. objectReference: {fileID: 0}
  1429. - target: {fileID: 400156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1430. propertyPath: m_LocalRotation.z
  1431. value: 0
  1432. objectReference: {fileID: 0}
  1433. - target: {fileID: 400158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1434. propertyPath: m_LocalRotation.w
  1435. value: -0.7071068
  1436. objectReference: {fileID: 0}
  1437. - target: {fileID: 400158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1438. propertyPath: m_LocalRotation.x
  1439. value: 0.7071068
  1440. objectReference: {fileID: 0}
  1441. - target: {fileID: 400158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1442. propertyPath: m_LocalRotation.y
  1443. value: 0
  1444. objectReference: {fileID: 0}
  1445. - target: {fileID: 400158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1446. propertyPath: m_LocalRotation.z
  1447. value: 0
  1448. objectReference: {fileID: 0}
  1449. - target: {fileID: 400160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1450. propertyPath: m_LocalRotation.w
  1451. value: -0.7071068
  1452. objectReference: {fileID: 0}
  1453. - target: {fileID: 400160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1454. propertyPath: m_LocalRotation.x
  1455. value: 0.7071068
  1456. objectReference: {fileID: 0}
  1457. - target: {fileID: 400160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1458. propertyPath: m_LocalRotation.y
  1459. value: 0
  1460. objectReference: {fileID: 0}
  1461. - target: {fileID: 400160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1462. propertyPath: m_LocalRotation.z
  1463. value: 0
  1464. objectReference: {fileID: 0}
  1465. - target: {fileID: 400162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1466. propertyPath: m_LocalRotation.w
  1467. value: -0.7071068
  1468. objectReference: {fileID: 0}
  1469. - target: {fileID: 400162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1470. propertyPath: m_LocalRotation.x
  1471. value: 0.7071068
  1472. objectReference: {fileID: 0}
  1473. - target: {fileID: 400162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1474. propertyPath: m_LocalRotation.y
  1475. value: 0
  1476. objectReference: {fileID: 0}
  1477. - target: {fileID: 400162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1478. propertyPath: m_LocalRotation.z
  1479. value: 0
  1480. objectReference: {fileID: 0}
  1481. - target: {fileID: 400164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1482. propertyPath: m_LocalRotation.w
  1483. value: -0.7071068
  1484. objectReference: {fileID: 0}
  1485. - target: {fileID: 400164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1486. propertyPath: m_LocalRotation.x
  1487. value: 0.7071068
  1488. objectReference: {fileID: 0}
  1489. - target: {fileID: 400164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1490. propertyPath: m_LocalRotation.y
  1491. value: 0
  1492. objectReference: {fileID: 0}
  1493. - target: {fileID: 400164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1494. propertyPath: m_LocalRotation.z
  1495. value: 0
  1496. objectReference: {fileID: 0}
  1497. - target: {fileID: 400166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1498. propertyPath: m_LocalRotation.w
  1499. value: -0.7071068
  1500. objectReference: {fileID: 0}
  1501. - target: {fileID: 400166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1502. propertyPath: m_LocalRotation.x
  1503. value: 0.7071068
  1504. objectReference: {fileID: 0}
  1505. - target: {fileID: 400166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1506. propertyPath: m_LocalRotation.y
  1507. value: 0
  1508. objectReference: {fileID: 0}
  1509. - target: {fileID: 400166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1510. propertyPath: m_LocalRotation.z
  1511. value: 0
  1512. objectReference: {fileID: 0}
  1513. - target: {fileID: 400168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1514. propertyPath: m_LocalRotation.w
  1515. value: -0.7071068
  1516. objectReference: {fileID: 0}
  1517. - target: {fileID: 400168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1518. propertyPath: m_LocalRotation.x
  1519. value: 0.7071068
  1520. objectReference: {fileID: 0}
  1521. - target: {fileID: 400168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1522. propertyPath: m_LocalRotation.y
  1523. value: 0
  1524. objectReference: {fileID: 0}
  1525. - target: {fileID: 400168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1526. propertyPath: m_LocalRotation.z
  1527. value: 0
  1528. objectReference: {fileID: 0}
  1529. - target: {fileID: 400170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1530. propertyPath: m_LocalRotation.w
  1531. value: -0.7071068
  1532. objectReference: {fileID: 0}
  1533. - target: {fileID: 400170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1534. propertyPath: m_LocalRotation.x
  1535. value: 0.7071068
  1536. objectReference: {fileID: 0}
  1537. - target: {fileID: 400170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1538. propertyPath: m_LocalRotation.y
  1539. value: 0
  1540. objectReference: {fileID: 0}
  1541. - target: {fileID: 400170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1542. propertyPath: m_LocalRotation.z
  1543. value: 0
  1544. objectReference: {fileID: 0}
  1545. - target: {fileID: 400172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1546. propertyPath: m_LocalRotation.w
  1547. value: -0.7071068
  1548. objectReference: {fileID: 0}
  1549. - target: {fileID: 400172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1550. propertyPath: m_LocalRotation.x
  1551. value: 0.7071068
  1552. objectReference: {fileID: 0}
  1553. - target: {fileID: 400172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1554. propertyPath: m_LocalRotation.y
  1555. value: 0
  1556. objectReference: {fileID: 0}
  1557. - target: {fileID: 400172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1558. propertyPath: m_LocalRotation.z
  1559. value: 0
  1560. objectReference: {fileID: 0}
  1561. - target: {fileID: 400174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1562. propertyPath: m_LocalRotation.w
  1563. value: -0.7071068
  1564. objectReference: {fileID: 0}
  1565. - target: {fileID: 400174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1566. propertyPath: m_LocalRotation.x
  1567. value: 0.7071068
  1568. objectReference: {fileID: 0}
  1569. - target: {fileID: 400174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1570. propertyPath: m_LocalRotation.y
  1571. value: 0
  1572. objectReference: {fileID: 0}
  1573. - target: {fileID: 400174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1574. propertyPath: m_LocalRotation.z
  1575. value: 0
  1576. objectReference: {fileID: 0}
  1577. - target: {fileID: 400176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1578. propertyPath: m_LocalRotation.w
  1579. value: -0.7071068
  1580. objectReference: {fileID: 0}
  1581. - target: {fileID: 400176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1582. propertyPath: m_LocalRotation.x
  1583. value: 0.7071068
  1584. objectReference: {fileID: 0}
  1585. - target: {fileID: 400176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1586. propertyPath: m_LocalRotation.y
  1587. value: 0
  1588. objectReference: {fileID: 0}
  1589. - target: {fileID: 400176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1590. propertyPath: m_LocalRotation.z
  1591. value: 0
  1592. objectReference: {fileID: 0}
  1593. - target: {fileID: 400178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1594. propertyPath: m_LocalRotation.w
  1595. value: -0.7071068
  1596. objectReference: {fileID: 0}
  1597. - target: {fileID: 400178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1598. propertyPath: m_LocalRotation.x
  1599. value: 0.7071068
  1600. objectReference: {fileID: 0}
  1601. - target: {fileID: 400178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1602. propertyPath: m_LocalRotation.y
  1603. value: 0
  1604. objectReference: {fileID: 0}
  1605. - target: {fileID: 400178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1606. propertyPath: m_LocalRotation.z
  1607. value: 0
  1608. objectReference: {fileID: 0}
  1609. - target: {fileID: 400180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1610. propertyPath: m_LocalRotation.w
  1611. value: -0.7071068
  1612. objectReference: {fileID: 0}
  1613. - target: {fileID: 400180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1614. propertyPath: m_LocalRotation.x
  1615. value: 0.7071068
  1616. objectReference: {fileID: 0}
  1617. - target: {fileID: 400180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1618. propertyPath: m_LocalRotation.y
  1619. value: 0
  1620. objectReference: {fileID: 0}
  1621. - target: {fileID: 400180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1622. propertyPath: m_LocalRotation.z
  1623. value: 0
  1624. objectReference: {fileID: 0}
  1625. - target: {fileID: 400182, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1626. propertyPath: m_LocalRotation.w
  1627. value: -0.7071068
  1628. objectReference: {fileID: 0}
  1629. - target: {fileID: 400182, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1630. propertyPath: m_LocalRotation.x
  1631. value: 0.7071068
  1632. objectReference: {fileID: 0}
  1633. - target: {fileID: 400182, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1634. propertyPath: m_LocalRotation.y
  1635. value: 0
  1636. objectReference: {fileID: 0}
  1637. - target: {fileID: 400182, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1638. propertyPath: m_LocalRotation.z
  1639. value: 0
  1640. objectReference: {fileID: 0}
  1641. - target: {fileID: 400186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1642. propertyPath: m_LocalRotation.w
  1643. value: -0.7071068
  1644. objectReference: {fileID: 0}
  1645. - target: {fileID: 400186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1646. propertyPath: m_LocalRotation.x
  1647. value: 0.7071068
  1648. objectReference: {fileID: 0}
  1649. - target: {fileID: 400186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1650. propertyPath: m_LocalRotation.y
  1651. value: 0
  1652. objectReference: {fileID: 0}
  1653. - target: {fileID: 400186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1654. propertyPath: m_LocalRotation.z
  1655. value: 0
  1656. objectReference: {fileID: 0}
  1657. - target: {fileID: 400188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1658. propertyPath: m_LocalRotation.w
  1659. value: -0.7071068
  1660. objectReference: {fileID: 0}
  1661. - target: {fileID: 400188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1662. propertyPath: m_LocalRotation.x
  1663. value: 0.7071068
  1664. objectReference: {fileID: 0}
  1665. - target: {fileID: 400188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1666. propertyPath: m_LocalRotation.y
  1667. value: 0
  1668. objectReference: {fileID: 0}
  1669. - target: {fileID: 400188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1670. propertyPath: m_LocalRotation.z
  1671. value: 0
  1672. objectReference: {fileID: 0}
  1673. - target: {fileID: 400190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1674. propertyPath: m_LocalRotation.w
  1675. value: -0.7071068
  1676. objectReference: {fileID: 0}
  1677. - target: {fileID: 400190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1678. propertyPath: m_LocalRotation.x
  1679. value: 0.7071068
  1680. objectReference: {fileID: 0}
  1681. - target: {fileID: 400190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1682. propertyPath: m_LocalRotation.y
  1683. value: 0
  1684. objectReference: {fileID: 0}
  1685. - target: {fileID: 400190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1686. propertyPath: m_LocalRotation.z
  1687. value: 0
  1688. objectReference: {fileID: 0}
  1689. - target: {fileID: 400192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1690. propertyPath: m_LocalRotation.w
  1691. value: -0.7071068
  1692. objectReference: {fileID: 0}
  1693. - target: {fileID: 400192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1694. propertyPath: m_LocalRotation.x
  1695. value: 0.7071068
  1696. objectReference: {fileID: 0}
  1697. - target: {fileID: 400192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1698. propertyPath: m_LocalRotation.y
  1699. value: 0
  1700. objectReference: {fileID: 0}
  1701. - target: {fileID: 400192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1702. propertyPath: m_LocalRotation.z
  1703. value: 0
  1704. objectReference: {fileID: 0}
  1705. - target: {fileID: 400194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1706. propertyPath: m_LocalRotation.w
  1707. value: -0.7071068
  1708. objectReference: {fileID: 0}
  1709. - target: {fileID: 400194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1710. propertyPath: m_LocalRotation.x
  1711. value: 0.7071068
  1712. objectReference: {fileID: 0}
  1713. - target: {fileID: 400194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1714. propertyPath: m_LocalRotation.y
  1715. value: 0
  1716. objectReference: {fileID: 0}
  1717. - target: {fileID: 400194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1718. propertyPath: m_LocalRotation.z
  1719. value: 0
  1720. objectReference: {fileID: 0}
  1721. - target: {fileID: 400196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1722. propertyPath: m_LocalRotation.w
  1723. value: -0.7071068
  1724. objectReference: {fileID: 0}
  1725. - target: {fileID: 400196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1726. propertyPath: m_LocalRotation.x
  1727. value: 0.7071068
  1728. objectReference: {fileID: 0}
  1729. - target: {fileID: 400196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1730. propertyPath: m_LocalRotation.y
  1731. value: 0
  1732. objectReference: {fileID: 0}
  1733. - target: {fileID: 400196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1734. propertyPath: m_LocalRotation.z
  1735. value: 0
  1736. objectReference: {fileID: 0}
  1737. - target: {fileID: 400198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1738. propertyPath: m_LocalRotation.w
  1739. value: -0.7071068
  1740. objectReference: {fileID: 0}
  1741. - target: {fileID: 400198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1742. propertyPath: m_LocalRotation.x
  1743. value: 0.7071068
  1744. objectReference: {fileID: 0}
  1745. - target: {fileID: 400198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1746. propertyPath: m_LocalRotation.y
  1747. value: 0
  1748. objectReference: {fileID: 0}
  1749. - target: {fileID: 400198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1750. propertyPath: m_LocalRotation.z
  1751. value: 0
  1752. objectReference: {fileID: 0}
  1753. - target: {fileID: 400200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1754. propertyPath: m_LocalRotation.w
  1755. value: -0.7071068
  1756. objectReference: {fileID: 0}
  1757. - target: {fileID: 400200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1758. propertyPath: m_LocalRotation.x
  1759. value: 0.7071068
  1760. objectReference: {fileID: 0}
  1761. - target: {fileID: 400200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1762. propertyPath: m_LocalRotation.y
  1763. value: 0
  1764. objectReference: {fileID: 0}
  1765. - target: {fileID: 400200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1766. propertyPath: m_LocalRotation.z
  1767. value: 0
  1768. objectReference: {fileID: 0}
  1769. - target: {fileID: 400202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1770. propertyPath: m_LocalRotation.w
  1771. value: -0.7071068
  1772. objectReference: {fileID: 0}
  1773. - target: {fileID: 400202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1774. propertyPath: m_LocalRotation.x
  1775. value: 0.7071068
  1776. objectReference: {fileID: 0}
  1777. - target: {fileID: 400202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1778. propertyPath: m_LocalRotation.y
  1779. value: 0
  1780. objectReference: {fileID: 0}
  1781. - target: {fileID: 400202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1782. propertyPath: m_LocalRotation.z
  1783. value: 0
  1784. objectReference: {fileID: 0}
  1785. - target: {fileID: 400204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1786. propertyPath: m_LocalRotation.w
  1787. value: -0.7071068
  1788. objectReference: {fileID: 0}
  1789. - target: {fileID: 400204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1790. propertyPath: m_LocalRotation.x
  1791. value: 0.7071068
  1792. objectReference: {fileID: 0}
  1793. - target: {fileID: 400204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1794. propertyPath: m_LocalRotation.y
  1795. value: 0
  1796. objectReference: {fileID: 0}
  1797. - target: {fileID: 400204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1798. propertyPath: m_LocalRotation.z
  1799. value: 0
  1800. objectReference: {fileID: 0}
  1801. - target: {fileID: 400206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1802. propertyPath: m_LocalRotation.w
  1803. value: -0.7071068
  1804. objectReference: {fileID: 0}
  1805. - target: {fileID: 400206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1806. propertyPath: m_LocalRotation.x
  1807. value: 0.7071068
  1808. objectReference: {fileID: 0}
  1809. - target: {fileID: 400206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1810. propertyPath: m_LocalRotation.y
  1811. value: 0
  1812. objectReference: {fileID: 0}
  1813. - target: {fileID: 400206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1814. propertyPath: m_LocalRotation.z
  1815. value: 0
  1816. objectReference: {fileID: 0}
  1817. - target: {fileID: 400208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1818. propertyPath: m_LocalRotation.w
  1819. value: -0.7071068
  1820. objectReference: {fileID: 0}
  1821. - target: {fileID: 400208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1822. propertyPath: m_LocalRotation.x
  1823. value: 0.7071068
  1824. objectReference: {fileID: 0}
  1825. - target: {fileID: 400208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1826. propertyPath: m_LocalRotation.y
  1827. value: 0
  1828. objectReference: {fileID: 0}
  1829. - target: {fileID: 400208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1830. propertyPath: m_LocalRotation.z
  1831. value: 0
  1832. objectReference: {fileID: 0}
  1833. - target: {fileID: 400210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1834. propertyPath: m_LocalRotation.w
  1835. value: -0.7071068
  1836. objectReference: {fileID: 0}
  1837. - target: {fileID: 400210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1838. propertyPath: m_LocalRotation.x
  1839. value: 0.7071068
  1840. objectReference: {fileID: 0}
  1841. - target: {fileID: 400210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1842. propertyPath: m_LocalRotation.y
  1843. value: 0
  1844. objectReference: {fileID: 0}
  1845. - target: {fileID: 400210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1846. propertyPath: m_LocalRotation.z
  1847. value: 0
  1848. objectReference: {fileID: 0}
  1849. - target: {fileID: 400212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1850. propertyPath: m_LocalRotation.w
  1851. value: -0.7071068
  1852. objectReference: {fileID: 0}
  1853. - target: {fileID: 400212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1854. propertyPath: m_LocalRotation.x
  1855. value: 0.7071068
  1856. objectReference: {fileID: 0}
  1857. - target: {fileID: 400212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1858. propertyPath: m_LocalRotation.y
  1859. value: 0
  1860. objectReference: {fileID: 0}
  1861. - target: {fileID: 400212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1862. propertyPath: m_LocalRotation.z
  1863. value: 0
  1864. objectReference: {fileID: 0}
  1865. - target: {fileID: 400214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1866. propertyPath: m_LocalRotation.w
  1867. value: -0.7071068
  1868. objectReference: {fileID: 0}
  1869. - target: {fileID: 400214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1870. propertyPath: m_LocalRotation.x
  1871. value: 0.7071068
  1872. objectReference: {fileID: 0}
  1873. - target: {fileID: 400214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1874. propertyPath: m_LocalRotation.y
  1875. value: 0
  1876. objectReference: {fileID: 0}
  1877. - target: {fileID: 400214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1878. propertyPath: m_LocalRotation.z
  1879. value: 0
  1880. objectReference: {fileID: 0}
  1881. - target: {fileID: 400216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1882. propertyPath: m_LocalRotation.w
  1883. value: -0.7071068
  1884. objectReference: {fileID: 0}
  1885. - target: {fileID: 400216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1886. propertyPath: m_LocalRotation.x
  1887. value: 0.7071068
  1888. objectReference: {fileID: 0}
  1889. - target: {fileID: 400216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1890. propertyPath: m_LocalRotation.y
  1891. value: 0
  1892. objectReference: {fileID: 0}
  1893. - target: {fileID: 400216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1894. propertyPath: m_LocalRotation.z
  1895. value: 0
  1896. objectReference: {fileID: 0}
  1897. - target: {fileID: 400218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1898. propertyPath: m_LocalRotation.w
  1899. value: -0.7071068
  1900. objectReference: {fileID: 0}
  1901. - target: {fileID: 400218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1902. propertyPath: m_LocalRotation.x
  1903. value: 0.7071068
  1904. objectReference: {fileID: 0}
  1905. - target: {fileID: 400218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1906. propertyPath: m_LocalRotation.y
  1907. value: 0
  1908. objectReference: {fileID: 0}
  1909. - target: {fileID: 400218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1910. propertyPath: m_LocalRotation.z
  1911. value: 0
  1912. objectReference: {fileID: 0}
  1913. - target: {fileID: 400220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1914. propertyPath: m_LocalRotation.w
  1915. value: -0.7071068
  1916. objectReference: {fileID: 0}
  1917. - target: {fileID: 400220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1918. propertyPath: m_LocalRotation.x
  1919. value: 0.7071068
  1920. objectReference: {fileID: 0}
  1921. - target: {fileID: 400220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1922. propertyPath: m_LocalRotation.y
  1923. value: 0
  1924. objectReference: {fileID: 0}
  1925. - target: {fileID: 400220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1926. propertyPath: m_LocalRotation.z
  1927. value: 0
  1928. objectReference: {fileID: 0}
  1929. - target: {fileID: 400222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1930. propertyPath: m_LocalRotation.w
  1931. value: -0.7071068
  1932. objectReference: {fileID: 0}
  1933. - target: {fileID: 400222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1934. propertyPath: m_LocalRotation.x
  1935. value: 0.7071068
  1936. objectReference: {fileID: 0}
  1937. - target: {fileID: 400222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1938. propertyPath: m_LocalRotation.y
  1939. value: 0
  1940. objectReference: {fileID: 0}
  1941. - target: {fileID: 400222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1942. propertyPath: m_LocalRotation.z
  1943. value: 0
  1944. objectReference: {fileID: 0}
  1945. - target: {fileID: 400224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1946. propertyPath: m_LocalRotation.w
  1947. value: -0.7071068
  1948. objectReference: {fileID: 0}
  1949. - target: {fileID: 400224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1950. propertyPath: m_LocalRotation.x
  1951. value: 0.7071068
  1952. objectReference: {fileID: 0}
  1953. - target: {fileID: 400224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1954. propertyPath: m_LocalRotation.y
  1955. value: 0
  1956. objectReference: {fileID: 0}
  1957. - target: {fileID: 400224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1958. propertyPath: m_LocalRotation.z
  1959. value: 0
  1960. objectReference: {fileID: 0}
  1961. - target: {fileID: 400226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1962. propertyPath: m_LocalRotation.w
  1963. value: -0.7071068
  1964. objectReference: {fileID: 0}
  1965. - target: {fileID: 400226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1966. propertyPath: m_LocalRotation.x
  1967. value: 0.7071068
  1968. objectReference: {fileID: 0}
  1969. - target: {fileID: 400226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1970. propertyPath: m_LocalRotation.y
  1971. value: 0
  1972. objectReference: {fileID: 0}
  1973. - target: {fileID: 400226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1974. propertyPath: m_LocalRotation.z
  1975. value: 0
  1976. objectReference: {fileID: 0}
  1977. - target: {fileID: 400228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1978. propertyPath: m_LocalRotation.w
  1979. value: -0.7071068
  1980. objectReference: {fileID: 0}
  1981. - target: {fileID: 400228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1982. propertyPath: m_LocalRotation.x
  1983. value: 0.7071068
  1984. objectReference: {fileID: 0}
  1985. - target: {fileID: 400228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1986. propertyPath: m_LocalRotation.y
  1987. value: 0
  1988. objectReference: {fileID: 0}
  1989. - target: {fileID: 400228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1990. propertyPath: m_LocalRotation.z
  1991. value: 0
  1992. objectReference: {fileID: 0}
  1993. - target: {fileID: 400230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1994. propertyPath: m_LocalRotation.w
  1995. value: -0.7071068
  1996. objectReference: {fileID: 0}
  1997. - target: {fileID: 400230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  1998. propertyPath: m_LocalRotation.x
  1999. value: 0.7071068
  2000. objectReference: {fileID: 0}
  2001. - target: {fileID: 400230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2002. propertyPath: m_LocalRotation.y
  2003. value: 0
  2004. objectReference: {fileID: 0}
  2005. - target: {fileID: 400230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2006. propertyPath: m_LocalRotation.z
  2007. value: 0
  2008. objectReference: {fileID: 0}
  2009. - target: {fileID: 400232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2010. propertyPath: m_LocalRotation.w
  2011. value: -0.7071068
  2012. objectReference: {fileID: 0}
  2013. - target: {fileID: 400232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2014. propertyPath: m_LocalRotation.x
  2015. value: 0.7071068
  2016. objectReference: {fileID: 0}
  2017. - target: {fileID: 400232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2018. propertyPath: m_LocalRotation.y
  2019. value: 0
  2020. objectReference: {fileID: 0}
  2021. - target: {fileID: 400232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2022. propertyPath: m_LocalRotation.z
  2023. value: 0
  2024. objectReference: {fileID: 0}
  2025. - target: {fileID: 400234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2026. propertyPath: m_LocalRotation.w
  2027. value: -0.7071068
  2028. objectReference: {fileID: 0}
  2029. - target: {fileID: 400234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2030. propertyPath: m_LocalRotation.x
  2031. value: 0.7071068
  2032. objectReference: {fileID: 0}
  2033. - target: {fileID: 400234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2034. propertyPath: m_LocalRotation.y
  2035. value: 0
  2036. objectReference: {fileID: 0}
  2037. - target: {fileID: 400234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2038. propertyPath: m_LocalRotation.z
  2039. value: 0
  2040. objectReference: {fileID: 0}
  2041. - target: {fileID: 400236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2042. propertyPath: m_LocalRotation.w
  2043. value: -0.7071068
  2044. objectReference: {fileID: 0}
  2045. - target: {fileID: 400236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2046. propertyPath: m_LocalRotation.x
  2047. value: 0.7071068
  2048. objectReference: {fileID: 0}
  2049. - target: {fileID: 400236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2050. propertyPath: m_LocalRotation.y
  2051. value: 0
  2052. objectReference: {fileID: 0}
  2053. - target: {fileID: 400236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2054. propertyPath: m_LocalRotation.z
  2055. value: 0
  2056. objectReference: {fileID: 0}
  2057. - target: {fileID: 400238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2058. propertyPath: m_LocalRotation.w
  2059. value: -0.7071068
  2060. objectReference: {fileID: 0}
  2061. - target: {fileID: 400238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2062. propertyPath: m_LocalRotation.x
  2063. value: 0.7071068
  2064. objectReference: {fileID: 0}
  2065. - target: {fileID: 400238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2066. propertyPath: m_LocalRotation.y
  2067. value: 0
  2068. objectReference: {fileID: 0}
  2069. - target: {fileID: 400238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2070. propertyPath: m_LocalRotation.z
  2071. value: 0
  2072. objectReference: {fileID: 0}
  2073. - target: {fileID: 400240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2074. propertyPath: m_LocalRotation.w
  2075. value: -0.7071068
  2076. objectReference: {fileID: 0}
  2077. - target: {fileID: 400240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2078. propertyPath: m_LocalRotation.x
  2079. value: 0.7071068
  2080. objectReference: {fileID: 0}
  2081. - target: {fileID: 400240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2082. propertyPath: m_LocalRotation.y
  2083. value: 0
  2084. objectReference: {fileID: 0}
  2085. - target: {fileID: 400240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2086. propertyPath: m_LocalRotation.z
  2087. value: 0
  2088. objectReference: {fileID: 0}
  2089. - target: {fileID: 400242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2090. propertyPath: m_LocalRotation.w
  2091. value: -0.7071068
  2092. objectReference: {fileID: 0}
  2093. - target: {fileID: 400242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2094. propertyPath: m_LocalRotation.x
  2095. value: 0.7071068
  2096. objectReference: {fileID: 0}
  2097. - target: {fileID: 400242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2098. propertyPath: m_LocalRotation.y
  2099. value: 0
  2100. objectReference: {fileID: 0}
  2101. - target: {fileID: 400242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2102. propertyPath: m_LocalRotation.z
  2103. value: 0
  2104. objectReference: {fileID: 0}
  2105. - target: {fileID: 400244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2106. propertyPath: m_LocalRotation.w
  2107. value: -0.7071068
  2108. objectReference: {fileID: 0}
  2109. - target: {fileID: 400244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2110. propertyPath: m_LocalRotation.x
  2111. value: 0.7071068
  2112. objectReference: {fileID: 0}
  2113. - target: {fileID: 400244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2114. propertyPath: m_LocalRotation.y
  2115. value: 0
  2116. objectReference: {fileID: 0}
  2117. - target: {fileID: 400244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2118. propertyPath: m_LocalRotation.z
  2119. value: 0
  2120. objectReference: {fileID: 0}
  2121. - target: {fileID: 400246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2122. propertyPath: m_LocalRotation.w
  2123. value: -0.7071068
  2124. objectReference: {fileID: 0}
  2125. - target: {fileID: 400246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2126. propertyPath: m_LocalRotation.x
  2127. value: 0.7071068
  2128. objectReference: {fileID: 0}
  2129. - target: {fileID: 400246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2130. propertyPath: m_LocalRotation.y
  2131. value: 0
  2132. objectReference: {fileID: 0}
  2133. - target: {fileID: 400246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2134. propertyPath: m_LocalRotation.z
  2135. value: 0
  2136. objectReference: {fileID: 0}
  2137. - target: {fileID: 400248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2138. propertyPath: m_LocalRotation.w
  2139. value: -0.7071068
  2140. objectReference: {fileID: 0}
  2141. - target: {fileID: 400248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2142. propertyPath: m_LocalRotation.x
  2143. value: 0.7071068
  2144. objectReference: {fileID: 0}
  2145. - target: {fileID: 400248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2146. propertyPath: m_LocalRotation.y
  2147. value: 0
  2148. objectReference: {fileID: 0}
  2149. - target: {fileID: 400248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2150. propertyPath: m_LocalRotation.z
  2151. value: 0
  2152. objectReference: {fileID: 0}
  2153. - target: {fileID: 400250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2154. propertyPath: m_LocalRotation.w
  2155. value: -0.7071068
  2156. objectReference: {fileID: 0}
  2157. - target: {fileID: 400250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2158. propertyPath: m_LocalRotation.x
  2159. value: 0.7071068
  2160. objectReference: {fileID: 0}
  2161. - target: {fileID: 400250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2162. propertyPath: m_LocalRotation.y
  2163. value: 0
  2164. objectReference: {fileID: 0}
  2165. - target: {fileID: 400250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2166. propertyPath: m_LocalRotation.z
  2167. value: 0
  2168. objectReference: {fileID: 0}
  2169. - target: {fileID: 400252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2170. propertyPath: m_LocalRotation.w
  2171. value: -0.7071068
  2172. objectReference: {fileID: 0}
  2173. - target: {fileID: 400252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2174. propertyPath: m_LocalRotation.x
  2175. value: 0.7071068
  2176. objectReference: {fileID: 0}
  2177. - target: {fileID: 400252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2178. propertyPath: m_LocalRotation.y
  2179. value: 0
  2180. objectReference: {fileID: 0}
  2181. - target: {fileID: 400252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2182. propertyPath: m_LocalRotation.z
  2183. value: 0
  2184. objectReference: {fileID: 0}
  2185. - target: {fileID: 400254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2186. propertyPath: m_LocalRotation.w
  2187. value: -0.7071068
  2188. objectReference: {fileID: 0}
  2189. - target: {fileID: 400254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2190. propertyPath: m_LocalRotation.x
  2191. value: 0.7071068
  2192. objectReference: {fileID: 0}
  2193. - target: {fileID: 400254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2194. propertyPath: m_LocalRotation.y
  2195. value: 0
  2196. objectReference: {fileID: 0}
  2197. - target: {fileID: 400254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2198. propertyPath: m_LocalRotation.z
  2199. value: 0
  2200. objectReference: {fileID: 0}
  2201. - target: {fileID: 400256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2202. propertyPath: m_LocalRotation.w
  2203. value: -0.7071068
  2204. objectReference: {fileID: 0}
  2205. - target: {fileID: 400256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2206. propertyPath: m_LocalRotation.x
  2207. value: 0.7071068
  2208. objectReference: {fileID: 0}
  2209. - target: {fileID: 400256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2210. propertyPath: m_LocalRotation.y
  2211. value: 0
  2212. objectReference: {fileID: 0}
  2213. - target: {fileID: 400256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2214. propertyPath: m_LocalRotation.z
  2215. value: 0
  2216. objectReference: {fileID: 0}
  2217. - target: {fileID: 400258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2218. propertyPath: m_LocalRotation.w
  2219. value: -0.7071068
  2220. objectReference: {fileID: 0}
  2221. - target: {fileID: 400258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2222. propertyPath: m_LocalRotation.x
  2223. value: 0.7071068
  2224. objectReference: {fileID: 0}
  2225. - target: {fileID: 400258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2226. propertyPath: m_LocalRotation.y
  2227. value: 0
  2228. objectReference: {fileID: 0}
  2229. - target: {fileID: 400258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2230. propertyPath: m_LocalRotation.z
  2231. value: 0
  2232. objectReference: {fileID: 0}
  2233. - target: {fileID: 400260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2234. propertyPath: m_LocalRotation.w
  2235. value: -0.7071068
  2236. objectReference: {fileID: 0}
  2237. - target: {fileID: 400260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2238. propertyPath: m_LocalRotation.x
  2239. value: 0.7071068
  2240. objectReference: {fileID: 0}
  2241. - target: {fileID: 400260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2242. propertyPath: m_LocalRotation.y
  2243. value: 0
  2244. objectReference: {fileID: 0}
  2245. - target: {fileID: 400260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2246. propertyPath: m_LocalRotation.z
  2247. value: 0
  2248. objectReference: {fileID: 0}
  2249. - target: {fileID: 400262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2250. propertyPath: m_LocalRotation.w
  2251. value: -0.7071068
  2252. objectReference: {fileID: 0}
  2253. - target: {fileID: 400262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2254. propertyPath: m_LocalRotation.x
  2255. value: 0.7071068
  2256. objectReference: {fileID: 0}
  2257. - target: {fileID: 400262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2258. propertyPath: m_LocalRotation.y
  2259. value: 0
  2260. objectReference: {fileID: 0}
  2261. - target: {fileID: 400262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2262. propertyPath: m_LocalRotation.z
  2263. value: 0
  2264. objectReference: {fileID: 0}
  2265. - target: {fileID: 400264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2266. propertyPath: m_LocalRotation.w
  2267. value: -0.7071068
  2268. objectReference: {fileID: 0}
  2269. - target: {fileID: 400264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2270. propertyPath: m_LocalRotation.x
  2271. value: 0.7071068
  2272. objectReference: {fileID: 0}
  2273. - target: {fileID: 400264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2274. propertyPath: m_LocalRotation.y
  2275. value: 0
  2276. objectReference: {fileID: 0}
  2277. - target: {fileID: 400264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2278. propertyPath: m_LocalRotation.z
  2279. value: 0
  2280. objectReference: {fileID: 0}
  2281. - target: {fileID: 400266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2282. propertyPath: m_LocalRotation.w
  2283. value: -0.7071068
  2284. objectReference: {fileID: 0}
  2285. - target: {fileID: 400266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2286. propertyPath: m_LocalRotation.x
  2287. value: 0.7071068
  2288. objectReference: {fileID: 0}
  2289. - target: {fileID: 400266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2290. propertyPath: m_LocalRotation.y
  2291. value: 0
  2292. objectReference: {fileID: 0}
  2293. - target: {fileID: 400266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2294. propertyPath: m_LocalRotation.z
  2295. value: 0
  2296. objectReference: {fileID: 0}
  2297. - target: {fileID: 400268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2298. propertyPath: m_LocalRotation.w
  2299. value: -0.7071068
  2300. objectReference: {fileID: 0}
  2301. - target: {fileID: 400268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2302. propertyPath: m_LocalRotation.x
  2303. value: 0.7071068
  2304. objectReference: {fileID: 0}
  2305. - target: {fileID: 400268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2306. propertyPath: m_LocalRotation.y
  2307. value: 0
  2308. objectReference: {fileID: 0}
  2309. - target: {fileID: 400268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2310. propertyPath: m_LocalRotation.z
  2311. value: 0
  2312. objectReference: {fileID: 0}
  2313. - target: {fileID: 400270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2314. propertyPath: m_LocalRotation.w
  2315. value: -0.7071068
  2316. objectReference: {fileID: 0}
  2317. - target: {fileID: 400270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2318. propertyPath: m_LocalRotation.x
  2319. value: 0.7071068
  2320. objectReference: {fileID: 0}
  2321. - target: {fileID: 400270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2322. propertyPath: m_LocalRotation.y
  2323. value: 0
  2324. objectReference: {fileID: 0}
  2325. - target: {fileID: 400270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2326. propertyPath: m_LocalRotation.z
  2327. value: 0
  2328. objectReference: {fileID: 0}
  2329. - target: {fileID: 400272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2330. propertyPath: m_LocalRotation.w
  2331. value: -0.7071068
  2332. objectReference: {fileID: 0}
  2333. - target: {fileID: 400272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2334. propertyPath: m_LocalRotation.x
  2335. value: 0.7071068
  2336. objectReference: {fileID: 0}
  2337. - target: {fileID: 400272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2338. propertyPath: m_LocalRotation.y
  2339. value: 0
  2340. objectReference: {fileID: 0}
  2341. - target: {fileID: 400272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2342. propertyPath: m_LocalRotation.z
  2343. value: 0
  2344. objectReference: {fileID: 0}
  2345. - target: {fileID: 400274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2346. propertyPath: m_LocalRotation.w
  2347. value: -0.7071068
  2348. objectReference: {fileID: 0}
  2349. - target: {fileID: 400274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2350. propertyPath: m_LocalRotation.x
  2351. value: 0.7071068
  2352. objectReference: {fileID: 0}
  2353. - target: {fileID: 400274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2354. propertyPath: m_LocalRotation.y
  2355. value: 0
  2356. objectReference: {fileID: 0}
  2357. - target: {fileID: 400274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2358. propertyPath: m_LocalRotation.z
  2359. value: 0
  2360. objectReference: {fileID: 0}
  2361. - target: {fileID: 400276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2362. propertyPath: m_LocalRotation.w
  2363. value: -0.7071068
  2364. objectReference: {fileID: 0}
  2365. - target: {fileID: 400276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2366. propertyPath: m_LocalRotation.x
  2367. value: 0.7071068
  2368. objectReference: {fileID: 0}
  2369. - target: {fileID: 400276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2370. propertyPath: m_LocalRotation.y
  2371. value: 0
  2372. objectReference: {fileID: 0}
  2373. - target: {fileID: 400276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2374. propertyPath: m_LocalRotation.z
  2375. value: 0
  2376. objectReference: {fileID: 0}
  2377. - target: {fileID: 400278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2378. propertyPath: m_LocalRotation.w
  2379. value: -0.7071068
  2380. objectReference: {fileID: 0}
  2381. - target: {fileID: 400278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2382. propertyPath: m_LocalRotation.x
  2383. value: 0.7071068
  2384. objectReference: {fileID: 0}
  2385. - target: {fileID: 400278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2386. propertyPath: m_LocalRotation.y
  2387. value: 0
  2388. objectReference: {fileID: 0}
  2389. - target: {fileID: 400278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2390. propertyPath: m_LocalRotation.z
  2391. value: 0
  2392. objectReference: {fileID: 0}
  2393. - target: {fileID: 400280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2394. propertyPath: m_LocalRotation.w
  2395. value: -0.7071068
  2396. objectReference: {fileID: 0}
  2397. - target: {fileID: 400280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2398. propertyPath: m_LocalRotation.x
  2399. value: 0.7071068
  2400. objectReference: {fileID: 0}
  2401. - target: {fileID: 400280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2402. propertyPath: m_LocalRotation.y
  2403. value: 0
  2404. objectReference: {fileID: 0}
  2405. - target: {fileID: 400280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2406. propertyPath: m_LocalRotation.z
  2407. value: 0
  2408. objectReference: {fileID: 0}
  2409. - target: {fileID: 400282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2410. propertyPath: m_LocalRotation.w
  2411. value: -0.7071068
  2412. objectReference: {fileID: 0}
  2413. - target: {fileID: 400282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2414. propertyPath: m_LocalRotation.x
  2415. value: 0.7071068
  2416. objectReference: {fileID: 0}
  2417. - target: {fileID: 400282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2418. propertyPath: m_LocalRotation.y
  2419. value: 0
  2420. objectReference: {fileID: 0}
  2421. - target: {fileID: 400282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2422. propertyPath: m_LocalRotation.z
  2423. value: 0
  2424. objectReference: {fileID: 0}
  2425. - target: {fileID: 400284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2426. propertyPath: m_LocalRotation.w
  2427. value: -0.7071068
  2428. objectReference: {fileID: 0}
  2429. - target: {fileID: 400284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2430. propertyPath: m_LocalRotation.x
  2431. value: 0.7071068
  2432. objectReference: {fileID: 0}
  2433. - target: {fileID: 400284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2434. propertyPath: m_LocalRotation.y
  2435. value: 0
  2436. objectReference: {fileID: 0}
  2437. - target: {fileID: 400284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2438. propertyPath: m_LocalRotation.z
  2439. value: 0
  2440. objectReference: {fileID: 0}
  2441. - target: {fileID: 400286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2442. propertyPath: m_LocalRotation.w
  2443. value: -0.7071068
  2444. objectReference: {fileID: 0}
  2445. - target: {fileID: 400286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2446. propertyPath: m_LocalRotation.x
  2447. value: 0.7071068
  2448. objectReference: {fileID: 0}
  2449. - target: {fileID: 400286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2450. propertyPath: m_LocalRotation.y
  2451. value: 0
  2452. objectReference: {fileID: 0}
  2453. - target: {fileID: 400286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2454. propertyPath: m_LocalRotation.z
  2455. value: 0
  2456. objectReference: {fileID: 0}
  2457. - target: {fileID: 400288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2458. propertyPath: m_LocalRotation.w
  2459. value: -0.7071068
  2460. objectReference: {fileID: 0}
  2461. - target: {fileID: 400288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2462. propertyPath: m_LocalRotation.x
  2463. value: 0.7071068
  2464. objectReference: {fileID: 0}
  2465. - target: {fileID: 400288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2466. propertyPath: m_LocalRotation.y
  2467. value: 0
  2468. objectReference: {fileID: 0}
  2469. - target: {fileID: 400288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2470. propertyPath: m_LocalRotation.z
  2471. value: 0
  2472. objectReference: {fileID: 0}
  2473. - target: {fileID: 400290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2474. propertyPath: m_LocalRotation.w
  2475. value: -0.7071068
  2476. objectReference: {fileID: 0}
  2477. - target: {fileID: 400290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2478. propertyPath: m_LocalRotation.x
  2479. value: 0.7071068
  2480. objectReference: {fileID: 0}
  2481. - target: {fileID: 400290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2482. propertyPath: m_LocalRotation.y
  2483. value: 0
  2484. objectReference: {fileID: 0}
  2485. - target: {fileID: 400290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2486. propertyPath: m_LocalRotation.z
  2487. value: 0
  2488. objectReference: {fileID: 0}
  2489. - target: {fileID: 400292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2490. propertyPath: m_LocalRotation.w
  2491. value: -0.7071068
  2492. objectReference: {fileID: 0}
  2493. - target: {fileID: 400292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2494. propertyPath: m_LocalRotation.x
  2495. value: 0.7071068
  2496. objectReference: {fileID: 0}
  2497. - target: {fileID: 400292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2498. propertyPath: m_LocalRotation.y
  2499. value: 0
  2500. objectReference: {fileID: 0}
  2501. - target: {fileID: 400292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2502. propertyPath: m_LocalRotation.z
  2503. value: 0
  2504. objectReference: {fileID: 0}
  2505. - target: {fileID: 400294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2506. propertyPath: m_LocalRotation.w
  2507. value: -0.7071068
  2508. objectReference: {fileID: 0}
  2509. - target: {fileID: 400294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2510. propertyPath: m_LocalRotation.x
  2511. value: 0.7071068
  2512. objectReference: {fileID: 0}
  2513. - target: {fileID: 400294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2514. propertyPath: m_LocalRotation.y
  2515. value: 0
  2516. objectReference: {fileID: 0}
  2517. - target: {fileID: 400294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2518. propertyPath: m_LocalRotation.z
  2519. value: 0
  2520. objectReference: {fileID: 0}
  2521. - target: {fileID: 400296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2522. propertyPath: m_LocalRotation.w
  2523. value: -0.7071068
  2524. objectReference: {fileID: 0}
  2525. - target: {fileID: 400296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2526. propertyPath: m_LocalRotation.x
  2527. value: 0.7071068
  2528. objectReference: {fileID: 0}
  2529. - target: {fileID: 400296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2530. propertyPath: m_LocalRotation.y
  2531. value: 0
  2532. objectReference: {fileID: 0}
  2533. - target: {fileID: 400296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2534. propertyPath: m_LocalRotation.z
  2535. value: 0
  2536. objectReference: {fileID: 0}
  2537. - target: {fileID: 400298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2538. propertyPath: m_LocalRotation.w
  2539. value: -0.7071068
  2540. objectReference: {fileID: 0}
  2541. - target: {fileID: 400298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2542. propertyPath: m_LocalRotation.x
  2543. value: 0.7071068
  2544. objectReference: {fileID: 0}
  2545. - target: {fileID: 400298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2546. propertyPath: m_LocalRotation.y
  2547. value: 0
  2548. objectReference: {fileID: 0}
  2549. - target: {fileID: 400298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2550. propertyPath: m_LocalRotation.z
  2551. value: 0
  2552. objectReference: {fileID: 0}
  2553. - target: {fileID: 400300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2554. propertyPath: m_LocalRotation.w
  2555. value: -0.7071068
  2556. objectReference: {fileID: 0}
  2557. - target: {fileID: 400300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2558. propertyPath: m_LocalRotation.x
  2559. value: 0.7071068
  2560. objectReference: {fileID: 0}
  2561. - target: {fileID: 400300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2562. propertyPath: m_LocalRotation.y
  2563. value: 0
  2564. objectReference: {fileID: 0}
  2565. - target: {fileID: 400300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2566. propertyPath: m_LocalRotation.z
  2567. value: 0
  2568. objectReference: {fileID: 0}
  2569. - target: {fileID: 400302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2570. propertyPath: m_LocalRotation.w
  2571. value: -0.7071068
  2572. objectReference: {fileID: 0}
  2573. - target: {fileID: 400302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2574. propertyPath: m_LocalRotation.x
  2575. value: 0.7071068
  2576. objectReference: {fileID: 0}
  2577. - target: {fileID: 400302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2578. propertyPath: m_LocalRotation.y
  2579. value: 0
  2580. objectReference: {fileID: 0}
  2581. - target: {fileID: 400302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2582. propertyPath: m_LocalRotation.z
  2583. value: 0
  2584. objectReference: {fileID: 0}
  2585. - target: {fileID: 400304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2586. propertyPath: m_LocalRotation.w
  2587. value: -0.7071068
  2588. objectReference: {fileID: 0}
  2589. - target: {fileID: 400304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2590. propertyPath: m_LocalRotation.x
  2591. value: 0.7071068
  2592. objectReference: {fileID: 0}
  2593. - target: {fileID: 400304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2594. propertyPath: m_LocalRotation.y
  2595. value: 0
  2596. objectReference: {fileID: 0}
  2597. - target: {fileID: 400304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2598. propertyPath: m_LocalRotation.z
  2599. value: 0
  2600. objectReference: {fileID: 0}
  2601. - target: {fileID: 400306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2602. propertyPath: m_LocalRotation.w
  2603. value: -0.7071068
  2604. objectReference: {fileID: 0}
  2605. - target: {fileID: 400306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2606. propertyPath: m_LocalRotation.x
  2607. value: 0.7071068
  2608. objectReference: {fileID: 0}
  2609. - target: {fileID: 400306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2610. propertyPath: m_LocalRotation.y
  2611. value: 0
  2612. objectReference: {fileID: 0}
  2613. - target: {fileID: 400306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2614. propertyPath: m_LocalRotation.z
  2615. value: 0
  2616. objectReference: {fileID: 0}
  2617. - target: {fileID: 400308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2618. propertyPath: m_LocalRotation.w
  2619. value: -0.7071068
  2620. objectReference: {fileID: 0}
  2621. - target: {fileID: 400308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2622. propertyPath: m_LocalRotation.x
  2623. value: 0.7071068
  2624. objectReference: {fileID: 0}
  2625. - target: {fileID: 400308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2626. propertyPath: m_LocalRotation.y
  2627. value: 0
  2628. objectReference: {fileID: 0}
  2629. - target: {fileID: 400308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2630. propertyPath: m_LocalRotation.z
  2631. value: 0
  2632. objectReference: {fileID: 0}
  2633. - target: {fileID: 400310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2634. propertyPath: m_LocalRotation.w
  2635. value: -0.7071068
  2636. objectReference: {fileID: 0}
  2637. - target: {fileID: 400310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2638. propertyPath: m_LocalRotation.x
  2639. value: 0.7071068
  2640. objectReference: {fileID: 0}
  2641. - target: {fileID: 400310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2642. propertyPath: m_LocalRotation.y
  2643. value: 0
  2644. objectReference: {fileID: 0}
  2645. - target: {fileID: 400310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2646. propertyPath: m_LocalRotation.z
  2647. value: 0
  2648. objectReference: {fileID: 0}
  2649. - target: {fileID: 400312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2650. propertyPath: m_LocalRotation.w
  2651. value: -0.7071068
  2652. objectReference: {fileID: 0}
  2653. - target: {fileID: 400312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2654. propertyPath: m_LocalRotation.x
  2655. value: 0.7071068
  2656. objectReference: {fileID: 0}
  2657. - target: {fileID: 400312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2658. propertyPath: m_LocalRotation.y
  2659. value: 0
  2660. objectReference: {fileID: 0}
  2661. - target: {fileID: 400312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2662. propertyPath: m_LocalRotation.z
  2663. value: 0
  2664. objectReference: {fileID: 0}
  2665. - target: {fileID: 400314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2666. propertyPath: m_LocalRotation.w
  2667. value: -0.7071068
  2668. objectReference: {fileID: 0}
  2669. - target: {fileID: 400314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2670. propertyPath: m_LocalRotation.x
  2671. value: 0.7071068
  2672. objectReference: {fileID: 0}
  2673. - target: {fileID: 400314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2674. propertyPath: m_LocalRotation.y
  2675. value: 0
  2676. objectReference: {fileID: 0}
  2677. - target: {fileID: 400314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2678. propertyPath: m_LocalRotation.z
  2679. value: 0
  2680. objectReference: {fileID: 0}
  2681. - target: {fileID: 400316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2682. propertyPath: m_LocalRotation.w
  2683. value: -0.7071068
  2684. objectReference: {fileID: 0}
  2685. - target: {fileID: 400316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2686. propertyPath: m_LocalRotation.x
  2687. value: 0.7071068
  2688. objectReference: {fileID: 0}
  2689. - target: {fileID: 400316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2690. propertyPath: m_LocalRotation.y
  2691. value: 0
  2692. objectReference: {fileID: 0}
  2693. - target: {fileID: 400316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2694. propertyPath: m_LocalRotation.z
  2695. value: 0
  2696. objectReference: {fileID: 0}
  2697. - target: {fileID: 400318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2698. propertyPath: m_LocalRotation.w
  2699. value: -0.7071068
  2700. objectReference: {fileID: 0}
  2701. - target: {fileID: 400318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2702. propertyPath: m_LocalRotation.x
  2703. value: 0.7071068
  2704. objectReference: {fileID: 0}
  2705. - target: {fileID: 400318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2706. propertyPath: m_LocalRotation.y
  2707. value: 0
  2708. objectReference: {fileID: 0}
  2709. - target: {fileID: 400318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2710. propertyPath: m_LocalRotation.z
  2711. value: 0
  2712. objectReference: {fileID: 0}
  2713. - target: {fileID: 400320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2714. propertyPath: m_LocalRotation.w
  2715. value: -0.7071068
  2716. objectReference: {fileID: 0}
  2717. - target: {fileID: 400320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2718. propertyPath: m_LocalRotation.x
  2719. value: 0.7071068
  2720. objectReference: {fileID: 0}
  2721. - target: {fileID: 400320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2722. propertyPath: m_LocalRotation.y
  2723. value: 0
  2724. objectReference: {fileID: 0}
  2725. - target: {fileID: 400320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2726. propertyPath: m_LocalRotation.z
  2727. value: 0
  2728. objectReference: {fileID: 0}
  2729. - target: {fileID: 400322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2730. propertyPath: m_LocalRotation.w
  2731. value: -0.7071068
  2732. objectReference: {fileID: 0}
  2733. - target: {fileID: 400322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2734. propertyPath: m_LocalRotation.x
  2735. value: 0.7071068
  2736. objectReference: {fileID: 0}
  2737. - target: {fileID: 400322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2738. propertyPath: m_LocalRotation.y
  2739. value: 0
  2740. objectReference: {fileID: 0}
  2741. - target: {fileID: 400322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2742. propertyPath: m_LocalRotation.z
  2743. value: 0
  2744. objectReference: {fileID: 0}
  2745. - target: {fileID: 400324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2746. propertyPath: m_LocalRotation.w
  2747. value: -0.7071068
  2748. objectReference: {fileID: 0}
  2749. - target: {fileID: 400324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2750. propertyPath: m_LocalRotation.x
  2751. value: 0.7071068
  2752. objectReference: {fileID: 0}
  2753. - target: {fileID: 400324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2754. propertyPath: m_LocalRotation.y
  2755. value: 0
  2756. objectReference: {fileID: 0}
  2757. - target: {fileID: 400324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2758. propertyPath: m_LocalRotation.z
  2759. value: 0
  2760. objectReference: {fileID: 0}
  2761. - target: {fileID: 400326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2762. propertyPath: m_LocalRotation.w
  2763. value: -0.7071068
  2764. objectReference: {fileID: 0}
  2765. - target: {fileID: 400326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2766. propertyPath: m_LocalRotation.x
  2767. value: 0.7071068
  2768. objectReference: {fileID: 0}
  2769. - target: {fileID: 400326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2770. propertyPath: m_LocalRotation.y
  2771. value: 0
  2772. objectReference: {fileID: 0}
  2773. - target: {fileID: 400326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2774. propertyPath: m_LocalRotation.z
  2775. value: 0
  2776. objectReference: {fileID: 0}
  2777. - target: {fileID: 400328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2778. propertyPath: m_LocalRotation.w
  2779. value: -0.7071068
  2780. objectReference: {fileID: 0}
  2781. - target: {fileID: 400328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2782. propertyPath: m_LocalRotation.x
  2783. value: 0.7071068
  2784. objectReference: {fileID: 0}
  2785. - target: {fileID: 400328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2786. propertyPath: m_LocalRotation.y
  2787. value: 0
  2788. objectReference: {fileID: 0}
  2789. - target: {fileID: 400328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2790. propertyPath: m_LocalRotation.z
  2791. value: 0
  2792. objectReference: {fileID: 0}
  2793. - target: {fileID: 400330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2794. propertyPath: m_LocalRotation.w
  2795. value: -0.7071068
  2796. objectReference: {fileID: 0}
  2797. - target: {fileID: 400330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2798. propertyPath: m_LocalRotation.x
  2799. value: 0.7071068
  2800. objectReference: {fileID: 0}
  2801. - target: {fileID: 400330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2802. propertyPath: m_LocalRotation.y
  2803. value: 0
  2804. objectReference: {fileID: 0}
  2805. - target: {fileID: 400330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2806. propertyPath: m_LocalRotation.z
  2807. value: 0
  2808. objectReference: {fileID: 0}
  2809. - target: {fileID: 400332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2810. propertyPath: m_LocalRotation.w
  2811. value: -0.7071068
  2812. objectReference: {fileID: 0}
  2813. - target: {fileID: 400332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2814. propertyPath: m_LocalRotation.x
  2815. value: 0.7071068
  2816. objectReference: {fileID: 0}
  2817. - target: {fileID: 400332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2818. propertyPath: m_LocalRotation.y
  2819. value: 0
  2820. objectReference: {fileID: 0}
  2821. - target: {fileID: 400332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2822. propertyPath: m_LocalRotation.z
  2823. value: 0
  2824. objectReference: {fileID: 0}
  2825. - target: {fileID: 400334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2826. propertyPath: m_LocalRotation.w
  2827. value: -0.7071068
  2828. objectReference: {fileID: 0}
  2829. - target: {fileID: 400334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2830. propertyPath: m_LocalRotation.x
  2831. value: 0.7071068
  2832. objectReference: {fileID: 0}
  2833. - target: {fileID: 400334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2834. propertyPath: m_LocalRotation.y
  2835. value: 0
  2836. objectReference: {fileID: 0}
  2837. - target: {fileID: 400334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2838. propertyPath: m_LocalRotation.z
  2839. value: 0
  2840. objectReference: {fileID: 0}
  2841. - target: {fileID: 400336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2842. propertyPath: m_LocalRotation.w
  2843. value: -0.7071068
  2844. objectReference: {fileID: 0}
  2845. - target: {fileID: 400336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2846. propertyPath: m_LocalRotation.x
  2847. value: 0.7071068
  2848. objectReference: {fileID: 0}
  2849. - target: {fileID: 400336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2850. propertyPath: m_LocalRotation.y
  2851. value: 0
  2852. objectReference: {fileID: 0}
  2853. - target: {fileID: 400336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2854. propertyPath: m_LocalRotation.z
  2855. value: 0
  2856. objectReference: {fileID: 0}
  2857. - target: {fileID: 400338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2858. propertyPath: m_LocalRotation.w
  2859. value: -0.7071068
  2860. objectReference: {fileID: 0}
  2861. - target: {fileID: 400338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2862. propertyPath: m_LocalRotation.x
  2863. value: 0.7071068
  2864. objectReference: {fileID: 0}
  2865. - target: {fileID: 400338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2866. propertyPath: m_LocalRotation.y
  2867. value: 0
  2868. objectReference: {fileID: 0}
  2869. - target: {fileID: 400338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2870. propertyPath: m_LocalRotation.z
  2871. value: 0
  2872. objectReference: {fileID: 0}
  2873. - target: {fileID: 400340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2874. propertyPath: m_LocalRotation.w
  2875. value: -0.7071068
  2876. objectReference: {fileID: 0}
  2877. - target: {fileID: 400340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2878. propertyPath: m_LocalRotation.x
  2879. value: 0.7071068
  2880. objectReference: {fileID: 0}
  2881. - target: {fileID: 400340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2882. propertyPath: m_LocalRotation.y
  2883. value: 0
  2884. objectReference: {fileID: 0}
  2885. - target: {fileID: 400340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2886. propertyPath: m_LocalRotation.z
  2887. value: 0
  2888. objectReference: {fileID: 0}
  2889. - target: {fileID: 400342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2890. propertyPath: m_LocalRotation.w
  2891. value: -0.7071068
  2892. objectReference: {fileID: 0}
  2893. - target: {fileID: 400342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2894. propertyPath: m_LocalRotation.x
  2895. value: 0.7071068
  2896. objectReference: {fileID: 0}
  2897. - target: {fileID: 400342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2898. propertyPath: m_LocalRotation.y
  2899. value: 0
  2900. objectReference: {fileID: 0}
  2901. - target: {fileID: 400342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2902. propertyPath: m_LocalRotation.z
  2903. value: 0
  2904. objectReference: {fileID: 0}
  2905. - target: {fileID: 400344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2906. propertyPath: m_LocalRotation.w
  2907. value: -0.7071068
  2908. objectReference: {fileID: 0}
  2909. - target: {fileID: 400344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2910. propertyPath: m_LocalRotation.x
  2911. value: 0.7071068
  2912. objectReference: {fileID: 0}
  2913. - target: {fileID: 400344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2914. propertyPath: m_LocalRotation.y
  2915. value: 0
  2916. objectReference: {fileID: 0}
  2917. - target: {fileID: 400344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2918. propertyPath: m_LocalRotation.z
  2919. value: 0
  2920. objectReference: {fileID: 0}
  2921. - target: {fileID: 400346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2922. propertyPath: m_LocalRotation.w
  2923. value: -0.7071068
  2924. objectReference: {fileID: 0}
  2925. - target: {fileID: 400346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2926. propertyPath: m_LocalRotation.x
  2927. value: 0.7071068
  2928. objectReference: {fileID: 0}
  2929. - target: {fileID: 400346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2930. propertyPath: m_LocalRotation.y
  2931. value: 0
  2932. objectReference: {fileID: 0}
  2933. - target: {fileID: 400346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2934. propertyPath: m_LocalRotation.z
  2935. value: 0
  2936. objectReference: {fileID: 0}
  2937. - target: {fileID: 400348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2938. propertyPath: m_LocalRotation.w
  2939. value: -0.7071068
  2940. objectReference: {fileID: 0}
  2941. - target: {fileID: 400348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2942. propertyPath: m_LocalRotation.x
  2943. value: 0.7071068
  2944. objectReference: {fileID: 0}
  2945. - target: {fileID: 400348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2946. propertyPath: m_LocalRotation.y
  2947. value: 0
  2948. objectReference: {fileID: 0}
  2949. - target: {fileID: 400348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2950. propertyPath: m_LocalRotation.z
  2951. value: 0
  2952. objectReference: {fileID: 0}
  2953. - target: {fileID: 400350, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2954. propertyPath: m_LocalRotation.w
  2955. value: -0.7071068
  2956. objectReference: {fileID: 0}
  2957. - target: {fileID: 400350, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2958. propertyPath: m_LocalRotation.x
  2959. value: 0.7071068
  2960. objectReference: {fileID: 0}
  2961. - target: {fileID: 400350, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2962. propertyPath: m_LocalRotation.y
  2963. value: 0
  2964. objectReference: {fileID: 0}
  2965. - target: {fileID: 400350, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2966. propertyPath: m_LocalRotation.z
  2967. value: 0
  2968. objectReference: {fileID: 0}
  2969. - target: {fileID: 2300000, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2970. propertyPath: m_Materials.Array.size
  2971. value: 1
  2972. objectReference: {fileID: 0}
  2973. - target: {fileID: 2300000, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2974. propertyPath: m_Materials.Array.data[0]
  2975. value:
  2976. objectReference: {fileID: 2100000, guid: 325302610d7259e49a2ce8124ae53dce, type: 2}
  2977. - target: {fileID: 2300000, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2978. propertyPath: m_Materials.Array.data[1]
  2979. value:
  2980. objectReference: {fileID: 0}
  2981. - target: {fileID: 2300004, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2982. propertyPath: m_Materials.Array.data[0]
  2983. value:
  2984. objectReference: {fileID: 0}
  2985. - target: {fileID: 2300088, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2986. propertyPath: m_Materials.Array.size
  2987. value: 1
  2988. objectReference: {fileID: 0}
  2989. - target: {fileID: 2300088, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2990. propertyPath: m_Materials.Array.data[0]
  2991. value:
  2992. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  2993. - target: {fileID: 2300088, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2994. propertyPath: m_Materials.Array.data[1]
  2995. value:
  2996. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  2997. - target: {fileID: 2300090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  2998. propertyPath: m_Materials.Array.size
  2999. value: 1
  3000. objectReference: {fileID: 0}
  3001. - target: {fileID: 2300090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3002. propertyPath: m_Materials.Array.data[0]
  3003. value:
  3004. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3005. - target: {fileID: 2300090, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3006. propertyPath: m_Materials.Array.data[1]
  3007. value:
  3008. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3009. - target: {fileID: 2300092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3010. propertyPath: m_Materials.Array.size
  3011. value: 1
  3012. objectReference: {fileID: 0}
  3013. - target: {fileID: 2300092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3014. propertyPath: m_Materials.Array.data[0]
  3015. value:
  3016. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3017. - target: {fileID: 2300092, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3018. propertyPath: m_Materials.Array.data[1]
  3019. value:
  3020. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3021. - target: {fileID: 2300094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3022. propertyPath: m_Materials.Array.size
  3023. value: 1
  3024. objectReference: {fileID: 0}
  3025. - target: {fileID: 2300094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3026. propertyPath: m_Materials.Array.data[0]
  3027. value:
  3028. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3029. - target: {fileID: 2300094, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3030. propertyPath: m_Materials.Array.data[1]
  3031. value:
  3032. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3033. - target: {fileID: 2300096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3034. propertyPath: m_Materials.Array.size
  3035. value: 1
  3036. objectReference: {fileID: 0}
  3037. - target: {fileID: 2300096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3038. propertyPath: m_Materials.Array.data[0]
  3039. value:
  3040. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3041. - target: {fileID: 2300096, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3042. propertyPath: m_Materials.Array.data[1]
  3043. value:
  3044. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3045. - target: {fileID: 2300098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3046. propertyPath: m_Materials.Array.size
  3047. value: 1
  3048. objectReference: {fileID: 0}
  3049. - target: {fileID: 2300098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3050. propertyPath: m_Materials.Array.data[0]
  3051. value:
  3052. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3053. - target: {fileID: 2300098, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3054. propertyPath: m_Materials.Array.data[1]
  3055. value:
  3056. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3057. - target: {fileID: 2300100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3058. propertyPath: m_Materials.Array.size
  3059. value: 1
  3060. objectReference: {fileID: 0}
  3061. - target: {fileID: 2300100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3062. propertyPath: m_Materials.Array.data[0]
  3063. value:
  3064. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3065. - target: {fileID: 2300100, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3066. propertyPath: m_Materials.Array.data[1]
  3067. value:
  3068. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3069. - target: {fileID: 2300102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3070. propertyPath: m_Materials.Array.size
  3071. value: 1
  3072. objectReference: {fileID: 0}
  3073. - target: {fileID: 2300102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3074. propertyPath: m_Materials.Array.data[0]
  3075. value:
  3076. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3077. - target: {fileID: 2300102, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3078. propertyPath: m_Materials.Array.data[1]
  3079. value:
  3080. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3081. - target: {fileID: 2300104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3082. propertyPath: m_Materials.Array.size
  3083. value: 1
  3084. objectReference: {fileID: 0}
  3085. - target: {fileID: 2300104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3086. propertyPath: m_Materials.Array.data[0]
  3087. value:
  3088. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3089. - target: {fileID: 2300104, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3090. propertyPath: m_Materials.Array.data[1]
  3091. value:
  3092. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3093. - target: {fileID: 2300106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3094. propertyPath: m_Materials.Array.size
  3095. value: 1
  3096. objectReference: {fileID: 0}
  3097. - target: {fileID: 2300106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3098. propertyPath: m_Materials.Array.data[0]
  3099. value:
  3100. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3101. - target: {fileID: 2300106, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3102. propertyPath: m_Materials.Array.data[1]
  3103. value:
  3104. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3105. - target: {fileID: 2300108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3106. propertyPath: m_Materials.Array.size
  3107. value: 1
  3108. objectReference: {fileID: 0}
  3109. - target: {fileID: 2300108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3110. propertyPath: m_Materials.Array.data[0]
  3111. value:
  3112. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3113. - target: {fileID: 2300108, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3114. propertyPath: m_Materials.Array.data[1]
  3115. value:
  3116. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3117. - target: {fileID: 2300110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3118. propertyPath: m_Materials.Array.size
  3119. value: 1
  3120. objectReference: {fileID: 0}
  3121. - target: {fileID: 2300110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3122. propertyPath: m_Materials.Array.data[0]
  3123. value:
  3124. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3125. - target: {fileID: 2300110, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3126. propertyPath: m_Materials.Array.data[1]
  3127. value:
  3128. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3129. - target: {fileID: 2300112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3130. propertyPath: m_Materials.Array.size
  3131. value: 1
  3132. objectReference: {fileID: 0}
  3133. - target: {fileID: 2300112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3134. propertyPath: m_Materials.Array.data[0]
  3135. value:
  3136. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3137. - target: {fileID: 2300112, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3138. propertyPath: m_Materials.Array.data[1]
  3139. value:
  3140. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3141. - target: {fileID: 2300114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3142. propertyPath: m_Materials.Array.size
  3143. value: 1
  3144. objectReference: {fileID: 0}
  3145. - target: {fileID: 2300114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3146. propertyPath: m_Materials.Array.data[0]
  3147. value:
  3148. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3149. - target: {fileID: 2300114, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3150. propertyPath: m_Materials.Array.data[1]
  3151. value:
  3152. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3153. - target: {fileID: 2300116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3154. propertyPath: m_Materials.Array.size
  3155. value: 1
  3156. objectReference: {fileID: 0}
  3157. - target: {fileID: 2300116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3158. propertyPath: m_Materials.Array.data[0]
  3159. value:
  3160. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3161. - target: {fileID: 2300116, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3162. propertyPath: m_Materials.Array.data[1]
  3163. value:
  3164. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3165. - target: {fileID: 2300118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3166. propertyPath: m_Materials.Array.size
  3167. value: 1
  3168. objectReference: {fileID: 0}
  3169. - target: {fileID: 2300118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3170. propertyPath: m_Materials.Array.data[0]
  3171. value:
  3172. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3173. - target: {fileID: 2300118, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3174. propertyPath: m_Materials.Array.data[1]
  3175. value:
  3176. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3177. - target: {fileID: 2300120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3178. propertyPath: m_Materials.Array.size
  3179. value: 1
  3180. objectReference: {fileID: 0}
  3181. - target: {fileID: 2300120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3182. propertyPath: m_Materials.Array.data[0]
  3183. value:
  3184. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3185. - target: {fileID: 2300120, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3186. propertyPath: m_Materials.Array.data[1]
  3187. value:
  3188. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3189. - target: {fileID: 2300122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3190. propertyPath: m_Materials.Array.size
  3191. value: 1
  3192. objectReference: {fileID: 0}
  3193. - target: {fileID: 2300122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3194. propertyPath: m_Materials.Array.data[0]
  3195. value:
  3196. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3197. - target: {fileID: 2300122, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3198. propertyPath: m_Materials.Array.data[1]
  3199. value:
  3200. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3201. - target: {fileID: 2300124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3202. propertyPath: m_Materials.Array.size
  3203. value: 1
  3204. objectReference: {fileID: 0}
  3205. - target: {fileID: 2300124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3206. propertyPath: m_Materials.Array.data[0]
  3207. value:
  3208. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3209. - target: {fileID: 2300124, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3210. propertyPath: m_Materials.Array.data[1]
  3211. value:
  3212. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3213. - target: {fileID: 2300126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3214. propertyPath: m_Materials.Array.size
  3215. value: 1
  3216. objectReference: {fileID: 0}
  3217. - target: {fileID: 2300126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3218. propertyPath: m_Materials.Array.data[0]
  3219. value:
  3220. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3221. - target: {fileID: 2300126, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3222. propertyPath: m_Materials.Array.data[1]
  3223. value:
  3224. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3225. - target: {fileID: 2300128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3226. propertyPath: m_Materials.Array.size
  3227. value: 1
  3228. objectReference: {fileID: 0}
  3229. - target: {fileID: 2300128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3230. propertyPath: m_Materials.Array.data[0]
  3231. value:
  3232. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3233. - target: {fileID: 2300128, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3234. propertyPath: m_Materials.Array.data[1]
  3235. value:
  3236. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3237. - target: {fileID: 2300130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3238. propertyPath: m_Materials.Array.size
  3239. value: 1
  3240. objectReference: {fileID: 0}
  3241. - target: {fileID: 2300130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3242. propertyPath: m_Materials.Array.data[0]
  3243. value:
  3244. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3245. - target: {fileID: 2300130, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3246. propertyPath: m_Materials.Array.data[1]
  3247. value:
  3248. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3249. - target: {fileID: 2300132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3250. propertyPath: m_Materials.Array.size
  3251. value: 1
  3252. objectReference: {fileID: 0}
  3253. - target: {fileID: 2300132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3254. propertyPath: m_Materials.Array.data[0]
  3255. value:
  3256. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3257. - target: {fileID: 2300132, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3258. propertyPath: m_Materials.Array.data[1]
  3259. value:
  3260. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3261. - target: {fileID: 2300134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3262. propertyPath: m_Materials.Array.size
  3263. value: 1
  3264. objectReference: {fileID: 0}
  3265. - target: {fileID: 2300134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3266. propertyPath: m_Materials.Array.data[0]
  3267. value:
  3268. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3269. - target: {fileID: 2300134, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3270. propertyPath: m_Materials.Array.data[1]
  3271. value:
  3272. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3273. - target: {fileID: 2300136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3274. propertyPath: m_Materials.Array.size
  3275. value: 1
  3276. objectReference: {fileID: 0}
  3277. - target: {fileID: 2300136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3278. propertyPath: m_Materials.Array.data[0]
  3279. value:
  3280. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3281. - target: {fileID: 2300136, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3282. propertyPath: m_Materials.Array.data[1]
  3283. value:
  3284. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3285. - target: {fileID: 2300138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3286. propertyPath: m_Materials.Array.size
  3287. value: 1
  3288. objectReference: {fileID: 0}
  3289. - target: {fileID: 2300138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3290. propertyPath: m_Materials.Array.data[0]
  3291. value:
  3292. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3293. - target: {fileID: 2300138, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3294. propertyPath: m_Materials.Array.data[1]
  3295. value:
  3296. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3297. - target: {fileID: 2300140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3298. propertyPath: m_Materials.Array.size
  3299. value: 1
  3300. objectReference: {fileID: 0}
  3301. - target: {fileID: 2300140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3302. propertyPath: m_Materials.Array.data[0]
  3303. value:
  3304. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3305. - target: {fileID: 2300140, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3306. propertyPath: m_Materials.Array.data[1]
  3307. value:
  3308. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3309. - target: {fileID: 2300142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3310. propertyPath: m_Materials.Array.size
  3311. value: 1
  3312. objectReference: {fileID: 0}
  3313. - target: {fileID: 2300142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3314. propertyPath: m_Materials.Array.data[0]
  3315. value:
  3316. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3317. - target: {fileID: 2300142, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3318. propertyPath: m_Materials.Array.data[1]
  3319. value:
  3320. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3321. - target: {fileID: 2300144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3322. propertyPath: m_Materials.Array.size
  3323. value: 1
  3324. objectReference: {fileID: 0}
  3325. - target: {fileID: 2300144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3326. propertyPath: m_Materials.Array.data[0]
  3327. value:
  3328. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3329. - target: {fileID: 2300144, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3330. propertyPath: m_Materials.Array.data[1]
  3331. value:
  3332. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3333. - target: {fileID: 2300146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3334. propertyPath: m_Materials.Array.size
  3335. value: 1
  3336. objectReference: {fileID: 0}
  3337. - target: {fileID: 2300146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3338. propertyPath: m_Materials.Array.data[0]
  3339. value:
  3340. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3341. - target: {fileID: 2300146, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3342. propertyPath: m_Materials.Array.data[1]
  3343. value:
  3344. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3345. - target: {fileID: 2300148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3346. propertyPath: m_Materials.Array.size
  3347. value: 1
  3348. objectReference: {fileID: 0}
  3349. - target: {fileID: 2300148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3350. propertyPath: m_Materials.Array.data[0]
  3351. value:
  3352. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3353. - target: {fileID: 2300148, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3354. propertyPath: m_Materials.Array.data[1]
  3355. value:
  3356. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3357. - target: {fileID: 2300150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3358. propertyPath: m_Materials.Array.size
  3359. value: 1
  3360. objectReference: {fileID: 0}
  3361. - target: {fileID: 2300150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3362. propertyPath: m_Materials.Array.data[0]
  3363. value:
  3364. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3365. - target: {fileID: 2300150, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3366. propertyPath: m_Materials.Array.data[1]
  3367. value:
  3368. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3369. - target: {fileID: 2300152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3370. propertyPath: m_Materials.Array.size
  3371. value: 1
  3372. objectReference: {fileID: 0}
  3373. - target: {fileID: 2300152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3374. propertyPath: m_Materials.Array.data[0]
  3375. value:
  3376. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3377. - target: {fileID: 2300152, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3378. propertyPath: m_Materials.Array.data[1]
  3379. value:
  3380. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3381. - target: {fileID: 2300154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3382. propertyPath: m_Materials.Array.size
  3383. value: 1
  3384. objectReference: {fileID: 0}
  3385. - target: {fileID: 2300154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3386. propertyPath: m_Materials.Array.data[0]
  3387. value:
  3388. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3389. - target: {fileID: 2300154, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3390. propertyPath: m_Materials.Array.data[1]
  3391. value:
  3392. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3393. - target: {fileID: 2300156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3394. propertyPath: m_Materials.Array.size
  3395. value: 1
  3396. objectReference: {fileID: 0}
  3397. - target: {fileID: 2300156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3398. propertyPath: m_Materials.Array.data[0]
  3399. value:
  3400. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3401. - target: {fileID: 2300156, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3402. propertyPath: m_Materials.Array.data[1]
  3403. value:
  3404. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3405. - target: {fileID: 2300158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3406. propertyPath: m_Materials.Array.size
  3407. value: 1
  3408. objectReference: {fileID: 0}
  3409. - target: {fileID: 2300158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3410. propertyPath: m_Materials.Array.data[0]
  3411. value:
  3412. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3413. - target: {fileID: 2300158, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3414. propertyPath: m_Materials.Array.data[1]
  3415. value:
  3416. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3417. - target: {fileID: 2300160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3418. propertyPath: m_Materials.Array.size
  3419. value: 1
  3420. objectReference: {fileID: 0}
  3421. - target: {fileID: 2300160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3422. propertyPath: m_Materials.Array.data[0]
  3423. value:
  3424. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3425. - target: {fileID: 2300160, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3426. propertyPath: m_Materials.Array.data[1]
  3427. value:
  3428. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3429. - target: {fileID: 2300162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3430. propertyPath: m_Materials.Array.size
  3431. value: 1
  3432. objectReference: {fileID: 0}
  3433. - target: {fileID: 2300162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3434. propertyPath: m_Materials.Array.data[0]
  3435. value:
  3436. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3437. - target: {fileID: 2300162, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3438. propertyPath: m_Materials.Array.data[1]
  3439. value:
  3440. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3441. - target: {fileID: 2300164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3442. propertyPath: m_Materials.Array.size
  3443. value: 1
  3444. objectReference: {fileID: 0}
  3445. - target: {fileID: 2300164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3446. propertyPath: m_Materials.Array.data[0]
  3447. value:
  3448. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3449. - target: {fileID: 2300164, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3450. propertyPath: m_Materials.Array.data[1]
  3451. value:
  3452. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3453. - target: {fileID: 2300166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3454. propertyPath: m_Materials.Array.size
  3455. value: 1
  3456. objectReference: {fileID: 0}
  3457. - target: {fileID: 2300166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3458. propertyPath: m_Materials.Array.data[0]
  3459. value:
  3460. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3461. - target: {fileID: 2300166, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3462. propertyPath: m_Materials.Array.data[1]
  3463. value:
  3464. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3465. - target: {fileID: 2300168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3466. propertyPath: m_Materials.Array.size
  3467. value: 1
  3468. objectReference: {fileID: 0}
  3469. - target: {fileID: 2300168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3470. propertyPath: m_Materials.Array.data[0]
  3471. value:
  3472. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3473. - target: {fileID: 2300168, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3474. propertyPath: m_Materials.Array.data[1]
  3475. value:
  3476. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3477. - target: {fileID: 2300170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3478. propertyPath: m_Materials.Array.size
  3479. value: 1
  3480. objectReference: {fileID: 0}
  3481. - target: {fileID: 2300170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3482. propertyPath: m_Materials.Array.data[0]
  3483. value:
  3484. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3485. - target: {fileID: 2300170, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3486. propertyPath: m_Materials.Array.data[1]
  3487. value:
  3488. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3489. - target: {fileID: 2300172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3490. propertyPath: m_Materials.Array.size
  3491. value: 1
  3492. objectReference: {fileID: 0}
  3493. - target: {fileID: 2300172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3494. propertyPath: m_Materials.Array.data[0]
  3495. value:
  3496. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3497. - target: {fileID: 2300172, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3498. propertyPath: m_Materials.Array.data[1]
  3499. value:
  3500. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3501. - target: {fileID: 2300174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3502. propertyPath: m_Materials.Array.size
  3503. value: 1
  3504. objectReference: {fileID: 0}
  3505. - target: {fileID: 2300174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3506. propertyPath: m_Materials.Array.data[0]
  3507. value:
  3508. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3509. - target: {fileID: 2300174, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3510. propertyPath: m_Materials.Array.data[1]
  3511. value:
  3512. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3513. - target: {fileID: 2300176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3514. propertyPath: m_Materials.Array.size
  3515. value: 1
  3516. objectReference: {fileID: 0}
  3517. - target: {fileID: 2300176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3518. propertyPath: m_Materials.Array.data[0]
  3519. value:
  3520. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3521. - target: {fileID: 2300176, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3522. propertyPath: m_Materials.Array.data[1]
  3523. value:
  3524. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3525. - target: {fileID: 2300178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3526. propertyPath: m_Materials.Array.size
  3527. value: 1
  3528. objectReference: {fileID: 0}
  3529. - target: {fileID: 2300178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3530. propertyPath: m_Materials.Array.data[0]
  3531. value:
  3532. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3533. - target: {fileID: 2300178, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3534. propertyPath: m_Materials.Array.data[1]
  3535. value:
  3536. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3537. - target: {fileID: 2300180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3538. propertyPath: m_Materials.Array.size
  3539. value: 1
  3540. objectReference: {fileID: 0}
  3541. - target: {fileID: 2300180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3542. propertyPath: m_Materials.Array.data[0]
  3543. value:
  3544. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3545. - target: {fileID: 2300180, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3546. propertyPath: m_Materials.Array.data[1]
  3547. value:
  3548. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3549. - target: {fileID: 2300182, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3550. propertyPath: m_Materials.Array.data[0]
  3551. value:
  3552. objectReference: {fileID: 2100000, guid: 1c6cf17e71d4e184f802ad49d9cdf904, type: 2}
  3553. - target: {fileID: 2300184, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3554. propertyPath: m_Materials.Array.size
  3555. value: 1
  3556. objectReference: {fileID: 0}
  3557. - target: {fileID: 2300184, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3558. propertyPath: m_Materials.Array.data[0]
  3559. value:
  3560. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3561. - target: {fileID: 2300184, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3562. propertyPath: m_Materials.Array.data[1]
  3563. value:
  3564. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3565. - target: {fileID: 2300186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3566. propertyPath: m_Materials.Array.size
  3567. value: 1
  3568. objectReference: {fileID: 0}
  3569. - target: {fileID: 2300186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3570. propertyPath: m_Materials.Array.data[0]
  3571. value:
  3572. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3573. - target: {fileID: 2300186, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3574. propertyPath: m_Materials.Array.data[1]
  3575. value:
  3576. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3577. - target: {fileID: 2300188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3578. propertyPath: m_Materials.Array.size
  3579. value: 1
  3580. objectReference: {fileID: 0}
  3581. - target: {fileID: 2300188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3582. propertyPath: m_Materials.Array.data[0]
  3583. value:
  3584. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3585. - target: {fileID: 2300188, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3586. propertyPath: m_Materials.Array.data[1]
  3587. value:
  3588. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3589. - target: {fileID: 2300190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3590. propertyPath: m_Materials.Array.size
  3591. value: 1
  3592. objectReference: {fileID: 0}
  3593. - target: {fileID: 2300190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3594. propertyPath: m_Materials.Array.data[0]
  3595. value:
  3596. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3597. - target: {fileID: 2300190, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3598. propertyPath: m_Materials.Array.data[1]
  3599. value:
  3600. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3601. - target: {fileID: 2300192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3602. propertyPath: m_Materials.Array.size
  3603. value: 1
  3604. objectReference: {fileID: 0}
  3605. - target: {fileID: 2300192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3606. propertyPath: m_Materials.Array.data[0]
  3607. value:
  3608. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3609. - target: {fileID: 2300192, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3610. propertyPath: m_Materials.Array.data[1]
  3611. value:
  3612. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3613. - target: {fileID: 2300194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3614. propertyPath: m_Materials.Array.size
  3615. value: 1
  3616. objectReference: {fileID: 0}
  3617. - target: {fileID: 2300194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3618. propertyPath: m_Materials.Array.data[0]
  3619. value:
  3620. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3621. - target: {fileID: 2300194, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3622. propertyPath: m_Materials.Array.data[1]
  3623. value:
  3624. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3625. - target: {fileID: 2300196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3626. propertyPath: m_Materials.Array.size
  3627. value: 1
  3628. objectReference: {fileID: 0}
  3629. - target: {fileID: 2300196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3630. propertyPath: m_Materials.Array.data[0]
  3631. value:
  3632. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3633. - target: {fileID: 2300196, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3634. propertyPath: m_Materials.Array.data[1]
  3635. value:
  3636. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3637. - target: {fileID: 2300198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3638. propertyPath: m_Materials.Array.size
  3639. value: 1
  3640. objectReference: {fileID: 0}
  3641. - target: {fileID: 2300198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3642. propertyPath: m_Materials.Array.data[0]
  3643. value:
  3644. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3645. - target: {fileID: 2300198, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3646. propertyPath: m_Materials.Array.data[1]
  3647. value:
  3648. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3649. - target: {fileID: 2300200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3650. propertyPath: m_Materials.Array.size
  3651. value: 1
  3652. objectReference: {fileID: 0}
  3653. - target: {fileID: 2300200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3654. propertyPath: m_Materials.Array.data[0]
  3655. value:
  3656. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3657. - target: {fileID: 2300200, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3658. propertyPath: m_Materials.Array.data[1]
  3659. value:
  3660. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3661. - target: {fileID: 2300202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3662. propertyPath: m_Materials.Array.size
  3663. value: 1
  3664. objectReference: {fileID: 0}
  3665. - target: {fileID: 2300202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3666. propertyPath: m_Materials.Array.data[0]
  3667. value:
  3668. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3669. - target: {fileID: 2300202, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3670. propertyPath: m_Materials.Array.data[1]
  3671. value:
  3672. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3673. - target: {fileID: 2300204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3674. propertyPath: m_Materials.Array.size
  3675. value: 1
  3676. objectReference: {fileID: 0}
  3677. - target: {fileID: 2300204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3678. propertyPath: m_Materials.Array.data[0]
  3679. value:
  3680. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3681. - target: {fileID: 2300204, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3682. propertyPath: m_Materials.Array.data[1]
  3683. value:
  3684. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3685. - target: {fileID: 2300206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3686. propertyPath: m_Materials.Array.size
  3687. value: 1
  3688. objectReference: {fileID: 0}
  3689. - target: {fileID: 2300206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3690. propertyPath: m_Materials.Array.data[0]
  3691. value:
  3692. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3693. - target: {fileID: 2300206, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3694. propertyPath: m_Materials.Array.data[1]
  3695. value:
  3696. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3697. - target: {fileID: 2300208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3698. propertyPath: m_Materials.Array.size
  3699. value: 1
  3700. objectReference: {fileID: 0}
  3701. - target: {fileID: 2300208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3702. propertyPath: m_Materials.Array.data[0]
  3703. value:
  3704. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3705. - target: {fileID: 2300208, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3706. propertyPath: m_Materials.Array.data[1]
  3707. value:
  3708. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3709. - target: {fileID: 2300210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3710. propertyPath: m_Materials.Array.size
  3711. value: 1
  3712. objectReference: {fileID: 0}
  3713. - target: {fileID: 2300210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3714. propertyPath: m_Materials.Array.data[0]
  3715. value:
  3716. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3717. - target: {fileID: 2300210, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3718. propertyPath: m_Materials.Array.data[1]
  3719. value:
  3720. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3721. - target: {fileID: 2300212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3722. propertyPath: m_Materials.Array.size
  3723. value: 1
  3724. objectReference: {fileID: 0}
  3725. - target: {fileID: 2300212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3726. propertyPath: m_Materials.Array.data[0]
  3727. value:
  3728. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3729. - target: {fileID: 2300212, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3730. propertyPath: m_Materials.Array.data[1]
  3731. value:
  3732. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3733. - target: {fileID: 2300214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3734. propertyPath: m_Materials.Array.size
  3735. value: 1
  3736. objectReference: {fileID: 0}
  3737. - target: {fileID: 2300214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3738. propertyPath: m_Materials.Array.data[0]
  3739. value:
  3740. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3741. - target: {fileID: 2300214, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3742. propertyPath: m_Materials.Array.data[1]
  3743. value:
  3744. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3745. - target: {fileID: 2300216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3746. propertyPath: m_Materials.Array.size
  3747. value: 1
  3748. objectReference: {fileID: 0}
  3749. - target: {fileID: 2300216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3750. propertyPath: m_Materials.Array.data[0]
  3751. value:
  3752. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3753. - target: {fileID: 2300216, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3754. propertyPath: m_Materials.Array.data[1]
  3755. value:
  3756. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3757. - target: {fileID: 2300218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3758. propertyPath: m_Materials.Array.size
  3759. value: 1
  3760. objectReference: {fileID: 0}
  3761. - target: {fileID: 2300218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3762. propertyPath: m_Materials.Array.data[0]
  3763. value:
  3764. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3765. - target: {fileID: 2300218, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3766. propertyPath: m_Materials.Array.data[1]
  3767. value:
  3768. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3769. - target: {fileID: 2300220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3770. propertyPath: m_Materials.Array.size
  3771. value: 1
  3772. objectReference: {fileID: 0}
  3773. - target: {fileID: 2300220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3774. propertyPath: m_Materials.Array.data[0]
  3775. value:
  3776. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3777. - target: {fileID: 2300220, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3778. propertyPath: m_Materials.Array.data[1]
  3779. value:
  3780. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3781. - target: {fileID: 2300222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3782. propertyPath: m_Materials.Array.size
  3783. value: 1
  3784. objectReference: {fileID: 0}
  3785. - target: {fileID: 2300222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3786. propertyPath: m_Materials.Array.data[0]
  3787. value:
  3788. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3789. - target: {fileID: 2300222, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3790. propertyPath: m_Materials.Array.data[1]
  3791. value:
  3792. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3793. - target: {fileID: 2300224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3794. propertyPath: m_Materials.Array.size
  3795. value: 1
  3796. objectReference: {fileID: 0}
  3797. - target: {fileID: 2300224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3798. propertyPath: m_Materials.Array.data[0]
  3799. value:
  3800. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3801. - target: {fileID: 2300224, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3802. propertyPath: m_Materials.Array.data[1]
  3803. value:
  3804. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3805. - target: {fileID: 2300226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3806. propertyPath: m_Materials.Array.size
  3807. value: 1
  3808. objectReference: {fileID: 0}
  3809. - target: {fileID: 2300226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3810. propertyPath: m_Materials.Array.data[0]
  3811. value:
  3812. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3813. - target: {fileID: 2300226, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3814. propertyPath: m_Materials.Array.data[1]
  3815. value:
  3816. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3817. - target: {fileID: 2300228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3818. propertyPath: m_Materials.Array.size
  3819. value: 1
  3820. objectReference: {fileID: 0}
  3821. - target: {fileID: 2300228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3822. propertyPath: m_Materials.Array.data[0]
  3823. value:
  3824. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3825. - target: {fileID: 2300228, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3826. propertyPath: m_Materials.Array.data[1]
  3827. value:
  3828. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3829. - target: {fileID: 2300230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3830. propertyPath: m_Materials.Array.size
  3831. value: 1
  3832. objectReference: {fileID: 0}
  3833. - target: {fileID: 2300230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3834. propertyPath: m_Materials.Array.data[0]
  3835. value:
  3836. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3837. - target: {fileID: 2300230, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3838. propertyPath: m_Materials.Array.data[1]
  3839. value:
  3840. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3841. - target: {fileID: 2300232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3842. propertyPath: m_Materials.Array.size
  3843. value: 1
  3844. objectReference: {fileID: 0}
  3845. - target: {fileID: 2300232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3846. propertyPath: m_Materials.Array.data[0]
  3847. value:
  3848. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3849. - target: {fileID: 2300232, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3850. propertyPath: m_Materials.Array.data[1]
  3851. value:
  3852. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3853. - target: {fileID: 2300234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3854. propertyPath: m_Materials.Array.size
  3855. value: 1
  3856. objectReference: {fileID: 0}
  3857. - target: {fileID: 2300234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3858. propertyPath: m_Materials.Array.data[0]
  3859. value:
  3860. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3861. - target: {fileID: 2300234, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3862. propertyPath: m_Materials.Array.data[1]
  3863. value:
  3864. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3865. - target: {fileID: 2300236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3866. propertyPath: m_Materials.Array.size
  3867. value: 1
  3868. objectReference: {fileID: 0}
  3869. - target: {fileID: 2300236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3870. propertyPath: m_Materials.Array.data[0]
  3871. value:
  3872. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3873. - target: {fileID: 2300236, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3874. propertyPath: m_Materials.Array.data[1]
  3875. value:
  3876. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3877. - target: {fileID: 2300238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3878. propertyPath: m_Materials.Array.size
  3879. value: 1
  3880. objectReference: {fileID: 0}
  3881. - target: {fileID: 2300238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3882. propertyPath: m_Materials.Array.data[0]
  3883. value:
  3884. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3885. - target: {fileID: 2300238, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3886. propertyPath: m_Materials.Array.data[1]
  3887. value:
  3888. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3889. - target: {fileID: 2300240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3890. propertyPath: m_Materials.Array.size
  3891. value: 1
  3892. objectReference: {fileID: 0}
  3893. - target: {fileID: 2300240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3894. propertyPath: m_Materials.Array.data[0]
  3895. value:
  3896. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3897. - target: {fileID: 2300240, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3898. propertyPath: m_Materials.Array.data[1]
  3899. value:
  3900. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3901. - target: {fileID: 2300242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3902. propertyPath: m_Materials.Array.size
  3903. value: 1
  3904. objectReference: {fileID: 0}
  3905. - target: {fileID: 2300242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3906. propertyPath: m_Materials.Array.data[0]
  3907. value:
  3908. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3909. - target: {fileID: 2300242, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3910. propertyPath: m_Materials.Array.data[1]
  3911. value:
  3912. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3913. - target: {fileID: 2300244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3914. propertyPath: m_Materials.Array.size
  3915. value: 1
  3916. objectReference: {fileID: 0}
  3917. - target: {fileID: 2300244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3918. propertyPath: m_Materials.Array.data[0]
  3919. value:
  3920. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3921. - target: {fileID: 2300244, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3922. propertyPath: m_Materials.Array.data[1]
  3923. value:
  3924. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3925. - target: {fileID: 2300246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3926. propertyPath: m_Materials.Array.size
  3927. value: 1
  3928. objectReference: {fileID: 0}
  3929. - target: {fileID: 2300246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3930. propertyPath: m_Materials.Array.data[0]
  3931. value:
  3932. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3933. - target: {fileID: 2300246, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3934. propertyPath: m_Materials.Array.data[1]
  3935. value:
  3936. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3937. - target: {fileID: 2300248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3938. propertyPath: m_Materials.Array.size
  3939. value: 1
  3940. objectReference: {fileID: 0}
  3941. - target: {fileID: 2300248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3942. propertyPath: m_Materials.Array.data[0]
  3943. value:
  3944. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3945. - target: {fileID: 2300248, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3946. propertyPath: m_Materials.Array.data[1]
  3947. value:
  3948. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3949. - target: {fileID: 2300250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3950. propertyPath: m_Materials.Array.size
  3951. value: 1
  3952. objectReference: {fileID: 0}
  3953. - target: {fileID: 2300250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3954. propertyPath: m_Materials.Array.data[0]
  3955. value:
  3956. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3957. - target: {fileID: 2300250, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3958. propertyPath: m_Materials.Array.data[1]
  3959. value:
  3960. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3961. - target: {fileID: 2300252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3962. propertyPath: m_Materials.Array.size
  3963. value: 1
  3964. objectReference: {fileID: 0}
  3965. - target: {fileID: 2300252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3966. propertyPath: m_Materials.Array.data[0]
  3967. value:
  3968. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3969. - target: {fileID: 2300252, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3970. propertyPath: m_Materials.Array.data[1]
  3971. value:
  3972. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3973. - target: {fileID: 2300254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3974. propertyPath: m_Materials.Array.size
  3975. value: 1
  3976. objectReference: {fileID: 0}
  3977. - target: {fileID: 2300254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3978. propertyPath: m_Materials.Array.data[0]
  3979. value:
  3980. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3981. - target: {fileID: 2300254, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3982. propertyPath: m_Materials.Array.data[1]
  3983. value:
  3984. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3985. - target: {fileID: 2300256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3986. propertyPath: m_Materials.Array.size
  3987. value: 1
  3988. objectReference: {fileID: 0}
  3989. - target: {fileID: 2300256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3990. propertyPath: m_Materials.Array.data[0]
  3991. value:
  3992. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  3993. - target: {fileID: 2300256, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3994. propertyPath: m_Materials.Array.data[1]
  3995. value:
  3996. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  3997. - target: {fileID: 2300258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  3998. propertyPath: m_Materials.Array.size
  3999. value: 1
  4000. objectReference: {fileID: 0}
  4001. - target: {fileID: 2300258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4002. propertyPath: m_Materials.Array.data[0]
  4003. value:
  4004. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4005. - target: {fileID: 2300258, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4006. propertyPath: m_Materials.Array.data[1]
  4007. value:
  4008. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4009. - target: {fileID: 2300260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4010. propertyPath: m_Materials.Array.size
  4011. value: 1
  4012. objectReference: {fileID: 0}
  4013. - target: {fileID: 2300260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4014. propertyPath: m_Materials.Array.data[0]
  4015. value:
  4016. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4017. - target: {fileID: 2300260, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4018. propertyPath: m_Materials.Array.data[1]
  4019. value:
  4020. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4021. - target: {fileID: 2300262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4022. propertyPath: m_Materials.Array.size
  4023. value: 1
  4024. objectReference: {fileID: 0}
  4025. - target: {fileID: 2300262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4026. propertyPath: m_Materials.Array.data[0]
  4027. value:
  4028. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4029. - target: {fileID: 2300262, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4030. propertyPath: m_Materials.Array.data[1]
  4031. value:
  4032. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4033. - target: {fileID: 2300264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4034. propertyPath: m_Materials.Array.size
  4035. value: 1
  4036. objectReference: {fileID: 0}
  4037. - target: {fileID: 2300264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4038. propertyPath: m_Materials.Array.data[0]
  4039. value:
  4040. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4041. - target: {fileID: 2300264, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4042. propertyPath: m_Materials.Array.data[1]
  4043. value:
  4044. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4045. - target: {fileID: 2300266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4046. propertyPath: m_Materials.Array.size
  4047. value: 1
  4048. objectReference: {fileID: 0}
  4049. - target: {fileID: 2300266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4050. propertyPath: m_Materials.Array.data[0]
  4051. value:
  4052. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4053. - target: {fileID: 2300266, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4054. propertyPath: m_Materials.Array.data[1]
  4055. value:
  4056. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4057. - target: {fileID: 2300268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4058. propertyPath: m_Materials.Array.size
  4059. value: 1
  4060. objectReference: {fileID: 0}
  4061. - target: {fileID: 2300268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4062. propertyPath: m_Materials.Array.data[0]
  4063. value:
  4064. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4065. - target: {fileID: 2300268, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4066. propertyPath: m_Materials.Array.data[1]
  4067. value:
  4068. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4069. - target: {fileID: 2300270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4070. propertyPath: m_Materials.Array.size
  4071. value: 1
  4072. objectReference: {fileID: 0}
  4073. - target: {fileID: 2300270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4074. propertyPath: m_Materials.Array.data[0]
  4075. value:
  4076. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4077. - target: {fileID: 2300270, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4078. propertyPath: m_Materials.Array.data[1]
  4079. value:
  4080. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4081. - target: {fileID: 2300272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4082. propertyPath: m_Materials.Array.size
  4083. value: 1
  4084. objectReference: {fileID: 0}
  4085. - target: {fileID: 2300272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4086. propertyPath: m_Materials.Array.data[0]
  4087. value:
  4088. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4089. - target: {fileID: 2300272, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4090. propertyPath: m_Materials.Array.data[1]
  4091. value:
  4092. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4093. - target: {fileID: 2300274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4094. propertyPath: m_Materials.Array.size
  4095. value: 1
  4096. objectReference: {fileID: 0}
  4097. - target: {fileID: 2300274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4098. propertyPath: m_Materials.Array.data[0]
  4099. value:
  4100. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4101. - target: {fileID: 2300274, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4102. propertyPath: m_Materials.Array.data[1]
  4103. value:
  4104. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4105. - target: {fileID: 2300276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4106. propertyPath: m_Materials.Array.size
  4107. value: 1
  4108. objectReference: {fileID: 0}
  4109. - target: {fileID: 2300276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4110. propertyPath: m_Materials.Array.data[0]
  4111. value:
  4112. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4113. - target: {fileID: 2300276, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4114. propertyPath: m_Materials.Array.data[1]
  4115. value:
  4116. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4117. - target: {fileID: 2300278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4118. propertyPath: m_Materials.Array.size
  4119. value: 1
  4120. objectReference: {fileID: 0}
  4121. - target: {fileID: 2300278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4122. propertyPath: m_Materials.Array.data[0]
  4123. value:
  4124. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4125. - target: {fileID: 2300278, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4126. propertyPath: m_Materials.Array.data[1]
  4127. value:
  4128. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4129. - target: {fileID: 2300280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4130. propertyPath: m_Materials.Array.size
  4131. value: 1
  4132. objectReference: {fileID: 0}
  4133. - target: {fileID: 2300280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4134. propertyPath: m_Materials.Array.data[0]
  4135. value:
  4136. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4137. - target: {fileID: 2300280, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4138. propertyPath: m_Materials.Array.data[1]
  4139. value:
  4140. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4141. - target: {fileID: 2300282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4142. propertyPath: m_Materials.Array.size
  4143. value: 1
  4144. objectReference: {fileID: 0}
  4145. - target: {fileID: 2300282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4146. propertyPath: m_Materials.Array.data[0]
  4147. value:
  4148. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4149. - target: {fileID: 2300282, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4150. propertyPath: m_Materials.Array.data[1]
  4151. value:
  4152. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4153. - target: {fileID: 2300284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4154. propertyPath: m_Materials.Array.size
  4155. value: 1
  4156. objectReference: {fileID: 0}
  4157. - target: {fileID: 2300284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4158. propertyPath: m_Materials.Array.data[0]
  4159. value:
  4160. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4161. - target: {fileID: 2300284, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4162. propertyPath: m_Materials.Array.data[1]
  4163. value:
  4164. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4165. - target: {fileID: 2300286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4166. propertyPath: m_Materials.Array.size
  4167. value: 1
  4168. objectReference: {fileID: 0}
  4169. - target: {fileID: 2300286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4170. propertyPath: m_Materials.Array.data[0]
  4171. value:
  4172. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4173. - target: {fileID: 2300286, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4174. propertyPath: m_Materials.Array.data[1]
  4175. value:
  4176. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4177. - target: {fileID: 2300288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4178. propertyPath: m_Materials.Array.size
  4179. value: 1
  4180. objectReference: {fileID: 0}
  4181. - target: {fileID: 2300288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4182. propertyPath: m_Materials.Array.data[0]
  4183. value:
  4184. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4185. - target: {fileID: 2300288, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4186. propertyPath: m_Materials.Array.data[1]
  4187. value:
  4188. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4189. - target: {fileID: 2300290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4190. propertyPath: m_Materials.Array.size
  4191. value: 1
  4192. objectReference: {fileID: 0}
  4193. - target: {fileID: 2300290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4194. propertyPath: m_Materials.Array.data[0]
  4195. value:
  4196. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4197. - target: {fileID: 2300290, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4198. propertyPath: m_Materials.Array.data[1]
  4199. value:
  4200. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4201. - target: {fileID: 2300292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4202. propertyPath: m_Materials.Array.size
  4203. value: 1
  4204. objectReference: {fileID: 0}
  4205. - target: {fileID: 2300292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4206. propertyPath: m_Materials.Array.data[0]
  4207. value:
  4208. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4209. - target: {fileID: 2300292, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4210. propertyPath: m_Materials.Array.data[1]
  4211. value:
  4212. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4213. - target: {fileID: 2300294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4214. propertyPath: m_Materials.Array.size
  4215. value: 1
  4216. objectReference: {fileID: 0}
  4217. - target: {fileID: 2300294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4218. propertyPath: m_Materials.Array.data[0]
  4219. value:
  4220. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4221. - target: {fileID: 2300294, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4222. propertyPath: m_Materials.Array.data[1]
  4223. value:
  4224. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4225. - target: {fileID: 2300296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4226. propertyPath: m_Materials.Array.size
  4227. value: 1
  4228. objectReference: {fileID: 0}
  4229. - target: {fileID: 2300296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4230. propertyPath: m_Materials.Array.data[0]
  4231. value:
  4232. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4233. - target: {fileID: 2300296, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4234. propertyPath: m_Materials.Array.data[1]
  4235. value:
  4236. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4237. - target: {fileID: 2300298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4238. propertyPath: m_Materials.Array.size
  4239. value: 1
  4240. objectReference: {fileID: 0}
  4241. - target: {fileID: 2300298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4242. propertyPath: m_Materials.Array.data[0]
  4243. value:
  4244. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4245. - target: {fileID: 2300298, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4246. propertyPath: m_Materials.Array.data[1]
  4247. value:
  4248. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4249. - target: {fileID: 2300300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4250. propertyPath: m_Materials.Array.size
  4251. value: 1
  4252. objectReference: {fileID: 0}
  4253. - target: {fileID: 2300300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4254. propertyPath: m_Materials.Array.data[0]
  4255. value:
  4256. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4257. - target: {fileID: 2300300, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4258. propertyPath: m_Materials.Array.data[1]
  4259. value:
  4260. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4261. - target: {fileID: 2300302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4262. propertyPath: m_Materials.Array.size
  4263. value: 1
  4264. objectReference: {fileID: 0}
  4265. - target: {fileID: 2300302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4266. propertyPath: m_Materials.Array.data[0]
  4267. value:
  4268. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4269. - target: {fileID: 2300302, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4270. propertyPath: m_Materials.Array.data[1]
  4271. value:
  4272. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4273. - target: {fileID: 2300304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4274. propertyPath: m_Materials.Array.size
  4275. value: 1
  4276. objectReference: {fileID: 0}
  4277. - target: {fileID: 2300304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4278. propertyPath: m_Materials.Array.data[0]
  4279. value:
  4280. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4281. - target: {fileID: 2300304, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4282. propertyPath: m_Materials.Array.data[1]
  4283. value:
  4284. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4285. - target: {fileID: 2300306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4286. propertyPath: m_Materials.Array.size
  4287. value: 1
  4288. objectReference: {fileID: 0}
  4289. - target: {fileID: 2300306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4290. propertyPath: m_Materials.Array.data[0]
  4291. value:
  4292. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4293. - target: {fileID: 2300306, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4294. propertyPath: m_Materials.Array.data[1]
  4295. value:
  4296. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4297. - target: {fileID: 2300308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4298. propertyPath: m_Materials.Array.size
  4299. value: 1
  4300. objectReference: {fileID: 0}
  4301. - target: {fileID: 2300308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4302. propertyPath: m_Materials.Array.data[0]
  4303. value:
  4304. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4305. - target: {fileID: 2300308, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4306. propertyPath: m_Materials.Array.data[1]
  4307. value:
  4308. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4309. - target: {fileID: 2300310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4310. propertyPath: m_Materials.Array.size
  4311. value: 1
  4312. objectReference: {fileID: 0}
  4313. - target: {fileID: 2300310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4314. propertyPath: m_Materials.Array.data[0]
  4315. value:
  4316. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4317. - target: {fileID: 2300310, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4318. propertyPath: m_Materials.Array.data[1]
  4319. value:
  4320. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4321. - target: {fileID: 2300312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4322. propertyPath: m_Materials.Array.size
  4323. value: 1
  4324. objectReference: {fileID: 0}
  4325. - target: {fileID: 2300312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4326. propertyPath: m_Materials.Array.data[0]
  4327. value:
  4328. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4329. - target: {fileID: 2300312, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4330. propertyPath: m_Materials.Array.data[1]
  4331. value:
  4332. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4333. - target: {fileID: 2300314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4334. propertyPath: m_Materials.Array.size
  4335. value: 1
  4336. objectReference: {fileID: 0}
  4337. - target: {fileID: 2300314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4338. propertyPath: m_Materials.Array.data[0]
  4339. value:
  4340. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4341. - target: {fileID: 2300314, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4342. propertyPath: m_Materials.Array.data[1]
  4343. value:
  4344. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4345. - target: {fileID: 2300316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4346. propertyPath: m_Materials.Array.size
  4347. value: 1
  4348. objectReference: {fileID: 0}
  4349. - target: {fileID: 2300316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4350. propertyPath: m_Materials.Array.data[0]
  4351. value:
  4352. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4353. - target: {fileID: 2300316, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4354. propertyPath: m_Materials.Array.data[1]
  4355. value:
  4356. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4357. - target: {fileID: 2300318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4358. propertyPath: m_Materials.Array.size
  4359. value: 1
  4360. objectReference: {fileID: 0}
  4361. - target: {fileID: 2300318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4362. propertyPath: m_Materials.Array.data[0]
  4363. value:
  4364. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4365. - target: {fileID: 2300318, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4366. propertyPath: m_Materials.Array.data[1]
  4367. value:
  4368. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4369. - target: {fileID: 2300320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4370. propertyPath: m_Materials.Array.size
  4371. value: 1
  4372. objectReference: {fileID: 0}
  4373. - target: {fileID: 2300320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4374. propertyPath: m_Materials.Array.data[0]
  4375. value:
  4376. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4377. - target: {fileID: 2300320, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4378. propertyPath: m_Materials.Array.data[1]
  4379. value:
  4380. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4381. - target: {fileID: 2300322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4382. propertyPath: m_Materials.Array.size
  4383. value: 1
  4384. objectReference: {fileID: 0}
  4385. - target: {fileID: 2300322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4386. propertyPath: m_Materials.Array.data[0]
  4387. value:
  4388. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4389. - target: {fileID: 2300322, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4390. propertyPath: m_Materials.Array.data[1]
  4391. value:
  4392. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4393. - target: {fileID: 2300324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4394. propertyPath: m_Materials.Array.size
  4395. value: 1
  4396. objectReference: {fileID: 0}
  4397. - target: {fileID: 2300324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4398. propertyPath: m_Materials.Array.data[0]
  4399. value:
  4400. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4401. - target: {fileID: 2300324, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4402. propertyPath: m_Materials.Array.data[1]
  4403. value:
  4404. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4405. - target: {fileID: 2300326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4406. propertyPath: m_Materials.Array.size
  4407. value: 1
  4408. objectReference: {fileID: 0}
  4409. - target: {fileID: 2300326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4410. propertyPath: m_Materials.Array.data[0]
  4411. value:
  4412. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4413. - target: {fileID: 2300326, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4414. propertyPath: m_Materials.Array.data[1]
  4415. value:
  4416. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4417. - target: {fileID: 2300328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4418. propertyPath: m_Materials.Array.size
  4419. value: 1
  4420. objectReference: {fileID: 0}
  4421. - target: {fileID: 2300328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4422. propertyPath: m_Materials.Array.data[0]
  4423. value:
  4424. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4425. - target: {fileID: 2300328, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4426. propertyPath: m_Materials.Array.data[1]
  4427. value:
  4428. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4429. - target: {fileID: 2300330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4430. propertyPath: m_Materials.Array.size
  4431. value: 1
  4432. objectReference: {fileID: 0}
  4433. - target: {fileID: 2300330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4434. propertyPath: m_Materials.Array.data[0]
  4435. value:
  4436. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4437. - target: {fileID: 2300330, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4438. propertyPath: m_Materials.Array.data[1]
  4439. value:
  4440. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4441. - target: {fileID: 2300332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4442. propertyPath: m_Materials.Array.size
  4443. value: 1
  4444. objectReference: {fileID: 0}
  4445. - target: {fileID: 2300332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4446. propertyPath: m_Materials.Array.data[0]
  4447. value:
  4448. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4449. - target: {fileID: 2300332, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4450. propertyPath: m_Materials.Array.data[1]
  4451. value:
  4452. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4453. - target: {fileID: 2300334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4454. propertyPath: m_Materials.Array.size
  4455. value: 1
  4456. objectReference: {fileID: 0}
  4457. - target: {fileID: 2300334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4458. propertyPath: m_Materials.Array.data[0]
  4459. value:
  4460. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4461. - target: {fileID: 2300334, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4462. propertyPath: m_Materials.Array.data[1]
  4463. value:
  4464. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4465. - target: {fileID: 2300336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4466. propertyPath: m_Materials.Array.size
  4467. value: 1
  4468. objectReference: {fileID: 0}
  4469. - target: {fileID: 2300336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4470. propertyPath: m_Materials.Array.data[0]
  4471. value:
  4472. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4473. - target: {fileID: 2300336, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4474. propertyPath: m_Materials.Array.data[1]
  4475. value:
  4476. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4477. - target: {fileID: 2300338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4478. propertyPath: m_Materials.Array.size
  4479. value: 1
  4480. objectReference: {fileID: 0}
  4481. - target: {fileID: 2300338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4482. propertyPath: m_Materials.Array.data[0]
  4483. value:
  4484. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4485. - target: {fileID: 2300338, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4486. propertyPath: m_Materials.Array.data[1]
  4487. value:
  4488. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4489. - target: {fileID: 2300340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4490. propertyPath: m_Materials.Array.size
  4491. value: 1
  4492. objectReference: {fileID: 0}
  4493. - target: {fileID: 2300340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4494. propertyPath: m_Materials.Array.data[0]
  4495. value:
  4496. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4497. - target: {fileID: 2300340, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4498. propertyPath: m_Materials.Array.data[1]
  4499. value:
  4500. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4501. - target: {fileID: 2300342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4502. propertyPath: m_Materials.Array.size
  4503. value: 1
  4504. objectReference: {fileID: 0}
  4505. - target: {fileID: 2300342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4506. propertyPath: m_Materials.Array.data[0]
  4507. value:
  4508. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4509. - target: {fileID: 2300342, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4510. propertyPath: m_Materials.Array.data[1]
  4511. value:
  4512. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4513. - target: {fileID: 2300344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4514. propertyPath: m_Materials.Array.size
  4515. value: 1
  4516. objectReference: {fileID: 0}
  4517. - target: {fileID: 2300344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4518. propertyPath: m_Materials.Array.data[0]
  4519. value:
  4520. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4521. - target: {fileID: 2300344, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4522. propertyPath: m_Materials.Array.data[1]
  4523. value:
  4524. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4525. - target: {fileID: 2300346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4526. propertyPath: m_Materials.Array.size
  4527. value: 1
  4528. objectReference: {fileID: 0}
  4529. - target: {fileID: 2300346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4530. propertyPath: m_Materials.Array.data[0]
  4531. value:
  4532. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4533. - target: {fileID: 2300346, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4534. propertyPath: m_Materials.Array.data[1]
  4535. value:
  4536. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4537. - target: {fileID: 2300348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4538. propertyPath: m_Materials.Array.size
  4539. value: 1
  4540. objectReference: {fileID: 0}
  4541. - target: {fileID: 2300348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4542. propertyPath: m_Materials.Array.data[0]
  4543. value:
  4544. objectReference: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4545. - target: {fileID: 2300348, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4546. propertyPath: m_Materials.Array.data[1]
  4547. value:
  4548. objectReference: {fileID: 2100000, guid: 9b19cfb45b5c77f48ae808f39faf74dc, type: 2}
  4549. m_RemovedComponents: []
  4550. m_SourcePrefab: {fileID: 100100000, guid: 219afb3fbca8d0c4a93dc2ebafb50f46, type: 3}
  4551. --- !u!1 &1098322932
  4552. GameObject:
  4553. m_ObjectHideFlags: 0
  4554. m_CorrespondingSourceObject: {fileID: 0}
  4555. m_PrefabInstance: {fileID: 0}
  4556. m_PrefabAsset: {fileID: 0}
  4557. serializedVersion: 6
  4558. m_Component:
  4559. - component: {fileID: 1098322934}
  4560. - component: {fileID: 1098322933}
  4561. m_Layer: 0
  4562. m_Name: Gui
  4563. m_TagString: Untagged
  4564. m_Icon: {fileID: 0}
  4565. m_NavMeshLayer: 0
  4566. m_StaticEditorFlags: 0
  4567. m_IsActive: 1
  4568. --- !u!114 &1098322933
  4569. MonoBehaviour:
  4570. m_ObjectHideFlags: 0
  4571. m_CorrespondingSourceObject: {fileID: 0}
  4572. m_PrefabInstance: {fileID: 0}
  4573. m_PrefabAsset: {fileID: 0}
  4574. m_GameObject: {fileID: 1098322932}
  4575. m_Enabled: 1
  4576. m_EditorHideFlags: 0
  4577. m_Script: {fileID: 11500000, guid: ab3995063421ae64fab93de4ab579e95, type: 3}
  4578. m_Name:
  4579. m_EditorClassIdentifier:
  4580. plane: {fileID: 2009760891}
  4581. icePlane: {fileID: 2100000, guid: 3b3d5d2656c360b438350535fe4bd6b7, type: 2}
  4582. iceBall: {fileID: 2100000, guid: 1fb71282dfd040b449c66f6aaa49578e, type: 2}
  4583. dirLight: {fileID: 340827014}
  4584. day: {fileID: 2100000, guid: 53412155bc1016547b1a77b2333c0380, type: 2}
  4585. night: {fileID: 2100000, guid: 5ba172cd3918d7c44aa6d04446119a00, type: 2}
  4586. --- !u!4 &1098322934
  4587. Transform:
  4588. m_ObjectHideFlags: 0
  4589. m_CorrespondingSourceObject: {fileID: 0}
  4590. m_PrefabInstance: {fileID: 0}
  4591. m_PrefabAsset: {fileID: 0}
  4592. m_GameObject: {fileID: 1098322932}
  4593. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  4594. m_LocalPosition: {x: -0.7284336, y: -15.838999, z: 8.869949}
  4595. m_LocalScale: {x: 1, y: 1, z: 1}
  4596. m_ConstrainProportionsScale: 0
  4597. m_Children: []
  4598. m_Father: {fileID: 0}
  4599. m_RootOrder: 2
  4600. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  4601. --- !u!1 &1376933041
  4602. GameObject:
  4603. m_ObjectHideFlags: 0
  4604. m_CorrespondingSourceObject: {fileID: 0}
  4605. m_PrefabInstance: {fileID: 0}
  4606. m_PrefabAsset: {fileID: 0}
  4607. serializedVersion: 6
  4608. m_Component:
  4609. - component: {fileID: 1376933043}
  4610. - component: {fileID: 1376933042}
  4611. m_Layer: 0
  4612. m_Name: Reflection Probe
  4613. m_TagString: Untagged
  4614. m_Icon: {fileID: 0}
  4615. m_NavMeshLayer: 0
  4616. m_StaticEditorFlags: 0
  4617. m_IsActive: 1
  4618. --- !u!215 &1376933042
  4619. ReflectionProbe:
  4620. m_ObjectHideFlags: 0
  4621. m_CorrespondingSourceObject: {fileID: 0}
  4622. m_PrefabInstance: {fileID: 0}
  4623. m_PrefabAsset: {fileID: 0}
  4624. m_GameObject: {fileID: 1376933041}
  4625. m_Enabled: 1
  4626. serializedVersion: 2
  4627. m_Type: 0
  4628. m_Mode: 1
  4629. m_RefreshMode: 0
  4630. m_TimeSlicingMode: 0
  4631. m_Resolution: 128
  4632. m_UpdateFrequency: 0
  4633. m_BoxSize: {x: 1, y: 1, z: 1}
  4634. m_BoxOffset: {x: 0, y: 0, z: 0}
  4635. m_NearClip: 0.3
  4636. m_FarClip: 1000
  4637. m_ShadowDistance: 100
  4638. m_ClearFlags: 1
  4639. m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
  4640. m_CullingMask:
  4641. serializedVersion: 2
  4642. m_Bits: 4294967295
  4643. m_IntensityMultiplier: 1
  4644. m_BlendDistance: 1
  4645. m_HDR: 1
  4646. m_BoxProjection: 0
  4647. m_RenderDynamicObjects: 0
  4648. m_UseOcclusionCulling: 1
  4649. m_Importance: 1
  4650. m_CustomBakedTexture: {fileID: 0}
  4651. --- !u!4 &1376933043
  4652. Transform:
  4653. m_ObjectHideFlags: 0
  4654. m_CorrespondingSourceObject: {fileID: 0}
  4655. m_PrefabInstance: {fileID: 0}
  4656. m_PrefabAsset: {fileID: 0}
  4657. m_GameObject: {fileID: 1376933041}
  4658. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  4659. m_LocalPosition: {x: 0, y: 0, z: 0}
  4660. m_LocalScale: {x: 1, y: 1, z: 1}
  4661. m_ConstrainProportionsScale: 0
  4662. m_Children: []
  4663. m_Father: {fileID: 1533607930}
  4664. m_RootOrder: 0
  4665. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  4666. --- !u!4 &1533607930 stripped
  4667. Transform:
  4668. m_CorrespondingSourceObject: {fileID: 400184, guid: 219afb3fbca8d0c4a93dc2ebafb50f46,
  4669. type: 3}
  4670. m_PrefabInstance: {fileID: 455195575}
  4671. m_PrefabAsset: {fileID: 0}
  4672. --- !u!1 &2009760891 stripped
  4673. GameObject:
  4674. m_CorrespondingSourceObject: {fileID: 100000, guid: 219afb3fbca8d0c4a93dc2ebafb50f46,
  4675. type: 3}
  4676. m_PrefabInstance: {fileID: 455195575}
  4677. m_PrefabAsset: {fileID: 0}
  4678. --- !u!114 &2009760895
  4679. MonoBehaviour:
  4680. m_ObjectHideFlags: 0
  4681. m_CorrespondingSourceObject: {fileID: 0}
  4682. m_PrefabInstance: {fileID: 0}
  4683. m_PrefabAsset: {fileID: 0}
  4684. m_GameObject: {fileID: 2009760891}
  4685. m_Enabled: 1
  4686. m_EditorHideFlags: 0
  4687. m_Script: {fileID: 11500000, guid: 898de9bd73e90304e9d7d2b4d65c6bbd, type: 3}
  4688. m_Name:
  4689. m_EditorClassIdentifier:
  4690. iceMaterial: {fileID: 2100000, guid: 3b3d5d2656c360b438350535fe4bd6b7, type: 2}
  4691. isFrozen: 0
  4692. FreezeTime: 10