doubleSpeed.prefab 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "DoubleSpeed",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "DoubleSpeed",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. },
  27. {
  28. "__id__": 18
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 146
  35. },
  36. {
  37. "__id__": 148
  38. },
  39. {
  40. "__id__": 150
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 152
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_objFlags": 0,
  78. "_parent": {
  79. "__id__": 1
  80. },
  81. "_prefab": {
  82. "__id__": 3
  83. },
  84. "__editorExtras__": {}
  85. },
  86. {
  87. "__type__": "cc.PrefabInfo",
  88. "root": {
  89. "__id__": 2
  90. },
  91. "asset": {
  92. "__uuid__": "142393a8-2641-4775-a79c-cbfe1bd9e5ca",
  93. "__expectedType__": "cc.Prefab"
  94. },
  95. "fileId": "a0daVw8DRLi6ToMaTA0VS2",
  96. "instance": {
  97. "__id__": 4
  98. },
  99. "targetOverrides": null
  100. },
  101. {
  102. "__type__": "cc.PrefabInstance",
  103. "fileId": "db/w/RIeBApZSfJiai7iEK",
  104. "prefabRootNode": {
  105. "__id__": 1
  106. },
  107. "mountedChildren": [],
  108. "mountedComponents": [],
  109. "propertyOverrides": [
  110. {
  111. "__id__": 5
  112. },
  113. {
  114. "__id__": 7
  115. },
  116. {
  117. "__id__": 8
  118. },
  119. {
  120. "__id__": 9
  121. },
  122. {
  123. "__id__": 10
  124. }
  125. ],
  126. "removedComponents": []
  127. },
  128. {
  129. "__type__": "CCPropertyOverrideInfo",
  130. "targetInfo": {
  131. "__id__": 6
  132. },
  133. "propertyPath": [
  134. "_name"
  135. ],
  136. "value": "mask"
  137. },
  138. {
  139. "__type__": "cc.TargetInfo",
  140. "localID": [
  141. "a0daVw8DRLi6ToMaTA0VS2"
  142. ]
  143. },
  144. {
  145. "__type__": "CCPropertyOverrideInfo",
  146. "targetInfo": {
  147. "__id__": 6
  148. },
  149. "propertyPath": [
  150. "_lpos"
  151. ],
  152. "value": {
  153. "__type__": "cc.Vec3",
  154. "x": 0,
  155. "y": 0,
  156. "z": 0
  157. }
  158. },
  159. {
  160. "__type__": "CCPropertyOverrideInfo",
  161. "targetInfo": {
  162. "__id__": 6
  163. },
  164. "propertyPath": [
  165. "_lrot"
  166. ],
  167. "value": {
  168. "__type__": "cc.Quat",
  169. "x": 0,
  170. "y": 0,
  171. "z": 0,
  172. "w": 1
  173. }
  174. },
  175. {
  176. "__type__": "CCPropertyOverrideInfo",
  177. "targetInfo": {
  178. "__id__": 6
  179. },
  180. "propertyPath": [
  181. "_euler"
  182. ],
  183. "value": {
  184. "__type__": "cc.Vec3",
  185. "x": 0,
  186. "y": 0,
  187. "z": 0
  188. }
  189. },
  190. {
  191. "__type__": "CCPropertyOverrideInfo",
  192. "targetInfo": {
  193. "__id__": 11
  194. },
  195. "propertyPath": [
  196. "_contentSize"
  197. ],
  198. "value": {
  199. "__type__": "cc.Size",
  200. "width": 720,
  201. "height": 1600
  202. }
  203. },
  204. {
  205. "__type__": "cc.TargetInfo",
  206. "localID": [
  207. "77N2cid5pKDpXplRH/AWEU"
  208. ]
  209. },
  210. {
  211. "__type__": "cc.Node",
  212. "_name": "二倍速",
  213. "_objFlags": 0,
  214. "__editorExtras__": {},
  215. "_parent": {
  216. "__id__": 1
  217. },
  218. "_children": [],
  219. "_active": false,
  220. "_components": [
  221. {
  222. "__id__": 13
  223. },
  224. {
  225. "__id__": 15
  226. }
  227. ],
  228. "_prefab": {
  229. "__id__": 17
  230. },
  231. "_lpos": {
  232. "__type__": "cc.Vec3",
  233. "x": 0,
  234. "y": 0,
  235. "z": 0
  236. },
  237. "_lrot": {
  238. "__type__": "cc.Quat",
  239. "x": 0,
  240. "y": 0,
  241. "z": 0,
  242. "w": 1
  243. },
  244. "_lscale": {
  245. "__type__": "cc.Vec3",
  246. "x": 1,
  247. "y": 1,
  248. "z": 1
  249. },
  250. "_mobility": 0,
  251. "_layer": 33554432,
  252. "_euler": {
  253. "__type__": "cc.Vec3",
  254. "x": 0,
  255. "y": 0,
  256. "z": 0
  257. },
  258. "_id": ""
  259. },
  260. {
  261. "__type__": "cc.UITransform",
  262. "_name": "",
  263. "_objFlags": 0,
  264. "__editorExtras__": {},
  265. "node": {
  266. "__id__": 12
  267. },
  268. "_enabled": true,
  269. "__prefab": {
  270. "__id__": 14
  271. },
  272. "_contentSize": {
  273. "__type__": "cc.Size",
  274. "width": 720,
  275. "height": 1600
  276. },
  277. "_anchorPoint": {
  278. "__type__": "cc.Vec2",
  279. "x": 0.5,
  280. "y": 0.5
  281. },
  282. "_id": ""
  283. },
  284. {
  285. "__type__": "cc.CompPrefabInfo",
  286. "fileId": "39iL0BGQlDJYVEYVHvYzpC"
  287. },
  288. {
  289. "__type__": "cc.Sprite",
  290. "_name": "",
  291. "_objFlags": 0,
  292. "__editorExtras__": {},
  293. "node": {
  294. "__id__": 12
  295. },
  296. "_enabled": true,
  297. "__prefab": {
  298. "__id__": 16
  299. },
  300. "_customMaterial": null,
  301. "_srcBlendFactor": 2,
  302. "_dstBlendFactor": 4,
  303. "_color": {
  304. "__type__": "cc.Color",
  305. "r": 255,
  306. "g": 255,
  307. "b": 255,
  308. "a": 255
  309. },
  310. "_spriteFrame": {
  311. "__uuid__": "d0ad7c9f-5f42-4870-96f4-74cb3afd9b5c@f9941",
  312. "__expectedType__": "cc.SpriteFrame"
  313. },
  314. "_type": 0,
  315. "_fillType": 0,
  316. "_sizeMode": 1,
  317. "_fillCenter": {
  318. "__type__": "cc.Vec2",
  319. "x": 0,
  320. "y": 0
  321. },
  322. "_fillStart": 0,
  323. "_fillRange": 0,
  324. "_isTrimmedMode": true,
  325. "_useGrayscale": false,
  326. "_atlas": null,
  327. "_id": ""
  328. },
  329. {
  330. "__type__": "cc.CompPrefabInfo",
  331. "fileId": "6bmvHPnPpI9axb0lGbtx6+"
  332. },
  333. {
  334. "__type__": "cc.PrefabInfo",
  335. "root": {
  336. "__id__": 1
  337. },
  338. "asset": {
  339. "__id__": 0
  340. },
  341. "fileId": "f7h5WAqXtAm7Jg5+WOfxQP",
  342. "instance": null,
  343. "targetOverrides": null,
  344. "nestedPrefabInstanceRoots": null
  345. },
  346. {
  347. "__type__": "cc.Node",
  348. "_name": "Sprite",
  349. "_objFlags": 0,
  350. "__editorExtras__": {},
  351. "_parent": {
  352. "__id__": 1
  353. },
  354. "_children": [
  355. {
  356. "__id__": 19
  357. },
  358. {
  359. "__id__": 25
  360. },
  361. {
  362. "__id__": 31
  363. },
  364. {
  365. "__id__": 37
  366. },
  367. {
  368. "__id__": 45
  369. },
  370. {
  371. "__id__": 71
  372. },
  373. {
  374. "__id__": 77
  375. },
  376. {
  377. "__id__": 83
  378. },
  379. {
  380. "__id__": 89
  381. },
  382. {
  383. "__id__": 95
  384. },
  385. {
  386. "__id__": 121
  387. },
  388. {
  389. "__id__": 133
  390. }
  391. ],
  392. "_active": true,
  393. "_components": [
  394. {
  395. "__id__": 141
  396. },
  397. {
  398. "__id__": 143
  399. }
  400. ],
  401. "_prefab": {
  402. "__id__": 145
  403. },
  404. "_lpos": {
  405. "__type__": "cc.Vec3",
  406. "x": 0,
  407. "y": 54.06,
  408. "z": 0
  409. },
  410. "_lrot": {
  411. "__type__": "cc.Quat",
  412. "x": 0,
  413. "y": 0,
  414. "z": 0,
  415. "w": 1
  416. },
  417. "_lscale": {
  418. "__type__": "cc.Vec3",
  419. "x": 1,
  420. "y": 1,
  421. "z": 1
  422. },
  423. "_mobility": 0,
  424. "_layer": 33554432,
  425. "_euler": {
  426. "__type__": "cc.Vec3",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0
  430. },
  431. "_id": ""
  432. },
  433. {
  434. "__type__": "cc.Node",
  435. "_name": "btn_bg",
  436. "_objFlags": 0,
  437. "__editorExtras__": {},
  438. "_parent": {
  439. "__id__": 18
  440. },
  441. "_children": [],
  442. "_active": true,
  443. "_components": [
  444. {
  445. "__id__": 20
  446. },
  447. {
  448. "__id__": 22
  449. }
  450. ],
  451. "_prefab": {
  452. "__id__": 24
  453. },
  454. "_lpos": {
  455. "__type__": "cc.Vec3",
  456. "x": 0,
  457. "y": 376.65,
  458. "z": 0
  459. },
  460. "_lrot": {
  461. "__type__": "cc.Quat",
  462. "x": 0,
  463. "y": 0,
  464. "z": 0,
  465. "w": 1
  466. },
  467. "_lscale": {
  468. "__type__": "cc.Vec3",
  469. "x": 1,
  470. "y": 1,
  471. "z": 1
  472. },
  473. "_mobility": 0,
  474. "_layer": 33554432,
  475. "_euler": {
  476. "__type__": "cc.Vec3",
  477. "x": 0,
  478. "y": 0,
  479. "z": 0
  480. },
  481. "_id": ""
  482. },
  483. {
  484. "__type__": "cc.UITransform",
  485. "_name": "",
  486. "_objFlags": 0,
  487. "__editorExtras__": {},
  488. "node": {
  489. "__id__": 19
  490. },
  491. "_enabled": true,
  492. "__prefab": {
  493. "__id__": 21
  494. },
  495. "_contentSize": {
  496. "__type__": "cc.Size",
  497. "width": 328,
  498. "height": 88
  499. },
  500. "_anchorPoint": {
  501. "__type__": "cc.Vec2",
  502. "x": 0.5,
  503. "y": 0.5
  504. },
  505. "_id": ""
  506. },
  507. {
  508. "__type__": "cc.CompPrefabInfo",
  509. "fileId": "8daJFNZf5HVaep0Vc6CBgQ"
  510. },
  511. {
  512. "__type__": "cc.Sprite",
  513. "_name": "",
  514. "_objFlags": 0,
  515. "__editorExtras__": {},
  516. "node": {
  517. "__id__": 19
  518. },
  519. "_enabled": true,
  520. "__prefab": {
  521. "__id__": 23
  522. },
  523. "_customMaterial": null,
  524. "_srcBlendFactor": 2,
  525. "_dstBlendFactor": 4,
  526. "_color": {
  527. "__type__": "cc.Color",
  528. "r": 255,
  529. "g": 255,
  530. "b": 255,
  531. "a": 255
  532. },
  533. "_spriteFrame": {
  534. "__uuid__": "30aabf49-1a8a-4da8-963f-6e7678d0b5b5@f9941",
  535. "__expectedType__": "cc.SpriteFrame"
  536. },
  537. "_type": 0,
  538. "_fillType": 0,
  539. "_sizeMode": 1,
  540. "_fillCenter": {
  541. "__type__": "cc.Vec2",
  542. "x": 0,
  543. "y": 0
  544. },
  545. "_fillStart": 0,
  546. "_fillRange": 0,
  547. "_isTrimmedMode": true,
  548. "_useGrayscale": false,
  549. "_atlas": null,
  550. "_id": ""
  551. },
  552. {
  553. "__type__": "cc.CompPrefabInfo",
  554. "fileId": "67eLWKwvdMjo3Joo5aUOkn"
  555. },
  556. {
  557. "__type__": "cc.PrefabInfo",
  558. "root": {
  559. "__id__": 1
  560. },
  561. "asset": {
  562. "__id__": 0
  563. },
  564. "fileId": "46aBbcKntNB5lAcK9X1Hd4",
  565. "instance": null,
  566. "targetOverrides": null,
  567. "nestedPrefabInstanceRoots": null
  568. },
  569. {
  570. "__type__": "cc.Node",
  571. "_name": "title_2bs",
  572. "_objFlags": 0,
  573. "__editorExtras__": {},
  574. "_parent": {
  575. "__id__": 18
  576. },
  577. "_children": [],
  578. "_active": true,
  579. "_components": [
  580. {
  581. "__id__": 26
  582. },
  583. {
  584. "__id__": 28
  585. }
  586. ],
  587. "_prefab": {
  588. "__id__": 30
  589. },
  590. "_lpos": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 377.685,
  594. "z": 0
  595. },
  596. "_lrot": {
  597. "__type__": "cc.Quat",
  598. "x": 0,
  599. "y": 0,
  600. "z": 0,
  601. "w": 1
  602. },
  603. "_lscale": {
  604. "__type__": "cc.Vec3",
  605. "x": 1,
  606. "y": 1,
  607. "z": 1
  608. },
  609. "_mobility": 0,
  610. "_layer": 33554432,
  611. "_euler": {
  612. "__type__": "cc.Vec3",
  613. "x": 0,
  614. "y": 0,
  615. "z": 0
  616. },
  617. "_id": ""
  618. },
  619. {
  620. "__type__": "cc.UITransform",
  621. "_name": "",
  622. "_objFlags": 0,
  623. "__editorExtras__": {},
  624. "node": {
  625. "__id__": 25
  626. },
  627. "_enabled": true,
  628. "__prefab": {
  629. "__id__": 27
  630. },
  631. "_contentSize": {
  632. "__type__": "cc.Size",
  633. "width": 127,
  634. "height": 48
  635. },
  636. "_anchorPoint": {
  637. "__type__": "cc.Vec2",
  638. "x": 0.5,
  639. "y": 0.5
  640. },
  641. "_id": ""
  642. },
  643. {
  644. "__type__": "cc.CompPrefabInfo",
  645. "fileId": "2cQZztP19AtbSi5Q/0MCn9"
  646. },
  647. {
  648. "__type__": "cc.Sprite",
  649. "_name": "",
  650. "_objFlags": 0,
  651. "__editorExtras__": {},
  652. "node": {
  653. "__id__": 25
  654. },
  655. "_enabled": true,
  656. "__prefab": {
  657. "__id__": 29
  658. },
  659. "_customMaterial": null,
  660. "_srcBlendFactor": 2,
  661. "_dstBlendFactor": 4,
  662. "_color": {
  663. "__type__": "cc.Color",
  664. "r": 255,
  665. "g": 255,
  666. "b": 255,
  667. "a": 255
  668. },
  669. "_spriteFrame": {
  670. "__uuid__": "c95877fb-58c3-4ec0-a77f-66e2d6fe17ed@f9941",
  671. "__expectedType__": "cc.SpriteFrame"
  672. },
  673. "_type": 0,
  674. "_fillType": 0,
  675. "_sizeMode": 1,
  676. "_fillCenter": {
  677. "__type__": "cc.Vec2",
  678. "x": 0,
  679. "y": 0
  680. },
  681. "_fillStart": 0,
  682. "_fillRange": 0,
  683. "_isTrimmedMode": true,
  684. "_useGrayscale": false,
  685. "_atlas": null,
  686. "_id": ""
  687. },
  688. {
  689. "__type__": "cc.CompPrefabInfo",
  690. "fileId": "65lGAqb8NAAI0Cvmce6EXF"
  691. },
  692. {
  693. "__type__": "cc.PrefabInfo",
  694. "root": {
  695. "__id__": 1
  696. },
  697. "asset": {
  698. "__id__": 0
  699. },
  700. "fileId": "9dhiOEiRdJjo6MDLrVCYL3",
  701. "instance": null,
  702. "targetOverrides": null,
  703. "nestedPrefabInstanceRoots": null
  704. },
  705. {
  706. "__type__": "cc.Node",
  707. "_name": "icon_2x_bg",
  708. "_objFlags": 0,
  709. "__editorExtras__": {},
  710. "_parent": {
  711. "__id__": 18
  712. },
  713. "_children": [],
  714. "_active": true,
  715. "_components": [
  716. {
  717. "__id__": 32
  718. },
  719. {
  720. "__id__": 34
  721. }
  722. ],
  723. "_prefab": {
  724. "__id__": 36
  725. },
  726. "_lpos": {
  727. "__type__": "cc.Vec3",
  728. "x": 0,
  729. "y": 266.345,
  730. "z": 0
  731. },
  732. "_lrot": {
  733. "__type__": "cc.Quat",
  734. "x": 0,
  735. "y": 0,
  736. "z": 0,
  737. "w": 1
  738. },
  739. "_lscale": {
  740. "__type__": "cc.Vec3",
  741. "x": 1,
  742. "y": 1,
  743. "z": 1
  744. },
  745. "_mobility": 0,
  746. "_layer": 33554432,
  747. "_euler": {
  748. "__type__": "cc.Vec3",
  749. "x": 0,
  750. "y": 0,
  751. "z": 0
  752. },
  753. "_id": ""
  754. },
  755. {
  756. "__type__": "cc.UITransform",
  757. "_name": "",
  758. "_objFlags": 0,
  759. "__editorExtras__": {},
  760. "node": {
  761. "__id__": 31
  762. },
  763. "_enabled": true,
  764. "__prefab": {
  765. "__id__": 33
  766. },
  767. "_contentSize": {
  768. "__type__": "cc.Size",
  769. "width": 366,
  770. "height": 58
  771. },
  772. "_anchorPoint": {
  773. "__type__": "cc.Vec2",
  774. "x": 0.5,
  775. "y": 0.5
  776. },
  777. "_id": ""
  778. },
  779. {
  780. "__type__": "cc.CompPrefabInfo",
  781. "fileId": "7e/u7IOa1D0Zl7PkkHquu3"
  782. },
  783. {
  784. "__type__": "cc.Sprite",
  785. "_name": "",
  786. "_objFlags": 0,
  787. "__editorExtras__": {},
  788. "node": {
  789. "__id__": 31
  790. },
  791. "_enabled": true,
  792. "__prefab": {
  793. "__id__": 35
  794. },
  795. "_customMaterial": null,
  796. "_srcBlendFactor": 2,
  797. "_dstBlendFactor": 4,
  798. "_color": {
  799. "__type__": "cc.Color",
  800. "r": 255,
  801. "g": 255,
  802. "b": 255,
  803. "a": 255
  804. },
  805. "_spriteFrame": {
  806. "__uuid__": "bbff2728-8c72-40f4-8674-fa26ea3d6362@f9941",
  807. "__expectedType__": "cc.SpriteFrame"
  808. },
  809. "_type": 0,
  810. "_fillType": 0,
  811. "_sizeMode": 1,
  812. "_fillCenter": {
  813. "__type__": "cc.Vec2",
  814. "x": 0,
  815. "y": 0
  816. },
  817. "_fillStart": 0,
  818. "_fillRange": 0,
  819. "_isTrimmedMode": true,
  820. "_useGrayscale": false,
  821. "_atlas": null,
  822. "_id": ""
  823. },
  824. {
  825. "__type__": "cc.CompPrefabInfo",
  826. "fileId": "b1Z612DYJIW4y2NcQmDEAP"
  827. },
  828. {
  829. "__type__": "cc.PrefabInfo",
  830. "root": {
  831. "__id__": 1
  832. },
  833. "asset": {
  834. "__id__": 0
  835. },
  836. "fileId": "4c68V2jENNArMPi85KSyXx",
  837. "instance": null,
  838. "targetOverrides": null,
  839. "nestedPrefabInstanceRoots": null
  840. },
  841. {
  842. "__type__": "cc.Node",
  843. "_name": "btn_close",
  844. "_objFlags": 0,
  845. "__editorExtras__": {},
  846. "_parent": {
  847. "__id__": 18
  848. },
  849. "_children": [],
  850. "_active": true,
  851. "_components": [
  852. {
  853. "__id__": 38
  854. },
  855. {
  856. "__id__": 40
  857. },
  858. {
  859. "__id__": 42
  860. }
  861. ],
  862. "_prefab": {
  863. "__id__": 44
  864. },
  865. "_lpos": {
  866. "__type__": "cc.Vec3",
  867. "x": 272.586,
  868. "y": 352.092,
  869. "z": 0
  870. },
  871. "_lrot": {
  872. "__type__": "cc.Quat",
  873. "x": 0,
  874. "y": 0,
  875. "z": 0,
  876. "w": 1
  877. },
  878. "_lscale": {
  879. "__type__": "cc.Vec3",
  880. "x": 1,
  881. "y": 1,
  882. "z": 1
  883. },
  884. "_mobility": 0,
  885. "_layer": 33554432,
  886. "_euler": {
  887. "__type__": "cc.Vec3",
  888. "x": 0,
  889. "y": 0,
  890. "z": 0
  891. },
  892. "_id": ""
  893. },
  894. {
  895. "__type__": "cc.UITransform",
  896. "_name": "",
  897. "_objFlags": 0,
  898. "__editorExtras__": {},
  899. "node": {
  900. "__id__": 37
  901. },
  902. "_enabled": true,
  903. "__prefab": {
  904. "__id__": 39
  905. },
  906. "_contentSize": {
  907. "__type__": "cc.Size",
  908. "width": 80,
  909. "height": 80
  910. },
  911. "_anchorPoint": {
  912. "__type__": "cc.Vec2",
  913. "x": 0.5,
  914. "y": 0.5
  915. },
  916. "_id": ""
  917. },
  918. {
  919. "__type__": "cc.CompPrefabInfo",
  920. "fileId": "3cWZogHBVPg73S5VOFtvrw"
  921. },
  922. {
  923. "__type__": "cc.Sprite",
  924. "_name": "",
  925. "_objFlags": 0,
  926. "__editorExtras__": {},
  927. "node": {
  928. "__id__": 37
  929. },
  930. "_enabled": true,
  931. "__prefab": {
  932. "__id__": 41
  933. },
  934. "_customMaterial": null,
  935. "_srcBlendFactor": 2,
  936. "_dstBlendFactor": 4,
  937. "_color": {
  938. "__type__": "cc.Color",
  939. "r": 255,
  940. "g": 255,
  941. "b": 255,
  942. "a": 255
  943. },
  944. "_spriteFrame": {
  945. "__uuid__": "54138f51-a62d-48d9-8dd2-b01485086792@f9941",
  946. "__expectedType__": "cc.SpriteFrame"
  947. },
  948. "_type": 1,
  949. "_fillType": 0,
  950. "_sizeMode": 2,
  951. "_fillCenter": {
  952. "__type__": "cc.Vec2",
  953. "x": 0,
  954. "y": 0
  955. },
  956. "_fillStart": 0,
  957. "_fillRange": 0,
  958. "_isTrimmedMode": true,
  959. "_useGrayscale": false,
  960. "_atlas": null,
  961. "_id": ""
  962. },
  963. {
  964. "__type__": "cc.CompPrefabInfo",
  965. "fileId": "6aDCLI1ZxMn5F9oyezMmei"
  966. },
  967. {
  968. "__type__": "cc.Button",
  969. "_name": "",
  970. "_objFlags": 0,
  971. "__editorExtras__": {},
  972. "node": {
  973. "__id__": 37
  974. },
  975. "_enabled": true,
  976. "__prefab": {
  977. "__id__": 43
  978. },
  979. "clickEvents": [],
  980. "_interactable": true,
  981. "_transition": 3,
  982. "_normalColor": {
  983. "__type__": "cc.Color",
  984. "r": 214,
  985. "g": 214,
  986. "b": 214,
  987. "a": 255
  988. },
  989. "_hoverColor": {
  990. "__type__": "cc.Color",
  991. "r": 211,
  992. "g": 211,
  993. "b": 211,
  994. "a": 255
  995. },
  996. "_pressedColor": {
  997. "__type__": "cc.Color",
  998. "r": 255,
  999. "g": 255,
  1000. "b": 255,
  1001. "a": 255
  1002. },
  1003. "_disabledColor": {
  1004. "__type__": "cc.Color",
  1005. "r": 124,
  1006. "g": 124,
  1007. "b": 124,
  1008. "a": 255
  1009. },
  1010. "_normalSprite": {
  1011. "__uuid__": "54138f51-a62d-48d9-8dd2-b01485086792@f9941",
  1012. "__expectedType__": "cc.SpriteFrame"
  1013. },
  1014. "_hoverSprite": null,
  1015. "_pressedSprite": null,
  1016. "_disabledSprite": null,
  1017. "_duration": 0.1,
  1018. "_zoomScale": 1.2,
  1019. "_target": {
  1020. "__id__": 37
  1021. },
  1022. "_id": ""
  1023. },
  1024. {
  1025. "__type__": "cc.CompPrefabInfo",
  1026. "fileId": "24Sd4WhH9E1KOFzEyQap3S"
  1027. },
  1028. {
  1029. "__type__": "cc.PrefabInfo",
  1030. "root": {
  1031. "__id__": 1
  1032. },
  1033. "asset": {
  1034. "__id__": 0
  1035. },
  1036. "fileId": "6dDEEl3oZKirlIfVsOwOEf",
  1037. "instance": null,
  1038. "targetOverrides": null,
  1039. "nestedPrefabInstanceRoots": null
  1040. },
  1041. {
  1042. "__type__": "cc.Node",
  1043. "_name": "Node",
  1044. "_objFlags": 0,
  1045. "__editorExtras__": {},
  1046. "_parent": {
  1047. "__id__": 18
  1048. },
  1049. "_children": [
  1050. {
  1051. "__id__": 46
  1052. },
  1053. {
  1054. "__id__": 52
  1055. },
  1056. {
  1057. "__id__": 60
  1058. }
  1059. ],
  1060. "_active": true,
  1061. "_components": [
  1062. {
  1063. "__id__": 66
  1064. },
  1065. {
  1066. "__id__": 68
  1067. }
  1068. ],
  1069. "_prefab": {
  1070. "__id__": 70
  1071. },
  1072. "_lpos": {
  1073. "__type__": "cc.Vec3",
  1074. "x": 11.183,
  1075. "y": 272.443,
  1076. "z": 0
  1077. },
  1078. "_lrot": {
  1079. "__type__": "cc.Quat",
  1080. "x": 0,
  1081. "y": 0,
  1082. "z": 0,
  1083. "w": 1
  1084. },
  1085. "_lscale": {
  1086. "__type__": "cc.Vec3",
  1087. "x": 1,
  1088. "y": 1,
  1089. "z": 1
  1090. },
  1091. "_mobility": 0,
  1092. "_layer": 33554432,
  1093. "_euler": {
  1094. "__type__": "cc.Vec3",
  1095. "x": 0,
  1096. "y": 0,
  1097. "z": 0
  1098. },
  1099. "_id": ""
  1100. },
  1101. {
  1102. "__type__": "cc.Node",
  1103. "_name": "Label",
  1104. "_objFlags": 0,
  1105. "__editorExtras__": {},
  1106. "_parent": {
  1107. "__id__": 45
  1108. },
  1109. "_children": [],
  1110. "_active": true,
  1111. "_components": [
  1112. {
  1113. "__id__": 47
  1114. },
  1115. {
  1116. "__id__": 49
  1117. }
  1118. ],
  1119. "_prefab": {
  1120. "__id__": 51
  1121. },
  1122. "_lpos": {
  1123. "__type__": "cc.Vec3",
  1124. "x": -48.35546875,
  1125. "y": 0,
  1126. "z": 0
  1127. },
  1128. "_lrot": {
  1129. "__type__": "cc.Quat",
  1130. "x": 0,
  1131. "y": 0,
  1132. "z": 0,
  1133. "w": 1
  1134. },
  1135. "_lscale": {
  1136. "__type__": "cc.Vec3",
  1137. "x": 1,
  1138. "y": 1,
  1139. "z": 1
  1140. },
  1141. "_mobility": 0,
  1142. "_layer": 33554432,
  1143. "_euler": {
  1144. "__type__": "cc.Vec3",
  1145. "x": 0,
  1146. "y": 0,
  1147. "z": 0
  1148. },
  1149. "_id": ""
  1150. },
  1151. {
  1152. "__type__": "cc.UITransform",
  1153. "_name": "",
  1154. "_objFlags": 0,
  1155. "__editorExtras__": {},
  1156. "node": {
  1157. "__id__": 46
  1158. },
  1159. "_enabled": true,
  1160. "__prefab": {
  1161. "__id__": 48
  1162. },
  1163. "_contentSize": {
  1164. "__type__": "cc.Size",
  1165. "width": 196,
  1166. "height": 54.4
  1167. },
  1168. "_anchorPoint": {
  1169. "__type__": "cc.Vec2",
  1170. "x": 0.5,
  1171. "y": 0.5
  1172. },
  1173. "_id": ""
  1174. },
  1175. {
  1176. "__type__": "cc.CompPrefabInfo",
  1177. "fileId": "be5l22hAhMPZmP6zZqTA7P"
  1178. },
  1179. {
  1180. "__type__": "cc.Label",
  1181. "_name": "",
  1182. "_objFlags": 0,
  1183. "__editorExtras__": {},
  1184. "node": {
  1185. "__id__": 46
  1186. },
  1187. "_enabled": true,
  1188. "__prefab": {
  1189. "__id__": 50
  1190. },
  1191. "_customMaterial": null,
  1192. "_srcBlendFactor": 2,
  1193. "_dstBlendFactor": 4,
  1194. "_color": {
  1195. "__type__": "cc.Color",
  1196. "r": 255,
  1197. "g": 255,
  1198. "b": 255,
  1199. "a": 255
  1200. },
  1201. "_string": "每看一个视频可享",
  1202. "_horizontalAlign": 1,
  1203. "_verticalAlign": 1,
  1204. "_actualFontSize": 24,
  1205. "_fontSize": 24,
  1206. "_fontFamily": "Arial",
  1207. "_lineHeight": 40,
  1208. "_overflow": 0,
  1209. "_enableWrapText": true,
  1210. "_font": null,
  1211. "_isSystemFontUsed": true,
  1212. "_spacingX": 0,
  1213. "_isItalic": false,
  1214. "_isBold": true,
  1215. "_isUnderline": false,
  1216. "_underlineHeight": 2,
  1217. "_cacheMode": 0,
  1218. "_enableOutline": true,
  1219. "_outlineColor": {
  1220. "__type__": "cc.Color",
  1221. "r": 88,
  1222. "g": 42,
  1223. "b": 9,
  1224. "a": 255
  1225. },
  1226. "_outlineWidth": 2,
  1227. "_enableShadow": false,
  1228. "_shadowColor": {
  1229. "__type__": "cc.Color",
  1230. "r": 0,
  1231. "g": 0,
  1232. "b": 0,
  1233. "a": 255
  1234. },
  1235. "_shadowOffset": {
  1236. "__type__": "cc.Vec2",
  1237. "x": 2,
  1238. "y": 2
  1239. },
  1240. "_shadowBlur": 2,
  1241. "_id": ""
  1242. },
  1243. {
  1244. "__type__": "cc.CompPrefabInfo",
  1245. "fileId": "05uPNDz69CFaPr/hQPLOEJ"
  1246. },
  1247. {
  1248. "__type__": "cc.PrefabInfo",
  1249. "root": {
  1250. "__id__": 1
  1251. },
  1252. "asset": {
  1253. "__id__": 0
  1254. },
  1255. "fileId": "12xVS7NYlEIJGlL1lcz5A0",
  1256. "instance": null,
  1257. "targetOverrides": null,
  1258. "nestedPrefabInstanceRoots": null
  1259. },
  1260. {
  1261. "__type__": "cc.Node",
  1262. "_name": "lab_time",
  1263. "_objFlags": 0,
  1264. "__editorExtras__": {},
  1265. "_parent": {
  1266. "__id__": 45
  1267. },
  1268. "_children": [],
  1269. "_active": true,
  1270. "_components": [
  1271. {
  1272. "__id__": 53
  1273. },
  1274. {
  1275. "__id__": 55
  1276. },
  1277. {
  1278. "__id__": 57
  1279. }
  1280. ],
  1281. "_prefab": {
  1282. "__id__": 59
  1283. },
  1284. "_lpos": {
  1285. "__type__": "cc.Vec3",
  1286. "x": 64.9921875,
  1287. "y": 0,
  1288. "z": 0
  1289. },
  1290. "_lrot": {
  1291. "__type__": "cc.Quat",
  1292. "x": 0,
  1293. "y": 0,
  1294. "z": 0,
  1295. "w": 1
  1296. },
  1297. "_lscale": {
  1298. "__type__": "cc.Vec3",
  1299. "x": 1,
  1300. "y": 1,
  1301. "z": 1
  1302. },
  1303. "_mobility": 0,
  1304. "_layer": 33554432,
  1305. "_euler": {
  1306. "__type__": "cc.Vec3",
  1307. "x": 0,
  1308. "y": 0,
  1309. "z": 0
  1310. },
  1311. "_id": ""
  1312. },
  1313. {
  1314. "__type__": "cc.UITransform",
  1315. "_name": "",
  1316. "_objFlags": 0,
  1317. "__editorExtras__": {},
  1318. "node": {
  1319. "__id__": 52
  1320. },
  1321. "_enabled": true,
  1322. "__prefab": {
  1323. "__id__": 54
  1324. },
  1325. "_contentSize": {
  1326. "__type__": "cc.Size",
  1327. "width": 30.6953125,
  1328. "height": 64.48
  1329. },
  1330. "_anchorPoint": {
  1331. "__type__": "cc.Vec2",
  1332. "x": 0.5,
  1333. "y": 0.4
  1334. },
  1335. "_id": ""
  1336. },
  1337. {
  1338. "__type__": "cc.CompPrefabInfo",
  1339. "fileId": "e8MnDwnuRM9I86bid0NQO5"
  1340. },
  1341. {
  1342. "__type__": "cc.Label",
  1343. "_name": "",
  1344. "_objFlags": 0,
  1345. "__editorExtras__": {},
  1346. "node": {
  1347. "__id__": 52
  1348. },
  1349. "_enabled": true,
  1350. "__prefab": {
  1351. "__id__": 56
  1352. },
  1353. "_customMaterial": null,
  1354. "_srcBlendFactor": 2,
  1355. "_dstBlendFactor": 4,
  1356. "_color": {
  1357. "__type__": "cc.Color",
  1358. "r": 238,
  1359. "g": 255,
  1360. "b": 0,
  1361. "a": 255
  1362. },
  1363. "_string": "3",
  1364. "_horizontalAlign": 1,
  1365. "_verticalAlign": 1,
  1366. "_actualFontSize": 48,
  1367. "_fontSize": 48,
  1368. "_fontFamily": "Arial",
  1369. "_lineHeight": 48,
  1370. "_overflow": 0,
  1371. "_enableWrapText": true,
  1372. "_font": null,
  1373. "_isSystemFontUsed": true,
  1374. "_spacingX": 0,
  1375. "_isItalic": false,
  1376. "_isBold": true,
  1377. "_isUnderline": false,
  1378. "_underlineHeight": 2,
  1379. "_cacheMode": 0,
  1380. "_enableOutline": true,
  1381. "_outlineColor": {
  1382. "__type__": "cc.Color",
  1383. "r": 88,
  1384. "g": 42,
  1385. "b": 9,
  1386. "a": 255
  1387. },
  1388. "_outlineWidth": 2,
  1389. "_enableShadow": false,
  1390. "_shadowColor": {
  1391. "__type__": "cc.Color",
  1392. "r": 0,
  1393. "g": 0,
  1394. "b": 0,
  1395. "a": 255
  1396. },
  1397. "_shadowOffset": {
  1398. "__type__": "cc.Vec2",
  1399. "x": 2,
  1400. "y": 2
  1401. },
  1402. "_shadowBlur": 2,
  1403. "_id": ""
  1404. },
  1405. {
  1406. "__type__": "cc.CompPrefabInfo",
  1407. "fileId": "16ZgvXKGBIuo59T0C1JzcB"
  1408. },
  1409. {
  1410. "__type__": "545c05XsG9GDJispEGWKvYv",
  1411. "_name": "",
  1412. "_objFlags": 0,
  1413. "__editorExtras__": {},
  1414. "node": {
  1415. "__id__": 52
  1416. },
  1417. "_enabled": true,
  1418. "__prefab": {
  1419. "__id__": 58
  1420. },
  1421. "templateMode": false,
  1422. "watchPath": "*.time",
  1423. "labelType": "cc.Label",
  1424. "watchPathArr": [],
  1425. "_id": ""
  1426. },
  1427. {
  1428. "__type__": "cc.CompPrefabInfo",
  1429. "fileId": "eaUrGZZxtB2afU0U/6R92F"
  1430. },
  1431. {
  1432. "__type__": "cc.PrefabInfo",
  1433. "root": {
  1434. "__id__": 1
  1435. },
  1436. "asset": {
  1437. "__id__": 0
  1438. },
  1439. "fileId": "afFW6cXc9NxazViobGN6tr",
  1440. "instance": null,
  1441. "targetOverrides": null,
  1442. "nestedPrefabInstanceRoots": null
  1443. },
  1444. {
  1445. "__type__": "cc.Node",
  1446. "_name": "Label-002",
  1447. "_objFlags": 0,
  1448. "__editorExtras__": {},
  1449. "_parent": {
  1450. "__id__": 45
  1451. },
  1452. "_children": [],
  1453. "_active": true,
  1454. "_components": [
  1455. {
  1456. "__id__": 61
  1457. },
  1458. {
  1459. "__id__": 63
  1460. }
  1461. ],
  1462. "_prefab": {
  1463. "__id__": 65
  1464. },
  1465. "_lpos": {
  1466. "__type__": "cc.Vec3",
  1467. "x": 113.34765625,
  1468. "y": 0,
  1469. "z": 0
  1470. },
  1471. "_lrot": {
  1472. "__type__": "cc.Quat",
  1473. "x": 0,
  1474. "y": 0,
  1475. "z": 0,
  1476. "w": 1
  1477. },
  1478. "_lscale": {
  1479. "__type__": "cc.Vec3",
  1480. "x": 1,
  1481. "y": 1,
  1482. "z": 1
  1483. },
  1484. "_mobility": 0,
  1485. "_layer": 33554432,
  1486. "_euler": {
  1487. "__type__": "cc.Vec3",
  1488. "x": 0,
  1489. "y": 0,
  1490. "z": 0
  1491. },
  1492. "_id": ""
  1493. },
  1494. {
  1495. "__type__": "cc.UITransform",
  1496. "_name": "",
  1497. "_objFlags": 0,
  1498. "__editorExtras__": {},
  1499. "node": {
  1500. "__id__": 60
  1501. },
  1502. "_enabled": true,
  1503. "__prefab": {
  1504. "__id__": 62
  1505. },
  1506. "_contentSize": {
  1507. "__type__": "cc.Size",
  1508. "width": 66.015625,
  1509. "height": 54.4
  1510. },
  1511. "_anchorPoint": {
  1512. "__type__": "cc.Vec2",
  1513. "x": 0.5,
  1514. "y": 0.5
  1515. },
  1516. "_id": ""
  1517. },
  1518. {
  1519. "__type__": "cc.CompPrefabInfo",
  1520. "fileId": "14sEWnrupG87fYtFJMs9Vg"
  1521. },
  1522. {
  1523. "__type__": "cc.Label",
  1524. "_name": "",
  1525. "_objFlags": 0,
  1526. "__editorExtras__": {},
  1527. "node": {
  1528. "__id__": 60
  1529. },
  1530. "_enabled": true,
  1531. "__prefab": {
  1532. "__id__": 64
  1533. },
  1534. "_customMaterial": null,
  1535. "_srcBlendFactor": 2,
  1536. "_dstBlendFactor": 4,
  1537. "_color": {
  1538. "__type__": "cc.Color",
  1539. "r": 255,
  1540. "g": 255,
  1541. "b": 255,
  1542. "a": 255
  1543. },
  1544. "_string": "分钟~",
  1545. "_horizontalAlign": 1,
  1546. "_verticalAlign": 1,
  1547. "_actualFontSize": 24,
  1548. "_fontSize": 24,
  1549. "_fontFamily": "Arial",
  1550. "_lineHeight": 40,
  1551. "_overflow": 0,
  1552. "_enableWrapText": true,
  1553. "_font": null,
  1554. "_isSystemFontUsed": true,
  1555. "_spacingX": 0,
  1556. "_isItalic": false,
  1557. "_isBold": true,
  1558. "_isUnderline": false,
  1559. "_underlineHeight": 2,
  1560. "_cacheMode": 0,
  1561. "_enableOutline": true,
  1562. "_outlineColor": {
  1563. "__type__": "cc.Color",
  1564. "r": 88,
  1565. "g": 42,
  1566. "b": 9,
  1567. "a": 255
  1568. },
  1569. "_outlineWidth": 2,
  1570. "_enableShadow": false,
  1571. "_shadowColor": {
  1572. "__type__": "cc.Color",
  1573. "r": 0,
  1574. "g": 0,
  1575. "b": 0,
  1576. "a": 255
  1577. },
  1578. "_shadowOffset": {
  1579. "__type__": "cc.Vec2",
  1580. "x": 2,
  1581. "y": 2
  1582. },
  1583. "_shadowBlur": 2,
  1584. "_id": ""
  1585. },
  1586. {
  1587. "__type__": "cc.CompPrefabInfo",
  1588. "fileId": "caTNJqDHNF7IYo3YJw0Fq9"
  1589. },
  1590. {
  1591. "__type__": "cc.PrefabInfo",
  1592. "root": {
  1593. "__id__": 1
  1594. },
  1595. "asset": {
  1596. "__id__": 0
  1597. },
  1598. "fileId": "38N0Ly/odOGolKzmsCESIO",
  1599. "instance": null,
  1600. "targetOverrides": null,
  1601. "nestedPrefabInstanceRoots": null
  1602. },
  1603. {
  1604. "__type__": "cc.UITransform",
  1605. "_name": "",
  1606. "_objFlags": 0,
  1607. "__editorExtras__": {},
  1608. "node": {
  1609. "__id__": 45
  1610. },
  1611. "_enabled": true,
  1612. "__prefab": {
  1613. "__id__": 67
  1614. },
  1615. "_contentSize": {
  1616. "__type__": "cc.Size",
  1617. "width": 292.7109375,
  1618. "height": 40
  1619. },
  1620. "_anchorPoint": {
  1621. "__type__": "cc.Vec2",
  1622. "x": 0.5,
  1623. "y": 0.5
  1624. },
  1625. "_id": ""
  1626. },
  1627. {
  1628. "__type__": "cc.CompPrefabInfo",
  1629. "fileId": "b7+aX4hLVPJYBSEOeG7+4K"
  1630. },
  1631. {
  1632. "__type__": "cc.Layout",
  1633. "_name": "",
  1634. "_objFlags": 0,
  1635. "__editorExtras__": {},
  1636. "node": {
  1637. "__id__": 45
  1638. },
  1639. "_enabled": true,
  1640. "__prefab": {
  1641. "__id__": 69
  1642. },
  1643. "_resizeMode": 1,
  1644. "_layoutType": 1,
  1645. "_cellSize": {
  1646. "__type__": "cc.Size",
  1647. "width": 40,
  1648. "height": 40
  1649. },
  1650. "_startAxis": 0,
  1651. "_paddingLeft": 0,
  1652. "_paddingRight": 0,
  1653. "_paddingTop": 0,
  1654. "_paddingBottom": 0,
  1655. "_spacingX": 0,
  1656. "_spacingY": 0,
  1657. "_verticalDirection": 1,
  1658. "_horizontalDirection": 0,
  1659. "_constraint": 0,
  1660. "_constraintNum": 2,
  1661. "_affectedByScale": false,
  1662. "_isAlign": false,
  1663. "_id": ""
  1664. },
  1665. {
  1666. "__type__": "cc.CompPrefabInfo",
  1667. "fileId": "2btavZFOJIfaE1W//FciDc"
  1668. },
  1669. {
  1670. "__type__": "cc.PrefabInfo",
  1671. "root": {
  1672. "__id__": 1
  1673. },
  1674. "asset": {
  1675. "__id__": 0
  1676. },
  1677. "fileId": "6dF8j6zTtLF6CJpjX5d/xV",
  1678. "instance": null,
  1679. "targetOverrides": null,
  1680. "nestedPrefabInstanceRoots": null
  1681. },
  1682. {
  1683. "__type__": "cc.Node",
  1684. "_name": "icon_2x",
  1685. "_objFlags": 0,
  1686. "__editorExtras__": {},
  1687. "_parent": {
  1688. "__id__": 18
  1689. },
  1690. "_children": [],
  1691. "_active": true,
  1692. "_components": [
  1693. {
  1694. "__id__": 72
  1695. },
  1696. {
  1697. "__id__": 74
  1698. }
  1699. ],
  1700. "_prefab": {
  1701. "__id__": 76
  1702. },
  1703. "_lpos": {
  1704. "__type__": "cc.Vec3",
  1705. "x": 0,
  1706. "y": 44.824,
  1707. "z": 0
  1708. },
  1709. "_lrot": {
  1710. "__type__": "cc.Quat",
  1711. "x": 0,
  1712. "y": 0,
  1713. "z": 0,
  1714. "w": 1
  1715. },
  1716. "_lscale": {
  1717. "__type__": "cc.Vec3",
  1718. "x": 1,
  1719. "y": 1,
  1720. "z": 1
  1721. },
  1722. "_mobility": 0,
  1723. "_layer": 33554432,
  1724. "_euler": {
  1725. "__type__": "cc.Vec3",
  1726. "x": 0,
  1727. "y": 0,
  1728. "z": 0
  1729. },
  1730. "_id": ""
  1731. },
  1732. {
  1733. "__type__": "cc.UITransform",
  1734. "_name": "",
  1735. "_objFlags": 0,
  1736. "__editorExtras__": {},
  1737. "node": {
  1738. "__id__": 71
  1739. },
  1740. "_enabled": true,
  1741. "__prefab": {
  1742. "__id__": 73
  1743. },
  1744. "_contentSize": {
  1745. "__type__": "cc.Size",
  1746. "width": 253,
  1747. "height": 193
  1748. },
  1749. "_anchorPoint": {
  1750. "__type__": "cc.Vec2",
  1751. "x": 0.5,
  1752. "y": 0.5
  1753. },
  1754. "_id": ""
  1755. },
  1756. {
  1757. "__type__": "cc.CompPrefabInfo",
  1758. "fileId": "9469dSNitCO5iscbHrnjYp"
  1759. },
  1760. {
  1761. "__type__": "cc.Sprite",
  1762. "_name": "",
  1763. "_objFlags": 0,
  1764. "__editorExtras__": {},
  1765. "node": {
  1766. "__id__": 71
  1767. },
  1768. "_enabled": true,
  1769. "__prefab": {
  1770. "__id__": 75
  1771. },
  1772. "_customMaterial": null,
  1773. "_srcBlendFactor": 2,
  1774. "_dstBlendFactor": 4,
  1775. "_color": {
  1776. "__type__": "cc.Color",
  1777. "r": 255,
  1778. "g": 255,
  1779. "b": 255,
  1780. "a": 255
  1781. },
  1782. "_spriteFrame": {
  1783. "__uuid__": "abb7d6b7-bfca-4f28-ad85-8567ecd4bf76@f9941",
  1784. "__expectedType__": "cc.SpriteFrame"
  1785. },
  1786. "_type": 0,
  1787. "_fillType": 0,
  1788. "_sizeMode": 1,
  1789. "_fillCenter": {
  1790. "__type__": "cc.Vec2",
  1791. "x": 0,
  1792. "y": 0
  1793. },
  1794. "_fillStart": 0,
  1795. "_fillRange": 0,
  1796. "_isTrimmedMode": true,
  1797. "_useGrayscale": false,
  1798. "_atlas": null,
  1799. "_id": ""
  1800. },
  1801. {
  1802. "__type__": "cc.CompPrefabInfo",
  1803. "fileId": "7dW60H3idFdpfnTvNBOehd"
  1804. },
  1805. {
  1806. "__type__": "cc.PrefabInfo",
  1807. "root": {
  1808. "__id__": 1
  1809. },
  1810. "asset": {
  1811. "__id__": 0
  1812. },
  1813. "fileId": "fc4eJLDDZAFYUP3ckuvHgl",
  1814. "instance": null,
  1815. "targetOverrides": null,
  1816. "nestedPrefabInstanceRoots": null
  1817. },
  1818. {
  1819. "__type__": "cc.Node",
  1820. "_name": "icon_+200",
  1821. "_objFlags": 0,
  1822. "__editorExtras__": {},
  1823. "_parent": {
  1824. "__id__": 18
  1825. },
  1826. "_children": [],
  1827. "_active": true,
  1828. "_components": [
  1829. {
  1830. "__id__": 78
  1831. },
  1832. {
  1833. "__id__": 80
  1834. }
  1835. ],
  1836. "_prefab": {
  1837. "__id__": 82
  1838. },
  1839. "_lpos": {
  1840. "__type__": "cc.Vec3",
  1841. "x": 109.298,
  1842. "y": -101.315,
  1843. "z": 0
  1844. },
  1845. "_lrot": {
  1846. "__type__": "cc.Quat",
  1847. "x": 0,
  1848. "y": 0,
  1849. "z": 0,
  1850. "w": 1
  1851. },
  1852. "_lscale": {
  1853. "__type__": "cc.Vec3",
  1854. "x": 1,
  1855. "y": 1,
  1856. "z": 1
  1857. },
  1858. "_mobility": 0,
  1859. "_layer": 33554432,
  1860. "_euler": {
  1861. "__type__": "cc.Vec3",
  1862. "x": 0,
  1863. "y": 0,
  1864. "z": 0
  1865. },
  1866. "_id": ""
  1867. },
  1868. {
  1869. "__type__": "cc.UITransform",
  1870. "_name": "",
  1871. "_objFlags": 0,
  1872. "__editorExtras__": {},
  1873. "node": {
  1874. "__id__": 77
  1875. },
  1876. "_enabled": true,
  1877. "__prefab": {
  1878. "__id__": 79
  1879. },
  1880. "_contentSize": {
  1881. "__type__": "cc.Size",
  1882. "width": 250,
  1883. "height": 62
  1884. },
  1885. "_anchorPoint": {
  1886. "__type__": "cc.Vec2",
  1887. "x": 0.5,
  1888. "y": 0.5
  1889. },
  1890. "_id": ""
  1891. },
  1892. {
  1893. "__type__": "cc.CompPrefabInfo",
  1894. "fileId": "62SqukznVHqZBCy0G9ONPD"
  1895. },
  1896. {
  1897. "__type__": "cc.Sprite",
  1898. "_name": "",
  1899. "_objFlags": 0,
  1900. "__editorExtras__": {},
  1901. "node": {
  1902. "__id__": 77
  1903. },
  1904. "_enabled": true,
  1905. "__prefab": {
  1906. "__id__": 81
  1907. },
  1908. "_customMaterial": null,
  1909. "_srcBlendFactor": 2,
  1910. "_dstBlendFactor": 4,
  1911. "_color": {
  1912. "__type__": "cc.Color",
  1913. "r": 255,
  1914. "g": 255,
  1915. "b": 255,
  1916. "a": 255
  1917. },
  1918. "_spriteFrame": {
  1919. "__uuid__": "b2c647c5-9835-4ae7-93f5-e08c630c30bc@f9941",
  1920. "__expectedType__": "cc.SpriteFrame"
  1921. },
  1922. "_type": 0,
  1923. "_fillType": 0,
  1924. "_sizeMode": 1,
  1925. "_fillCenter": {
  1926. "__type__": "cc.Vec2",
  1927. "x": 0,
  1928. "y": 0
  1929. },
  1930. "_fillStart": 0,
  1931. "_fillRange": 0,
  1932. "_isTrimmedMode": true,
  1933. "_useGrayscale": false,
  1934. "_atlas": null,
  1935. "_id": ""
  1936. },
  1937. {
  1938. "__type__": "cc.CompPrefabInfo",
  1939. "fileId": "19HHB/Qr1MooJp59JmqEms"
  1940. },
  1941. {
  1942. "__type__": "cc.PrefabInfo",
  1943. "root": {
  1944. "__id__": 1
  1945. },
  1946. "asset": {
  1947. "__id__": 0
  1948. },
  1949. "fileId": "39vUgPNn9Gw53SMNDP2aPk",
  1950. "instance": null,
  1951. "targetOverrides": null,
  1952. "nestedPrefabInstanceRoots": null
  1953. },
  1954. {
  1955. "__type__": "cc.Node",
  1956. "_name": "icon_vector",
  1957. "_objFlags": 0,
  1958. "__editorExtras__": {},
  1959. "_parent": {
  1960. "__id__": 18
  1961. },
  1962. "_children": [],
  1963. "_active": true,
  1964. "_components": [
  1965. {
  1966. "__id__": 84
  1967. },
  1968. {
  1969. "__id__": 86
  1970. }
  1971. ],
  1972. "_prefab": {
  1973. "__id__": 88
  1974. },
  1975. "_lpos": {
  1976. "__type__": "cc.Vec3",
  1977. "x": -149.861,
  1978. "y": 271.856,
  1979. "z": 0
  1980. },
  1981. "_lrot": {
  1982. "__type__": "cc.Quat",
  1983. "x": 0,
  1984. "y": 0,
  1985. "z": 0,
  1986. "w": 1
  1987. },
  1988. "_lscale": {
  1989. "__type__": "cc.Vec3",
  1990. "x": 0.5,
  1991. "y": 0.5,
  1992. "z": 1
  1993. },
  1994. "_mobility": 0,
  1995. "_layer": 33554432,
  1996. "_euler": {
  1997. "__type__": "cc.Vec3",
  1998. "x": 0,
  1999. "y": 0,
  2000. "z": 0
  2001. },
  2002. "_id": ""
  2003. },
  2004. {
  2005. "__type__": "cc.UITransform",
  2006. "_name": "",
  2007. "_objFlags": 0,
  2008. "__editorExtras__": {},
  2009. "node": {
  2010. "__id__": 83
  2011. },
  2012. "_enabled": true,
  2013. "__prefab": {
  2014. "__id__": 85
  2015. },
  2016. "_contentSize": {
  2017. "__type__": "cc.Size",
  2018. "width": 56,
  2019. "height": 56
  2020. },
  2021. "_anchorPoint": {
  2022. "__type__": "cc.Vec2",
  2023. "x": 0.5,
  2024. "y": 0.5
  2025. },
  2026. "_id": ""
  2027. },
  2028. {
  2029. "__type__": "cc.CompPrefabInfo",
  2030. "fileId": "e9wKLx091BvpNpuLWJnQfe"
  2031. },
  2032. {
  2033. "__type__": "cc.Sprite",
  2034. "_name": "",
  2035. "_objFlags": 0,
  2036. "__editorExtras__": {},
  2037. "node": {
  2038. "__id__": 83
  2039. },
  2040. "_enabled": true,
  2041. "__prefab": {
  2042. "__id__": 87
  2043. },
  2044. "_customMaterial": null,
  2045. "_srcBlendFactor": 2,
  2046. "_dstBlendFactor": 4,
  2047. "_color": {
  2048. "__type__": "cc.Color",
  2049. "r": 255,
  2050. "g": 255,
  2051. "b": 255,
  2052. "a": 255
  2053. },
  2054. "_spriteFrame": {
  2055. "__uuid__": "e4d52b35-4d18-469b-b3a9-5a4163c48af1@f9941",
  2056. "__expectedType__": "cc.SpriteFrame"
  2057. },
  2058. "_type": 0,
  2059. "_fillType": 0,
  2060. "_sizeMode": 1,
  2061. "_fillCenter": {
  2062. "__type__": "cc.Vec2",
  2063. "x": 0,
  2064. "y": 0
  2065. },
  2066. "_fillStart": 0,
  2067. "_fillRange": 0,
  2068. "_isTrimmedMode": true,
  2069. "_useGrayscale": false,
  2070. "_atlas": null,
  2071. "_id": ""
  2072. },
  2073. {
  2074. "__type__": "cc.CompPrefabInfo",
  2075. "fileId": "a1IEdc3IlD3po11B4sTntW"
  2076. },
  2077. {
  2078. "__type__": "cc.PrefabInfo",
  2079. "root": {
  2080. "__id__": 1
  2081. },
  2082. "asset": {
  2083. "__id__": 0
  2084. },
  2085. "fileId": "62rPwqWHBPnrrQDRtR3S+Y",
  2086. "instance": null,
  2087. "targetOverrides": null,
  2088. "nestedPrefabInstanceRoots": null
  2089. },
  2090. {
  2091. "__type__": "cc.Node",
  2092. "_name": "lab_tips",
  2093. "_objFlags": 0,
  2094. "__editorExtras__": {},
  2095. "_parent": {
  2096. "__id__": 18
  2097. },
  2098. "_children": [],
  2099. "_active": true,
  2100. "_components": [
  2101. {
  2102. "__id__": 90
  2103. },
  2104. {
  2105. "__id__": 92
  2106. }
  2107. ],
  2108. "_prefab": {
  2109. "__id__": 94
  2110. },
  2111. "_lpos": {
  2112. "__type__": "cc.Vec3",
  2113. "x": -127.243,
  2114. "y": -109.419,
  2115. "z": 0
  2116. },
  2117. "_lrot": {
  2118. "__type__": "cc.Quat",
  2119. "x": 0,
  2120. "y": 0,
  2121. "z": 0,
  2122. "w": 1
  2123. },
  2124. "_lscale": {
  2125. "__type__": "cc.Vec3",
  2126. "x": 1,
  2127. "y": 1,
  2128. "z": 1
  2129. },
  2130. "_mobility": 0,
  2131. "_layer": 33554432,
  2132. "_euler": {
  2133. "__type__": "cc.Vec3",
  2134. "x": 0,
  2135. "y": 0,
  2136. "z": 0
  2137. },
  2138. "_id": ""
  2139. },
  2140. {
  2141. "__type__": "cc.UITransform",
  2142. "_name": "",
  2143. "_objFlags": 0,
  2144. "__editorExtras__": {},
  2145. "node": {
  2146. "__id__": 89
  2147. },
  2148. "_enabled": true,
  2149. "__prefab": {
  2150. "__id__": 91
  2151. },
  2152. "_contentSize": {
  2153. "__type__": "cc.Size",
  2154. "width": 208,
  2155. "height": 58.4
  2156. },
  2157. "_anchorPoint": {
  2158. "__type__": "cc.Vec2",
  2159. "x": 0.5,
  2160. "y": 0.5
  2161. },
  2162. "_id": ""
  2163. },
  2164. {
  2165. "__type__": "cc.CompPrefabInfo",
  2166. "fileId": "b1URs/zrZNXZMiz/TRQtfz"
  2167. },
  2168. {
  2169. "__type__": "cc.Label",
  2170. "_name": "",
  2171. "_objFlags": 0,
  2172. "__editorExtras__": {},
  2173. "node": {
  2174. "__id__": 89
  2175. },
  2176. "_enabled": true,
  2177. "__prefab": {
  2178. "__id__": 93
  2179. },
  2180. "_customMaterial": null,
  2181. "_srcBlendFactor": 2,
  2182. "_dstBlendFactor": 4,
  2183. "_color": {
  2184. "__type__": "cc.Color",
  2185. "r": 255,
  2186. "g": 255,
  2187. "b": 255,
  2188. "a": 255
  2189. },
  2190. "_string": "放置速度快",
  2191. "_horizontalAlign": 1,
  2192. "_verticalAlign": 1,
  2193. "_actualFontSize": 40,
  2194. "_fontSize": 40,
  2195. "_fontFamily": "Arial",
  2196. "_lineHeight": 40,
  2197. "_overflow": 0,
  2198. "_enableWrapText": true,
  2199. "_font": null,
  2200. "_isSystemFontUsed": true,
  2201. "_spacingX": 0,
  2202. "_isItalic": false,
  2203. "_isBold": true,
  2204. "_isUnderline": false,
  2205. "_underlineHeight": 2,
  2206. "_cacheMode": 0,
  2207. "_enableOutline": true,
  2208. "_outlineColor": {
  2209. "__type__": "cc.Color",
  2210. "r": 88,
  2211. "g": 42,
  2212. "b": 9,
  2213. "a": 255
  2214. },
  2215. "_outlineWidth": 4,
  2216. "_enableShadow": false,
  2217. "_shadowColor": {
  2218. "__type__": "cc.Color",
  2219. "r": 0,
  2220. "g": 0,
  2221. "b": 0,
  2222. "a": 255
  2223. },
  2224. "_shadowOffset": {
  2225. "__type__": "cc.Vec2",
  2226. "x": 2,
  2227. "y": 2
  2228. },
  2229. "_shadowBlur": 2,
  2230. "_id": ""
  2231. },
  2232. {
  2233. "__type__": "cc.CompPrefabInfo",
  2234. "fileId": "cauh0Kb+tHRrxnq69c4oxm"
  2235. },
  2236. {
  2237. "__type__": "cc.PrefabInfo",
  2238. "root": {
  2239. "__id__": 1
  2240. },
  2241. "asset": {
  2242. "__id__": 0
  2243. },
  2244. "fileId": "ddVY2MzbVFcpUNALX97b/4",
  2245. "instance": null,
  2246. "targetOverrides": null,
  2247. "nestedPrefabInstanceRoots": null
  2248. },
  2249. {
  2250. "__type__": "cc.Node",
  2251. "_name": "btn_open",
  2252. "_objFlags": 0,
  2253. "__editorExtras__": {},
  2254. "_parent": {
  2255. "__id__": 18
  2256. },
  2257. "_children": [
  2258. {
  2259. "__id__": 96
  2260. },
  2261. {
  2262. "__id__": 102
  2263. },
  2264. {
  2265. "__id__": 108
  2266. }
  2267. ],
  2268. "_active": true,
  2269. "_components": [
  2270. {
  2271. "__id__": 114
  2272. },
  2273. {
  2274. "__id__": 116
  2275. },
  2276. {
  2277. "__id__": 118
  2278. }
  2279. ],
  2280. "_prefab": {
  2281. "__id__": 120
  2282. },
  2283. "_lpos": {
  2284. "__type__": "cc.Vec3",
  2285. "x": 0,
  2286. "y": -269.536,
  2287. "z": 0
  2288. },
  2289. "_lrot": {
  2290. "__type__": "cc.Quat",
  2291. "x": 0,
  2292. "y": 0,
  2293. "z": 0,
  2294. "w": 1
  2295. },
  2296. "_lscale": {
  2297. "__type__": "cc.Vec3",
  2298. "x": 1,
  2299. "y": 1,
  2300. "z": 1
  2301. },
  2302. "_mobility": 0,
  2303. "_layer": 33554432,
  2304. "_euler": {
  2305. "__type__": "cc.Vec3",
  2306. "x": 0,
  2307. "y": 0,
  2308. "z": 0
  2309. },
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.Node",
  2314. "_name": "icocn_award",
  2315. "_objFlags": 0,
  2316. "__editorExtras__": {},
  2317. "_parent": {
  2318. "__id__": 95
  2319. },
  2320. "_children": [],
  2321. "_active": true,
  2322. "_components": [
  2323. {
  2324. "__id__": 97
  2325. },
  2326. {
  2327. "__id__": 99
  2328. }
  2329. ],
  2330. "_prefab": {
  2331. "__id__": 101
  2332. },
  2333. "_lpos": {
  2334. "__type__": "cc.Vec3",
  2335. "x": 147.367,
  2336. "y": 68.157,
  2337. "z": 0
  2338. },
  2339. "_lrot": {
  2340. "__type__": "cc.Quat",
  2341. "x": 0,
  2342. "y": 0,
  2343. "z": 0,
  2344. "w": 1
  2345. },
  2346. "_lscale": {
  2347. "__type__": "cc.Vec3",
  2348. "x": 1,
  2349. "y": 1,
  2350. "z": 1
  2351. },
  2352. "_mobility": 0,
  2353. "_layer": 33554432,
  2354. "_euler": {
  2355. "__type__": "cc.Vec3",
  2356. "x": 0,
  2357. "y": 0,
  2358. "z": 0
  2359. },
  2360. "_id": ""
  2361. },
  2362. {
  2363. "__type__": "cc.UITransform",
  2364. "_name": "",
  2365. "_objFlags": 0,
  2366. "__editorExtras__": {},
  2367. "node": {
  2368. "__id__": 96
  2369. },
  2370. "_enabled": true,
  2371. "__prefab": {
  2372. "__id__": 98
  2373. },
  2374. "_contentSize": {
  2375. "__type__": "cc.Size",
  2376. "width": 132,
  2377. "height": 88
  2378. },
  2379. "_anchorPoint": {
  2380. "__type__": "cc.Vec2",
  2381. "x": 0.5,
  2382. "y": 0.5
  2383. },
  2384. "_id": ""
  2385. },
  2386. {
  2387. "__type__": "cc.CompPrefabInfo",
  2388. "fileId": "3c5mxsBL5ANJUmueAhF14U"
  2389. },
  2390. {
  2391. "__type__": "cc.Sprite",
  2392. "_name": "",
  2393. "_objFlags": 0,
  2394. "__editorExtras__": {},
  2395. "node": {
  2396. "__id__": 96
  2397. },
  2398. "_enabled": true,
  2399. "__prefab": {
  2400. "__id__": 100
  2401. },
  2402. "_customMaterial": null,
  2403. "_srcBlendFactor": 2,
  2404. "_dstBlendFactor": 4,
  2405. "_color": {
  2406. "__type__": "cc.Color",
  2407. "r": 255,
  2408. "g": 255,
  2409. "b": 255,
  2410. "a": 255
  2411. },
  2412. "_spriteFrame": {
  2413. "__uuid__": "cccbcf13-ba5b-4a72-88ff-2d312054c4fd@f9941",
  2414. "__expectedType__": "cc.SpriteFrame"
  2415. },
  2416. "_type": 0,
  2417. "_fillType": 0,
  2418. "_sizeMode": 1,
  2419. "_fillCenter": {
  2420. "__type__": "cc.Vec2",
  2421. "x": 0,
  2422. "y": 0
  2423. },
  2424. "_fillStart": 0,
  2425. "_fillRange": 0,
  2426. "_isTrimmedMode": true,
  2427. "_useGrayscale": false,
  2428. "_atlas": null,
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.CompPrefabInfo",
  2433. "fileId": "e4MYzqfQJAl7pev3pdjH/8"
  2434. },
  2435. {
  2436. "__type__": "cc.PrefabInfo",
  2437. "root": {
  2438. "__id__": 1
  2439. },
  2440. "asset": {
  2441. "__id__": 0
  2442. },
  2443. "fileId": "27LyvWJTFMmpMCs3c/xca1",
  2444. "instance": null,
  2445. "targetOverrides": null,
  2446. "nestedPrefabInstanceRoots": null
  2447. },
  2448. {
  2449. "__type__": "cc.Node",
  2450. "_name": "icon_vector",
  2451. "_objFlags": 0,
  2452. "__editorExtras__": {},
  2453. "_parent": {
  2454. "__id__": 95
  2455. },
  2456. "_children": [],
  2457. "_active": true,
  2458. "_components": [
  2459. {
  2460. "__id__": 103
  2461. },
  2462. {
  2463. "__id__": 105
  2464. }
  2465. ],
  2466. "_prefab": {
  2467. "__id__": 107
  2468. },
  2469. "_lpos": {
  2470. "__type__": "cc.Vec3",
  2471. "x": -97.88,
  2472. "y": 1.094,
  2473. "z": 0
  2474. },
  2475. "_lrot": {
  2476. "__type__": "cc.Quat",
  2477. "x": 0,
  2478. "y": 0,
  2479. "z": 0,
  2480. "w": 1
  2481. },
  2482. "_lscale": {
  2483. "__type__": "cc.Vec3",
  2484. "x": 1,
  2485. "y": 1,
  2486. "z": 1
  2487. },
  2488. "_mobility": 0,
  2489. "_layer": 33554432,
  2490. "_euler": {
  2491. "__type__": "cc.Vec3",
  2492. "x": 0,
  2493. "y": 0,
  2494. "z": 0
  2495. },
  2496. "_id": ""
  2497. },
  2498. {
  2499. "__type__": "cc.UITransform",
  2500. "_name": "",
  2501. "_objFlags": 0,
  2502. "__editorExtras__": {},
  2503. "node": {
  2504. "__id__": 102
  2505. },
  2506. "_enabled": true,
  2507. "__prefab": {
  2508. "__id__": 104
  2509. },
  2510. "_contentSize": {
  2511. "__type__": "cc.Size",
  2512. "width": 56,
  2513. "height": 56
  2514. },
  2515. "_anchorPoint": {
  2516. "__type__": "cc.Vec2",
  2517. "x": 0.5,
  2518. "y": 0.5
  2519. },
  2520. "_id": ""
  2521. },
  2522. {
  2523. "__type__": "cc.CompPrefabInfo",
  2524. "fileId": "73q3DdBgBF/L2939g4mpxc"
  2525. },
  2526. {
  2527. "__type__": "cc.Sprite",
  2528. "_name": "",
  2529. "_objFlags": 0,
  2530. "__editorExtras__": {},
  2531. "node": {
  2532. "__id__": 102
  2533. },
  2534. "_enabled": true,
  2535. "__prefab": {
  2536. "__id__": 106
  2537. },
  2538. "_customMaterial": null,
  2539. "_srcBlendFactor": 2,
  2540. "_dstBlendFactor": 4,
  2541. "_color": {
  2542. "__type__": "cc.Color",
  2543. "r": 255,
  2544. "g": 255,
  2545. "b": 255,
  2546. "a": 255
  2547. },
  2548. "_spriteFrame": {
  2549. "__uuid__": "e4d52b35-4d18-469b-b3a9-5a4163c48af1@f9941",
  2550. "__expectedType__": "cc.SpriteFrame"
  2551. },
  2552. "_type": 0,
  2553. "_fillType": 0,
  2554. "_sizeMode": 1,
  2555. "_fillCenter": {
  2556. "__type__": "cc.Vec2",
  2557. "x": 0,
  2558. "y": 0
  2559. },
  2560. "_fillStart": 0,
  2561. "_fillRange": 0,
  2562. "_isTrimmedMode": true,
  2563. "_useGrayscale": false,
  2564. "_atlas": null,
  2565. "_id": ""
  2566. },
  2567. {
  2568. "__type__": "cc.CompPrefabInfo",
  2569. "fileId": "1419vlWeFNSrBflirwpMbz"
  2570. },
  2571. {
  2572. "__type__": "cc.PrefabInfo",
  2573. "root": {
  2574. "__id__": 1
  2575. },
  2576. "asset": {
  2577. "__id__": 0
  2578. },
  2579. "fileId": "0c87ntcHJDb404OmoCG5Uy",
  2580. "instance": null,
  2581. "targetOverrides": null,
  2582. "nestedPrefabInstanceRoots": null
  2583. },
  2584. {
  2585. "__type__": "cc.Node",
  2586. "_name": "Label",
  2587. "_objFlags": 512,
  2588. "__editorExtras__": {},
  2589. "_parent": {
  2590. "__id__": 95
  2591. },
  2592. "_children": [],
  2593. "_active": true,
  2594. "_components": [
  2595. {
  2596. "__id__": 109
  2597. },
  2598. {
  2599. "__id__": 111
  2600. }
  2601. ],
  2602. "_prefab": {
  2603. "__id__": 113
  2604. },
  2605. "_lpos": {
  2606. "__type__": "cc.Vec3",
  2607. "x": 29.862,
  2608. "y": 4.778,
  2609. "z": 0
  2610. },
  2611. "_lrot": {
  2612. "__type__": "cc.Quat",
  2613. "x": 0,
  2614. "y": 0,
  2615. "z": 0,
  2616. "w": 1
  2617. },
  2618. "_lscale": {
  2619. "__type__": "cc.Vec3",
  2620. "x": 1,
  2621. "y": 1,
  2622. "z": 1
  2623. },
  2624. "_mobility": 0,
  2625. "_layer": 33554432,
  2626. "_euler": {
  2627. "__type__": "cc.Vec3",
  2628. "x": 0,
  2629. "y": 0,
  2630. "z": 0
  2631. },
  2632. "_id": ""
  2633. },
  2634. {
  2635. "__type__": "cc.UITransform",
  2636. "_name": "",
  2637. "_objFlags": 0,
  2638. "__editorExtras__": {},
  2639. "node": {
  2640. "__id__": 108
  2641. },
  2642. "_enabled": true,
  2643. "__prefab": {
  2644. "__id__": 110
  2645. },
  2646. "_contentSize": {
  2647. "__type__": "cc.Size",
  2648. "width": 300,
  2649. "height": 60
  2650. },
  2651. "_anchorPoint": {
  2652. "__type__": "cc.Vec2",
  2653. "x": 0.5,
  2654. "y": 0.5
  2655. },
  2656. "_id": ""
  2657. },
  2658. {
  2659. "__type__": "cc.CompPrefabInfo",
  2660. "fileId": "51VQZmJO1PJZeqF/7I8wJd"
  2661. },
  2662. {
  2663. "__type__": "cc.Label",
  2664. "_name": "",
  2665. "_objFlags": 0,
  2666. "__editorExtras__": {},
  2667. "node": {
  2668. "__id__": 108
  2669. },
  2670. "_enabled": true,
  2671. "__prefab": {
  2672. "__id__": 112
  2673. },
  2674. "_customMaterial": null,
  2675. "_srcBlendFactor": 2,
  2676. "_dstBlendFactor": 4,
  2677. "_color": {
  2678. "__type__": "cc.Color",
  2679. "r": 255,
  2680. "g": 255,
  2681. "b": 255,
  2682. "a": 255
  2683. },
  2684. "_string": "立即启动",
  2685. "_horizontalAlign": 1,
  2686. "_verticalAlign": 1,
  2687. "_actualFontSize": 48,
  2688. "_fontSize": 48,
  2689. "_fontFamily": "Arial",
  2690. "_lineHeight": 48,
  2691. "_overflow": 1,
  2692. "_enableWrapText": false,
  2693. "_font": null,
  2694. "_isSystemFontUsed": true,
  2695. "_spacingX": 0,
  2696. "_isItalic": false,
  2697. "_isBold": true,
  2698. "_isUnderline": false,
  2699. "_underlineHeight": 2,
  2700. "_cacheMode": 0,
  2701. "_enableOutline": true,
  2702. "_outlineColor": {
  2703. "__type__": "cc.Color",
  2704. "r": 88,
  2705. "g": 42,
  2706. "b": 9,
  2707. "a": 255
  2708. },
  2709. "_outlineWidth": 4,
  2710. "_enableShadow": false,
  2711. "_shadowColor": {
  2712. "__type__": "cc.Color",
  2713. "r": 0,
  2714. "g": 0,
  2715. "b": 0,
  2716. "a": 255
  2717. },
  2718. "_shadowOffset": {
  2719. "__type__": "cc.Vec2",
  2720. "x": 2,
  2721. "y": 2
  2722. },
  2723. "_shadowBlur": 2,
  2724. "_id": ""
  2725. },
  2726. {
  2727. "__type__": "cc.CompPrefabInfo",
  2728. "fileId": "6cwJkhAUdLwKAQT4S/mm/G"
  2729. },
  2730. {
  2731. "__type__": "cc.PrefabInfo",
  2732. "root": {
  2733. "__id__": 1
  2734. },
  2735. "asset": {
  2736. "__id__": 0
  2737. },
  2738. "fileId": "2bPkcQgH5Ezo9E/7s6zjjb",
  2739. "instance": null,
  2740. "targetOverrides": null,
  2741. "nestedPrefabInstanceRoots": null
  2742. },
  2743. {
  2744. "__type__": "cc.UITransform",
  2745. "_name": "",
  2746. "_objFlags": 0,
  2747. "__editorExtras__": {},
  2748. "node": {
  2749. "__id__": 95
  2750. },
  2751. "_enabled": true,
  2752. "__prefab": {
  2753. "__id__": 115
  2754. },
  2755. "_contentSize": {
  2756. "__type__": "cc.Size",
  2757. "width": 498,
  2758. "height": 140
  2759. },
  2760. "_anchorPoint": {
  2761. "__type__": "cc.Vec2",
  2762. "x": 0.5,
  2763. "y": 0.5
  2764. },
  2765. "_id": ""
  2766. },
  2767. {
  2768. "__type__": "cc.CompPrefabInfo",
  2769. "fileId": "fcbS4lPm9NToqyQ00LOyPQ"
  2770. },
  2771. {
  2772. "__type__": "cc.Sprite",
  2773. "_name": "",
  2774. "_objFlags": 0,
  2775. "__editorExtras__": {},
  2776. "node": {
  2777. "__id__": 95
  2778. },
  2779. "_enabled": true,
  2780. "__prefab": {
  2781. "__id__": 117
  2782. },
  2783. "_customMaterial": null,
  2784. "_srcBlendFactor": 2,
  2785. "_dstBlendFactor": 4,
  2786. "_color": {
  2787. "__type__": "cc.Color",
  2788. "r": 255,
  2789. "g": 255,
  2790. "b": 255,
  2791. "a": 255
  2792. },
  2793. "_spriteFrame": {
  2794. "__uuid__": "e8764bc7-2f97-4e71-a73b-a525a89d1855@f9941",
  2795. "__expectedType__": "cc.SpriteFrame"
  2796. },
  2797. "_type": 1,
  2798. "_fillType": 0,
  2799. "_sizeMode": 2,
  2800. "_fillCenter": {
  2801. "__type__": "cc.Vec2",
  2802. "x": 0,
  2803. "y": 0
  2804. },
  2805. "_fillStart": 0,
  2806. "_fillRange": 0,
  2807. "_isTrimmedMode": true,
  2808. "_useGrayscale": false,
  2809. "_atlas": null,
  2810. "_id": ""
  2811. },
  2812. {
  2813. "__type__": "cc.CompPrefabInfo",
  2814. "fileId": "40/+L7hqdIq625mn7HWn94"
  2815. },
  2816. {
  2817. "__type__": "cc.Button",
  2818. "_name": "",
  2819. "_objFlags": 0,
  2820. "__editorExtras__": {},
  2821. "node": {
  2822. "__id__": 95
  2823. },
  2824. "_enabled": true,
  2825. "__prefab": {
  2826. "__id__": 119
  2827. },
  2828. "clickEvents": [],
  2829. "_interactable": true,
  2830. "_transition": 3,
  2831. "_normalColor": {
  2832. "__type__": "cc.Color",
  2833. "r": 214,
  2834. "g": 214,
  2835. "b": 214,
  2836. "a": 255
  2837. },
  2838. "_hoverColor": {
  2839. "__type__": "cc.Color",
  2840. "r": 211,
  2841. "g": 211,
  2842. "b": 211,
  2843. "a": 255
  2844. },
  2845. "_pressedColor": {
  2846. "__type__": "cc.Color",
  2847. "r": 255,
  2848. "g": 255,
  2849. "b": 255,
  2850. "a": 255
  2851. },
  2852. "_disabledColor": {
  2853. "__type__": "cc.Color",
  2854. "r": 124,
  2855. "g": 124,
  2856. "b": 124,
  2857. "a": 255
  2858. },
  2859. "_normalSprite": null,
  2860. "_hoverSprite": null,
  2861. "_pressedSprite": null,
  2862. "_disabledSprite": null,
  2863. "_duration": 0.1,
  2864. "_zoomScale": 1.2,
  2865. "_target": {
  2866. "__id__": 95
  2867. },
  2868. "_id": ""
  2869. },
  2870. {
  2871. "__type__": "cc.CompPrefabInfo",
  2872. "fileId": "aeCP6y4lNOC5Pi7wUHxGmB"
  2873. },
  2874. {
  2875. "__type__": "cc.PrefabInfo",
  2876. "root": {
  2877. "__id__": 1
  2878. },
  2879. "asset": {
  2880. "__id__": 0
  2881. },
  2882. "fileId": "8djwhmeo5KO4/SK7ImZnPS",
  2883. "instance": null,
  2884. "targetOverrides": null,
  2885. "nestedPrefabInstanceRoots": null
  2886. },
  2887. {
  2888. "__type__": "cc.Node",
  2889. "_name": "btn_no",
  2890. "_objFlags": 0,
  2891. "__editorExtras__": {},
  2892. "_parent": {
  2893. "__id__": 18
  2894. },
  2895. "_children": [],
  2896. "_active": true,
  2897. "_components": [
  2898. {
  2899. "__id__": 122
  2900. },
  2901. {
  2902. "__id__": 124
  2903. },
  2904. {
  2905. "__id__": 126
  2906. },
  2907. {
  2908. "__id__": 128
  2909. },
  2910. {
  2911. "__id__": 130
  2912. }
  2913. ],
  2914. "_prefab": {
  2915. "__id__": 132
  2916. },
  2917. "_lpos": {
  2918. "__type__": "cc.Vec3",
  2919. "x": 0,
  2920. "y": -508.499,
  2921. "z": 0
  2922. },
  2923. "_lrot": {
  2924. "__type__": "cc.Quat",
  2925. "x": 0,
  2926. "y": 0,
  2927. "z": 0,
  2928. "w": 1
  2929. },
  2930. "_lscale": {
  2931. "__type__": "cc.Vec3",
  2932. "x": 1,
  2933. "y": 1,
  2934. "z": 1
  2935. },
  2936. "_mobility": 0,
  2937. "_layer": 33554432,
  2938. "_euler": {
  2939. "__type__": "cc.Vec3",
  2940. "x": 0,
  2941. "y": 0,
  2942. "z": 0
  2943. },
  2944. "_id": ""
  2945. },
  2946. {
  2947. "__type__": "cc.UITransform",
  2948. "_name": "",
  2949. "_objFlags": 0,
  2950. "__editorExtras__": {},
  2951. "node": {
  2952. "__id__": 121
  2953. },
  2954. "_enabled": true,
  2955. "__prefab": {
  2956. "__id__": 123
  2957. },
  2958. "_contentSize": {
  2959. "__type__": "cc.Size",
  2960. "width": 84,
  2961. "height": 35.28
  2962. },
  2963. "_anchorPoint": {
  2964. "__type__": "cc.Vec2",
  2965. "x": 0.5,
  2966. "y": 0.5
  2967. },
  2968. "_id": ""
  2969. },
  2970. {
  2971. "__type__": "cc.CompPrefabInfo",
  2972. "fileId": "25GpyYCUNIL6Ch3luqEjy3"
  2973. },
  2974. {
  2975. "__type__": "cc.Label",
  2976. "_name": "",
  2977. "_objFlags": 0,
  2978. "__editorExtras__": {},
  2979. "node": {
  2980. "__id__": 121
  2981. },
  2982. "_enabled": true,
  2983. "__prefab": {
  2984. "__id__": 125
  2985. },
  2986. "_customMaterial": null,
  2987. "_srcBlendFactor": 2,
  2988. "_dstBlendFactor": 4,
  2989. "_color": {
  2990. "__type__": "cc.Color",
  2991. "r": 158,
  2992. "g": 158,
  2993. "b": 158,
  2994. "a": 255
  2995. },
  2996. "_string": "不需要",
  2997. "_horizontalAlign": 1,
  2998. "_verticalAlign": 1,
  2999. "_actualFontSize": 28,
  3000. "_fontSize": 28,
  3001. "_fontFamily": "Arial",
  3002. "_lineHeight": 28,
  3003. "_overflow": 0,
  3004. "_enableWrapText": true,
  3005. "_font": null,
  3006. "_isSystemFontUsed": true,
  3007. "_spacingX": 0,
  3008. "_isItalic": false,
  3009. "_isBold": false,
  3010. "_isUnderline": true,
  3011. "_underlineHeight": 2,
  3012. "_cacheMode": 0,
  3013. "_enableOutline": false,
  3014. "_outlineColor": {
  3015. "__type__": "cc.Color",
  3016. "r": 0,
  3017. "g": 0,
  3018. "b": 0,
  3019. "a": 255
  3020. },
  3021. "_outlineWidth": 2,
  3022. "_enableShadow": false,
  3023. "_shadowColor": {
  3024. "__type__": "cc.Color",
  3025. "r": 0,
  3026. "g": 0,
  3027. "b": 0,
  3028. "a": 255
  3029. },
  3030. "_shadowOffset": {
  3031. "__type__": "cc.Vec2",
  3032. "x": 2,
  3033. "y": 2
  3034. },
  3035. "_shadowBlur": 2,
  3036. "_id": ""
  3037. },
  3038. {
  3039. "__type__": "cc.CompPrefabInfo",
  3040. "fileId": "5bnTwh7adIr5i6FFVbh8s8"
  3041. },
  3042. {
  3043. "__type__": "cc.Button",
  3044. "_name": "",
  3045. "_objFlags": 0,
  3046. "__editorExtras__": {},
  3047. "node": {
  3048. "__id__": 121
  3049. },
  3050. "_enabled": true,
  3051. "__prefab": {
  3052. "__id__": 127
  3053. },
  3054. "clickEvents": [],
  3055. "_interactable": true,
  3056. "_transition": 0,
  3057. "_normalColor": {
  3058. "__type__": "cc.Color",
  3059. "r": 255,
  3060. "g": 255,
  3061. "b": 255,
  3062. "a": 255
  3063. },
  3064. "_hoverColor": {
  3065. "__type__": "cc.Color",
  3066. "r": 211,
  3067. "g": 211,
  3068. "b": 211,
  3069. "a": 255
  3070. },
  3071. "_pressedColor": {
  3072. "__type__": "cc.Color",
  3073. "r": 255,
  3074. "g": 255,
  3075. "b": 255,
  3076. "a": 255
  3077. },
  3078. "_disabledColor": {
  3079. "__type__": "cc.Color",
  3080. "r": 124,
  3081. "g": 124,
  3082. "b": 124,
  3083. "a": 255
  3084. },
  3085. "_normalSprite": null,
  3086. "_hoverSprite": null,
  3087. "_pressedSprite": null,
  3088. "_disabledSprite": null,
  3089. "_duration": 0.1,
  3090. "_zoomScale": 1.2,
  3091. "_target": null,
  3092. "_id": ""
  3093. },
  3094. {
  3095. "__type__": "cc.CompPrefabInfo",
  3096. "fileId": "6bvUPD56FGo6L2Zb2FIyrM"
  3097. },
  3098. {
  3099. "__type__": "110c8vEd5NEPL/N9meGQnaX",
  3100. "_name": "",
  3101. "_objFlags": 0,
  3102. "__editorExtras__": {},
  3103. "node": {
  3104. "__id__": 121
  3105. },
  3106. "_enabled": true,
  3107. "__prefab": {
  3108. "__id__": 129
  3109. },
  3110. "_params": [],
  3111. "_dataID": "doubleSpeed_close",
  3112. "_id": ""
  3113. },
  3114. {
  3115. "__type__": "cc.CompPrefabInfo",
  3116. "fileId": "3aWOCjHANMDrwuN53ZSZ8E"
  3117. },
  3118. {
  3119. "__type__": "cc.Button",
  3120. "_name": "",
  3121. "_objFlags": 0,
  3122. "__editorExtras__": {},
  3123. "node": {
  3124. "__id__": 121
  3125. },
  3126. "_enabled": true,
  3127. "__prefab": {
  3128. "__id__": 131
  3129. },
  3130. "clickEvents": [],
  3131. "_interactable": true,
  3132. "_transition": 0,
  3133. "_normalColor": {
  3134. "__type__": "cc.Color",
  3135. "r": 255,
  3136. "g": 255,
  3137. "b": 255,
  3138. "a": 255
  3139. },
  3140. "_hoverColor": {
  3141. "__type__": "cc.Color",
  3142. "r": 211,
  3143. "g": 211,
  3144. "b": 211,
  3145. "a": 255
  3146. },
  3147. "_pressedColor": {
  3148. "__type__": "cc.Color",
  3149. "r": 255,
  3150. "g": 255,
  3151. "b": 255,
  3152. "a": 255
  3153. },
  3154. "_disabledColor": {
  3155. "__type__": "cc.Color",
  3156. "r": 124,
  3157. "g": 124,
  3158. "b": 124,
  3159. "a": 255
  3160. },
  3161. "_normalSprite": null,
  3162. "_hoverSprite": null,
  3163. "_pressedSprite": null,
  3164. "_disabledSprite": null,
  3165. "_duration": 0.1,
  3166. "_zoomScale": 1.2,
  3167. "_target": null,
  3168. "_id": ""
  3169. },
  3170. {
  3171. "__type__": "cc.CompPrefabInfo",
  3172. "fileId": "d8bMKJh75IEo5UoeVZbbJ2"
  3173. },
  3174. {
  3175. "__type__": "cc.PrefabInfo",
  3176. "root": {
  3177. "__id__": 1
  3178. },
  3179. "asset": {
  3180. "__id__": 0
  3181. },
  3182. "fileId": "219K2rfPJE3afUCzfGo/sQ",
  3183. "instance": null,
  3184. "targetOverrides": null,
  3185. "nestedPrefabInstanceRoots": null
  3186. },
  3187. {
  3188. "__type__": "cc.Node",
  3189. "_name": "guide",
  3190. "_objFlags": 0,
  3191. "__editorExtras__": {},
  3192. "_parent": {
  3193. "__id__": 18
  3194. },
  3195. "_children": [],
  3196. "_active": true,
  3197. "_components": [
  3198. {
  3199. "__id__": 134
  3200. },
  3201. {
  3202. "__id__": 136
  3203. },
  3204. {
  3205. "__id__": 138
  3206. }
  3207. ],
  3208. "_prefab": {
  3209. "__id__": 140
  3210. },
  3211. "_lpos": {
  3212. "__type__": "cc.Vec3",
  3213. "x": 234.159,
  3214. "y": -350.987,
  3215. "z": 0
  3216. },
  3217. "_lrot": {
  3218. "__type__": "cc.Quat",
  3219. "x": 0,
  3220. "y": 0,
  3221. "z": 0,
  3222. "w": 1
  3223. },
  3224. "_lscale": {
  3225. "__type__": "cc.Vec3",
  3226. "x": 0.7,
  3227. "y": 0.7,
  3228. "z": 1
  3229. },
  3230. "_mobility": 0,
  3231. "_layer": 33554432,
  3232. "_euler": {
  3233. "__type__": "cc.Vec3",
  3234. "x": 0,
  3235. "y": 0,
  3236. "z": 0
  3237. },
  3238. "_id": ""
  3239. },
  3240. {
  3241. "__type__": "cc.UITransform",
  3242. "_name": "",
  3243. "_objFlags": 0,
  3244. "__editorExtras__": {},
  3245. "node": {
  3246. "__id__": 133
  3247. },
  3248. "_enabled": true,
  3249. "__prefab": {
  3250. "__id__": 135
  3251. },
  3252. "_contentSize": {
  3253. "__type__": "cc.Size",
  3254. "width": 179,
  3255. "height": 193
  3256. },
  3257. "_anchorPoint": {
  3258. "__type__": "cc.Vec2",
  3259. "x": 0.5,
  3260. "y": 0.5
  3261. },
  3262. "_id": ""
  3263. },
  3264. {
  3265. "__type__": "cc.CompPrefabInfo",
  3266. "fileId": "a88c/4PbpFEY8mDISs+BOX"
  3267. },
  3268. {
  3269. "__type__": "cc.Sprite",
  3270. "_name": "",
  3271. "_objFlags": 0,
  3272. "__editorExtras__": {},
  3273. "node": {
  3274. "__id__": 133
  3275. },
  3276. "_enabled": true,
  3277. "__prefab": {
  3278. "__id__": 137
  3279. },
  3280. "_customMaterial": null,
  3281. "_srcBlendFactor": 2,
  3282. "_dstBlendFactor": 4,
  3283. "_color": {
  3284. "__type__": "cc.Color",
  3285. "r": 255,
  3286. "g": 255,
  3287. "b": 255,
  3288. "a": 255
  3289. },
  3290. "_spriteFrame": {
  3291. "__uuid__": "1883e639-28b3-4d59-96db-57ffaa299715@f9941",
  3292. "__expectedType__": "cc.SpriteFrame"
  3293. },
  3294. "_type": 0,
  3295. "_fillType": 0,
  3296. "_sizeMode": 0,
  3297. "_fillCenter": {
  3298. "__type__": "cc.Vec2",
  3299. "x": 0,
  3300. "y": 0
  3301. },
  3302. "_fillStart": 0,
  3303. "_fillRange": 0,
  3304. "_isTrimmedMode": true,
  3305. "_useGrayscale": false,
  3306. "_atlas": null,
  3307. "_id": ""
  3308. },
  3309. {
  3310. "__type__": "cc.CompPrefabInfo",
  3311. "fileId": "34Ecym1cxND5IkrUqilj3L"
  3312. },
  3313. {
  3314. "__type__": "cc.Animation",
  3315. "_name": "",
  3316. "_objFlags": 0,
  3317. "__editorExtras__": {},
  3318. "node": {
  3319. "__id__": 133
  3320. },
  3321. "_enabled": true,
  3322. "__prefab": {
  3323. "__id__": 139
  3324. },
  3325. "playOnLoad": false,
  3326. "_clips": [
  3327. {
  3328. "__uuid__": "f1b91ca4-bfcd-4774-a8e7-c741ea10beff",
  3329. "__expectedType__": "cc.AnimationClip"
  3330. }
  3331. ],
  3332. "_defaultClip": {
  3333. "__uuid__": "f1b91ca4-bfcd-4774-a8e7-c741ea10beff",
  3334. "__expectedType__": "cc.AnimationClip"
  3335. },
  3336. "_id": ""
  3337. },
  3338. {
  3339. "__type__": "cc.CompPrefabInfo",
  3340. "fileId": "8bzOWud/9DeYFGW+130BMk"
  3341. },
  3342. {
  3343. "__type__": "cc.PrefabInfo",
  3344. "root": {
  3345. "__id__": 1
  3346. },
  3347. "asset": {
  3348. "__id__": 0
  3349. },
  3350. "fileId": "6b3xuTmYFKy7OsNBsvqylp",
  3351. "instance": null,
  3352. "targetOverrides": null,
  3353. "nestedPrefabInstanceRoots": null
  3354. },
  3355. {
  3356. "__type__": "cc.UITransform",
  3357. "_name": "",
  3358. "_objFlags": 0,
  3359. "__editorExtras__": {},
  3360. "node": {
  3361. "__id__": 18
  3362. },
  3363. "_enabled": true,
  3364. "__prefab": {
  3365. "__id__": 142
  3366. },
  3367. "_contentSize": {
  3368. "__type__": "cc.Size",
  3369. "width": 624,
  3370. "height": 750
  3371. },
  3372. "_anchorPoint": {
  3373. "__type__": "cc.Vec2",
  3374. "x": 0.5,
  3375. "y": 0.5
  3376. },
  3377. "_id": ""
  3378. },
  3379. {
  3380. "__type__": "cc.CompPrefabInfo",
  3381. "fileId": "67c3xyVp5L243tZipmcOWS"
  3382. },
  3383. {
  3384. "__type__": "cc.Sprite",
  3385. "_name": "",
  3386. "_objFlags": 0,
  3387. "__editorExtras__": {},
  3388. "node": {
  3389. "__id__": 18
  3390. },
  3391. "_enabled": true,
  3392. "__prefab": {
  3393. "__id__": 144
  3394. },
  3395. "_customMaterial": null,
  3396. "_srcBlendFactor": 2,
  3397. "_dstBlendFactor": 4,
  3398. "_color": {
  3399. "__type__": "cc.Color",
  3400. "r": 255,
  3401. "g": 255,
  3402. "b": 255,
  3403. "a": 255
  3404. },
  3405. "_spriteFrame": {
  3406. "__uuid__": "8d1f4852-9eb2-4333-9516-32bf2999ff64@f9941",
  3407. "__expectedType__": "cc.SpriteFrame"
  3408. },
  3409. "_type": 1,
  3410. "_fillType": 0,
  3411. "_sizeMode": 0,
  3412. "_fillCenter": {
  3413. "__type__": "cc.Vec2",
  3414. "x": 0,
  3415. "y": 0
  3416. },
  3417. "_fillStart": 0,
  3418. "_fillRange": 0,
  3419. "_isTrimmedMode": true,
  3420. "_useGrayscale": false,
  3421. "_atlas": null,
  3422. "_id": ""
  3423. },
  3424. {
  3425. "__type__": "cc.CompPrefabInfo",
  3426. "fileId": "aclkU1gWhAMIw/kX/UPD5K"
  3427. },
  3428. {
  3429. "__type__": "cc.PrefabInfo",
  3430. "root": {
  3431. "__id__": 1
  3432. },
  3433. "asset": {
  3434. "__id__": 0
  3435. },
  3436. "fileId": "b7nO3GqSBPEZg5OwsCUB0E",
  3437. "instance": null,
  3438. "targetOverrides": null,
  3439. "nestedPrefabInstanceRoots": null
  3440. },
  3441. {
  3442. "__type__": "cc.UITransform",
  3443. "_name": "",
  3444. "_objFlags": 0,
  3445. "__editorExtras__": {},
  3446. "node": {
  3447. "__id__": 1
  3448. },
  3449. "_enabled": true,
  3450. "__prefab": {
  3451. "__id__": 147
  3452. },
  3453. "_contentSize": {
  3454. "__type__": "cc.Size",
  3455. "width": 720,
  3456. "height": 1600
  3457. },
  3458. "_anchorPoint": {
  3459. "__type__": "cc.Vec2",
  3460. "x": 0.5,
  3461. "y": 0.5
  3462. },
  3463. "_id": ""
  3464. },
  3465. {
  3466. "__type__": "cc.CompPrefabInfo",
  3467. "fileId": "aa/pbj/3FAnbGkuQ4H6nCe"
  3468. },
  3469. {
  3470. "__type__": "9a3eeLthz9Jl5cAz9BYJgZw",
  3471. "_name": "",
  3472. "_objFlags": 0,
  3473. "__editorExtras__": {},
  3474. "node": {
  3475. "__id__": 1
  3476. },
  3477. "_enabled": true,
  3478. "__prefab": {
  3479. "__id__": 149
  3480. },
  3481. "_id": ""
  3482. },
  3483. {
  3484. "__type__": "cc.CompPrefabInfo",
  3485. "fileId": "8ekpQ0rU9KY79i/ip3dGCK"
  3486. },
  3487. {
  3488. "__type__": "cc.Widget",
  3489. "_name": "",
  3490. "_objFlags": 0,
  3491. "__editorExtras__": {},
  3492. "node": {
  3493. "__id__": 1
  3494. },
  3495. "_enabled": true,
  3496. "__prefab": {
  3497. "__id__": 151
  3498. },
  3499. "_alignFlags": 45,
  3500. "_target": null,
  3501. "_left": 0,
  3502. "_right": 0,
  3503. "_top": 0,
  3504. "_bottom": 0,
  3505. "_horizontalCenter": 0,
  3506. "_verticalCenter": 0,
  3507. "_isAbsLeft": true,
  3508. "_isAbsRight": true,
  3509. "_isAbsTop": true,
  3510. "_isAbsBottom": true,
  3511. "_isAbsHorizontalCenter": true,
  3512. "_isAbsVerticalCenter": true,
  3513. "_originalWidth": 720,
  3514. "_originalHeight": 1280,
  3515. "_alignMode": 2,
  3516. "_lockFlags": 0,
  3517. "_id": ""
  3518. },
  3519. {
  3520. "__type__": "cc.CompPrefabInfo",
  3521. "fileId": "9deG+VU5RHmbSyIDQ2Not3"
  3522. },
  3523. {
  3524. "__type__": "cc.PrefabInfo",
  3525. "root": {
  3526. "__id__": 1
  3527. },
  3528. "asset": {
  3529. "__id__": 0
  3530. },
  3531. "fileId": "b1VzNJ6G5HWIzB7TmVyQ4Z",
  3532. "instance": null,
  3533. "targetOverrides": null,
  3534. "nestedPrefabInstanceRoots": [
  3535. {
  3536. "__id__": 2
  3537. }
  3538. ]
  3539. }
  3540. ]