AudioScene.unity 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423
  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.212, g: 0.227, b: 0.259, a: 1}
  24. m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
  25. m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
  26. m_AmbientIntensity: 1
  27. m_AmbientMode: 0
  28. m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
  29. m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
  30. m_HaloStrength: 0.5
  31. m_FlareStrength: 1
  32. m_FlareFadeSpeed: 3
  33. m_HaloTexture: {fileID: 0}
  34. m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
  35. m_DefaultReflectionMode: 0
  36. m_DefaultReflectionResolution: 128
  37. m_ReflectionBounces: 1
  38. m_ReflectionIntensity: 1
  39. m_CustomReflection: {fileID: 0}
  40. m_Sun: {fileID: 0}
  41. m_IndirectSpecularColor: {r: 0.37311932, g: 0.38073996, b: 0.3587271, a: 1}
  42. m_UseRadianceAmbientProbe: 0
  43. --- !u!157 &3
  44. LightmapSettings:
  45. m_ObjectHideFlags: 0
  46. serializedVersion: 12
  47. m_GIWorkflowMode: 1
  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: 0
  56. m_LightmapEditorSettings:
  57. serializedVersion: 12
  58. m_Resolution: 2
  59. m_BakeResolution: 40
  60. m_AtlasSize: 1024
  61. m_AO: 0
  62. m_AOMaxDistance: 1
  63. m_CompAOExponent: 1
  64. m_CompAOExponentDirect: 0
  65. m_ExtractAmbientOcclusion: 0
  66. m_Padding: 2
  67. m_LightmapParameters: {fileID: 0}
  68. m_LightmapsBakeMode: 1
  69. m_TextureCompression: 1
  70. m_FinalGather: 0
  71. m_FinalGatherFiltering: 1
  72. m_FinalGatherRayCount: 256
  73. m_ReflectionCompression: 2
  74. m_MixedBakeMode: 2
  75. m_BakeBackend: 1
  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: 2
  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: de54dc60832304326a68eed1b642dd68,
  102. type: 2}
  103. --- !u!196 &4
  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.16666667
  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!1001 &6070971
  128. PrefabInstance:
  129. m_ObjectHideFlags: 0
  130. serializedVersion: 2
  131. m_Modification:
  132. m_TransformParent: {fileID: 1762191145}
  133. m_Modifications:
  134. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  135. type: 3}
  136. propertyPath: m_Pivot.x
  137. value: 0.5
  138. objectReference: {fileID: 0}
  139. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  140. type: 3}
  141. propertyPath: m_Pivot.y
  142. value: 0.5
  143. objectReference: {fileID: 0}
  144. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  145. type: 3}
  146. propertyPath: m_RootOrder
  147. value: 4
  148. objectReference: {fileID: 0}
  149. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  150. type: 3}
  151. propertyPath: m_AnchorMax.x
  152. value: 0
  153. objectReference: {fileID: 0}
  154. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  155. type: 3}
  156. propertyPath: m_AnchorMax.y
  157. value: 0
  158. objectReference: {fileID: 0}
  159. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  160. type: 3}
  161. propertyPath: m_AnchorMin.x
  162. value: 0
  163. objectReference: {fileID: 0}
  164. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  165. type: 3}
  166. propertyPath: m_AnchorMin.y
  167. value: 0
  168. objectReference: {fileID: 0}
  169. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  170. type: 3}
  171. propertyPath: m_SizeDelta.x
  172. value: 0
  173. objectReference: {fileID: 0}
  174. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  175. type: 3}
  176. propertyPath: m_SizeDelta.y
  177. value: 0
  178. objectReference: {fileID: 0}
  179. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  180. type: 3}
  181. propertyPath: m_LocalPosition.x
  182. value: 0
  183. objectReference: {fileID: 0}
  184. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  185. type: 3}
  186. propertyPath: m_LocalPosition.y
  187. value: 0
  188. objectReference: {fileID: 0}
  189. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  190. type: 3}
  191. propertyPath: m_LocalPosition.z
  192. value: 0
  193. objectReference: {fileID: 0}
  194. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  195. type: 3}
  196. propertyPath: m_LocalRotation.w
  197. value: 1
  198. objectReference: {fileID: 0}
  199. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  200. type: 3}
  201. propertyPath: m_LocalRotation.x
  202. value: 0
  203. objectReference: {fileID: 0}
  204. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  205. type: 3}
  206. propertyPath: m_LocalRotation.y
  207. value: 0
  208. objectReference: {fileID: 0}
  209. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  210. type: 3}
  211. propertyPath: m_LocalRotation.z
  212. value: 0
  213. objectReference: {fileID: 0}
  214. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  215. type: 3}
  216. propertyPath: m_AnchoredPosition.x
  217. value: 0
  218. objectReference: {fileID: 0}
  219. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  220. type: 3}
  221. propertyPath: m_AnchoredPosition.y
  222. value: 0
  223. objectReference: {fileID: 0}
  224. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  225. type: 3}
  226. propertyPath: m_LocalEulerAnglesHint.x
  227. value: 0
  228. objectReference: {fileID: 0}
  229. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  230. type: 3}
  231. propertyPath: m_LocalEulerAnglesHint.y
  232. value: 0
  233. objectReference: {fileID: 0}
  234. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  235. type: 3}
  236. propertyPath: m_LocalEulerAnglesHint.z
  237. value: 0
  238. objectReference: {fileID: 0}
  239. - target: {fileID: 8396944020726690285, guid: c913bcba93a277649acf924959bfbce8,
  240. type: 3}
  241. propertyPath: m_Name
  242. value: Stop Block
  243. objectReference: {fileID: 0}
  244. - target: {fileID: 8396944021317043557, guid: c913bcba93a277649acf924959bfbce8,
  245. type: 3}
  246. propertyPath: m_Text
  247. value: "\u505C\u6B62"
  248. objectReference: {fileID: 0}
  249. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  250. type: 3}
  251. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
  252. value: 1
  253. objectReference: {fileID: 0}
  254. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  255. type: 3}
  256. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
  257. value: 1
  258. objectReference: {fileID: 0}
  259. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  260. type: 3}
  261. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  262. value:
  263. objectReference: {fileID: 1396553306}
  264. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  265. type: 3}
  266. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
  267. value: 2
  268. objectReference: {fileID: 0}
  269. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  270. type: 3}
  271. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
  272. value: Stop
  273. objectReference: {fileID: 0}
  274. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  275. type: 3}
  276. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
  277. value: UnityEngine.Object, UnityEngine
  278. objectReference: {fileID: 0}
  279. m_RemovedComponents: []
  280. m_SourcePrefab: {fileID: 100100000, guid: c913bcba93a277649acf924959bfbce8, type: 3}
  281. --- !u!224 &6070972 stripped
  282. RectTransform:
  283. m_CorrespondingSourceObject: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  284. type: 3}
  285. m_PrefabInstance: {fileID: 6070971}
  286. m_PrefabAsset: {fileID: 0}
  287. --- !u!1 &19015507
  288. GameObject:
  289. m_ObjectHideFlags: 0
  290. m_CorrespondingSourceObject: {fileID: 0}
  291. m_PrefabInstance: {fileID: 0}
  292. m_PrefabAsset: {fileID: 0}
  293. serializedVersion: 6
  294. m_Component:
  295. - component: {fileID: 19015508}
  296. - component: {fileID: 19015511}
  297. - component: {fileID: 19015510}
  298. - component: {fileID: 19015509}
  299. m_Layer: 5
  300. m_Name: Content
  301. m_TagString: Untagged
  302. m_Icon: {fileID: 0}
  303. m_NavMeshLayer: 0
  304. m_StaticEditorFlags: 0
  305. m_IsActive: 1
  306. --- !u!224 &19015508
  307. RectTransform:
  308. m_ObjectHideFlags: 0
  309. m_CorrespondingSourceObject: {fileID: 0}
  310. m_PrefabInstance: {fileID: 0}
  311. m_PrefabAsset: {fileID: 0}
  312. m_GameObject: {fileID: 19015507}
  313. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  314. m_LocalPosition: {x: 0, y: 0, z: 0}
  315. m_LocalScale: {x: 1, y: 1, z: 1}
  316. m_ConstrainProportionsScale: 0
  317. m_Children:
  318. - {fileID: 353962838}
  319. - {fileID: 321225463}
  320. - {fileID: 1242671061}
  321. - {fileID: 309197566}
  322. - {fileID: 1925578441}
  323. - {fileID: 562093324}
  324. - {fileID: 283007689}
  325. - {fileID: 1762191145}
  326. - {fileID: 1553820868}
  327. m_Father: {fileID: 1377911773}
  328. m_RootOrder: 0
  329. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  330. m_AnchorMin: {x: 0, y: 0}
  331. m_AnchorMax: {x: 1, y: 1}
  332. m_AnchoredPosition: {x: 0, y: 0}
  333. m_SizeDelta: {x: 0, y: 0}
  334. m_Pivot: {x: 0, y: 1}
  335. --- !u!114 &19015509
  336. MonoBehaviour:
  337. m_ObjectHideFlags: 0
  338. m_CorrespondingSourceObject: {fileID: 0}
  339. m_PrefabInstance: {fileID: 0}
  340. m_PrefabAsset: {fileID: 0}
  341. m_GameObject: {fileID: 19015507}
  342. m_Enabled: 1
  343. m_EditorHideFlags: 0
  344. m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
  345. m_Name:
  346. m_EditorClassIdentifier:
  347. m_HorizontalFit: 0
  348. m_VerticalFit: 2
  349. --- !u!114 &19015510
  350. MonoBehaviour:
  351. m_ObjectHideFlags: 0
  352. m_CorrespondingSourceObject: {fileID: 0}
  353. m_PrefabInstance: {fileID: 0}
  354. m_PrefabAsset: {fileID: 0}
  355. m_GameObject: {fileID: 19015507}
  356. m_Enabled: 1
  357. m_EditorHideFlags: 0
  358. m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
  359. m_Name:
  360. m_EditorClassIdentifier:
  361. m_Padding:
  362. m_Left: 0
  363. m_Right: 0
  364. m_Top: 0
  365. m_Bottom: 0
  366. m_ChildAlignment: 1
  367. m_Spacing: 14
  368. m_ChildForceExpandWidth: 0
  369. m_ChildForceExpandHeight: 0
  370. m_ChildControlWidth: 1
  371. m_ChildControlHeight: 1
  372. m_ChildScaleWidth: 0
  373. m_ChildScaleHeight: 0
  374. m_ReverseArrangement: 0
  375. --- !u!222 &19015511
  376. CanvasRenderer:
  377. m_ObjectHideFlags: 0
  378. m_CorrespondingSourceObject: {fileID: 0}
  379. m_PrefabInstance: {fileID: 0}
  380. m_PrefabAsset: {fileID: 0}
  381. m_GameObject: {fileID: 19015507}
  382. m_CullTransparentMesh: 0
  383. --- !u!1 &34478917
  384. GameObject:
  385. m_ObjectHideFlags: 0
  386. m_CorrespondingSourceObject: {fileID: 0}
  387. m_PrefabInstance: {fileID: 0}
  388. m_PrefabAsset: {fileID: 0}
  389. serializedVersion: 6
  390. m_Component:
  391. - component: {fileID: 34478918}
  392. - component: {fileID: 34478921}
  393. - component: {fileID: 34478920}
  394. - component: {fileID: 34478919}
  395. m_Layer: 5
  396. m_Name: Title
  397. m_TagString: Untagged
  398. m_Icon: {fileID: 0}
  399. m_NavMeshLayer: 0
  400. m_StaticEditorFlags: 0
  401. m_IsActive: 1
  402. --- !u!224 &34478918
  403. RectTransform:
  404. m_ObjectHideFlags: 0
  405. m_CorrespondingSourceObject: {fileID: 0}
  406. m_PrefabInstance: {fileID: 0}
  407. m_PrefabAsset: {fileID: 0}
  408. m_GameObject: {fileID: 34478917}
  409. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  410. m_LocalPosition: {x: 0, y: 0, z: 0}
  411. m_LocalScale: {x: 1, y: 1, z: 1}
  412. m_ConstrainProportionsScale: 0
  413. m_Children:
  414. - {fileID: 505356602}
  415. - {fileID: 2055780001}
  416. m_Father: {fileID: 287533383}
  417. m_RootOrder: 0
  418. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  419. m_AnchorMin: {x: 0, y: 0}
  420. m_AnchorMax: {x: 0, y: 0}
  421. m_AnchoredPosition: {x: 0, y: 0}
  422. m_SizeDelta: {x: 0, y: 0}
  423. m_Pivot: {x: 0.5, y: 1}
  424. --- !u!114 &34478919
  425. MonoBehaviour:
  426. m_ObjectHideFlags: 0
  427. m_CorrespondingSourceObject: {fileID: 0}
  428. m_PrefabInstance: {fileID: 0}
  429. m_PrefabAsset: {fileID: 0}
  430. m_GameObject: {fileID: 34478917}
  431. m_Enabled: 1
  432. m_EditorHideFlags: 0
  433. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  434. m_Name:
  435. m_EditorClassIdentifier:
  436. m_IgnoreLayout: 0
  437. m_MinWidth: -1
  438. m_MinHeight: -1
  439. m_PreferredWidth: 1080
  440. m_PreferredHeight: 250
  441. m_FlexibleWidth: 1
  442. m_FlexibleHeight: -1
  443. m_LayoutPriority: 1
  444. --- !u!114 &34478920
  445. MonoBehaviour:
  446. m_ObjectHideFlags: 0
  447. m_CorrespondingSourceObject: {fileID: 0}
  448. m_PrefabInstance: {fileID: 0}
  449. m_PrefabAsset: {fileID: 0}
  450. m_GameObject: {fileID: 34478917}
  451. m_Enabled: 1
  452. m_EditorHideFlags: 0
  453. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  454. m_Name:
  455. m_EditorClassIdentifier:
  456. m_Material: {fileID: 0}
  457. m_Color: {r: 0.9647059, g: 0.9647059, b: 0.9647059, a: 1}
  458. m_RaycastTarget: 1
  459. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  460. m_Maskable: 1
  461. m_OnCullStateChanged:
  462. m_PersistentCalls:
  463. m_Calls: []
  464. m_Sprite: {fileID: 0}
  465. m_Type: 1
  466. m_PreserveAspect: 0
  467. m_FillCenter: 1
  468. m_FillMethod: 4
  469. m_FillAmount: 1
  470. m_FillClockwise: 1
  471. m_FillOrigin: 0
  472. m_UseSpriteMesh: 0
  473. m_PixelsPerUnitMultiplier: 1
  474. --- !u!222 &34478921
  475. CanvasRenderer:
  476. m_ObjectHideFlags: 0
  477. m_CorrespondingSourceObject: {fileID: 0}
  478. m_PrefabInstance: {fileID: 0}
  479. m_PrefabAsset: {fileID: 0}
  480. m_GameObject: {fileID: 34478917}
  481. m_CullTransparentMesh: 0
  482. --- !u!1 &88306111
  483. GameObject:
  484. m_ObjectHideFlags: 0
  485. m_CorrespondingSourceObject: {fileID: 0}
  486. m_PrefabInstance: {fileID: 0}
  487. m_PrefabAsset: {fileID: 0}
  488. serializedVersion: 6
  489. m_Component:
  490. - component: {fileID: 88306112}
  491. - component: {fileID: 88306116}
  492. - component: {fileID: 88306115}
  493. - component: {fileID: 88306114}
  494. - component: {fileID: 88306113}
  495. m_Layer: 5
  496. m_Name: Scroll View
  497. m_TagString: Untagged
  498. m_Icon: {fileID: 0}
  499. m_NavMeshLayer: 0
  500. m_StaticEditorFlags: 0
  501. m_IsActive: 1
  502. --- !u!224 &88306112
  503. RectTransform:
  504. m_ObjectHideFlags: 0
  505. m_CorrespondingSourceObject: {fileID: 0}
  506. m_PrefabInstance: {fileID: 0}
  507. m_PrefabAsset: {fileID: 0}
  508. m_GameObject: {fileID: 88306111}
  509. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  510. m_LocalPosition: {x: 0, y: 0, z: 0}
  511. m_LocalScale: {x: 1, y: 1, z: 1}
  512. m_ConstrainProportionsScale: 0
  513. m_Children:
  514. - {fileID: 1377911773}
  515. m_Father: {fileID: 287533383}
  516. m_RootOrder: 1
  517. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  518. m_AnchorMin: {x: 0, y: 0}
  519. m_AnchorMax: {x: 0, y: 0}
  520. m_AnchoredPosition: {x: 0, y: 0}
  521. m_SizeDelta: {x: 0, y: 0}
  522. m_Pivot: {x: 0.5, y: 1}
  523. --- !u!114 &88306113
  524. MonoBehaviour:
  525. m_ObjectHideFlags: 0
  526. m_CorrespondingSourceObject: {fileID: 0}
  527. m_PrefabInstance: {fileID: 0}
  528. m_PrefabAsset: {fileID: 0}
  529. m_GameObject: {fileID: 88306111}
  530. m_Enabled: 1
  531. m_EditorHideFlags: 0
  532. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  533. m_Name:
  534. m_EditorClassIdentifier:
  535. m_IgnoreLayout: 0
  536. m_MinWidth: -1
  537. m_MinHeight: -1
  538. m_PreferredWidth: -1
  539. m_PreferredHeight: -1
  540. m_FlexibleWidth: 1
  541. m_FlexibleHeight: 1
  542. m_LayoutPriority: 1
  543. --- !u!114 &88306114
  544. MonoBehaviour:
  545. m_ObjectHideFlags: 0
  546. m_CorrespondingSourceObject: {fileID: 0}
  547. m_PrefabInstance: {fileID: 0}
  548. m_PrefabAsset: {fileID: 0}
  549. m_GameObject: {fileID: 88306111}
  550. m_Enabled: 1
  551. m_EditorHideFlags: 0
  552. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  553. m_Name:
  554. m_EditorClassIdentifier:
  555. m_Material: {fileID: 0}
  556. m_Color: {r: 1, g: 1, b: 1, a: 0}
  557. m_RaycastTarget: 0
  558. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  559. m_Maskable: 1
  560. m_OnCullStateChanged:
  561. m_PersistentCalls:
  562. m_Calls: []
  563. m_Sprite: {fileID: 0}
  564. m_Type: 0
  565. m_PreserveAspect: 0
  566. m_FillCenter: 1
  567. m_FillMethod: 4
  568. m_FillAmount: 1
  569. m_FillClockwise: 1
  570. m_FillOrigin: 0
  571. m_UseSpriteMesh: 0
  572. m_PixelsPerUnitMultiplier: 1
  573. --- !u!222 &88306115
  574. CanvasRenderer:
  575. m_ObjectHideFlags: 0
  576. m_CorrespondingSourceObject: {fileID: 0}
  577. m_PrefabInstance: {fileID: 0}
  578. m_PrefabAsset: {fileID: 0}
  579. m_GameObject: {fileID: 88306111}
  580. m_CullTransparentMesh: 0
  581. --- !u!114 &88306116
  582. MonoBehaviour:
  583. m_ObjectHideFlags: 0
  584. m_CorrespondingSourceObject: {fileID: 0}
  585. m_PrefabInstance: {fileID: 0}
  586. m_PrefabAsset: {fileID: 0}
  587. m_GameObject: {fileID: 88306111}
  588. m_Enabled: 1
  589. m_EditorHideFlags: 0
  590. m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3}
  591. m_Name:
  592. m_EditorClassIdentifier:
  593. m_Content: {fileID: 19015508}
  594. m_Horizontal: 0
  595. m_Vertical: 1
  596. m_MovementType: 1
  597. m_Elasticity: 0.1
  598. m_Inertia: 1
  599. m_DecelerationRate: 0.135
  600. m_ScrollSensitivity: 1
  601. m_Viewport: {fileID: 1377911773}
  602. m_HorizontalScrollbar: {fileID: 0}
  603. m_VerticalScrollbar: {fileID: 0}
  604. m_HorizontalScrollbarVisibility: 2
  605. m_VerticalScrollbarVisibility: 2
  606. m_HorizontalScrollbarSpacing: -3
  607. m_VerticalScrollbarSpacing: -3
  608. m_OnValueChanged:
  609. m_PersistentCalls:
  610. m_Calls: []
  611. --- !u!1 &283007688
  612. GameObject:
  613. m_ObjectHideFlags: 0
  614. m_CorrespondingSourceObject: {fileID: 0}
  615. m_PrefabInstance: {fileID: 0}
  616. m_PrefabAsset: {fileID: 0}
  617. serializedVersion: 6
  618. m_Component:
  619. - component: {fileID: 283007689}
  620. - component: {fileID: 283007692}
  621. - component: {fileID: 283007691}
  622. - component: {fileID: 283007690}
  623. m_Layer: 5
  624. m_Name: Gap Block3
  625. m_TagString: Untagged
  626. m_Icon: {fileID: 0}
  627. m_NavMeshLayer: 0
  628. m_StaticEditorFlags: 0
  629. m_IsActive: 1
  630. --- !u!224 &283007689
  631. RectTransform:
  632. m_ObjectHideFlags: 0
  633. m_CorrespondingSourceObject: {fileID: 0}
  634. m_PrefabInstance: {fileID: 0}
  635. m_PrefabAsset: {fileID: 0}
  636. m_GameObject: {fileID: 283007688}
  637. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  638. m_LocalPosition: {x: 0, y: 0, z: 0}
  639. m_LocalScale: {x: 1, y: 1, z: 1}
  640. m_ConstrainProportionsScale: 0
  641. m_Children: []
  642. m_Father: {fileID: 19015508}
  643. m_RootOrder: 6
  644. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  645. m_AnchorMin: {x: 0, y: 0}
  646. m_AnchorMax: {x: 0, y: 0}
  647. m_AnchoredPosition: {x: 0, y: 0}
  648. m_SizeDelta: {x: 0, y: 0}
  649. m_Pivot: {x: 0.5, y: 0.5}
  650. --- !u!114 &283007690
  651. MonoBehaviour:
  652. m_ObjectHideFlags: 0
  653. m_CorrespondingSourceObject: {fileID: 0}
  654. m_PrefabInstance: {fileID: 0}
  655. m_PrefabAsset: {fileID: 0}
  656. m_GameObject: {fileID: 283007688}
  657. m_Enabled: 1
  658. m_EditorHideFlags: 0
  659. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  660. m_Name:
  661. m_EditorClassIdentifier:
  662. m_Material: {fileID: 0}
  663. m_Color: {r: 1, g: 1, b: 1, a: 0}
  664. m_RaycastTarget: 1
  665. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  666. m_Maskable: 1
  667. m_OnCullStateChanged:
  668. m_PersistentCalls:
  669. m_Calls: []
  670. m_Sprite: {fileID: 0}
  671. m_Type: 0
  672. m_PreserveAspect: 0
  673. m_FillCenter: 1
  674. m_FillMethod: 4
  675. m_FillAmount: 1
  676. m_FillClockwise: 1
  677. m_FillOrigin: 0
  678. m_UseSpriteMesh: 0
  679. m_PixelsPerUnitMultiplier: 1
  680. --- !u!222 &283007691
  681. CanvasRenderer:
  682. m_ObjectHideFlags: 0
  683. m_CorrespondingSourceObject: {fileID: 0}
  684. m_PrefabInstance: {fileID: 0}
  685. m_PrefabAsset: {fileID: 0}
  686. m_GameObject: {fileID: 283007688}
  687. m_CullTransparentMesh: 0
  688. --- !u!114 &283007692
  689. MonoBehaviour:
  690. m_ObjectHideFlags: 0
  691. m_CorrespondingSourceObject: {fileID: 0}
  692. m_PrefabInstance: {fileID: 0}
  693. m_PrefabAsset: {fileID: 0}
  694. m_GameObject: {fileID: 283007688}
  695. m_Enabled: 1
  696. m_EditorHideFlags: 0
  697. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  698. m_Name:
  699. m_EditorClassIdentifier:
  700. m_IgnoreLayout: 0
  701. m_MinWidth: -1
  702. m_MinHeight: -1
  703. m_PreferredWidth: -1
  704. m_PreferredHeight: 50
  705. m_FlexibleWidth: 1
  706. m_FlexibleHeight: -1
  707. m_LayoutPriority: 1
  708. --- !u!1 &287533382
  709. GameObject:
  710. m_ObjectHideFlags: 0
  711. m_CorrespondingSourceObject: {fileID: 0}
  712. m_PrefabInstance: {fileID: 0}
  713. m_PrefabAsset: {fileID: 0}
  714. serializedVersion: 6
  715. m_Component:
  716. - component: {fileID: 287533383}
  717. - component: {fileID: 287533384}
  718. m_Layer: 5
  719. m_Name: Foreground
  720. m_TagString: Untagged
  721. m_Icon: {fileID: 0}
  722. m_NavMeshLayer: 0
  723. m_StaticEditorFlags: 0
  724. m_IsActive: 1
  725. --- !u!224 &287533383
  726. RectTransform:
  727. m_ObjectHideFlags: 0
  728. m_CorrespondingSourceObject: {fileID: 0}
  729. m_PrefabInstance: {fileID: 0}
  730. m_PrefabAsset: {fileID: 0}
  731. m_GameObject: {fileID: 287533382}
  732. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  733. m_LocalPosition: {x: 0, y: 0, z: 0}
  734. m_LocalScale: {x: 1, y: 1, z: 1}
  735. m_ConstrainProportionsScale: 0
  736. m_Children:
  737. - {fileID: 34478918}
  738. - {fileID: 88306112}
  739. m_Father: {fileID: 1396553310}
  740. m_RootOrder: 1
  741. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  742. m_AnchorMin: {x: 0, y: 0}
  743. m_AnchorMax: {x: 1, y: 1}
  744. m_AnchoredPosition: {x: 0, y: 0}
  745. m_SizeDelta: {x: 0, y: 0}
  746. m_Pivot: {x: 0.5, y: 0.5}
  747. --- !u!114 &287533384
  748. MonoBehaviour:
  749. m_ObjectHideFlags: 0
  750. m_CorrespondingSourceObject: {fileID: 0}
  751. m_PrefabInstance: {fileID: 0}
  752. m_PrefabAsset: {fileID: 0}
  753. m_GameObject: {fileID: 287533382}
  754. m_Enabled: 1
  755. m_EditorHideFlags: 0
  756. m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
  757. m_Name:
  758. m_EditorClassIdentifier:
  759. m_Padding:
  760. m_Left: 0
  761. m_Right: 0
  762. m_Top: 0
  763. m_Bottom: 0
  764. m_ChildAlignment: 1
  765. m_Spacing: 0
  766. m_ChildForceExpandWidth: 0
  767. m_ChildForceExpandHeight: 0
  768. m_ChildControlWidth: 1
  769. m_ChildControlHeight: 1
  770. m_ChildScaleWidth: 0
  771. m_ChildScaleHeight: 0
  772. m_ReverseArrangement: 0
  773. --- !u!1 &309197565
  774. GameObject:
  775. m_ObjectHideFlags: 0
  776. m_CorrespondingSourceObject: {fileID: 0}
  777. m_PrefabInstance: {fileID: 0}
  778. m_PrefabAsset: {fileID: 0}
  779. serializedVersion: 6
  780. m_Component:
  781. - component: {fileID: 309197566}
  782. - component: {fileID: 309197568}
  783. - component: {fileID: 309197567}
  784. m_Layer: 5
  785. m_Name: Explain Text
  786. m_TagString: Untagged
  787. m_Icon: {fileID: 0}
  788. m_NavMeshLayer: 0
  789. m_StaticEditorFlags: 0
  790. m_IsActive: 1
  791. --- !u!224 &309197566
  792. RectTransform:
  793. m_ObjectHideFlags: 0
  794. m_CorrespondingSourceObject: {fileID: 0}
  795. m_PrefabInstance: {fileID: 0}
  796. m_PrefabAsset: {fileID: 0}
  797. m_GameObject: {fileID: 309197565}
  798. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  799. m_LocalPosition: {x: 0, y: 0, z: 0}
  800. m_LocalScale: {x: 1, y: 1, z: 1}
  801. m_ConstrainProportionsScale: 0
  802. m_Children:
  803. - {fileID: 548615013}
  804. m_Father: {fileID: 19015508}
  805. m_RootOrder: 3
  806. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  807. m_AnchorMin: {x: 0, y: 0}
  808. m_AnchorMax: {x: 0, y: 0}
  809. m_AnchoredPosition: {x: 0, y: 0}
  810. m_SizeDelta: {x: 0, y: 0}
  811. m_Pivot: {x: 0.5, y: 0.5}
  812. --- !u!114 &309197567
  813. MonoBehaviour:
  814. m_ObjectHideFlags: 0
  815. m_CorrespondingSourceObject: {fileID: 0}
  816. m_PrefabInstance: {fileID: 0}
  817. m_PrefabAsset: {fileID: 0}
  818. m_GameObject: {fileID: 309197565}
  819. m_Enabled: 1
  820. m_EditorHideFlags: 0
  821. m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
  822. m_Name:
  823. m_EditorClassIdentifier:
  824. m_Padding:
  825. m_Left: 0
  826. m_Right: 0
  827. m_Top: 0
  828. m_Bottom: 0
  829. m_ChildAlignment: 1
  830. m_Spacing: 0
  831. m_ChildForceExpandWidth: 0
  832. m_ChildForceExpandHeight: 0
  833. m_ChildControlWidth: 1
  834. m_ChildControlHeight: 1
  835. m_ChildScaleWidth: 0
  836. m_ChildScaleHeight: 0
  837. m_ReverseArrangement: 0
  838. --- !u!114 &309197568
  839. MonoBehaviour:
  840. m_ObjectHideFlags: 0
  841. m_CorrespondingSourceObject: {fileID: 0}
  842. m_PrefabInstance: {fileID: 0}
  843. m_PrefabAsset: {fileID: 0}
  844. m_GameObject: {fileID: 309197565}
  845. m_Enabled: 1
  846. m_EditorHideFlags: 0
  847. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  848. m_Name:
  849. m_EditorClassIdentifier:
  850. m_IgnoreLayout: 0
  851. m_MinWidth: -1
  852. m_MinHeight: 160
  853. m_PreferredWidth: -1
  854. m_PreferredHeight: -1
  855. m_FlexibleWidth: 1
  856. m_FlexibleHeight: -1
  857. m_LayoutPriority: 1
  858. --- !u!1 &321225462
  859. GameObject:
  860. m_ObjectHideFlags: 0
  861. m_CorrespondingSourceObject: {fileID: 0}
  862. m_PrefabInstance: {fileID: 0}
  863. m_PrefabAsset: {fileID: 0}
  864. serializedVersion: 6
  865. m_Component:
  866. - component: {fileID: 321225463}
  867. - component: {fileID: 321225464}
  868. m_Layer: 5
  869. m_Name: API Name
  870. m_TagString: Untagged
  871. m_Icon: {fileID: 0}
  872. m_NavMeshLayer: 0
  873. m_StaticEditorFlags: 0
  874. m_IsActive: 0
  875. --- !u!224 &321225463
  876. RectTransform:
  877. m_ObjectHideFlags: 0
  878. m_CorrespondingSourceObject: {fileID: 0}
  879. m_PrefabInstance: {fileID: 0}
  880. m_PrefabAsset: {fileID: 0}
  881. m_GameObject: {fileID: 321225462}
  882. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  883. m_LocalPosition: {x: 0, y: 0, z: 0}
  884. m_LocalScale: {x: 1, y: 1, z: 1}
  885. m_ConstrainProportionsScale: 0
  886. m_Children:
  887. - {fileID: 1400629637}
  888. - {fileID: 1668469603}
  889. m_Father: {fileID: 19015508}
  890. m_RootOrder: 1
  891. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  892. m_AnchorMin: {x: 0, y: 1}
  893. m_AnchorMax: {x: 0, y: 1}
  894. m_AnchoredPosition: {x: 540, y: -114}
  895. m_SizeDelta: {x: 1080, y: 100}
  896. m_Pivot: {x: 0.5, y: 0.5}
  897. --- !u!114 &321225464
  898. MonoBehaviour:
  899. m_ObjectHideFlags: 0
  900. m_CorrespondingSourceObject: {fileID: 0}
  901. m_PrefabInstance: {fileID: 0}
  902. m_PrefabAsset: {fileID: 0}
  903. m_GameObject: {fileID: 321225462}
  904. m_Enabled: 1
  905. m_EditorHideFlags: 0
  906. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  907. m_Name:
  908. m_EditorClassIdentifier:
  909. m_IgnoreLayout: 0
  910. m_MinWidth: -1
  911. m_MinHeight: -1
  912. m_PreferredWidth: 1080
  913. m_PreferredHeight: 100
  914. m_FlexibleWidth: 1
  915. m_FlexibleHeight: -1
  916. m_LayoutPriority: 1
  917. --- !u!1 &353962837
  918. GameObject:
  919. m_ObjectHideFlags: 0
  920. m_CorrespondingSourceObject: {fileID: 0}
  921. m_PrefabInstance: {fileID: 0}
  922. m_PrefabAsset: {fileID: 0}
  923. serializedVersion: 6
  924. m_Component:
  925. - component: {fileID: 353962838}
  926. - component: {fileID: 353962841}
  927. - component: {fileID: 353962840}
  928. - component: {fileID: 353962839}
  929. m_Layer: 5
  930. m_Name: Top Block
  931. m_TagString: Untagged
  932. m_Icon: {fileID: 0}
  933. m_NavMeshLayer: 0
  934. m_StaticEditorFlags: 0
  935. m_IsActive: 1
  936. --- !u!224 &353962838
  937. RectTransform:
  938. m_ObjectHideFlags: 0
  939. m_CorrespondingSourceObject: {fileID: 0}
  940. m_PrefabInstance: {fileID: 0}
  941. m_PrefabAsset: {fileID: 0}
  942. m_GameObject: {fileID: 353962837}
  943. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  944. m_LocalPosition: {x: 0, y: 0, z: 0}
  945. m_LocalScale: {x: 1, y: 1, z: 1}
  946. m_ConstrainProportionsScale: 0
  947. m_Children: []
  948. m_Father: {fileID: 19015508}
  949. m_RootOrder: 0
  950. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  951. m_AnchorMin: {x: 0, y: 0}
  952. m_AnchorMax: {x: 0, y: 0}
  953. m_AnchoredPosition: {x: 0, y: 0}
  954. m_SizeDelta: {x: 0, y: 0}
  955. m_Pivot: {x: 0.5, y: 0.5}
  956. --- !u!114 &353962839
  957. MonoBehaviour:
  958. m_ObjectHideFlags: 0
  959. m_CorrespondingSourceObject: {fileID: 0}
  960. m_PrefabInstance: {fileID: 0}
  961. m_PrefabAsset: {fileID: 0}
  962. m_GameObject: {fileID: 353962837}
  963. m_Enabled: 1
  964. m_EditorHideFlags: 0
  965. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  966. m_Name:
  967. m_EditorClassIdentifier:
  968. m_Material: {fileID: 0}
  969. m_Color: {r: 1, g: 1, b: 1, a: 0}
  970. m_RaycastTarget: 1
  971. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  972. m_Maskable: 1
  973. m_OnCullStateChanged:
  974. m_PersistentCalls:
  975. m_Calls: []
  976. m_Sprite: {fileID: 0}
  977. m_Type: 0
  978. m_PreserveAspect: 0
  979. m_FillCenter: 1
  980. m_FillMethod: 4
  981. m_FillAmount: 1
  982. m_FillClockwise: 1
  983. m_FillOrigin: 0
  984. m_UseSpriteMesh: 0
  985. m_PixelsPerUnitMultiplier: 1
  986. --- !u!222 &353962840
  987. CanvasRenderer:
  988. m_ObjectHideFlags: 0
  989. m_CorrespondingSourceObject: {fileID: 0}
  990. m_PrefabInstance: {fileID: 0}
  991. m_PrefabAsset: {fileID: 0}
  992. m_GameObject: {fileID: 353962837}
  993. m_CullTransparentMesh: 0
  994. --- !u!114 &353962841
  995. MonoBehaviour:
  996. m_ObjectHideFlags: 0
  997. m_CorrespondingSourceObject: {fileID: 0}
  998. m_PrefabInstance: {fileID: 0}
  999. m_PrefabAsset: {fileID: 0}
  1000. m_GameObject: {fileID: 353962837}
  1001. m_Enabled: 1
  1002. m_EditorHideFlags: 0
  1003. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  1004. m_Name:
  1005. m_EditorClassIdentifier:
  1006. m_IgnoreLayout: 0
  1007. m_MinWidth: -1
  1008. m_MinHeight: -1
  1009. m_PreferredWidth: -1
  1010. m_PreferredHeight: 50
  1011. m_FlexibleWidth: 1
  1012. m_FlexibleHeight: -1
  1013. m_LayoutPriority: 1
  1014. --- !u!1 &505356601
  1015. GameObject:
  1016. m_ObjectHideFlags: 0
  1017. m_CorrespondingSourceObject: {fileID: 0}
  1018. m_PrefabInstance: {fileID: 0}
  1019. m_PrefabAsset: {fileID: 0}
  1020. serializedVersion: 6
  1021. m_Component:
  1022. - component: {fileID: 505356602}
  1023. - component: {fileID: 505356605}
  1024. - component: {fileID: 505356604}
  1025. - component: {fileID: 505356603}
  1026. m_Layer: 5
  1027. m_Name: Text
  1028. m_TagString: Untagged
  1029. m_Icon: {fileID: 0}
  1030. m_NavMeshLayer: 0
  1031. m_StaticEditorFlags: 0
  1032. m_IsActive: 1
  1033. --- !u!224 &505356602
  1034. RectTransform:
  1035. m_ObjectHideFlags: 0
  1036. m_CorrespondingSourceObject: {fileID: 0}
  1037. m_PrefabInstance: {fileID: 0}
  1038. m_PrefabAsset: {fileID: 0}
  1039. m_GameObject: {fileID: 505356601}
  1040. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1041. m_LocalPosition: {x: 0, y: 0, z: 0}
  1042. m_LocalScale: {x: 1, y: 1, z: 1}
  1043. m_ConstrainProportionsScale: 0
  1044. m_Children: []
  1045. m_Father: {fileID: 34478918}
  1046. m_RootOrder: 0
  1047. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1048. m_AnchorMin: {x: 0.5, y: 1}
  1049. m_AnchorMax: {x: 0.5, y: 1}
  1050. m_AnchoredPosition: {x: 0, y: -150}
  1051. m_SizeDelta: {x: 1080, y: 180}
  1052. m_Pivot: {x: 0.5, y: 0.5}
  1053. --- !u!114 &505356603
  1054. MonoBehaviour:
  1055. m_ObjectHideFlags: 0
  1056. m_CorrespondingSourceObject: {fileID: 0}
  1057. m_PrefabInstance: {fileID: 0}
  1058. m_PrefabAsset: {fileID: 0}
  1059. m_GameObject: {fileID: 505356601}
  1060. m_Enabled: 1
  1061. m_EditorHideFlags: 0
  1062. m_Script: {fileID: 11500000, guid: ad114bb7e387d46d7a9ad7af676060d0, type: 3}
  1063. m_Name:
  1064. m_EditorClassIdentifier:
  1065. --- !u!114 &505356604
  1066. MonoBehaviour:
  1067. m_ObjectHideFlags: 0
  1068. m_CorrespondingSourceObject: {fileID: 0}
  1069. m_PrefabInstance: {fileID: 0}
  1070. m_PrefabAsset: {fileID: 0}
  1071. m_GameObject: {fileID: 505356601}
  1072. m_Enabled: 1
  1073. m_EditorHideFlags: 0
  1074. m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
  1075. m_Name:
  1076. m_EditorClassIdentifier:
  1077. m_Material: {fileID: 0}
  1078. m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
  1079. m_RaycastTarget: 1
  1080. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  1081. m_Maskable: 1
  1082. m_OnCullStateChanged:
  1083. m_PersistentCalls:
  1084. m_Calls: []
  1085. m_FontData:
  1086. m_Font: {fileID: 12800000, guid: 04a37534e45184b62bc44e172e5fe81e, type: 3}
  1087. m_FontSize: 45
  1088. m_FontStyle: 0
  1089. m_BestFit: 0
  1090. m_MinSize: 0
  1091. m_MaxSize: 240
  1092. m_Alignment: 4
  1093. m_AlignByGeometry: 1
  1094. m_RichText: 1
  1095. m_HorizontalOverflow: 0
  1096. m_VerticalOverflow: 0
  1097. m_LineSpacing: 1
  1098. m_Text: "\u97F3\u9891"
  1099. --- !u!222 &505356605
  1100. CanvasRenderer:
  1101. m_ObjectHideFlags: 0
  1102. m_CorrespondingSourceObject: {fileID: 0}
  1103. m_PrefabInstance: {fileID: 0}
  1104. m_PrefabAsset: {fileID: 0}
  1105. m_GameObject: {fileID: 505356601}
  1106. m_CullTransparentMesh: 0
  1107. --- !u!1 &548615012
  1108. GameObject:
  1109. m_ObjectHideFlags: 0
  1110. m_CorrespondingSourceObject: {fileID: 0}
  1111. m_PrefabInstance: {fileID: 0}
  1112. m_PrefabAsset: {fileID: 0}
  1113. serializedVersion: 6
  1114. m_Component:
  1115. - component: {fileID: 548615013}
  1116. - component: {fileID: 548615017}
  1117. - component: {fileID: 548615016}
  1118. - component: {fileID: 548615015}
  1119. - component: {fileID: 548615014}
  1120. m_Layer: 5
  1121. m_Name: Text
  1122. m_TagString: Untagged
  1123. m_Icon: {fileID: 0}
  1124. m_NavMeshLayer: 0
  1125. m_StaticEditorFlags: 0
  1126. m_IsActive: 1
  1127. --- !u!224 &548615013
  1128. RectTransform:
  1129. m_ObjectHideFlags: 0
  1130. m_CorrespondingSourceObject: {fileID: 0}
  1131. m_PrefabInstance: {fileID: 0}
  1132. m_PrefabAsset: {fileID: 0}
  1133. m_GameObject: {fileID: 548615012}
  1134. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1135. m_LocalPosition: {x: 0, y: 0, z: 0}
  1136. m_LocalScale: {x: 1, y: 1, z: 1}
  1137. m_ConstrainProportionsScale: 0
  1138. m_Children: []
  1139. m_Father: {fileID: 309197566}
  1140. m_RootOrder: 0
  1141. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1142. m_AnchorMin: {x: 0, y: 0}
  1143. m_AnchorMax: {x: 0, y: 0}
  1144. m_AnchoredPosition: {x: 0, y: 0}
  1145. m_SizeDelta: {x: 0, y: 0}
  1146. m_Pivot: {x: 0.5, y: 0.5}
  1147. --- !u!114 &548615014
  1148. MonoBehaviour:
  1149. m_ObjectHideFlags: 0
  1150. m_CorrespondingSourceObject: {fileID: 0}
  1151. m_PrefabInstance: {fileID: 0}
  1152. m_PrefabAsset: {fileID: 0}
  1153. m_GameObject: {fileID: 548615012}
  1154. m_Enabled: 1
  1155. m_EditorHideFlags: 0
  1156. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  1157. m_Name:
  1158. m_EditorClassIdentifier:
  1159. m_IgnoreLayout: 0
  1160. m_MinWidth: -1
  1161. m_MinHeight: -1
  1162. m_PreferredWidth: -1
  1163. m_PreferredHeight: -1
  1164. m_FlexibleWidth: 1
  1165. m_FlexibleHeight: 1
  1166. m_LayoutPriority: 1
  1167. --- !u!114 &548615015
  1168. MonoBehaviour:
  1169. m_ObjectHideFlags: 0
  1170. m_CorrespondingSourceObject: {fileID: 0}
  1171. m_PrefabInstance: {fileID: 0}
  1172. m_PrefabAsset: {fileID: 0}
  1173. m_GameObject: {fileID: 548615012}
  1174. m_Enabled: 1
  1175. m_EditorHideFlags: 0
  1176. m_Script: {fileID: 11500000, guid: ad114bb7e387d46d7a9ad7af676060d0, type: 3}
  1177. m_Name:
  1178. m_EditorClassIdentifier:
  1179. --- !u!114 &548615016
  1180. MonoBehaviour:
  1181. m_ObjectHideFlags: 0
  1182. m_CorrespondingSourceObject: {fileID: 0}
  1183. m_PrefabInstance: {fileID: 0}
  1184. m_PrefabAsset: {fileID: 0}
  1185. m_GameObject: {fileID: 548615012}
  1186. m_Enabled: 1
  1187. m_EditorHideFlags: 0
  1188. m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
  1189. m_Name:
  1190. m_EditorClassIdentifier:
  1191. m_Material: {fileID: 0}
  1192. m_Color: {r: 0.23529413, g: 0.23529413, b: 0.23529413, a: 1}
  1193. m_RaycastTarget: 1
  1194. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  1195. m_Maskable: 1
  1196. m_OnCullStateChanged:
  1197. m_PersistentCalls:
  1198. m_Calls: []
  1199. m_FontData:
  1200. m_Font: {fileID: 12800000, guid: 04a37534e45184b62bc44e172e5fe81e, type: 3}
  1201. m_FontSize: 45
  1202. m_FontStyle: 0
  1203. m_BestFit: 0
  1204. m_MinSize: 3
  1205. m_MaxSize: 50
  1206. m_Alignment: 1
  1207. m_AlignByGeometry: 0
  1208. m_RichText: 1
  1209. m_HorizontalOverflow: 0
  1210. m_VerticalOverflow: 0
  1211. m_LineSpacing: 1
  1212. m_Text:
  1213. --- !u!222 &548615017
  1214. CanvasRenderer:
  1215. m_ObjectHideFlags: 0
  1216. m_CorrespondingSourceObject: {fileID: 0}
  1217. m_PrefabInstance: {fileID: 0}
  1218. m_PrefabAsset: {fileID: 0}
  1219. m_GameObject: {fileID: 548615012}
  1220. m_CullTransparentMesh: 0
  1221. --- !u!1 &562093323
  1222. GameObject:
  1223. m_ObjectHideFlags: 0
  1224. m_CorrespondingSourceObject: {fileID: 0}
  1225. m_PrefabInstance: {fileID: 0}
  1226. m_PrefabAsset: {fileID: 0}
  1227. serializedVersion: 6
  1228. m_Component:
  1229. - component: {fileID: 562093324}
  1230. - component: {fileID: 562093326}
  1231. - component: {fileID: 562093325}
  1232. m_Layer: 5
  1233. m_Name: Options
  1234. m_TagString: Untagged
  1235. m_Icon: {fileID: 0}
  1236. m_NavMeshLayer: 0
  1237. m_StaticEditorFlags: 0
  1238. m_IsActive: 1
  1239. --- !u!224 &562093324
  1240. RectTransform:
  1241. m_ObjectHideFlags: 0
  1242. m_CorrespondingSourceObject: {fileID: 0}
  1243. m_PrefabInstance: {fileID: 0}
  1244. m_PrefabAsset: {fileID: 0}
  1245. m_GameObject: {fileID: 562093323}
  1246. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1247. m_LocalPosition: {x: 0, y: 0, z: 0}
  1248. m_LocalScale: {x: 1, y: 1, z: 1}
  1249. m_ConstrainProportionsScale: 0
  1250. m_Children: []
  1251. m_Father: {fileID: 19015508}
  1252. m_RootOrder: 5
  1253. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1254. m_AnchorMin: {x: 0, y: 0}
  1255. m_AnchorMax: {x: 0, y: 0}
  1256. m_AnchoredPosition: {x: 0, y: 0}
  1257. m_SizeDelta: {x: 0, y: 0}
  1258. m_Pivot: {x: 0.5, y: 0.5}
  1259. --- !u!114 &562093325
  1260. MonoBehaviour:
  1261. m_ObjectHideFlags: 0
  1262. m_CorrespondingSourceObject: {fileID: 0}
  1263. m_PrefabInstance: {fileID: 0}
  1264. m_PrefabAsset: {fileID: 0}
  1265. m_GameObject: {fileID: 562093323}
  1266. m_Enabled: 1
  1267. m_EditorHideFlags: 0
  1268. m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
  1269. m_Name:
  1270. m_EditorClassIdentifier:
  1271. m_Padding:
  1272. m_Left: 0
  1273. m_Right: 0
  1274. m_Top: 0
  1275. m_Bottom: 0
  1276. m_ChildAlignment: 0
  1277. m_Spacing: 14
  1278. m_ChildForceExpandWidth: 0
  1279. m_ChildForceExpandHeight: 0
  1280. m_ChildControlWidth: 1
  1281. m_ChildControlHeight: 1
  1282. m_ChildScaleWidth: 0
  1283. m_ChildScaleHeight: 0
  1284. m_ReverseArrangement: 0
  1285. --- !u!114 &562093326
  1286. MonoBehaviour:
  1287. m_ObjectHideFlags: 0
  1288. m_CorrespondingSourceObject: {fileID: 0}
  1289. m_PrefabInstance: {fileID: 0}
  1290. m_PrefabAsset: {fileID: 0}
  1291. m_GameObject: {fileID: 562093323}
  1292. m_Enabled: 1
  1293. m_EditorHideFlags: 0
  1294. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  1295. m_Name:
  1296. m_EditorClassIdentifier:
  1297. m_IgnoreLayout: 0
  1298. m_MinWidth: -1
  1299. m_MinHeight: -1
  1300. m_PreferredWidth: -1
  1301. m_PreferredHeight: -1
  1302. m_FlexibleWidth: 1
  1303. m_FlexibleHeight: -1
  1304. m_LayoutPriority: 1
  1305. --- !u!1 &587693936
  1306. GameObject:
  1307. m_ObjectHideFlags: 0
  1308. m_CorrespondingSourceObject: {fileID: 0}
  1309. m_PrefabInstance: {fileID: 0}
  1310. m_PrefabAsset: {fileID: 0}
  1311. serializedVersion: 6
  1312. m_Component:
  1313. - component: {fileID: 587693938}
  1314. - component: {fileID: 587693937}
  1315. m_Layer: 0
  1316. m_Name: Audio Source
  1317. m_TagString: Untagged
  1318. m_Icon: {fileID: 0}
  1319. m_NavMeshLayer: 0
  1320. m_StaticEditorFlags: 0
  1321. m_IsActive: 1
  1322. --- !u!82 &587693937
  1323. AudioSource:
  1324. m_ObjectHideFlags: 0
  1325. m_CorrespondingSourceObject: {fileID: 0}
  1326. m_PrefabInstance: {fileID: 0}
  1327. m_PrefabAsset: {fileID: 0}
  1328. m_GameObject: {fileID: 587693936}
  1329. m_Enabled: 1
  1330. serializedVersion: 4
  1331. OutputAudioMixerGroup: {fileID: 0}
  1332. m_audioClip: {fileID: 0}
  1333. m_PlayOnAwake: 1
  1334. m_Volume: 1
  1335. m_Pitch: 1
  1336. Loop: 0
  1337. Mute: 0
  1338. Spatialize: 0
  1339. SpatializePostEffects: 0
  1340. Priority: 128
  1341. DopplerLevel: 1
  1342. MinDistance: 1
  1343. MaxDistance: 500
  1344. Pan2D: 0
  1345. rolloffMode: 0
  1346. BypassEffects: 0
  1347. BypassListenerEffects: 0
  1348. BypassReverbZones: 0
  1349. rolloffCustomCurve:
  1350. serializedVersion: 2
  1351. m_Curve:
  1352. - serializedVersion: 3
  1353. time: 0
  1354. value: 1
  1355. inSlope: 0
  1356. outSlope: 0
  1357. tangentMode: 0
  1358. weightedMode: 0
  1359. inWeight: 0.33333334
  1360. outWeight: 0.33333334
  1361. - serializedVersion: 3
  1362. time: 1
  1363. value: 0
  1364. inSlope: 0
  1365. outSlope: 0
  1366. tangentMode: 0
  1367. weightedMode: 0
  1368. inWeight: 0.33333334
  1369. outWeight: 0.33333334
  1370. m_PreInfinity: 2
  1371. m_PostInfinity: 2
  1372. m_RotationOrder: 4
  1373. panLevelCustomCurve:
  1374. serializedVersion: 2
  1375. m_Curve:
  1376. - serializedVersion: 3
  1377. time: 0
  1378. value: 0
  1379. inSlope: 0
  1380. outSlope: 0
  1381. tangentMode: 0
  1382. weightedMode: 0
  1383. inWeight: 0.33333334
  1384. outWeight: 0.33333334
  1385. m_PreInfinity: 2
  1386. m_PostInfinity: 2
  1387. m_RotationOrder: 4
  1388. spreadCustomCurve:
  1389. serializedVersion: 2
  1390. m_Curve:
  1391. - serializedVersion: 3
  1392. time: 0
  1393. value: 0
  1394. inSlope: 0
  1395. outSlope: 0
  1396. tangentMode: 0
  1397. weightedMode: 0
  1398. inWeight: 0.33333334
  1399. outWeight: 0.33333334
  1400. m_PreInfinity: 2
  1401. m_PostInfinity: 2
  1402. m_RotationOrder: 4
  1403. reverbZoneMixCustomCurve:
  1404. serializedVersion: 2
  1405. m_Curve:
  1406. - serializedVersion: 3
  1407. time: 0
  1408. value: 1
  1409. inSlope: 0
  1410. outSlope: 0
  1411. tangentMode: 0
  1412. weightedMode: 0
  1413. inWeight: 0.33333334
  1414. outWeight: 0.33333334
  1415. m_PreInfinity: 2
  1416. m_PostInfinity: 2
  1417. m_RotationOrder: 4
  1418. --- !u!4 &587693938
  1419. Transform:
  1420. m_ObjectHideFlags: 0
  1421. m_CorrespondingSourceObject: {fileID: 0}
  1422. m_PrefabInstance: {fileID: 0}
  1423. m_PrefabAsset: {fileID: 0}
  1424. m_GameObject: {fileID: 587693936}
  1425. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1426. m_LocalPosition: {x: 113.82237, y: 444.7848, z: -0.5173562}
  1427. m_LocalScale: {x: 1, y: 1, z: 1}
  1428. m_ConstrainProportionsScale: 0
  1429. m_Children: []
  1430. m_Father: {fileID: 0}
  1431. m_RootOrder: 1
  1432. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1433. --- !u!1001 &695638983
  1434. PrefabInstance:
  1435. m_ObjectHideFlags: 0
  1436. serializedVersion: 2
  1437. m_Modification:
  1438. m_TransformParent: {fileID: 1762191145}
  1439. m_Modifications:
  1440. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1441. type: 3}
  1442. propertyPath: m_Pivot.x
  1443. value: 0.5
  1444. objectReference: {fileID: 0}
  1445. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1446. type: 3}
  1447. propertyPath: m_Pivot.y
  1448. value: 0.5
  1449. objectReference: {fileID: 0}
  1450. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1451. type: 3}
  1452. propertyPath: m_RootOrder
  1453. value: 1
  1454. objectReference: {fileID: 0}
  1455. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1456. type: 3}
  1457. propertyPath: m_AnchorMax.x
  1458. value: 0
  1459. objectReference: {fileID: 0}
  1460. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1461. type: 3}
  1462. propertyPath: m_AnchorMax.y
  1463. value: 0
  1464. objectReference: {fileID: 0}
  1465. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1466. type: 3}
  1467. propertyPath: m_AnchorMin.x
  1468. value: 0
  1469. objectReference: {fileID: 0}
  1470. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1471. type: 3}
  1472. propertyPath: m_AnchorMin.y
  1473. value: 0
  1474. objectReference: {fileID: 0}
  1475. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1476. type: 3}
  1477. propertyPath: m_SizeDelta.x
  1478. value: 0
  1479. objectReference: {fileID: 0}
  1480. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1481. type: 3}
  1482. propertyPath: m_SizeDelta.y
  1483. value: 0
  1484. objectReference: {fileID: 0}
  1485. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1486. type: 3}
  1487. propertyPath: m_LocalPosition.x
  1488. value: 0
  1489. objectReference: {fileID: 0}
  1490. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1491. type: 3}
  1492. propertyPath: m_LocalPosition.y
  1493. value: 0
  1494. objectReference: {fileID: 0}
  1495. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1496. type: 3}
  1497. propertyPath: m_LocalPosition.z
  1498. value: 0
  1499. objectReference: {fileID: 0}
  1500. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1501. type: 3}
  1502. propertyPath: m_LocalRotation.w
  1503. value: 1
  1504. objectReference: {fileID: 0}
  1505. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1506. type: 3}
  1507. propertyPath: m_LocalRotation.x
  1508. value: 0
  1509. objectReference: {fileID: 0}
  1510. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1511. type: 3}
  1512. propertyPath: m_LocalRotation.y
  1513. value: 0
  1514. objectReference: {fileID: 0}
  1515. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1516. type: 3}
  1517. propertyPath: m_LocalRotation.z
  1518. value: 0
  1519. objectReference: {fileID: 0}
  1520. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1521. type: 3}
  1522. propertyPath: m_AnchoredPosition.x
  1523. value: 0
  1524. objectReference: {fileID: 0}
  1525. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1526. type: 3}
  1527. propertyPath: m_AnchoredPosition.y
  1528. value: 0
  1529. objectReference: {fileID: 0}
  1530. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1531. type: 3}
  1532. propertyPath: m_LocalEulerAnglesHint.x
  1533. value: 0
  1534. objectReference: {fileID: 0}
  1535. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1536. type: 3}
  1537. propertyPath: m_LocalEulerAnglesHint.y
  1538. value: 0
  1539. objectReference: {fileID: 0}
  1540. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1541. type: 3}
  1542. propertyPath: m_LocalEulerAnglesHint.z
  1543. value: 0
  1544. objectReference: {fileID: 0}
  1545. - target: {fileID: 8396944020726690285, guid: c913bcba93a277649acf924959bfbce8,
  1546. type: 3}
  1547. propertyPath: m_Name
  1548. value: Play Long Block
  1549. objectReference: {fileID: 0}
  1550. - target: {fileID: 8396944021317043557, guid: c913bcba93a277649acf924959bfbce8,
  1551. type: 3}
  1552. propertyPath: m_Text
  1553. value: "\u64AD\u653E\u957F\u97F3\u9891"
  1554. objectReference: {fileID: 0}
  1555. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1556. type: 3}
  1557. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
  1558. value: 1
  1559. objectReference: {fileID: 0}
  1560. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1561. type: 3}
  1562. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
  1563. value: 1
  1564. objectReference: {fileID: 0}
  1565. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1566. type: 3}
  1567. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  1568. value:
  1569. objectReference: {fileID: 1396553306}
  1570. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1571. type: 3}
  1572. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
  1573. value: 2
  1574. objectReference: {fileID: 0}
  1575. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1576. type: 3}
  1577. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
  1578. value: PlayLong
  1579. objectReference: {fileID: 0}
  1580. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1581. type: 3}
  1582. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
  1583. value: UnityEngine.Object, UnityEngine
  1584. objectReference: {fileID: 0}
  1585. m_RemovedComponents: []
  1586. m_SourcePrefab: {fileID: 100100000, guid: c913bcba93a277649acf924959bfbce8, type: 3}
  1587. --- !u!224 &695638984 stripped
  1588. RectTransform:
  1589. m_CorrespondingSourceObject: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1590. type: 3}
  1591. m_PrefabInstance: {fileID: 695638983}
  1592. m_PrefabAsset: {fileID: 0}
  1593. --- !u!1001 &763119797
  1594. PrefabInstance:
  1595. m_ObjectHideFlags: 0
  1596. serializedVersion: 2
  1597. m_Modification:
  1598. m_TransformParent: {fileID: 1762191145}
  1599. m_Modifications:
  1600. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1601. type: 3}
  1602. propertyPath: m_Pivot.x
  1603. value: 0.5
  1604. objectReference: {fileID: 0}
  1605. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1606. type: 3}
  1607. propertyPath: m_Pivot.y
  1608. value: 0.5
  1609. objectReference: {fileID: 0}
  1610. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1611. type: 3}
  1612. propertyPath: m_RootOrder
  1613. value: 0
  1614. objectReference: {fileID: 0}
  1615. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1616. type: 3}
  1617. propertyPath: m_AnchorMax.x
  1618. value: 0
  1619. objectReference: {fileID: 0}
  1620. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1621. type: 3}
  1622. propertyPath: m_AnchorMax.y
  1623. value: 0
  1624. objectReference: {fileID: 0}
  1625. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1626. type: 3}
  1627. propertyPath: m_AnchorMin.x
  1628. value: 0
  1629. objectReference: {fileID: 0}
  1630. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1631. type: 3}
  1632. propertyPath: m_AnchorMin.y
  1633. value: 0
  1634. objectReference: {fileID: 0}
  1635. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1636. type: 3}
  1637. propertyPath: m_SizeDelta.x
  1638. value: 0
  1639. objectReference: {fileID: 0}
  1640. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1641. type: 3}
  1642. propertyPath: m_SizeDelta.y
  1643. value: 0
  1644. objectReference: {fileID: 0}
  1645. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1646. type: 3}
  1647. propertyPath: m_LocalPosition.x
  1648. value: 0
  1649. objectReference: {fileID: 0}
  1650. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1651. type: 3}
  1652. propertyPath: m_LocalPosition.y
  1653. value: 0
  1654. objectReference: {fileID: 0}
  1655. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1656. type: 3}
  1657. propertyPath: m_LocalPosition.z
  1658. value: 0
  1659. objectReference: {fileID: 0}
  1660. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1661. type: 3}
  1662. propertyPath: m_LocalRotation.w
  1663. value: 1
  1664. objectReference: {fileID: 0}
  1665. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1666. type: 3}
  1667. propertyPath: m_LocalRotation.x
  1668. value: 0
  1669. objectReference: {fileID: 0}
  1670. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1671. type: 3}
  1672. propertyPath: m_LocalRotation.y
  1673. value: 0
  1674. objectReference: {fileID: 0}
  1675. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1676. type: 3}
  1677. propertyPath: m_LocalRotation.z
  1678. value: 0
  1679. objectReference: {fileID: 0}
  1680. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1681. type: 3}
  1682. propertyPath: m_AnchoredPosition.x
  1683. value: 0
  1684. objectReference: {fileID: 0}
  1685. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1686. type: 3}
  1687. propertyPath: m_AnchoredPosition.y
  1688. value: 0
  1689. objectReference: {fileID: 0}
  1690. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1691. type: 3}
  1692. propertyPath: m_LocalEulerAnglesHint.x
  1693. value: 0
  1694. objectReference: {fileID: 0}
  1695. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1696. type: 3}
  1697. propertyPath: m_LocalEulerAnglesHint.y
  1698. value: 0
  1699. objectReference: {fileID: 0}
  1700. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1701. type: 3}
  1702. propertyPath: m_LocalEulerAnglesHint.z
  1703. value: 0
  1704. objectReference: {fileID: 0}
  1705. - target: {fileID: 8396944020726690285, guid: c913bcba93a277649acf924959bfbce8,
  1706. type: 3}
  1707. propertyPath: m_Name
  1708. value: Play Short Block
  1709. objectReference: {fileID: 0}
  1710. - target: {fileID: 8396944021317043557, guid: c913bcba93a277649acf924959bfbce8,
  1711. type: 3}
  1712. propertyPath: m_Text
  1713. value: "\u64AD\u653E\u77ED\u97F3\u9891"
  1714. objectReference: {fileID: 0}
  1715. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1716. type: 3}
  1717. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
  1718. value: 1
  1719. objectReference: {fileID: 0}
  1720. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1721. type: 3}
  1722. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
  1723. value: 1
  1724. objectReference: {fileID: 0}
  1725. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1726. type: 3}
  1727. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  1728. value:
  1729. objectReference: {fileID: 1396553306}
  1730. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1731. type: 3}
  1732. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
  1733. value: 2
  1734. objectReference: {fileID: 0}
  1735. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1736. type: 3}
  1737. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
  1738. value: PlayShort
  1739. objectReference: {fileID: 0}
  1740. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  1741. type: 3}
  1742. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
  1743. value: UnityEngine.Object, UnityEngine
  1744. objectReference: {fileID: 0}
  1745. m_RemovedComponents: []
  1746. m_SourcePrefab: {fileID: 100100000, guid: c913bcba93a277649acf924959bfbce8, type: 3}
  1747. --- !u!224 &763119798 stripped
  1748. RectTransform:
  1749. m_CorrespondingSourceObject: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  1750. type: 3}
  1751. m_PrefabInstance: {fileID: 763119797}
  1752. m_PrefabAsset: {fileID: 0}
  1753. --- !u!1 &796889228
  1754. GameObject:
  1755. m_ObjectHideFlags: 0
  1756. m_CorrespondingSourceObject: {fileID: 0}
  1757. m_PrefabInstance: {fileID: 0}
  1758. m_PrefabAsset: {fileID: 0}
  1759. serializedVersion: 6
  1760. m_Component:
  1761. - component: {fileID: 796889229}
  1762. - component: {fileID: 796889231}
  1763. - component: {fileID: 796889230}
  1764. m_Layer: 5
  1765. m_Name: Image
  1766. m_TagString: Untagged
  1767. m_Icon: {fileID: 0}
  1768. m_NavMeshLayer: 0
  1769. m_StaticEditorFlags: 0
  1770. m_IsActive: 1
  1771. --- !u!224 &796889229
  1772. RectTransform:
  1773. m_ObjectHideFlags: 0
  1774. m_CorrespondingSourceObject: {fileID: 0}
  1775. m_PrefabInstance: {fileID: 0}
  1776. m_PrefabAsset: {fileID: 0}
  1777. m_GameObject: {fileID: 796889228}
  1778. m_LocalRotation: {x: -0, y: 0, z: 0, w: 1}
  1779. m_LocalPosition: {x: 0, y: 0, z: 0}
  1780. m_LocalScale: {x: -1, y: 1, z: 1}
  1781. m_ConstrainProportionsScale: 0
  1782. m_Children: []
  1783. m_Father: {fileID: 2055780001}
  1784. m_RootOrder: 0
  1785. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1786. m_AnchorMin: {x: 0, y: 1}
  1787. m_AnchorMax: {x: 0, y: 1}
  1788. m_AnchoredPosition: {x: 150, y: -150}
  1789. m_SizeDelta: {x: 72, y: 72}
  1790. m_Pivot: {x: 0, y: 0.5}
  1791. --- !u!114 &796889230
  1792. MonoBehaviour:
  1793. m_ObjectHideFlags: 0
  1794. m_CorrespondingSourceObject: {fileID: 0}
  1795. m_PrefabInstance: {fileID: 0}
  1796. m_PrefabAsset: {fileID: 0}
  1797. m_GameObject: {fileID: 796889228}
  1798. m_Enabled: 1
  1799. m_EditorHideFlags: 0
  1800. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1801. m_Name:
  1802. m_EditorClassIdentifier:
  1803. m_Material: {fileID: 0}
  1804. m_Color: {r: 1, g: 1, b: 1, a: 1}
  1805. m_RaycastTarget: 1
  1806. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  1807. m_Maskable: 1
  1808. m_OnCullStateChanged:
  1809. m_PersistentCalls:
  1810. m_Calls: []
  1811. m_Sprite: {fileID: 21300000, guid: b1a5e6c3cca1748e0a56f2485c899ceb, type: 3}
  1812. m_Type: 0
  1813. m_PreserveAspect: 0
  1814. m_FillCenter: 1
  1815. m_FillMethod: 4
  1816. m_FillAmount: 1
  1817. m_FillClockwise: 1
  1818. m_FillOrigin: 0
  1819. m_UseSpriteMesh: 0
  1820. m_PixelsPerUnitMultiplier: 1
  1821. --- !u!222 &796889231
  1822. CanvasRenderer:
  1823. m_ObjectHideFlags: 0
  1824. m_CorrespondingSourceObject: {fileID: 0}
  1825. m_PrefabInstance: {fileID: 0}
  1826. m_PrefabAsset: {fileID: 0}
  1827. m_GameObject: {fileID: 796889228}
  1828. m_CullTransparentMesh: 0
  1829. --- !u!1 &980365816
  1830. GameObject:
  1831. m_ObjectHideFlags: 0
  1832. m_CorrespondingSourceObject: {fileID: 0}
  1833. m_PrefabInstance: {fileID: 0}
  1834. m_PrefabAsset: {fileID: 0}
  1835. serializedVersion: 6
  1836. m_Component:
  1837. - component: {fileID: 980365817}
  1838. - component: {fileID: 980365819}
  1839. - component: {fileID: 980365818}
  1840. m_Layer: 5
  1841. m_Name: Background
  1842. m_TagString: Untagged
  1843. m_Icon: {fileID: 0}
  1844. m_NavMeshLayer: 0
  1845. m_StaticEditorFlags: 0
  1846. m_IsActive: 1
  1847. --- !u!224 &980365817
  1848. RectTransform:
  1849. m_ObjectHideFlags: 0
  1850. m_CorrespondingSourceObject: {fileID: 0}
  1851. m_PrefabInstance: {fileID: 0}
  1852. m_PrefabAsset: {fileID: 0}
  1853. m_GameObject: {fileID: 980365816}
  1854. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1855. m_LocalPosition: {x: 0, y: 0, z: 0}
  1856. m_LocalScale: {x: 1, y: 1, z: 1}
  1857. m_ConstrainProportionsScale: 0
  1858. m_Children: []
  1859. m_Father: {fileID: 1396553310}
  1860. m_RootOrder: 0
  1861. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1862. m_AnchorMin: {x: 0, y: 0}
  1863. m_AnchorMax: {x: 1, y: 1}
  1864. m_AnchoredPosition: {x: 0, y: 0}
  1865. m_SizeDelta: {x: 0, y: 0}
  1866. m_Pivot: {x: 0.5, y: 0.5}
  1867. --- !u!114 &980365818
  1868. MonoBehaviour:
  1869. m_ObjectHideFlags: 0
  1870. m_CorrespondingSourceObject: {fileID: 0}
  1871. m_PrefabInstance: {fileID: 0}
  1872. m_PrefabAsset: {fileID: 0}
  1873. m_GameObject: {fileID: 980365816}
  1874. m_Enabled: 1
  1875. m_EditorHideFlags: 0
  1876. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  1877. m_Name:
  1878. m_EditorClassIdentifier:
  1879. m_Material: {fileID: 0}
  1880. m_Color: {r: 0.96470594, g: 0.96470594, b: 0.96470594, a: 1}
  1881. m_RaycastTarget: 0
  1882. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  1883. m_Maskable: 1
  1884. m_OnCullStateChanged:
  1885. m_PersistentCalls:
  1886. m_Calls: []
  1887. m_Sprite: {fileID: 0}
  1888. m_Type: 1
  1889. m_PreserveAspect: 0
  1890. m_FillCenter: 1
  1891. m_FillMethod: 4
  1892. m_FillAmount: 1
  1893. m_FillClockwise: 1
  1894. m_FillOrigin: 0
  1895. m_UseSpriteMesh: 0
  1896. m_PixelsPerUnitMultiplier: 1
  1897. --- !u!222 &980365819
  1898. CanvasRenderer:
  1899. m_ObjectHideFlags: 0
  1900. m_CorrespondingSourceObject: {fileID: 0}
  1901. m_PrefabInstance: {fileID: 0}
  1902. m_PrefabAsset: {fileID: 0}
  1903. m_GameObject: {fileID: 980365816}
  1904. m_CullTransparentMesh: 0
  1905. --- !u!1 &1159140099
  1906. GameObject:
  1907. m_ObjectHideFlags: 0
  1908. m_CorrespondingSourceObject: {fileID: 0}
  1909. m_PrefabInstance: {fileID: 0}
  1910. m_PrefabAsset: {fileID: 0}
  1911. serializedVersion: 6
  1912. m_Component:
  1913. - component: {fileID: 1159140102}
  1914. - component: {fileID: 1159140101}
  1915. - component: {fileID: 1159140100}
  1916. m_Layer: 0
  1917. m_Name: Main Camera
  1918. m_TagString: MainCamera
  1919. m_Icon: {fileID: 0}
  1920. m_NavMeshLayer: 0
  1921. m_StaticEditorFlags: 0
  1922. m_IsActive: 1
  1923. --- !u!81 &1159140100
  1924. AudioListener:
  1925. m_ObjectHideFlags: 0
  1926. m_CorrespondingSourceObject: {fileID: 0}
  1927. m_PrefabInstance: {fileID: 0}
  1928. m_PrefabAsset: {fileID: 0}
  1929. m_GameObject: {fileID: 1159140099}
  1930. m_Enabled: 1
  1931. --- !u!20 &1159140101
  1932. Camera:
  1933. m_ObjectHideFlags: 0
  1934. m_CorrespondingSourceObject: {fileID: 0}
  1935. m_PrefabInstance: {fileID: 0}
  1936. m_PrefabAsset: {fileID: 0}
  1937. m_GameObject: {fileID: 1159140099}
  1938. m_Enabled: 1
  1939. serializedVersion: 2
  1940. m_ClearFlags: 1
  1941. m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
  1942. m_projectionMatrixMode: 1
  1943. m_GateFitMode: 2
  1944. m_FOVAxisMode: 0
  1945. m_SensorSize: {x: 36, y: 24}
  1946. m_LensShift: {x: 0, y: 0}
  1947. m_FocalLength: 50
  1948. m_NormalizedViewPortRect:
  1949. serializedVersion: 2
  1950. x: 0
  1951. y: 0
  1952. width: 1
  1953. height: 1
  1954. near clip plane: 0.3
  1955. far clip plane: 1000
  1956. field of view: 60
  1957. orthographic: 0
  1958. orthographic size: 5
  1959. m_Depth: -1
  1960. m_CullingMask:
  1961. serializedVersion: 2
  1962. m_Bits: 4294967295
  1963. m_RenderingPath: -1
  1964. m_TargetTexture: {fileID: 0}
  1965. m_TargetDisplay: 0
  1966. m_TargetEye: 3
  1967. m_HDR: 1
  1968. m_AllowMSAA: 1
  1969. m_AllowDynamicResolution: 0
  1970. m_ForceIntoRT: 0
  1971. m_OcclusionCulling: 1
  1972. m_StereoConvergence: 10
  1973. m_StereoSeparation: 0.022
  1974. --- !u!4 &1159140102
  1975. Transform:
  1976. m_ObjectHideFlags: 0
  1977. m_CorrespondingSourceObject: {fileID: 0}
  1978. m_PrefabInstance: {fileID: 0}
  1979. m_PrefabAsset: {fileID: 0}
  1980. m_GameObject: {fileID: 1159140099}
  1981. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1982. m_LocalPosition: {x: 0, y: 1, z: -10}
  1983. m_LocalScale: {x: 1, y: 1, z: 1}
  1984. m_ConstrainProportionsScale: 0
  1985. m_Children: []
  1986. m_Father: {fileID: 0}
  1987. m_RootOrder: 0
  1988. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1989. --- !u!1 &1242671060
  1990. GameObject:
  1991. m_ObjectHideFlags: 0
  1992. m_CorrespondingSourceObject: {fileID: 0}
  1993. m_PrefabInstance: {fileID: 0}
  1994. m_PrefabAsset: {fileID: 0}
  1995. serializedVersion: 6
  1996. m_Component:
  1997. - component: {fileID: 1242671061}
  1998. - component: {fileID: 1242671064}
  1999. - component: {fileID: 1242671063}
  2000. - component: {fileID: 1242671062}
  2001. m_Layer: 5
  2002. m_Name: Gap Block
  2003. m_TagString: Untagged
  2004. m_Icon: {fileID: 0}
  2005. m_NavMeshLayer: 0
  2006. m_StaticEditorFlags: 0
  2007. m_IsActive: 1
  2008. --- !u!224 &1242671061
  2009. RectTransform:
  2010. m_ObjectHideFlags: 0
  2011. m_CorrespondingSourceObject: {fileID: 0}
  2012. m_PrefabInstance: {fileID: 0}
  2013. m_PrefabAsset: {fileID: 0}
  2014. m_GameObject: {fileID: 1242671060}
  2015. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  2016. m_LocalPosition: {x: 0, y: 0, z: 0}
  2017. m_LocalScale: {x: 1, y: 1, z: 1}
  2018. m_ConstrainProportionsScale: 0
  2019. m_Children: []
  2020. m_Father: {fileID: 19015508}
  2021. m_RootOrder: 2
  2022. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2023. m_AnchorMin: {x: 0, y: 0}
  2024. m_AnchorMax: {x: 0, y: 0}
  2025. m_AnchoredPosition: {x: 0, y: 0}
  2026. m_SizeDelta: {x: 0, y: 0}
  2027. m_Pivot: {x: 0.5, y: 0.5}
  2028. --- !u!114 &1242671062
  2029. MonoBehaviour:
  2030. m_ObjectHideFlags: 0
  2031. m_CorrespondingSourceObject: {fileID: 0}
  2032. m_PrefabInstance: {fileID: 0}
  2033. m_PrefabAsset: {fileID: 0}
  2034. m_GameObject: {fileID: 1242671060}
  2035. m_Enabled: 1
  2036. m_EditorHideFlags: 0
  2037. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2038. m_Name:
  2039. m_EditorClassIdentifier:
  2040. m_Material: {fileID: 0}
  2041. m_Color: {r: 1, g: 1, b: 1, a: 0}
  2042. m_RaycastTarget: 1
  2043. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  2044. m_Maskable: 1
  2045. m_OnCullStateChanged:
  2046. m_PersistentCalls:
  2047. m_Calls: []
  2048. m_Sprite: {fileID: 0}
  2049. m_Type: 0
  2050. m_PreserveAspect: 0
  2051. m_FillCenter: 1
  2052. m_FillMethod: 4
  2053. m_FillAmount: 1
  2054. m_FillClockwise: 1
  2055. m_FillOrigin: 0
  2056. m_UseSpriteMesh: 0
  2057. m_PixelsPerUnitMultiplier: 1
  2058. --- !u!222 &1242671063
  2059. CanvasRenderer:
  2060. m_ObjectHideFlags: 0
  2061. m_CorrespondingSourceObject: {fileID: 0}
  2062. m_PrefabInstance: {fileID: 0}
  2063. m_PrefabAsset: {fileID: 0}
  2064. m_GameObject: {fileID: 1242671060}
  2065. m_CullTransparentMesh: 0
  2066. --- !u!114 &1242671064
  2067. MonoBehaviour:
  2068. m_ObjectHideFlags: 0
  2069. m_CorrespondingSourceObject: {fileID: 0}
  2070. m_PrefabInstance: {fileID: 0}
  2071. m_PrefabAsset: {fileID: 0}
  2072. m_GameObject: {fileID: 1242671060}
  2073. m_Enabled: 1
  2074. m_EditorHideFlags: 0
  2075. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  2076. m_Name:
  2077. m_EditorClassIdentifier:
  2078. m_IgnoreLayout: 0
  2079. m_MinWidth: -1
  2080. m_MinHeight: -1
  2081. m_PreferredWidth: -1
  2082. m_PreferredHeight: 20
  2083. m_FlexibleWidth: 1
  2084. m_FlexibleHeight: -1
  2085. m_LayoutPriority: 1
  2086. --- !u!1 &1377911772
  2087. GameObject:
  2088. m_ObjectHideFlags: 0
  2089. m_CorrespondingSourceObject: {fileID: 0}
  2090. m_PrefabInstance: {fileID: 0}
  2091. m_PrefabAsset: {fileID: 0}
  2092. serializedVersion: 6
  2093. m_Component:
  2094. - component: {fileID: 1377911773}
  2095. - component: {fileID: 1377911776}
  2096. - component: {fileID: 1377911775}
  2097. - component: {fileID: 1377911774}
  2098. m_Layer: 5
  2099. m_Name: Viewport
  2100. m_TagString: Untagged
  2101. m_Icon: {fileID: 0}
  2102. m_NavMeshLayer: 0
  2103. m_StaticEditorFlags: 0
  2104. m_IsActive: 1
  2105. --- !u!224 &1377911773
  2106. RectTransform:
  2107. m_ObjectHideFlags: 0
  2108. m_CorrespondingSourceObject: {fileID: 0}
  2109. m_PrefabInstance: {fileID: 0}
  2110. m_PrefabAsset: {fileID: 0}
  2111. m_GameObject: {fileID: 1377911772}
  2112. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2113. m_LocalPosition: {x: 0, y: 0, z: 0}
  2114. m_LocalScale: {x: 1, y: 1, z: 1}
  2115. m_ConstrainProportionsScale: 0
  2116. m_Children:
  2117. - {fileID: 19015508}
  2118. m_Father: {fileID: 88306112}
  2119. m_RootOrder: 0
  2120. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2121. m_AnchorMin: {x: 0, y: 0}
  2122. m_AnchorMax: {x: 1, y: 1}
  2123. m_AnchoredPosition: {x: 0, y: 0}
  2124. m_SizeDelta: {x: 0, y: 0}
  2125. m_Pivot: {x: 0, y: 1}
  2126. --- !u!114 &1377911774
  2127. MonoBehaviour:
  2128. m_ObjectHideFlags: 0
  2129. m_CorrespondingSourceObject: {fileID: 0}
  2130. m_PrefabInstance: {fileID: 0}
  2131. m_PrefabAsset: {fileID: 0}
  2132. m_GameObject: {fileID: 1377911772}
  2133. m_Enabled: 1
  2134. m_EditorHideFlags: 0
  2135. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  2136. m_Name:
  2137. m_EditorClassIdentifier:
  2138. m_Material: {fileID: 0}
  2139. m_Color: {r: 1, g: 1, b: 1, a: 1}
  2140. m_RaycastTarget: 0
  2141. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  2142. m_Maskable: 1
  2143. m_OnCullStateChanged:
  2144. m_PersistentCalls:
  2145. m_Calls: []
  2146. m_Sprite: {fileID: 0}
  2147. m_Type: 1
  2148. m_PreserveAspect: 0
  2149. m_FillCenter: 1
  2150. m_FillMethod: 4
  2151. m_FillAmount: 1
  2152. m_FillClockwise: 1
  2153. m_FillOrigin: 0
  2154. m_UseSpriteMesh: 0
  2155. m_PixelsPerUnitMultiplier: 1
  2156. --- !u!222 &1377911775
  2157. CanvasRenderer:
  2158. m_ObjectHideFlags: 0
  2159. m_CorrespondingSourceObject: {fileID: 0}
  2160. m_PrefabInstance: {fileID: 0}
  2161. m_PrefabAsset: {fileID: 0}
  2162. m_GameObject: {fileID: 1377911772}
  2163. m_CullTransparentMesh: 0
  2164. --- !u!114 &1377911776
  2165. MonoBehaviour:
  2166. m_ObjectHideFlags: 0
  2167. m_CorrespondingSourceObject: {fileID: 0}
  2168. m_PrefabInstance: {fileID: 0}
  2169. m_PrefabAsset: {fileID: 0}
  2170. m_GameObject: {fileID: 1377911772}
  2171. m_Enabled: 1
  2172. m_EditorHideFlags: 0
  2173. m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3}
  2174. m_Name:
  2175. m_EditorClassIdentifier:
  2176. m_ShowMaskGraphic: 0
  2177. --- !u!1 &1396553305
  2178. GameObject:
  2179. m_ObjectHideFlags: 0
  2180. m_CorrespondingSourceObject: {fileID: 0}
  2181. m_PrefabInstance: {fileID: 0}
  2182. m_PrefabAsset: {fileID: 0}
  2183. serializedVersion: 6
  2184. m_Component:
  2185. - component: {fileID: 1396553310}
  2186. - component: {fileID: 1396553309}
  2187. - component: {fileID: 1396553308}
  2188. - component: {fileID: 1396553307}
  2189. - component: {fileID: 1396553306}
  2190. m_Layer: 5
  2191. m_Name: Details Canvas
  2192. m_TagString: Untagged
  2193. m_Icon: {fileID: 0}
  2194. m_NavMeshLayer: 0
  2195. m_StaticEditorFlags: 0
  2196. m_IsActive: 1
  2197. --- !u!114 &1396553306
  2198. MonoBehaviour:
  2199. m_ObjectHideFlags: 0
  2200. m_CorrespondingSourceObject: {fileID: 0}
  2201. m_PrefabInstance: {fileID: 0}
  2202. m_PrefabAsset: {fileID: 0}
  2203. m_GameObject: {fileID: 1396553305}
  2204. m_Enabled: 1
  2205. m_EditorHideFlags: 0
  2206. m_Script: {fileID: 11500000, guid: 20c6ab6070ef1430b8545aecc52c403e, type: 3}
  2207. m_Name:
  2208. m_EditorClassIdentifier:
  2209. AudioSource: {fileID: 587693937}
  2210. AudioClipLong: {fileID: 8300000, guid: 1e6a678be2ba6419d81b2ca68c1d3976, type: 3}
  2211. AudioClipShort: {fileID: 8300000, guid: e0c968dc038b2494b9ce6dc2e39358ab, type: 3}
  2212. --- !u!114 &1396553307
  2213. MonoBehaviour:
  2214. m_ObjectHideFlags: 0
  2215. m_CorrespondingSourceObject: {fileID: 0}
  2216. m_PrefabInstance: {fileID: 0}
  2217. m_PrefabAsset: {fileID: 0}
  2218. m_GameObject: {fileID: 1396553305}
  2219. m_Enabled: 1
  2220. m_EditorHideFlags: 0
  2221. m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
  2222. m_Name:
  2223. m_EditorClassIdentifier:
  2224. m_IgnoreReversedGraphics: 1
  2225. m_BlockingObjects: 0
  2226. m_BlockingMask:
  2227. serializedVersion: 2
  2228. m_Bits: 4294967295
  2229. --- !u!114 &1396553308
  2230. MonoBehaviour:
  2231. m_ObjectHideFlags: 0
  2232. m_CorrespondingSourceObject: {fileID: 0}
  2233. m_PrefabInstance: {fileID: 0}
  2234. m_PrefabAsset: {fileID: 0}
  2235. m_GameObject: {fileID: 1396553305}
  2236. m_Enabled: 1
  2237. m_EditorHideFlags: 0
  2238. m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
  2239. m_Name:
  2240. m_EditorClassIdentifier:
  2241. m_UiScaleMode: 1
  2242. m_ReferencePixelsPerUnit: 100
  2243. m_ScaleFactor: 1
  2244. m_ReferenceResolution: {x: 1080, y: 1920}
  2245. m_ScreenMatchMode: 0
  2246. m_MatchWidthOrHeight: 0.5
  2247. m_PhysicalUnit: 3
  2248. m_FallbackScreenDPI: 96
  2249. m_DefaultSpriteDPI: 96
  2250. m_DynamicPixelsPerUnit: 1
  2251. m_PresetInfoIsWorld: 0
  2252. --- !u!223 &1396553309
  2253. Canvas:
  2254. m_ObjectHideFlags: 0
  2255. m_CorrespondingSourceObject: {fileID: 0}
  2256. m_PrefabInstance: {fileID: 0}
  2257. m_PrefabAsset: {fileID: 0}
  2258. m_GameObject: {fileID: 1396553305}
  2259. m_Enabled: 1
  2260. serializedVersion: 3
  2261. m_RenderMode: 0
  2262. m_Camera: {fileID: 0}
  2263. m_PlaneDistance: 100
  2264. m_PixelPerfect: 0
  2265. m_ReceivesEvents: 1
  2266. m_OverrideSorting: 0
  2267. m_OverridePixelPerfect: 0
  2268. m_SortingBucketNormalizedSize: 0
  2269. m_VertexColorAlwaysGammaSpace: 0
  2270. m_AdditionalShaderChannelsFlag: 0
  2271. m_SortingLayerID: 0
  2272. m_SortingOrder: 0
  2273. m_TargetDisplay: 0
  2274. --- !u!224 &1396553310
  2275. RectTransform:
  2276. m_ObjectHideFlags: 0
  2277. m_CorrespondingSourceObject: {fileID: 0}
  2278. m_PrefabInstance: {fileID: 0}
  2279. m_PrefabAsset: {fileID: 0}
  2280. m_GameObject: {fileID: 1396553305}
  2281. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2282. m_LocalPosition: {x: 0, y: 0, z: 0}
  2283. m_LocalScale: {x: 0, y: 0, z: 0}
  2284. m_ConstrainProportionsScale: 0
  2285. m_Children:
  2286. - {fileID: 980365817}
  2287. - {fileID: 287533383}
  2288. m_Father: {fileID: 0}
  2289. m_RootOrder: 2
  2290. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2291. m_AnchorMin: {x: 0, y: 0}
  2292. m_AnchorMax: {x: 0, y: 0}
  2293. m_AnchoredPosition: {x: 0, y: 0}
  2294. m_SizeDelta: {x: 0, y: 0}
  2295. m_Pivot: {x: 0, y: 0}
  2296. --- !u!1 &1400629636
  2297. GameObject:
  2298. m_ObjectHideFlags: 0
  2299. m_CorrespondingSourceObject: {fileID: 0}
  2300. m_PrefabInstance: {fileID: 0}
  2301. m_PrefabAsset: {fileID: 0}
  2302. serializedVersion: 6
  2303. m_Component:
  2304. - component: {fileID: 1400629637}
  2305. - component: {fileID: 1400629640}
  2306. - component: {fileID: 1400629639}
  2307. - component: {fileID: 1400629638}
  2308. m_Layer: 5
  2309. m_Name: Text
  2310. m_TagString: Untagged
  2311. m_Icon: {fileID: 0}
  2312. m_NavMeshLayer: 0
  2313. m_StaticEditorFlags: 0
  2314. m_IsActive: 1
  2315. --- !u!224 &1400629637
  2316. RectTransform:
  2317. m_ObjectHideFlags: 0
  2318. m_CorrespondingSourceObject: {fileID: 0}
  2319. m_PrefabInstance: {fileID: 0}
  2320. m_PrefabAsset: {fileID: 0}
  2321. m_GameObject: {fileID: 1400629636}
  2322. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  2323. m_LocalPosition: {x: 0, y: 0, z: 0}
  2324. m_LocalScale: {x: 1, y: 1, z: 1}
  2325. m_ConstrainProportionsScale: 0
  2326. m_Children: []
  2327. m_Father: {fileID: 321225463}
  2328. m_RootOrder: 0
  2329. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2330. m_AnchorMin: {x: 0, y: 0}
  2331. m_AnchorMax: {x: 1, y: 1}
  2332. m_AnchoredPosition: {x: 0, y: 0}
  2333. m_SizeDelta: {x: 0, y: 0}
  2334. m_Pivot: {x: 0.5, y: 0.5}
  2335. --- !u!114 &1400629638
  2336. MonoBehaviour:
  2337. m_ObjectHideFlags: 0
  2338. m_CorrespondingSourceObject: {fileID: 0}
  2339. m_PrefabInstance: {fileID: 0}
  2340. m_PrefabAsset: {fileID: 0}
  2341. m_GameObject: {fileID: 1400629636}
  2342. m_Enabled: 1
  2343. m_EditorHideFlags: 0
  2344. m_Script: {fileID: 11500000, guid: ad114bb7e387d46d7a9ad7af676060d0, type: 3}
  2345. m_Name:
  2346. m_EditorClassIdentifier:
  2347. --- !u!114 &1400629639
  2348. MonoBehaviour:
  2349. m_ObjectHideFlags: 0
  2350. m_CorrespondingSourceObject: {fileID: 0}
  2351. m_PrefabInstance: {fileID: 0}
  2352. m_PrefabAsset: {fileID: 0}
  2353. m_GameObject: {fileID: 1400629636}
  2354. m_Enabled: 1
  2355. m_EditorHideFlags: 0
  2356. m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
  2357. m_Name:
  2358. m_EditorClassIdentifier:
  2359. m_Material: {fileID: 0}
  2360. m_Color: {r: 0.7568628, g: 0.7568628, b: 0.7568628, a: 1}
  2361. m_RaycastTarget: 1
  2362. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  2363. m_Maskable: 1
  2364. m_OnCullStateChanged:
  2365. m_PersistentCalls:
  2366. m_Calls: []
  2367. m_FontData:
  2368. m_Font: {fileID: 12800000, guid: 04a37534e45184b62bc44e172e5fe81e, type: 3}
  2369. m_FontSize: 45
  2370. m_FontStyle: 0
  2371. m_BestFit: 0
  2372. m_MinSize: 0
  2373. m_MaxSize: 50
  2374. m_Alignment: 4
  2375. m_AlignByGeometry: 0
  2376. m_RichText: 1
  2377. m_HorizontalOverflow: 0
  2378. m_VerticalOverflow: 0
  2379. m_LineSpacing: 1
  2380. m_Text: Access/AccessSync
  2381. --- !u!222 &1400629640
  2382. CanvasRenderer:
  2383. m_ObjectHideFlags: 0
  2384. m_CorrespondingSourceObject: {fileID: 0}
  2385. m_PrefabInstance: {fileID: 0}
  2386. m_PrefabAsset: {fileID: 0}
  2387. m_GameObject: {fileID: 1400629636}
  2388. m_CullTransparentMesh: 0
  2389. --- !u!1 &1448331931
  2390. GameObject:
  2391. m_ObjectHideFlags: 0
  2392. m_CorrespondingSourceObject: {fileID: 0}
  2393. m_PrefabInstance: {fileID: 0}
  2394. m_PrefabAsset: {fileID: 0}
  2395. serializedVersion: 6
  2396. m_Component:
  2397. - component: {fileID: 1448331934}
  2398. - component: {fileID: 1448331933}
  2399. - component: {fileID: 1448331932}
  2400. m_Layer: 0
  2401. m_Name: EventSystem
  2402. m_TagString: Untagged
  2403. m_Icon: {fileID: 0}
  2404. m_NavMeshLayer: 0
  2405. m_StaticEditorFlags: 0
  2406. m_IsActive: 1
  2407. --- !u!114 &1448331932
  2408. MonoBehaviour:
  2409. m_ObjectHideFlags: 0
  2410. m_CorrespondingSourceObject: {fileID: 0}
  2411. m_PrefabInstance: {fileID: 0}
  2412. m_PrefabAsset: {fileID: 0}
  2413. m_GameObject: {fileID: 1448331931}
  2414. m_Enabled: 1
  2415. m_EditorHideFlags: 0
  2416. m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
  2417. m_Name:
  2418. m_EditorClassIdentifier:
  2419. m_SendPointerHoverToParent: 1
  2420. m_HorizontalAxis: Horizontal
  2421. m_VerticalAxis: Vertical
  2422. m_SubmitButton: Submit
  2423. m_CancelButton: Cancel
  2424. m_InputActionsPerSecond: 10
  2425. m_RepeatDelay: 0.5
  2426. m_ForceModuleActive: 0
  2427. --- !u!114 &1448331933
  2428. MonoBehaviour:
  2429. m_ObjectHideFlags: 0
  2430. m_CorrespondingSourceObject: {fileID: 0}
  2431. m_PrefabInstance: {fileID: 0}
  2432. m_PrefabAsset: {fileID: 0}
  2433. m_GameObject: {fileID: 1448331931}
  2434. m_Enabled: 1
  2435. m_EditorHideFlags: 0
  2436. m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
  2437. m_Name:
  2438. m_EditorClassIdentifier:
  2439. m_FirstSelected: {fileID: 0}
  2440. m_sendNavigationEvents: 1
  2441. m_DragThreshold: 10
  2442. --- !u!4 &1448331934
  2443. Transform:
  2444. m_ObjectHideFlags: 0
  2445. m_CorrespondingSourceObject: {fileID: 0}
  2446. m_PrefabInstance: {fileID: 0}
  2447. m_PrefabAsset: {fileID: 0}
  2448. m_GameObject: {fileID: 1448331931}
  2449. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2450. m_LocalPosition: {x: 0, y: 0, z: 0}
  2451. m_LocalScale: {x: 1, y: 1, z: 1}
  2452. m_ConstrainProportionsScale: 0
  2453. m_Children: []
  2454. m_Father: {fileID: 0}
  2455. m_RootOrder: 3
  2456. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2457. --- !u!1001 &1461574758
  2458. PrefabInstance:
  2459. m_ObjectHideFlags: 0
  2460. serializedVersion: 2
  2461. m_Modification:
  2462. m_TransformParent: {fileID: 1762191145}
  2463. m_Modifications:
  2464. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2465. type: 3}
  2466. propertyPath: m_Pivot.x
  2467. value: 0.5
  2468. objectReference: {fileID: 0}
  2469. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2470. type: 3}
  2471. propertyPath: m_Pivot.y
  2472. value: 0.5
  2473. objectReference: {fileID: 0}
  2474. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2475. type: 3}
  2476. propertyPath: m_RootOrder
  2477. value: 5
  2478. objectReference: {fileID: 0}
  2479. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2480. type: 3}
  2481. propertyPath: m_AnchorMax.x
  2482. value: 0
  2483. objectReference: {fileID: 0}
  2484. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2485. type: 3}
  2486. propertyPath: m_AnchorMax.y
  2487. value: 0
  2488. objectReference: {fileID: 0}
  2489. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2490. type: 3}
  2491. propertyPath: m_AnchorMin.x
  2492. value: 0
  2493. objectReference: {fileID: 0}
  2494. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2495. type: 3}
  2496. propertyPath: m_AnchorMin.y
  2497. value: 0
  2498. objectReference: {fileID: 0}
  2499. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2500. type: 3}
  2501. propertyPath: m_SizeDelta.x
  2502. value: 0
  2503. objectReference: {fileID: 0}
  2504. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2505. type: 3}
  2506. propertyPath: m_SizeDelta.y
  2507. value: 0
  2508. objectReference: {fileID: 0}
  2509. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2510. type: 3}
  2511. propertyPath: m_LocalPosition.x
  2512. value: 0
  2513. objectReference: {fileID: 0}
  2514. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2515. type: 3}
  2516. propertyPath: m_LocalPosition.y
  2517. value: 0
  2518. objectReference: {fileID: 0}
  2519. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2520. type: 3}
  2521. propertyPath: m_LocalPosition.z
  2522. value: 0
  2523. objectReference: {fileID: 0}
  2524. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2525. type: 3}
  2526. propertyPath: m_LocalRotation.w
  2527. value: 1
  2528. objectReference: {fileID: 0}
  2529. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2530. type: 3}
  2531. propertyPath: m_LocalRotation.x
  2532. value: 0
  2533. objectReference: {fileID: 0}
  2534. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2535. type: 3}
  2536. propertyPath: m_LocalRotation.y
  2537. value: 0
  2538. objectReference: {fileID: 0}
  2539. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2540. type: 3}
  2541. propertyPath: m_LocalRotation.z
  2542. value: 0
  2543. objectReference: {fileID: 0}
  2544. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2545. type: 3}
  2546. propertyPath: m_AnchoredPosition.x
  2547. value: 0
  2548. objectReference: {fileID: 0}
  2549. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2550. type: 3}
  2551. propertyPath: m_AnchoredPosition.y
  2552. value: 0
  2553. objectReference: {fileID: 0}
  2554. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2555. type: 3}
  2556. propertyPath: m_LocalEulerAnglesHint.x
  2557. value: 0
  2558. objectReference: {fileID: 0}
  2559. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2560. type: 3}
  2561. propertyPath: m_LocalEulerAnglesHint.y
  2562. value: 0
  2563. objectReference: {fileID: 0}
  2564. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2565. type: 3}
  2566. propertyPath: m_LocalEulerAnglesHint.z
  2567. value: 0
  2568. objectReference: {fileID: 0}
  2569. - target: {fileID: 8396944020726690285, guid: c913bcba93a277649acf924959bfbce8,
  2570. type: 3}
  2571. propertyPath: m_Name
  2572. value: PlayDelayed Block
  2573. objectReference: {fileID: 0}
  2574. - target: {fileID: 8396944021317043557, guid: c913bcba93a277649acf924959bfbce8,
  2575. type: 3}
  2576. propertyPath: m_Text
  2577. value: "\u5EF6\u65F6\u64AD\u653E"
  2578. objectReference: {fileID: 0}
  2579. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2580. type: 3}
  2581. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
  2582. value: 1
  2583. objectReference: {fileID: 0}
  2584. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2585. type: 3}
  2586. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
  2587. value: 1
  2588. objectReference: {fileID: 0}
  2589. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2590. type: 3}
  2591. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  2592. value:
  2593. objectReference: {fileID: 1396553306}
  2594. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2595. type: 3}
  2596. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
  2597. value: 2
  2598. objectReference: {fileID: 0}
  2599. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2600. type: 3}
  2601. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
  2602. value: playDelayed
  2603. objectReference: {fileID: 0}
  2604. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2605. type: 3}
  2606. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName
  2607. value: AudioManager, Assembly-CSharp
  2608. objectReference: {fileID: 0}
  2609. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2610. type: 3}
  2611. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
  2612. value: UnityEngine.Object, UnityEngine
  2613. objectReference: {fileID: 0}
  2614. m_RemovedComponents: []
  2615. m_SourcePrefab: {fileID: 100100000, guid: c913bcba93a277649acf924959bfbce8, type: 3}
  2616. --- !u!1001 &1507478056
  2617. PrefabInstance:
  2618. m_ObjectHideFlags: 0
  2619. serializedVersion: 2
  2620. m_Modification:
  2621. m_TransformParent: {fileID: 1762191145}
  2622. m_Modifications:
  2623. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2624. type: 3}
  2625. propertyPath: m_Pivot.x
  2626. value: 0.5
  2627. objectReference: {fileID: 0}
  2628. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2629. type: 3}
  2630. propertyPath: m_Pivot.y
  2631. value: 0.5
  2632. objectReference: {fileID: 0}
  2633. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2634. type: 3}
  2635. propertyPath: m_RootOrder
  2636. value: 2
  2637. objectReference: {fileID: 0}
  2638. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2639. type: 3}
  2640. propertyPath: m_AnchorMax.x
  2641. value: 0
  2642. objectReference: {fileID: 0}
  2643. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2644. type: 3}
  2645. propertyPath: m_AnchorMax.y
  2646. value: 0
  2647. objectReference: {fileID: 0}
  2648. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2649. type: 3}
  2650. propertyPath: m_AnchorMin.x
  2651. value: 0
  2652. objectReference: {fileID: 0}
  2653. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2654. type: 3}
  2655. propertyPath: m_AnchorMin.y
  2656. value: 0
  2657. objectReference: {fileID: 0}
  2658. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2659. type: 3}
  2660. propertyPath: m_SizeDelta.x
  2661. value: 0
  2662. objectReference: {fileID: 0}
  2663. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2664. type: 3}
  2665. propertyPath: m_SizeDelta.y
  2666. value: 0
  2667. objectReference: {fileID: 0}
  2668. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2669. type: 3}
  2670. propertyPath: m_LocalPosition.x
  2671. value: 0
  2672. objectReference: {fileID: 0}
  2673. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2674. type: 3}
  2675. propertyPath: m_LocalPosition.y
  2676. value: 0
  2677. objectReference: {fileID: 0}
  2678. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2679. type: 3}
  2680. propertyPath: m_LocalPosition.z
  2681. value: 0
  2682. objectReference: {fileID: 0}
  2683. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2684. type: 3}
  2685. propertyPath: m_LocalRotation.w
  2686. value: 1
  2687. objectReference: {fileID: 0}
  2688. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2689. type: 3}
  2690. propertyPath: m_LocalRotation.x
  2691. value: 0
  2692. objectReference: {fileID: 0}
  2693. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2694. type: 3}
  2695. propertyPath: m_LocalRotation.y
  2696. value: 0
  2697. objectReference: {fileID: 0}
  2698. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2699. type: 3}
  2700. propertyPath: m_LocalRotation.z
  2701. value: 0
  2702. objectReference: {fileID: 0}
  2703. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2704. type: 3}
  2705. propertyPath: m_AnchoredPosition.x
  2706. value: 0
  2707. objectReference: {fileID: 0}
  2708. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2709. type: 3}
  2710. propertyPath: m_AnchoredPosition.y
  2711. value: 0
  2712. objectReference: {fileID: 0}
  2713. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2714. type: 3}
  2715. propertyPath: m_LocalEulerAnglesHint.x
  2716. value: 0
  2717. objectReference: {fileID: 0}
  2718. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2719. type: 3}
  2720. propertyPath: m_LocalEulerAnglesHint.y
  2721. value: 0
  2722. objectReference: {fileID: 0}
  2723. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2724. type: 3}
  2725. propertyPath: m_LocalEulerAnglesHint.z
  2726. value: 0
  2727. objectReference: {fileID: 0}
  2728. - target: {fileID: 8396944020726690285, guid: c913bcba93a277649acf924959bfbce8,
  2729. type: 3}
  2730. propertyPath: m_Name
  2731. value: Pause Block
  2732. objectReference: {fileID: 0}
  2733. - target: {fileID: 8396944021317043557, guid: c913bcba93a277649acf924959bfbce8,
  2734. type: 3}
  2735. propertyPath: m_Text
  2736. value: "\u6682\u505C"
  2737. objectReference: {fileID: 0}
  2738. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2739. type: 3}
  2740. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
  2741. value: 1
  2742. objectReference: {fileID: 0}
  2743. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2744. type: 3}
  2745. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
  2746. value: 1
  2747. objectReference: {fileID: 0}
  2748. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2749. type: 3}
  2750. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  2751. value:
  2752. objectReference: {fileID: 1396553306}
  2753. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2754. type: 3}
  2755. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
  2756. value: 2
  2757. objectReference: {fileID: 0}
  2758. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2759. type: 3}
  2760. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
  2761. value: Pause
  2762. objectReference: {fileID: 0}
  2763. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2764. type: 3}
  2765. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
  2766. value: UnityEngine.Object, UnityEngine
  2767. objectReference: {fileID: 0}
  2768. m_RemovedComponents: []
  2769. m_SourcePrefab: {fileID: 100100000, guid: c913bcba93a277649acf924959bfbce8, type: 3}
  2770. --- !u!224 &1507478057 stripped
  2771. RectTransform:
  2772. m_CorrespondingSourceObject: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2773. type: 3}
  2774. m_PrefabInstance: {fileID: 1507478056}
  2775. m_PrefabAsset: {fileID: 0}
  2776. --- !u!1001 &1522638955
  2777. PrefabInstance:
  2778. m_ObjectHideFlags: 0
  2779. serializedVersion: 2
  2780. m_Modification:
  2781. m_TransformParent: {fileID: 1762191145}
  2782. m_Modifications:
  2783. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2784. type: 3}
  2785. propertyPath: m_Pivot.x
  2786. value: 0.5
  2787. objectReference: {fileID: 0}
  2788. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2789. type: 3}
  2790. propertyPath: m_Pivot.y
  2791. value: 0.5
  2792. objectReference: {fileID: 0}
  2793. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2794. type: 3}
  2795. propertyPath: m_RootOrder
  2796. value: 3
  2797. objectReference: {fileID: 0}
  2798. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2799. type: 3}
  2800. propertyPath: m_AnchorMax.x
  2801. value: 0
  2802. objectReference: {fileID: 0}
  2803. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2804. type: 3}
  2805. propertyPath: m_AnchorMax.y
  2806. value: 0
  2807. objectReference: {fileID: 0}
  2808. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2809. type: 3}
  2810. propertyPath: m_AnchorMin.x
  2811. value: 0
  2812. objectReference: {fileID: 0}
  2813. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2814. type: 3}
  2815. propertyPath: m_AnchorMin.y
  2816. value: 0
  2817. objectReference: {fileID: 0}
  2818. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2819. type: 3}
  2820. propertyPath: m_SizeDelta.x
  2821. value: 0
  2822. objectReference: {fileID: 0}
  2823. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2824. type: 3}
  2825. propertyPath: m_SizeDelta.y
  2826. value: 0
  2827. objectReference: {fileID: 0}
  2828. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2829. type: 3}
  2830. propertyPath: m_LocalPosition.x
  2831. value: 0
  2832. objectReference: {fileID: 0}
  2833. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2834. type: 3}
  2835. propertyPath: m_LocalPosition.y
  2836. value: 0
  2837. objectReference: {fileID: 0}
  2838. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2839. type: 3}
  2840. propertyPath: m_LocalPosition.z
  2841. value: 0
  2842. objectReference: {fileID: 0}
  2843. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2844. type: 3}
  2845. propertyPath: m_LocalRotation.w
  2846. value: 1
  2847. objectReference: {fileID: 0}
  2848. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2849. type: 3}
  2850. propertyPath: m_LocalRotation.x
  2851. value: 0
  2852. objectReference: {fileID: 0}
  2853. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2854. type: 3}
  2855. propertyPath: m_LocalRotation.y
  2856. value: 0
  2857. objectReference: {fileID: 0}
  2858. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2859. type: 3}
  2860. propertyPath: m_LocalRotation.z
  2861. value: 0
  2862. objectReference: {fileID: 0}
  2863. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2864. type: 3}
  2865. propertyPath: m_AnchoredPosition.x
  2866. value: 0
  2867. objectReference: {fileID: 0}
  2868. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2869. type: 3}
  2870. propertyPath: m_AnchoredPosition.y
  2871. value: 0
  2872. objectReference: {fileID: 0}
  2873. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2874. type: 3}
  2875. propertyPath: m_LocalEulerAnglesHint.x
  2876. value: 0
  2877. objectReference: {fileID: 0}
  2878. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2879. type: 3}
  2880. propertyPath: m_LocalEulerAnglesHint.y
  2881. value: 0
  2882. objectReference: {fileID: 0}
  2883. - target: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2884. type: 3}
  2885. propertyPath: m_LocalEulerAnglesHint.z
  2886. value: 0
  2887. objectReference: {fileID: 0}
  2888. - target: {fileID: 8396944020726690285, guid: c913bcba93a277649acf924959bfbce8,
  2889. type: 3}
  2890. propertyPath: m_Name
  2891. value: Resume Block
  2892. objectReference: {fileID: 0}
  2893. - target: {fileID: 8396944021317043557, guid: c913bcba93a277649acf924959bfbce8,
  2894. type: 3}
  2895. propertyPath: m_Text
  2896. value: "\u7EE7\u7EED"
  2897. objectReference: {fileID: 0}
  2898. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2899. type: 3}
  2900. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
  2901. value: 1
  2902. objectReference: {fileID: 0}
  2903. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2904. type: 3}
  2905. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
  2906. value: 1
  2907. objectReference: {fileID: 0}
  2908. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2909. type: 3}
  2910. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  2911. value:
  2912. objectReference: {fileID: 1396553306}
  2913. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2914. type: 3}
  2915. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
  2916. value: 2
  2917. objectReference: {fileID: 0}
  2918. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2919. type: 3}
  2920. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
  2921. value: Resume
  2922. objectReference: {fileID: 0}
  2923. - target: {fileID: 8396944022309100063, guid: c913bcba93a277649acf924959bfbce8,
  2924. type: 3}
  2925. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
  2926. value: UnityEngine.Object, UnityEngine
  2927. objectReference: {fileID: 0}
  2928. m_RemovedComponents: []
  2929. m_SourcePrefab: {fileID: 100100000, guid: c913bcba93a277649acf924959bfbce8, type: 3}
  2930. --- !u!224 &1522638956 stripped
  2931. RectTransform:
  2932. m_CorrespondingSourceObject: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  2933. type: 3}
  2934. m_PrefabInstance: {fileID: 1522638955}
  2935. m_PrefabAsset: {fileID: 0}
  2936. --- !u!1 &1553820867
  2937. GameObject:
  2938. m_ObjectHideFlags: 0
  2939. m_CorrespondingSourceObject: {fileID: 0}
  2940. m_PrefabInstance: {fileID: 0}
  2941. m_PrefabAsset: {fileID: 0}
  2942. serializedVersion: 6
  2943. m_Component:
  2944. - component: {fileID: 1553820868}
  2945. - component: {fileID: 1553820870}
  2946. - component: {fileID: 1553820869}
  2947. m_Layer: 5
  2948. m_Name: Results
  2949. m_TagString: Untagged
  2950. m_Icon: {fileID: 0}
  2951. m_NavMeshLayer: 0
  2952. m_StaticEditorFlags: 0
  2953. m_IsActive: 1
  2954. --- !u!224 &1553820868
  2955. RectTransform:
  2956. m_ObjectHideFlags: 0
  2957. m_CorrespondingSourceObject: {fileID: 0}
  2958. m_PrefabInstance: {fileID: 0}
  2959. m_PrefabAsset: {fileID: 0}
  2960. m_GameObject: {fileID: 1553820867}
  2961. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2962. m_LocalPosition: {x: 0, y: 0, z: 0}
  2963. m_LocalScale: {x: 1, y: 1, z: 1}
  2964. m_ConstrainProportionsScale: 0
  2965. m_Children: []
  2966. m_Father: {fileID: 19015508}
  2967. m_RootOrder: 8
  2968. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2969. m_AnchorMin: {x: 0, y: 0}
  2970. m_AnchorMax: {x: 0, y: 0}
  2971. m_AnchoredPosition: {x: 0, y: 0}
  2972. m_SizeDelta: {x: 0, y: 0}
  2973. m_Pivot: {x: 0.5, y: 0.5}
  2974. --- !u!114 &1553820869
  2975. MonoBehaviour:
  2976. m_ObjectHideFlags: 0
  2977. m_CorrespondingSourceObject: {fileID: 0}
  2978. m_PrefabInstance: {fileID: 0}
  2979. m_PrefabAsset: {fileID: 0}
  2980. m_GameObject: {fileID: 1553820867}
  2981. m_Enabled: 1
  2982. m_EditorHideFlags: 0
  2983. m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
  2984. m_Name:
  2985. m_EditorClassIdentifier:
  2986. m_Padding:
  2987. m_Left: 0
  2988. m_Right: 0
  2989. m_Top: 0
  2990. m_Bottom: 0
  2991. m_ChildAlignment: 1
  2992. m_Spacing: 9
  2993. m_ChildForceExpandWidth: 0
  2994. m_ChildForceExpandHeight: 0
  2995. m_ChildControlWidth: 1
  2996. m_ChildControlHeight: 1
  2997. m_ChildScaleWidth: 0
  2998. m_ChildScaleHeight: 0
  2999. m_ReverseArrangement: 0
  3000. --- !u!114 &1553820870
  3001. MonoBehaviour:
  3002. m_ObjectHideFlags: 0
  3003. m_CorrespondingSourceObject: {fileID: 0}
  3004. m_PrefabInstance: {fileID: 0}
  3005. m_PrefabAsset: {fileID: 0}
  3006. m_GameObject: {fileID: 1553820867}
  3007. m_Enabled: 1
  3008. m_EditorHideFlags: 0
  3009. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  3010. m_Name:
  3011. m_EditorClassIdentifier:
  3012. m_IgnoreLayout: 0
  3013. m_MinWidth: -1
  3014. m_MinHeight: -1
  3015. m_PreferredWidth: -1
  3016. m_PreferredHeight: -1
  3017. m_FlexibleWidth: 1
  3018. m_FlexibleHeight: -1
  3019. m_LayoutPriority: 1
  3020. --- !u!1 &1668469602
  3021. GameObject:
  3022. m_ObjectHideFlags: 0
  3023. m_CorrespondingSourceObject: {fileID: 0}
  3024. m_PrefabInstance: {fileID: 0}
  3025. m_PrefabAsset: {fileID: 0}
  3026. serializedVersion: 6
  3027. m_Component:
  3028. - component: {fileID: 1668469603}
  3029. - component: {fileID: 1668469605}
  3030. - component: {fileID: 1668469604}
  3031. m_Layer: 5
  3032. m_Name: Line
  3033. m_TagString: Untagged
  3034. m_Icon: {fileID: 0}
  3035. m_NavMeshLayer: 0
  3036. m_StaticEditorFlags: 0
  3037. m_IsActive: 1
  3038. --- !u!224 &1668469603
  3039. RectTransform:
  3040. m_ObjectHideFlags: 0
  3041. m_CorrespondingSourceObject: {fileID: 0}
  3042. m_PrefabInstance: {fileID: 0}
  3043. m_PrefabAsset: {fileID: 0}
  3044. m_GameObject: {fileID: 1668469602}
  3045. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  3046. m_LocalPosition: {x: 0, y: 0, z: 0}
  3047. m_LocalScale: {x: 1, y: 1, z: 1}
  3048. m_ConstrainProportionsScale: 0
  3049. m_Children: []
  3050. m_Father: {fileID: 321225463}
  3051. m_RootOrder: 1
  3052. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3053. m_AnchorMin: {x: 0, y: 0}
  3054. m_AnchorMax: {x: 1, y: 1}
  3055. m_AnchoredPosition: {x: 0, y: 11}
  3056. m_SizeDelta: {x: -800, y: -99}
  3057. m_Pivot: {x: 0.5, y: 0}
  3058. --- !u!114 &1668469604
  3059. MonoBehaviour:
  3060. m_ObjectHideFlags: 0
  3061. m_CorrespondingSourceObject: {fileID: 0}
  3062. m_PrefabInstance: {fileID: 0}
  3063. m_PrefabAsset: {fileID: 0}
  3064. m_GameObject: {fileID: 1668469602}
  3065. m_Enabled: 1
  3066. m_EditorHideFlags: 0
  3067. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  3068. m_Name:
  3069. m_EditorClassIdentifier:
  3070. m_Material: {fileID: 0}
  3071. m_Color: {r: 0.7568628, g: 0.7568628, b: 0.7568628, a: 1}
  3072. m_RaycastTarget: 1
  3073. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  3074. m_Maskable: 1
  3075. m_OnCullStateChanged:
  3076. m_PersistentCalls:
  3077. m_Calls: []
  3078. m_Sprite: {fileID: 0}
  3079. m_Type: 0
  3080. m_PreserveAspect: 0
  3081. m_FillCenter: 1
  3082. m_FillMethod: 4
  3083. m_FillAmount: 1
  3084. m_FillClockwise: 1
  3085. m_FillOrigin: 0
  3086. m_UseSpriteMesh: 0
  3087. m_PixelsPerUnitMultiplier: 1
  3088. --- !u!222 &1668469605
  3089. CanvasRenderer:
  3090. m_ObjectHideFlags: 0
  3091. m_CorrespondingSourceObject: {fileID: 0}
  3092. m_PrefabInstance: {fileID: 0}
  3093. m_PrefabAsset: {fileID: 0}
  3094. m_GameObject: {fileID: 1668469602}
  3095. m_CullTransparentMesh: 0
  3096. --- !u!1 &1762191144
  3097. GameObject:
  3098. m_ObjectHideFlags: 0
  3099. m_CorrespondingSourceObject: {fileID: 0}
  3100. m_PrefabInstance: {fileID: 0}
  3101. m_PrefabAsset: {fileID: 0}
  3102. serializedVersion: 6
  3103. m_Component:
  3104. - component: {fileID: 1762191145}
  3105. - component: {fileID: 1762191147}
  3106. - component: {fileID: 1762191146}
  3107. m_Layer: 5
  3108. m_Name: Buttons
  3109. m_TagString: Untagged
  3110. m_Icon: {fileID: 0}
  3111. m_NavMeshLayer: 0
  3112. m_StaticEditorFlags: 0
  3113. m_IsActive: 1
  3114. --- !u!224 &1762191145
  3115. RectTransform:
  3116. m_ObjectHideFlags: 0
  3117. m_CorrespondingSourceObject: {fileID: 0}
  3118. m_PrefabInstance: {fileID: 0}
  3119. m_PrefabAsset: {fileID: 0}
  3120. m_GameObject: {fileID: 1762191144}
  3121. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3122. m_LocalPosition: {x: 0, y: 0, z: 0}
  3123. m_LocalScale: {x: 1, y: 1, z: 1}
  3124. m_ConstrainProportionsScale: 0
  3125. m_Children:
  3126. - {fileID: 763119798}
  3127. - {fileID: 695638984}
  3128. - {fileID: 1507478057}
  3129. - {fileID: 1522638956}
  3130. - {fileID: 6070972}
  3131. - {fileID: 2047290123}
  3132. m_Father: {fileID: 19015508}
  3133. m_RootOrder: 7
  3134. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3135. m_AnchorMin: {x: 0, y: 0}
  3136. m_AnchorMax: {x: 0, y: 0}
  3137. m_AnchoredPosition: {x: 0, y: 0}
  3138. m_SizeDelta: {x: 0, y: 0}
  3139. m_Pivot: {x: 0.5, y: 0.5}
  3140. --- !u!114 &1762191146
  3141. MonoBehaviour:
  3142. m_ObjectHideFlags: 0
  3143. m_CorrespondingSourceObject: {fileID: 0}
  3144. m_PrefabInstance: {fileID: 0}
  3145. m_PrefabAsset: {fileID: 0}
  3146. m_GameObject: {fileID: 1762191144}
  3147. m_Enabled: 1
  3148. m_EditorHideFlags: 0
  3149. m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
  3150. m_Name:
  3151. m_EditorClassIdentifier:
  3152. m_Padding:
  3153. m_Left: 0
  3154. m_Right: 0
  3155. m_Top: 0
  3156. m_Bottom: 0
  3157. m_ChildAlignment: 1
  3158. m_Spacing: 0
  3159. m_ChildForceExpandWidth: 0
  3160. m_ChildForceExpandHeight: 0
  3161. m_ChildControlWidth: 1
  3162. m_ChildControlHeight: 1
  3163. m_ChildScaleWidth: 0
  3164. m_ChildScaleHeight: 0
  3165. m_ReverseArrangement: 0
  3166. --- !u!114 &1762191147
  3167. MonoBehaviour:
  3168. m_ObjectHideFlags: 0
  3169. m_CorrespondingSourceObject: {fileID: 0}
  3170. m_PrefabInstance: {fileID: 0}
  3171. m_PrefabAsset: {fileID: 0}
  3172. m_GameObject: {fileID: 1762191144}
  3173. m_Enabled: 1
  3174. m_EditorHideFlags: 0
  3175. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  3176. m_Name:
  3177. m_EditorClassIdentifier:
  3178. m_IgnoreLayout: 0
  3179. m_MinWidth: -1
  3180. m_MinHeight: -1
  3181. m_PreferredWidth: -1
  3182. m_PreferredHeight: -1
  3183. m_FlexibleWidth: 1
  3184. m_FlexibleHeight: -1
  3185. m_LayoutPriority: 1
  3186. --- !u!1 &1925578440
  3187. GameObject:
  3188. m_ObjectHideFlags: 0
  3189. m_CorrespondingSourceObject: {fileID: 0}
  3190. m_PrefabInstance: {fileID: 0}
  3191. m_PrefabAsset: {fileID: 0}
  3192. serializedVersion: 6
  3193. m_Component:
  3194. - component: {fileID: 1925578441}
  3195. - component: {fileID: 1925578444}
  3196. - component: {fileID: 1925578443}
  3197. - component: {fileID: 1925578442}
  3198. m_Layer: 5
  3199. m_Name: Gap Block2
  3200. m_TagString: Untagged
  3201. m_Icon: {fileID: 0}
  3202. m_NavMeshLayer: 0
  3203. m_StaticEditorFlags: 0
  3204. m_IsActive: 1
  3205. --- !u!224 &1925578441
  3206. RectTransform:
  3207. m_ObjectHideFlags: 0
  3208. m_CorrespondingSourceObject: {fileID: 0}
  3209. m_PrefabInstance: {fileID: 0}
  3210. m_PrefabAsset: {fileID: 0}
  3211. m_GameObject: {fileID: 1925578440}
  3212. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  3213. m_LocalPosition: {x: 0, y: 0, z: 0}
  3214. m_LocalScale: {x: 1, y: 1, z: 1}
  3215. m_ConstrainProportionsScale: 0
  3216. m_Children: []
  3217. m_Father: {fileID: 19015508}
  3218. m_RootOrder: 4
  3219. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3220. m_AnchorMin: {x: 0, y: 0}
  3221. m_AnchorMax: {x: 0, y: 0}
  3222. m_AnchoredPosition: {x: 0, y: 0}
  3223. m_SizeDelta: {x: 0, y: 0}
  3224. m_Pivot: {x: 0.5, y: 0.5}
  3225. --- !u!114 &1925578442
  3226. MonoBehaviour:
  3227. m_ObjectHideFlags: 0
  3228. m_CorrespondingSourceObject: {fileID: 0}
  3229. m_PrefabInstance: {fileID: 0}
  3230. m_PrefabAsset: {fileID: 0}
  3231. m_GameObject: {fileID: 1925578440}
  3232. m_Enabled: 1
  3233. m_EditorHideFlags: 0
  3234. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  3235. m_Name:
  3236. m_EditorClassIdentifier:
  3237. m_Material: {fileID: 0}
  3238. m_Color: {r: 1, g: 1, b: 1, a: 0}
  3239. m_RaycastTarget: 1
  3240. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  3241. m_Maskable: 1
  3242. m_OnCullStateChanged:
  3243. m_PersistentCalls:
  3244. m_Calls: []
  3245. m_Sprite: {fileID: 0}
  3246. m_Type: 0
  3247. m_PreserveAspect: 0
  3248. m_FillCenter: 1
  3249. m_FillMethod: 4
  3250. m_FillAmount: 1
  3251. m_FillClockwise: 1
  3252. m_FillOrigin: 0
  3253. m_UseSpriteMesh: 0
  3254. m_PixelsPerUnitMultiplier: 1
  3255. --- !u!222 &1925578443
  3256. CanvasRenderer:
  3257. m_ObjectHideFlags: 0
  3258. m_CorrespondingSourceObject: {fileID: 0}
  3259. m_PrefabInstance: {fileID: 0}
  3260. m_PrefabAsset: {fileID: 0}
  3261. m_GameObject: {fileID: 1925578440}
  3262. m_CullTransparentMesh: 0
  3263. --- !u!114 &1925578444
  3264. MonoBehaviour:
  3265. m_ObjectHideFlags: 0
  3266. m_CorrespondingSourceObject: {fileID: 0}
  3267. m_PrefabInstance: {fileID: 0}
  3268. m_PrefabAsset: {fileID: 0}
  3269. m_GameObject: {fileID: 1925578440}
  3270. m_Enabled: 1
  3271. m_EditorHideFlags: 0
  3272. m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
  3273. m_Name:
  3274. m_EditorClassIdentifier:
  3275. m_IgnoreLayout: 0
  3276. m_MinWidth: -1
  3277. m_MinHeight: -1
  3278. m_PreferredWidth: -1
  3279. m_PreferredHeight: 60
  3280. m_FlexibleWidth: 1
  3281. m_FlexibleHeight: -1
  3282. m_LayoutPriority: 1
  3283. --- !u!224 &2047290123 stripped
  3284. RectTransform:
  3285. m_CorrespondingSourceObject: {fileID: 8396944020726690284, guid: c913bcba93a277649acf924959bfbce8,
  3286. type: 3}
  3287. m_PrefabInstance: {fileID: 1461574758}
  3288. m_PrefabAsset: {fileID: 0}
  3289. --- !u!1 &2055780000
  3290. GameObject:
  3291. m_ObjectHideFlags: 0
  3292. m_CorrespondingSourceObject: {fileID: 0}
  3293. m_PrefabInstance: {fileID: 0}
  3294. m_PrefabAsset: {fileID: 0}
  3295. serializedVersion: 6
  3296. m_Component:
  3297. - component: {fileID: 2055780001}
  3298. - component: {fileID: 2055780005}
  3299. - component: {fileID: 2055780004}
  3300. - component: {fileID: 2055780003}
  3301. - component: {fileID: 2055780002}
  3302. m_Layer: 5
  3303. m_Name: Button
  3304. m_TagString: Untagged
  3305. m_Icon: {fileID: 0}
  3306. m_NavMeshLayer: 0
  3307. m_StaticEditorFlags: 0
  3308. m_IsActive: 1
  3309. --- !u!224 &2055780001
  3310. RectTransform:
  3311. m_ObjectHideFlags: 0
  3312. m_CorrespondingSourceObject: {fileID: 0}
  3313. m_PrefabInstance: {fileID: 0}
  3314. m_PrefabAsset: {fileID: 0}
  3315. m_GameObject: {fileID: 2055780000}
  3316. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3317. m_LocalPosition: {x: 0, y: 0, z: 0}
  3318. m_LocalScale: {x: 1, y: 1, z: 1}
  3319. m_ConstrainProportionsScale: 0
  3320. m_Children:
  3321. - {fileID: 796889229}
  3322. m_Father: {fileID: 34478918}
  3323. m_RootOrder: 1
  3324. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3325. m_AnchorMin: {x: 0, y: 0.5}
  3326. m_AnchorMax: {x: 0, y: 0.5}
  3327. m_AnchoredPosition: {x: 0, y: 0}
  3328. m_SizeDelta: {x: 200, y: 250}
  3329. m_Pivot: {x: 0, y: 0.5}
  3330. --- !u!114 &2055780002
  3331. MonoBehaviour:
  3332. m_ObjectHideFlags: 0
  3333. m_CorrespondingSourceObject: {fileID: 0}
  3334. m_PrefabInstance: {fileID: 0}
  3335. m_PrefabAsset: {fileID: 0}
  3336. m_GameObject: {fileID: 2055780000}
  3337. m_Enabled: 1
  3338. m_EditorHideFlags: 0
  3339. m_Script: {fileID: 11500000, guid: 2f18440a469f34756bcaef021e0ed2c4, type: 3}
  3340. m_Name:
  3341. m_EditorClassIdentifier:
  3342. --- !u!114 &2055780003
  3343. MonoBehaviour:
  3344. m_ObjectHideFlags: 0
  3345. m_CorrespondingSourceObject: {fileID: 0}
  3346. m_PrefabInstance: {fileID: 0}
  3347. m_PrefabAsset: {fileID: 0}
  3348. m_GameObject: {fileID: 2055780000}
  3349. m_Enabled: 1
  3350. m_EditorHideFlags: 0
  3351. m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
  3352. m_Name:
  3353. m_EditorClassIdentifier:
  3354. m_Navigation:
  3355. m_Mode: 3
  3356. m_WrapAround: 0
  3357. m_SelectOnUp: {fileID: 0}
  3358. m_SelectOnDown: {fileID: 0}
  3359. m_SelectOnLeft: {fileID: 0}
  3360. m_SelectOnRight: {fileID: 0}
  3361. m_Transition: 1
  3362. m_Colors:
  3363. m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
  3364. m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
  3365. m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
  3366. m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
  3367. m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
  3368. m_ColorMultiplier: 1
  3369. m_FadeDuration: 0.1
  3370. m_SpriteState:
  3371. m_HighlightedSprite: {fileID: 0}
  3372. m_PressedSprite: {fileID: 0}
  3373. m_SelectedSprite: {fileID: 0}
  3374. m_DisabledSprite: {fileID: 0}
  3375. m_AnimationTriggers:
  3376. m_NormalTrigger: Normal
  3377. m_HighlightedTrigger: Highlighted
  3378. m_PressedTrigger: Pressed
  3379. m_SelectedTrigger: Highlighted
  3380. m_DisabledTrigger: Disabled
  3381. m_Interactable: 1
  3382. m_TargetGraphic: {fileID: 2055780004}
  3383. m_OnClick:
  3384. m_PersistentCalls:
  3385. m_Calls: []
  3386. --- !u!114 &2055780004
  3387. MonoBehaviour:
  3388. m_ObjectHideFlags: 0
  3389. m_CorrespondingSourceObject: {fileID: 0}
  3390. m_PrefabInstance: {fileID: 0}
  3391. m_PrefabAsset: {fileID: 0}
  3392. m_GameObject: {fileID: 2055780000}
  3393. m_Enabled: 1
  3394. m_EditorHideFlags: 0
  3395. m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
  3396. m_Name:
  3397. m_EditorClassIdentifier:
  3398. m_Material: {fileID: 0}
  3399. m_Color: {r: 0.6415094, g: 0.26326096, b: 0.26326096, a: 0}
  3400. m_RaycastTarget: 1
  3401. m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
  3402. m_Maskable: 1
  3403. m_OnCullStateChanged:
  3404. m_PersistentCalls:
  3405. m_Calls: []
  3406. m_Sprite: {fileID: 0}
  3407. m_Type: 1
  3408. m_PreserveAspect: 0
  3409. m_FillCenter: 1
  3410. m_FillMethod: 4
  3411. m_FillAmount: 1
  3412. m_FillClockwise: 1
  3413. m_FillOrigin: 0
  3414. m_UseSpriteMesh: 0
  3415. m_PixelsPerUnitMultiplier: 1
  3416. --- !u!222 &2055780005
  3417. CanvasRenderer:
  3418. m_ObjectHideFlags: 0
  3419. m_CorrespondingSourceObject: {fileID: 0}
  3420. m_PrefabInstance: {fileID: 0}
  3421. m_PrefabAsset: {fileID: 0}
  3422. m_GameObject: {fileID: 2055780000}
  3423. m_CullTransparentMesh: 0