keepDoubleSpeed.prefab 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "KeepDoubleSpeed",
  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": "KeepDoubleSpeed",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. }
  24. ],
  25. "_active": true,
  26. "_components": [
  27. {
  28. "__id__": 102
  29. },
  30. {
  31. "__id__": 104
  32. },
  33. {
  34. "__id__": 106
  35. }
  36. ],
  37. "_prefab": {
  38. "__id__": 108
  39. },
  40. "_lpos": {
  41. "__type__": "cc.Vec3",
  42. "x": 0,
  43. "y": 0,
  44. "z": 0
  45. },
  46. "_lrot": {
  47. "__type__": "cc.Quat",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0,
  51. "w": 1
  52. },
  53. "_lscale": {
  54. "__type__": "cc.Vec3",
  55. "x": 1,
  56. "y": 1,
  57. "z": 1
  58. },
  59. "_mobility": 0,
  60. "_layer": 33554432,
  61. "_euler": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_id": ""
  68. },
  69. {
  70. "__type__": "cc.Node",
  71. "_name": "Sprite",
  72. "_objFlags": 0,
  73. "__editorExtras__": {},
  74. "_parent": {
  75. "__id__": 1
  76. },
  77. "_children": [
  78. {
  79. "__id__": 3
  80. },
  81. {
  82. "__id__": 9
  83. },
  84. {
  85. "__id__": 15
  86. },
  87. {
  88. "__id__": 21
  89. },
  90. {
  91. "__id__": 27
  92. },
  93. {
  94. "__id__": 33
  95. },
  96. {
  97. "__id__": 39
  98. },
  99. {
  100. "__id__": 47
  101. },
  102. {
  103. "__id__": 73
  104. },
  105. {
  106. "__id__": 85
  107. },
  108. {
  109. "__id__": 91
  110. }
  111. ],
  112. "_active": true,
  113. "_components": [
  114. {
  115. "__id__": 97
  116. },
  117. {
  118. "__id__": 99
  119. }
  120. ],
  121. "_prefab": {
  122. "__id__": 101
  123. },
  124. "_lpos": {
  125. "__type__": "cc.Vec3",
  126. "x": 0,
  127. "y": 54.06,
  128. "z": 0
  129. },
  130. "_lrot": {
  131. "__type__": "cc.Quat",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0,
  135. "w": 1
  136. },
  137. "_lscale": {
  138. "__type__": "cc.Vec3",
  139. "x": 1,
  140. "y": 1,
  141. "z": 1
  142. },
  143. "_mobility": 0,
  144. "_layer": 33554432,
  145. "_euler": {
  146. "__type__": "cc.Vec3",
  147. "x": 0,
  148. "y": 0,
  149. "z": 0
  150. },
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.Node",
  155. "_name": "btn_bg",
  156. "_objFlags": 0,
  157. "__editorExtras__": {},
  158. "_parent": {
  159. "__id__": 2
  160. },
  161. "_children": [],
  162. "_active": true,
  163. "_components": [
  164. {
  165. "__id__": 4
  166. },
  167. {
  168. "__id__": 6
  169. }
  170. ],
  171. "_prefab": {
  172. "__id__": 8
  173. },
  174. "_lpos": {
  175. "__type__": "cc.Vec3",
  176. "x": 0,
  177. "y": 376.65,
  178. "z": 0
  179. },
  180. "_lrot": {
  181. "__type__": "cc.Quat",
  182. "x": 0,
  183. "y": 0,
  184. "z": 0,
  185. "w": 1
  186. },
  187. "_lscale": {
  188. "__type__": "cc.Vec3",
  189. "x": 1,
  190. "y": 1,
  191. "z": 1
  192. },
  193. "_mobility": 0,
  194. "_layer": 33554432,
  195. "_euler": {
  196. "__type__": "cc.Vec3",
  197. "x": 0,
  198. "y": 0,
  199. "z": 0
  200. },
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.UITransform",
  205. "_name": "",
  206. "_objFlags": 0,
  207. "__editorExtras__": {},
  208. "node": {
  209. "__id__": 3
  210. },
  211. "_enabled": true,
  212. "__prefab": {
  213. "__id__": 5
  214. },
  215. "_contentSize": {
  216. "__type__": "cc.Size",
  217. "width": 328,
  218. "height": 88
  219. },
  220. "_anchorPoint": {
  221. "__type__": "cc.Vec2",
  222. "x": 0.5,
  223. "y": 0.5
  224. },
  225. "_id": ""
  226. },
  227. {
  228. "__type__": "cc.CompPrefabInfo",
  229. "fileId": "8daJFNZf5HVaep0Vc6CBgQ"
  230. },
  231. {
  232. "__type__": "cc.Sprite",
  233. "_name": "",
  234. "_objFlags": 0,
  235. "__editorExtras__": {},
  236. "node": {
  237. "__id__": 3
  238. },
  239. "_enabled": true,
  240. "__prefab": {
  241. "__id__": 7
  242. },
  243. "_customMaterial": null,
  244. "_srcBlendFactor": 2,
  245. "_dstBlendFactor": 4,
  246. "_color": {
  247. "__type__": "cc.Color",
  248. "r": 255,
  249. "g": 255,
  250. "b": 255,
  251. "a": 255
  252. },
  253. "_spriteFrame": {
  254. "__uuid__": "30aabf49-1a8a-4da8-963f-6e7678d0b5b5@f9941",
  255. "__expectedType__": "cc.SpriteFrame"
  256. },
  257. "_type": 0,
  258. "_fillType": 0,
  259. "_sizeMode": 1,
  260. "_fillCenter": {
  261. "__type__": "cc.Vec2",
  262. "x": 0,
  263. "y": 0
  264. },
  265. "_fillStart": 0,
  266. "_fillRange": 0,
  267. "_isTrimmedMode": true,
  268. "_useGrayscale": false,
  269. "_atlas": null,
  270. "_id": ""
  271. },
  272. {
  273. "__type__": "cc.CompPrefabInfo",
  274. "fileId": "67eLWKwvdMjo3Joo5aUOkn"
  275. },
  276. {
  277. "__type__": "cc.PrefabInfo",
  278. "root": {
  279. "__id__": 1
  280. },
  281. "asset": {
  282. "__id__": 0
  283. },
  284. "fileId": "46aBbcKntNB5lAcK9X1Hd4",
  285. "instance": null,
  286. "targetOverrides": null,
  287. "nestedPrefabInstanceRoots": null
  288. },
  289. {
  290. "__type__": "cc.Node",
  291. "_name": "icon_2x",
  292. "_objFlags": 0,
  293. "__editorExtras__": {},
  294. "_parent": {
  295. "__id__": 2
  296. },
  297. "_children": [],
  298. "_active": true,
  299. "_components": [
  300. {
  301. "__id__": 10
  302. },
  303. {
  304. "__id__": 12
  305. }
  306. ],
  307. "_prefab": {
  308. "__id__": 14
  309. },
  310. "_lpos": {
  311. "__type__": "cc.Vec3",
  312. "x": 0,
  313. "y": 44.824,
  314. "z": 0
  315. },
  316. "_lrot": {
  317. "__type__": "cc.Quat",
  318. "x": 0,
  319. "y": 0,
  320. "z": 0,
  321. "w": 1
  322. },
  323. "_lscale": {
  324. "__type__": "cc.Vec3",
  325. "x": 1,
  326. "y": 1,
  327. "z": 1
  328. },
  329. "_mobility": 0,
  330. "_layer": 33554432,
  331. "_euler": {
  332. "__type__": "cc.Vec3",
  333. "x": 0,
  334. "y": 0,
  335. "z": 0
  336. },
  337. "_id": ""
  338. },
  339. {
  340. "__type__": "cc.UITransform",
  341. "_name": "",
  342. "_objFlags": 0,
  343. "__editorExtras__": {},
  344. "node": {
  345. "__id__": 9
  346. },
  347. "_enabled": true,
  348. "__prefab": {
  349. "__id__": 11
  350. },
  351. "_contentSize": {
  352. "__type__": "cc.Size",
  353. "width": 253,
  354. "height": 193
  355. },
  356. "_anchorPoint": {
  357. "__type__": "cc.Vec2",
  358. "x": 0.5,
  359. "y": 0.5
  360. },
  361. "_id": ""
  362. },
  363. {
  364. "__type__": "cc.CompPrefabInfo",
  365. "fileId": "9469dSNitCO5iscbHrnjYp"
  366. },
  367. {
  368. "__type__": "cc.Sprite",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "__editorExtras__": {},
  372. "node": {
  373. "__id__": 9
  374. },
  375. "_enabled": true,
  376. "__prefab": {
  377. "__id__": 13
  378. },
  379. "_customMaterial": null,
  380. "_srcBlendFactor": 2,
  381. "_dstBlendFactor": 4,
  382. "_color": {
  383. "__type__": "cc.Color",
  384. "r": 255,
  385. "g": 255,
  386. "b": 255,
  387. "a": 255
  388. },
  389. "_spriteFrame": {
  390. "__uuid__": "abb7d6b7-bfca-4f28-ad85-8567ecd4bf76@f9941",
  391. "__expectedType__": "cc.SpriteFrame"
  392. },
  393. "_type": 0,
  394. "_fillType": 0,
  395. "_sizeMode": 1,
  396. "_fillCenter": {
  397. "__type__": "cc.Vec2",
  398. "x": 0,
  399. "y": 0
  400. },
  401. "_fillStart": 0,
  402. "_fillRange": 0,
  403. "_isTrimmedMode": true,
  404. "_useGrayscale": false,
  405. "_atlas": null,
  406. "_id": ""
  407. },
  408. {
  409. "__type__": "cc.CompPrefabInfo",
  410. "fileId": "7dW60H3idFdpfnTvNBOehd"
  411. },
  412. {
  413. "__type__": "cc.PrefabInfo",
  414. "root": {
  415. "__id__": 1
  416. },
  417. "asset": {
  418. "__id__": 0
  419. },
  420. "fileId": "fc4eJLDDZAFYUP3ckuvHgl",
  421. "instance": null,
  422. "targetOverrides": null,
  423. "nestedPrefabInstanceRoots": null
  424. },
  425. {
  426. "__type__": "cc.Node",
  427. "_name": "icon_+200",
  428. "_objFlags": 0,
  429. "__editorExtras__": {},
  430. "_parent": {
  431. "__id__": 2
  432. },
  433. "_children": [],
  434. "_active": true,
  435. "_components": [
  436. {
  437. "__id__": 16
  438. },
  439. {
  440. "__id__": 18
  441. }
  442. ],
  443. "_prefab": {
  444. "__id__": 20
  445. },
  446. "_lpos": {
  447. "__type__": "cc.Vec3",
  448. "x": 109.298,
  449. "y": -101.315,
  450. "z": 0
  451. },
  452. "_lrot": {
  453. "__type__": "cc.Quat",
  454. "x": 0,
  455. "y": 0,
  456. "z": 0,
  457. "w": 1
  458. },
  459. "_lscale": {
  460. "__type__": "cc.Vec3",
  461. "x": 1,
  462. "y": 1,
  463. "z": 1
  464. },
  465. "_mobility": 0,
  466. "_layer": 33554432,
  467. "_euler": {
  468. "__type__": "cc.Vec3",
  469. "x": 0,
  470. "y": 0,
  471. "z": 0
  472. },
  473. "_id": ""
  474. },
  475. {
  476. "__type__": "cc.UITransform",
  477. "_name": "",
  478. "_objFlags": 0,
  479. "__editorExtras__": {},
  480. "node": {
  481. "__id__": 15
  482. },
  483. "_enabled": true,
  484. "__prefab": {
  485. "__id__": 17
  486. },
  487. "_contentSize": {
  488. "__type__": "cc.Size",
  489. "width": 250,
  490. "height": 62
  491. },
  492. "_anchorPoint": {
  493. "__type__": "cc.Vec2",
  494. "x": 0.5,
  495. "y": 0.5
  496. },
  497. "_id": ""
  498. },
  499. {
  500. "__type__": "cc.CompPrefabInfo",
  501. "fileId": "62SqukznVHqZBCy0G9ONPD"
  502. },
  503. {
  504. "__type__": "cc.Sprite",
  505. "_name": "",
  506. "_objFlags": 0,
  507. "__editorExtras__": {},
  508. "node": {
  509. "__id__": 15
  510. },
  511. "_enabled": true,
  512. "__prefab": {
  513. "__id__": 19
  514. },
  515. "_customMaterial": null,
  516. "_srcBlendFactor": 2,
  517. "_dstBlendFactor": 4,
  518. "_color": {
  519. "__type__": "cc.Color",
  520. "r": 255,
  521. "g": 255,
  522. "b": 255,
  523. "a": 255
  524. },
  525. "_spriteFrame": {
  526. "__uuid__": "b2c647c5-9835-4ae7-93f5-e08c630c30bc@f9941",
  527. "__expectedType__": "cc.SpriteFrame"
  528. },
  529. "_type": 0,
  530. "_fillType": 0,
  531. "_sizeMode": 1,
  532. "_fillCenter": {
  533. "__type__": "cc.Vec2",
  534. "x": 0,
  535. "y": 0
  536. },
  537. "_fillStart": 0,
  538. "_fillRange": 0,
  539. "_isTrimmedMode": true,
  540. "_useGrayscale": false,
  541. "_atlas": null,
  542. "_id": ""
  543. },
  544. {
  545. "__type__": "cc.CompPrefabInfo",
  546. "fileId": "19HHB/Qr1MooJp59JmqEms"
  547. },
  548. {
  549. "__type__": "cc.PrefabInfo",
  550. "root": {
  551. "__id__": 1
  552. },
  553. "asset": {
  554. "__id__": 0
  555. },
  556. "fileId": "39vUgPNn9Gw53SMNDP2aPk",
  557. "instance": null,
  558. "targetOverrides": null,
  559. "nestedPrefabInstanceRoots": null
  560. },
  561. {
  562. "__type__": "cc.Node",
  563. "_name": "title_2bs",
  564. "_objFlags": 0,
  565. "__editorExtras__": {},
  566. "_parent": {
  567. "__id__": 2
  568. },
  569. "_children": [],
  570. "_active": true,
  571. "_components": [
  572. {
  573. "__id__": 22
  574. },
  575. {
  576. "__id__": 24
  577. }
  578. ],
  579. "_prefab": {
  580. "__id__": 26
  581. },
  582. "_lpos": {
  583. "__type__": "cc.Vec3",
  584. "x": 0,
  585. "y": 377.685,
  586. "z": 0
  587. },
  588. "_lrot": {
  589. "__type__": "cc.Quat",
  590. "x": 0,
  591. "y": 0,
  592. "z": 0,
  593. "w": 1
  594. },
  595. "_lscale": {
  596. "__type__": "cc.Vec3",
  597. "x": 1,
  598. "y": 1,
  599. "z": 1
  600. },
  601. "_mobility": 0,
  602. "_layer": 33554432,
  603. "_euler": {
  604. "__type__": "cc.Vec3",
  605. "x": 0,
  606. "y": 0,
  607. "z": 0
  608. },
  609. "_id": ""
  610. },
  611. {
  612. "__type__": "cc.UITransform",
  613. "_name": "",
  614. "_objFlags": 0,
  615. "__editorExtras__": {},
  616. "node": {
  617. "__id__": 21
  618. },
  619. "_enabled": true,
  620. "__prefab": {
  621. "__id__": 23
  622. },
  623. "_contentSize": {
  624. "__type__": "cc.Size",
  625. "width": 189,
  626. "height": 46
  627. },
  628. "_anchorPoint": {
  629. "__type__": "cc.Vec2",
  630. "x": 0.5,
  631. "y": 0.5
  632. },
  633. "_id": ""
  634. },
  635. {
  636. "__type__": "cc.CompPrefabInfo",
  637. "fileId": "2cQZztP19AtbSi5Q/0MCn9"
  638. },
  639. {
  640. "__type__": "cc.Sprite",
  641. "_name": "",
  642. "_objFlags": 0,
  643. "__editorExtras__": {},
  644. "node": {
  645. "__id__": 21
  646. },
  647. "_enabled": true,
  648. "__prefab": {
  649. "__id__": 25
  650. },
  651. "_customMaterial": null,
  652. "_srcBlendFactor": 2,
  653. "_dstBlendFactor": 4,
  654. "_color": {
  655. "__type__": "cc.Color",
  656. "r": 255,
  657. "g": 255,
  658. "b": 255,
  659. "a": 255
  660. },
  661. "_spriteFrame": {
  662. "__uuid__": "dddaddad-c494-46f0-a9d6-e606729c019a@f9941",
  663. "__expectedType__": "cc.SpriteFrame"
  664. },
  665. "_type": 0,
  666. "_fillType": 0,
  667. "_sizeMode": 1,
  668. "_fillCenter": {
  669. "__type__": "cc.Vec2",
  670. "x": 0,
  671. "y": 0
  672. },
  673. "_fillStart": 0,
  674. "_fillRange": 0,
  675. "_isTrimmedMode": true,
  676. "_useGrayscale": false,
  677. "_atlas": null,
  678. "_id": ""
  679. },
  680. {
  681. "__type__": "cc.CompPrefabInfo",
  682. "fileId": "65lGAqb8NAAI0Cvmce6EXF"
  683. },
  684. {
  685. "__type__": "cc.PrefabInfo",
  686. "root": {
  687. "__id__": 1
  688. },
  689. "asset": {
  690. "__id__": 0
  691. },
  692. "fileId": "9dhiOEiRdJjo6MDLrVCYL3",
  693. "instance": null,
  694. "targetOverrides": null,
  695. "nestedPrefabInstanceRoots": null
  696. },
  697. {
  698. "__type__": "cc.Node",
  699. "_name": "lab_tips",
  700. "_objFlags": 0,
  701. "__editorExtras__": {},
  702. "_parent": {
  703. "__id__": 2
  704. },
  705. "_children": [],
  706. "_active": true,
  707. "_components": [
  708. {
  709. "__id__": 28
  710. },
  711. {
  712. "__id__": 30
  713. }
  714. ],
  715. "_prefab": {
  716. "__id__": 32
  717. },
  718. "_lpos": {
  719. "__type__": "cc.Vec3",
  720. "x": -127.243,
  721. "y": -109.419,
  722. "z": 0
  723. },
  724. "_lrot": {
  725. "__type__": "cc.Quat",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0,
  729. "w": 1
  730. },
  731. "_lscale": {
  732. "__type__": "cc.Vec3",
  733. "x": 1,
  734. "y": 1,
  735. "z": 1
  736. },
  737. "_mobility": 0,
  738. "_layer": 33554432,
  739. "_euler": {
  740. "__type__": "cc.Vec3",
  741. "x": 0,
  742. "y": 0,
  743. "z": 0
  744. },
  745. "_id": ""
  746. },
  747. {
  748. "__type__": "cc.UITransform",
  749. "_name": "",
  750. "_objFlags": 0,
  751. "__editorExtras__": {},
  752. "node": {
  753. "__id__": 27
  754. },
  755. "_enabled": true,
  756. "__prefab": {
  757. "__id__": 29
  758. },
  759. "_contentSize": {
  760. "__type__": "cc.Size",
  761. "width": 208,
  762. "height": 58.4
  763. },
  764. "_anchorPoint": {
  765. "__type__": "cc.Vec2",
  766. "x": 0.5,
  767. "y": 0.5
  768. },
  769. "_id": ""
  770. },
  771. {
  772. "__type__": "cc.CompPrefabInfo",
  773. "fileId": "b1URs/zrZNXZMiz/TRQtfz"
  774. },
  775. {
  776. "__type__": "cc.Label",
  777. "_name": "",
  778. "_objFlags": 0,
  779. "__editorExtras__": {},
  780. "node": {
  781. "__id__": 27
  782. },
  783. "_enabled": true,
  784. "__prefab": {
  785. "__id__": 31
  786. },
  787. "_customMaterial": null,
  788. "_srcBlendFactor": 2,
  789. "_dstBlendFactor": 4,
  790. "_color": {
  791. "__type__": "cc.Color",
  792. "r": 255,
  793. "g": 255,
  794. "b": 255,
  795. "a": 255
  796. },
  797. "_string": "放置速度快",
  798. "_horizontalAlign": 1,
  799. "_verticalAlign": 1,
  800. "_actualFontSize": 40,
  801. "_fontSize": 40,
  802. "_fontFamily": "Arial",
  803. "_lineHeight": 40,
  804. "_overflow": 0,
  805. "_enableWrapText": true,
  806. "_font": null,
  807. "_isSystemFontUsed": true,
  808. "_spacingX": 0,
  809. "_isItalic": false,
  810. "_isBold": true,
  811. "_isUnderline": false,
  812. "_underlineHeight": 2,
  813. "_cacheMode": 0,
  814. "_enableOutline": true,
  815. "_outlineColor": {
  816. "__type__": "cc.Color",
  817. "r": 88,
  818. "g": 42,
  819. "b": 9,
  820. "a": 255
  821. },
  822. "_outlineWidth": 4,
  823. "_enableShadow": false,
  824. "_shadowColor": {
  825. "__type__": "cc.Color",
  826. "r": 0,
  827. "g": 0,
  828. "b": 0,
  829. "a": 255
  830. },
  831. "_shadowOffset": {
  832. "__type__": "cc.Vec2",
  833. "x": 2,
  834. "y": 2
  835. },
  836. "_shadowBlur": 2,
  837. "_id": ""
  838. },
  839. {
  840. "__type__": "cc.CompPrefabInfo",
  841. "fileId": "cauh0Kb+tHRrxnq69c4oxm"
  842. },
  843. {
  844. "__type__": "cc.PrefabInfo",
  845. "root": {
  846. "__id__": 1
  847. },
  848. "asset": {
  849. "__id__": 0
  850. },
  851. "fileId": "ddVY2MzbVFcpUNALX97b/4",
  852. "instance": null,
  853. "targetOverrides": null,
  854. "nestedPrefabInstanceRoots": null
  855. },
  856. {
  857. "__type__": "cc.Node",
  858. "_name": "Label",
  859. "_objFlags": 0,
  860. "__editorExtras__": {},
  861. "_parent": {
  862. "__id__": 2
  863. },
  864. "_children": [],
  865. "_active": true,
  866. "_components": [
  867. {
  868. "__id__": 34
  869. },
  870. {
  871. "__id__": 36
  872. }
  873. ],
  874. "_prefab": {
  875. "__id__": 38
  876. },
  877. "_lpos": {
  878. "__type__": "cc.Vec3",
  879. "x": 4.422,
  880. "y": 237.302,
  881. "z": 0
  882. },
  883. "_lrot": {
  884. "__type__": "cc.Quat",
  885. "x": 0,
  886. "y": 0,
  887. "z": 0,
  888. "w": 1
  889. },
  890. "_lscale": {
  891. "__type__": "cc.Vec3",
  892. "x": 1,
  893. "y": 1,
  894. "z": 1
  895. },
  896. "_mobility": 0,
  897. "_layer": 33554432,
  898. "_euler": {
  899. "__type__": "cc.Vec3",
  900. "x": 0,
  901. "y": 0,
  902. "z": 0
  903. },
  904. "_id": ""
  905. },
  906. {
  907. "__type__": "cc.UITransform",
  908. "_name": "",
  909. "_objFlags": 0,
  910. "__editorExtras__": {},
  911. "node": {
  912. "__id__": 33
  913. },
  914. "_enabled": true,
  915. "__prefab": {
  916. "__id__": 35
  917. },
  918. "_contentSize": {
  919. "__type__": "cc.Size",
  920. "width": 362.0234375,
  921. "height": 109.69999999999999
  922. },
  923. "_anchorPoint": {
  924. "__type__": "cc.Vec2",
  925. "x": 0.5,
  926. "y": 0.5
  927. },
  928. "_id": ""
  929. },
  930. {
  931. "__type__": "cc.CompPrefabInfo",
  932. "fileId": "79GAnLuJdMr66WwBQCetEQ"
  933. },
  934. {
  935. "__type__": "cc.Label",
  936. "_name": "",
  937. "_objFlags": 0,
  938. "__editorExtras__": {},
  939. "node": {
  940. "__id__": 33
  941. },
  942. "_enabled": true,
  943. "__prefab": {
  944. "__id__": 37
  945. },
  946. "_customMaterial": null,
  947. "_srcBlendFactor": 2,
  948. "_dstBlendFactor": 4,
  949. "_color": {
  950. "__type__": "cc.Color",
  951. "r": 255,
  952. "g": 255,
  953. "b": 255,
  954. "a": 255
  955. },
  956. "_string": "2倍速智能放置已结束 \n是否继续开启?",
  957. "_horizontalAlign": 1,
  958. "_verticalAlign": 1,
  959. "_actualFontSize": 36,
  960. "_fontSize": 36,
  961. "_fontFamily": "Arial",
  962. "_lineHeight": 45,
  963. "_overflow": 0,
  964. "_enableWrapText": true,
  965. "_font": null,
  966. "_isSystemFontUsed": true,
  967. "_spacingX": 0,
  968. "_isItalic": false,
  969. "_isBold": true,
  970. "_isUnderline": false,
  971. "_underlineHeight": 2,
  972. "_cacheMode": 0,
  973. "_enableOutline": true,
  974. "_outlineColor": {
  975. "__type__": "cc.Color",
  976. "r": 88,
  977. "g": 42,
  978. "b": 9,
  979. "a": 255
  980. },
  981. "_outlineWidth": 4,
  982. "_enableShadow": false,
  983. "_shadowColor": {
  984. "__type__": "cc.Color",
  985. "r": 0,
  986. "g": 0,
  987. "b": 0,
  988. "a": 255
  989. },
  990. "_shadowOffset": {
  991. "__type__": "cc.Vec2",
  992. "x": 2,
  993. "y": 2
  994. },
  995. "_shadowBlur": 2,
  996. "_id": ""
  997. },
  998. {
  999. "__type__": "cc.CompPrefabInfo",
  1000. "fileId": "3a6Rhr1f1Ni4wcCkyYMNdT"
  1001. },
  1002. {
  1003. "__type__": "cc.PrefabInfo",
  1004. "root": {
  1005. "__id__": 1
  1006. },
  1007. "asset": {
  1008. "__id__": 0
  1009. },
  1010. "fileId": "b2sbu6TztEBZkG5sX/ndJi",
  1011. "instance": null,
  1012. "targetOverrides": null,
  1013. "nestedPrefabInstanceRoots": null
  1014. },
  1015. {
  1016. "__type__": "cc.Node",
  1017. "_name": "btn_close",
  1018. "_objFlags": 0,
  1019. "__editorExtras__": {},
  1020. "_parent": {
  1021. "__id__": 2
  1022. },
  1023. "_children": [],
  1024. "_active": true,
  1025. "_components": [
  1026. {
  1027. "__id__": 40
  1028. },
  1029. {
  1030. "__id__": 42
  1031. },
  1032. {
  1033. "__id__": 44
  1034. }
  1035. ],
  1036. "_prefab": {
  1037. "__id__": 46
  1038. },
  1039. "_lpos": {
  1040. "__type__": "cc.Vec3",
  1041. "x": 272.586,
  1042. "y": 352.092,
  1043. "z": 0
  1044. },
  1045. "_lrot": {
  1046. "__type__": "cc.Quat",
  1047. "x": 0,
  1048. "y": 0,
  1049. "z": 0,
  1050. "w": 1
  1051. },
  1052. "_lscale": {
  1053. "__type__": "cc.Vec3",
  1054. "x": 1,
  1055. "y": 1,
  1056. "z": 1
  1057. },
  1058. "_mobility": 0,
  1059. "_layer": 33554432,
  1060. "_euler": {
  1061. "__type__": "cc.Vec3",
  1062. "x": 0,
  1063. "y": 0,
  1064. "z": 0
  1065. },
  1066. "_id": ""
  1067. },
  1068. {
  1069. "__type__": "cc.UITransform",
  1070. "_name": "",
  1071. "_objFlags": 0,
  1072. "__editorExtras__": {},
  1073. "node": {
  1074. "__id__": 39
  1075. },
  1076. "_enabled": true,
  1077. "__prefab": {
  1078. "__id__": 41
  1079. },
  1080. "_contentSize": {
  1081. "__type__": "cc.Size",
  1082. "width": 80,
  1083. "height": 80
  1084. },
  1085. "_anchorPoint": {
  1086. "__type__": "cc.Vec2",
  1087. "x": 0.5,
  1088. "y": 0.5
  1089. },
  1090. "_id": ""
  1091. },
  1092. {
  1093. "__type__": "cc.CompPrefabInfo",
  1094. "fileId": "3cWZogHBVPg73S5VOFtvrw"
  1095. },
  1096. {
  1097. "__type__": "cc.Sprite",
  1098. "_name": "",
  1099. "_objFlags": 0,
  1100. "__editorExtras__": {},
  1101. "node": {
  1102. "__id__": 39
  1103. },
  1104. "_enabled": true,
  1105. "__prefab": {
  1106. "__id__": 43
  1107. },
  1108. "_customMaterial": null,
  1109. "_srcBlendFactor": 2,
  1110. "_dstBlendFactor": 4,
  1111. "_color": {
  1112. "__type__": "cc.Color",
  1113. "r": 255,
  1114. "g": 255,
  1115. "b": 255,
  1116. "a": 255
  1117. },
  1118. "_spriteFrame": {
  1119. "__uuid__": "54138f51-a62d-48d9-8dd2-b01485086792@f9941",
  1120. "__expectedType__": "cc.SpriteFrame"
  1121. },
  1122. "_type": 1,
  1123. "_fillType": 0,
  1124. "_sizeMode": 2,
  1125. "_fillCenter": {
  1126. "__type__": "cc.Vec2",
  1127. "x": 0,
  1128. "y": 0
  1129. },
  1130. "_fillStart": 0,
  1131. "_fillRange": 0,
  1132. "_isTrimmedMode": true,
  1133. "_useGrayscale": false,
  1134. "_atlas": null,
  1135. "_id": ""
  1136. },
  1137. {
  1138. "__type__": "cc.CompPrefabInfo",
  1139. "fileId": "6aDCLI1ZxMn5F9oyezMmei"
  1140. },
  1141. {
  1142. "__type__": "cc.Button",
  1143. "_name": "",
  1144. "_objFlags": 0,
  1145. "__editorExtras__": {},
  1146. "node": {
  1147. "__id__": 39
  1148. },
  1149. "_enabled": true,
  1150. "__prefab": {
  1151. "__id__": 45
  1152. },
  1153. "clickEvents": [],
  1154. "_interactable": true,
  1155. "_transition": 3,
  1156. "_normalColor": {
  1157. "__type__": "cc.Color",
  1158. "r": 214,
  1159. "g": 214,
  1160. "b": 214,
  1161. "a": 255
  1162. },
  1163. "_hoverColor": {
  1164. "__type__": "cc.Color",
  1165. "r": 211,
  1166. "g": 211,
  1167. "b": 211,
  1168. "a": 255
  1169. },
  1170. "_pressedColor": {
  1171. "__type__": "cc.Color",
  1172. "r": 255,
  1173. "g": 255,
  1174. "b": 255,
  1175. "a": 255
  1176. },
  1177. "_disabledColor": {
  1178. "__type__": "cc.Color",
  1179. "r": 124,
  1180. "g": 124,
  1181. "b": 124,
  1182. "a": 255
  1183. },
  1184. "_normalSprite": {
  1185. "__uuid__": "54138f51-a62d-48d9-8dd2-b01485086792@f9941",
  1186. "__expectedType__": "cc.SpriteFrame"
  1187. },
  1188. "_hoverSprite": null,
  1189. "_pressedSprite": null,
  1190. "_disabledSprite": null,
  1191. "_duration": 0.1,
  1192. "_zoomScale": 1.2,
  1193. "_target": {
  1194. "__id__": 39
  1195. },
  1196. "_id": ""
  1197. },
  1198. {
  1199. "__type__": "cc.CompPrefabInfo",
  1200. "fileId": "24Sd4WhH9E1KOFzEyQap3S"
  1201. },
  1202. {
  1203. "__type__": "cc.PrefabInfo",
  1204. "root": {
  1205. "__id__": 1
  1206. },
  1207. "asset": {
  1208. "__id__": 0
  1209. },
  1210. "fileId": "6dDEEl3oZKirlIfVsOwOEf",
  1211. "instance": null,
  1212. "targetOverrides": null,
  1213. "nestedPrefabInstanceRoots": null
  1214. },
  1215. {
  1216. "__type__": "cc.Node",
  1217. "_name": "btn_open",
  1218. "_objFlags": 0,
  1219. "__editorExtras__": {},
  1220. "_parent": {
  1221. "__id__": 2
  1222. },
  1223. "_children": [
  1224. {
  1225. "__id__": 48
  1226. },
  1227. {
  1228. "__id__": 54
  1229. },
  1230. {
  1231. "__id__": 60
  1232. }
  1233. ],
  1234. "_active": true,
  1235. "_components": [
  1236. {
  1237. "__id__": 66
  1238. },
  1239. {
  1240. "__id__": 68
  1241. },
  1242. {
  1243. "__id__": 70
  1244. }
  1245. ],
  1246. "_prefab": {
  1247. "__id__": 72
  1248. },
  1249. "_lpos": {
  1250. "__type__": "cc.Vec3",
  1251. "x": 0,
  1252. "y": -269.536,
  1253. "z": 0
  1254. },
  1255. "_lrot": {
  1256. "__type__": "cc.Quat",
  1257. "x": 0,
  1258. "y": 0,
  1259. "z": 0,
  1260. "w": 1
  1261. },
  1262. "_lscale": {
  1263. "__type__": "cc.Vec3",
  1264. "x": 1,
  1265. "y": 1,
  1266. "z": 1
  1267. },
  1268. "_mobility": 0,
  1269. "_layer": 33554432,
  1270. "_euler": {
  1271. "__type__": "cc.Vec3",
  1272. "x": 0,
  1273. "y": 0,
  1274. "z": 0
  1275. },
  1276. "_id": ""
  1277. },
  1278. {
  1279. "__type__": "cc.Node",
  1280. "_name": "icocn_award",
  1281. "_objFlags": 0,
  1282. "__editorExtras__": {},
  1283. "_parent": {
  1284. "__id__": 47
  1285. },
  1286. "_children": [],
  1287. "_active": true,
  1288. "_components": [
  1289. {
  1290. "__id__": 49
  1291. },
  1292. {
  1293. "__id__": 51
  1294. }
  1295. ],
  1296. "_prefab": {
  1297. "__id__": 53
  1298. },
  1299. "_lpos": {
  1300. "__type__": "cc.Vec3",
  1301. "x": 147.367,
  1302. "y": 68.157,
  1303. "z": 0
  1304. },
  1305. "_lrot": {
  1306. "__type__": "cc.Quat",
  1307. "x": 0,
  1308. "y": 0,
  1309. "z": 0,
  1310. "w": 1
  1311. },
  1312. "_lscale": {
  1313. "__type__": "cc.Vec3",
  1314. "x": 1,
  1315. "y": 1,
  1316. "z": 1
  1317. },
  1318. "_mobility": 0,
  1319. "_layer": 33554432,
  1320. "_euler": {
  1321. "__type__": "cc.Vec3",
  1322. "x": 0,
  1323. "y": 0,
  1324. "z": 0
  1325. },
  1326. "_id": ""
  1327. },
  1328. {
  1329. "__type__": "cc.UITransform",
  1330. "_name": "",
  1331. "_objFlags": 0,
  1332. "__editorExtras__": {},
  1333. "node": {
  1334. "__id__": 48
  1335. },
  1336. "_enabled": true,
  1337. "__prefab": {
  1338. "__id__": 50
  1339. },
  1340. "_contentSize": {
  1341. "__type__": "cc.Size",
  1342. "width": 132,
  1343. "height": 88
  1344. },
  1345. "_anchorPoint": {
  1346. "__type__": "cc.Vec2",
  1347. "x": 0.5,
  1348. "y": 0.5
  1349. },
  1350. "_id": ""
  1351. },
  1352. {
  1353. "__type__": "cc.CompPrefabInfo",
  1354. "fileId": "3c5mxsBL5ANJUmueAhF14U"
  1355. },
  1356. {
  1357. "__type__": "cc.Sprite",
  1358. "_name": "",
  1359. "_objFlags": 0,
  1360. "__editorExtras__": {},
  1361. "node": {
  1362. "__id__": 48
  1363. },
  1364. "_enabled": true,
  1365. "__prefab": {
  1366. "__id__": 52
  1367. },
  1368. "_customMaterial": null,
  1369. "_srcBlendFactor": 2,
  1370. "_dstBlendFactor": 4,
  1371. "_color": {
  1372. "__type__": "cc.Color",
  1373. "r": 255,
  1374. "g": 255,
  1375. "b": 255,
  1376. "a": 255
  1377. },
  1378. "_spriteFrame": {
  1379. "__uuid__": "cccbcf13-ba5b-4a72-88ff-2d312054c4fd@f9941",
  1380. "__expectedType__": "cc.SpriteFrame"
  1381. },
  1382. "_type": 0,
  1383. "_fillType": 0,
  1384. "_sizeMode": 1,
  1385. "_fillCenter": {
  1386. "__type__": "cc.Vec2",
  1387. "x": 0,
  1388. "y": 0
  1389. },
  1390. "_fillStart": 0,
  1391. "_fillRange": 0,
  1392. "_isTrimmedMode": true,
  1393. "_useGrayscale": false,
  1394. "_atlas": null,
  1395. "_id": ""
  1396. },
  1397. {
  1398. "__type__": "cc.CompPrefabInfo",
  1399. "fileId": "e4MYzqfQJAl7pev3pdjH/8"
  1400. },
  1401. {
  1402. "__type__": "cc.PrefabInfo",
  1403. "root": {
  1404. "__id__": 1
  1405. },
  1406. "asset": {
  1407. "__id__": 0
  1408. },
  1409. "fileId": "27LyvWJTFMmpMCs3c/xca1",
  1410. "instance": null,
  1411. "targetOverrides": null,
  1412. "nestedPrefabInstanceRoots": null
  1413. },
  1414. {
  1415. "__type__": "cc.Node",
  1416. "_name": "icon_vector",
  1417. "_objFlags": 0,
  1418. "__editorExtras__": {},
  1419. "_parent": {
  1420. "__id__": 47
  1421. },
  1422. "_children": [],
  1423. "_active": true,
  1424. "_components": [
  1425. {
  1426. "__id__": 55
  1427. },
  1428. {
  1429. "__id__": 57
  1430. }
  1431. ],
  1432. "_prefab": {
  1433. "__id__": 59
  1434. },
  1435. "_lpos": {
  1436. "__type__": "cc.Vec3",
  1437. "x": -97.88,
  1438. "y": 1.094,
  1439. "z": 0
  1440. },
  1441. "_lrot": {
  1442. "__type__": "cc.Quat",
  1443. "x": 0,
  1444. "y": 0,
  1445. "z": 0,
  1446. "w": 1
  1447. },
  1448. "_lscale": {
  1449. "__type__": "cc.Vec3",
  1450. "x": 1,
  1451. "y": 1,
  1452. "z": 1
  1453. },
  1454. "_mobility": 0,
  1455. "_layer": 33554432,
  1456. "_euler": {
  1457. "__type__": "cc.Vec3",
  1458. "x": 0,
  1459. "y": 0,
  1460. "z": 0
  1461. },
  1462. "_id": ""
  1463. },
  1464. {
  1465. "__type__": "cc.UITransform",
  1466. "_name": "",
  1467. "_objFlags": 0,
  1468. "__editorExtras__": {},
  1469. "node": {
  1470. "__id__": 54
  1471. },
  1472. "_enabled": true,
  1473. "__prefab": {
  1474. "__id__": 56
  1475. },
  1476. "_contentSize": {
  1477. "__type__": "cc.Size",
  1478. "width": 56,
  1479. "height": 56
  1480. },
  1481. "_anchorPoint": {
  1482. "__type__": "cc.Vec2",
  1483. "x": 0.5,
  1484. "y": 0.5
  1485. },
  1486. "_id": ""
  1487. },
  1488. {
  1489. "__type__": "cc.CompPrefabInfo",
  1490. "fileId": "73q3DdBgBF/L2939g4mpxc"
  1491. },
  1492. {
  1493. "__type__": "cc.Sprite",
  1494. "_name": "",
  1495. "_objFlags": 0,
  1496. "__editorExtras__": {},
  1497. "node": {
  1498. "__id__": 54
  1499. },
  1500. "_enabled": true,
  1501. "__prefab": {
  1502. "__id__": 58
  1503. },
  1504. "_customMaterial": null,
  1505. "_srcBlendFactor": 2,
  1506. "_dstBlendFactor": 4,
  1507. "_color": {
  1508. "__type__": "cc.Color",
  1509. "r": 255,
  1510. "g": 255,
  1511. "b": 255,
  1512. "a": 255
  1513. },
  1514. "_spriteFrame": {
  1515. "__uuid__": "e4d52b35-4d18-469b-b3a9-5a4163c48af1@f9941",
  1516. "__expectedType__": "cc.SpriteFrame"
  1517. },
  1518. "_type": 0,
  1519. "_fillType": 0,
  1520. "_sizeMode": 1,
  1521. "_fillCenter": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 0,
  1524. "y": 0
  1525. },
  1526. "_fillStart": 0,
  1527. "_fillRange": 0,
  1528. "_isTrimmedMode": true,
  1529. "_useGrayscale": false,
  1530. "_atlas": null,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.CompPrefabInfo",
  1535. "fileId": "1419vlWeFNSrBflirwpMbz"
  1536. },
  1537. {
  1538. "__type__": "cc.PrefabInfo",
  1539. "root": {
  1540. "__id__": 1
  1541. },
  1542. "asset": {
  1543. "__id__": 0
  1544. },
  1545. "fileId": "0c87ntcHJDb404OmoCG5Uy",
  1546. "instance": null,
  1547. "targetOverrides": null,
  1548. "nestedPrefabInstanceRoots": null
  1549. },
  1550. {
  1551. "__type__": "cc.Node",
  1552. "_name": "Label",
  1553. "_objFlags": 512,
  1554. "__editorExtras__": {},
  1555. "_parent": {
  1556. "__id__": 47
  1557. },
  1558. "_children": [],
  1559. "_active": true,
  1560. "_components": [
  1561. {
  1562. "__id__": 61
  1563. },
  1564. {
  1565. "__id__": 63
  1566. }
  1567. ],
  1568. "_prefab": {
  1569. "__id__": 65
  1570. },
  1571. "_lpos": {
  1572. "__type__": "cc.Vec3",
  1573. "x": 29.862,
  1574. "y": 4.778,
  1575. "z": 0
  1576. },
  1577. "_lrot": {
  1578. "__type__": "cc.Quat",
  1579. "x": 0,
  1580. "y": 0,
  1581. "z": 0,
  1582. "w": 1
  1583. },
  1584. "_lscale": {
  1585. "__type__": "cc.Vec3",
  1586. "x": 1,
  1587. "y": 1,
  1588. "z": 1
  1589. },
  1590. "_mobility": 0,
  1591. "_layer": 33554432,
  1592. "_euler": {
  1593. "__type__": "cc.Vec3",
  1594. "x": 0,
  1595. "y": 0,
  1596. "z": 0
  1597. },
  1598. "_id": ""
  1599. },
  1600. {
  1601. "__type__": "cc.UITransform",
  1602. "_name": "",
  1603. "_objFlags": 0,
  1604. "__editorExtras__": {},
  1605. "node": {
  1606. "__id__": 60
  1607. },
  1608. "_enabled": true,
  1609. "__prefab": {
  1610. "__id__": 62
  1611. },
  1612. "_contentSize": {
  1613. "__type__": "cc.Size",
  1614. "width": 300,
  1615. "height": 60
  1616. },
  1617. "_anchorPoint": {
  1618. "__type__": "cc.Vec2",
  1619. "x": 0.5,
  1620. "y": 0.5
  1621. },
  1622. "_id": ""
  1623. },
  1624. {
  1625. "__type__": "cc.CompPrefabInfo",
  1626. "fileId": "51VQZmJO1PJZeqF/7I8wJd"
  1627. },
  1628. {
  1629. "__type__": "cc.Label",
  1630. "_name": "",
  1631. "_objFlags": 0,
  1632. "__editorExtras__": {},
  1633. "node": {
  1634. "__id__": 60
  1635. },
  1636. "_enabled": true,
  1637. "__prefab": {
  1638. "__id__": 64
  1639. },
  1640. "_customMaterial": null,
  1641. "_srcBlendFactor": 2,
  1642. "_dstBlendFactor": 4,
  1643. "_color": {
  1644. "__type__": "cc.Color",
  1645. "r": 255,
  1646. "g": 255,
  1647. "b": 255,
  1648. "a": 255
  1649. },
  1650. "_string": "立即启动",
  1651. "_horizontalAlign": 1,
  1652. "_verticalAlign": 1,
  1653. "_actualFontSize": 48,
  1654. "_fontSize": 48,
  1655. "_fontFamily": "Arial",
  1656. "_lineHeight": 48,
  1657. "_overflow": 1,
  1658. "_enableWrapText": false,
  1659. "_font": null,
  1660. "_isSystemFontUsed": true,
  1661. "_spacingX": 0,
  1662. "_isItalic": false,
  1663. "_isBold": true,
  1664. "_isUnderline": false,
  1665. "_underlineHeight": 2,
  1666. "_cacheMode": 0,
  1667. "_enableOutline": true,
  1668. "_outlineColor": {
  1669. "__type__": "cc.Color",
  1670. "r": 88,
  1671. "g": 42,
  1672. "b": 9,
  1673. "a": 255
  1674. },
  1675. "_outlineWidth": 4,
  1676. "_enableShadow": false,
  1677. "_shadowColor": {
  1678. "__type__": "cc.Color",
  1679. "r": 0,
  1680. "g": 0,
  1681. "b": 0,
  1682. "a": 255
  1683. },
  1684. "_shadowOffset": {
  1685. "__type__": "cc.Vec2",
  1686. "x": 2,
  1687. "y": 2
  1688. },
  1689. "_shadowBlur": 2,
  1690. "_id": ""
  1691. },
  1692. {
  1693. "__type__": "cc.CompPrefabInfo",
  1694. "fileId": "6cwJkhAUdLwKAQT4S/mm/G"
  1695. },
  1696. {
  1697. "__type__": "cc.PrefabInfo",
  1698. "root": {
  1699. "__id__": 1
  1700. },
  1701. "asset": {
  1702. "__id__": 0
  1703. },
  1704. "fileId": "2bPkcQgH5Ezo9E/7s6zjjb",
  1705. "instance": null,
  1706. "targetOverrides": null,
  1707. "nestedPrefabInstanceRoots": null
  1708. },
  1709. {
  1710. "__type__": "cc.UITransform",
  1711. "_name": "",
  1712. "_objFlags": 0,
  1713. "__editorExtras__": {},
  1714. "node": {
  1715. "__id__": 47
  1716. },
  1717. "_enabled": true,
  1718. "__prefab": {
  1719. "__id__": 67
  1720. },
  1721. "_contentSize": {
  1722. "__type__": "cc.Size",
  1723. "width": 498,
  1724. "height": 140
  1725. },
  1726. "_anchorPoint": {
  1727. "__type__": "cc.Vec2",
  1728. "x": 0.5,
  1729. "y": 0.5
  1730. },
  1731. "_id": ""
  1732. },
  1733. {
  1734. "__type__": "cc.CompPrefabInfo",
  1735. "fileId": "fcbS4lPm9NToqyQ00LOyPQ"
  1736. },
  1737. {
  1738. "__type__": "cc.Sprite",
  1739. "_name": "",
  1740. "_objFlags": 0,
  1741. "__editorExtras__": {},
  1742. "node": {
  1743. "__id__": 47
  1744. },
  1745. "_enabled": true,
  1746. "__prefab": {
  1747. "__id__": 69
  1748. },
  1749. "_customMaterial": null,
  1750. "_srcBlendFactor": 2,
  1751. "_dstBlendFactor": 4,
  1752. "_color": {
  1753. "__type__": "cc.Color",
  1754. "r": 255,
  1755. "g": 255,
  1756. "b": 255,
  1757. "a": 255
  1758. },
  1759. "_spriteFrame": {
  1760. "__uuid__": "e8764bc7-2f97-4e71-a73b-a525a89d1855@f9941",
  1761. "__expectedType__": "cc.SpriteFrame"
  1762. },
  1763. "_type": 1,
  1764. "_fillType": 0,
  1765. "_sizeMode": 2,
  1766. "_fillCenter": {
  1767. "__type__": "cc.Vec2",
  1768. "x": 0,
  1769. "y": 0
  1770. },
  1771. "_fillStart": 0,
  1772. "_fillRange": 0,
  1773. "_isTrimmedMode": true,
  1774. "_useGrayscale": false,
  1775. "_atlas": null,
  1776. "_id": ""
  1777. },
  1778. {
  1779. "__type__": "cc.CompPrefabInfo",
  1780. "fileId": "40/+L7hqdIq625mn7HWn94"
  1781. },
  1782. {
  1783. "__type__": "cc.Button",
  1784. "_name": "",
  1785. "_objFlags": 0,
  1786. "__editorExtras__": {},
  1787. "node": {
  1788. "__id__": 47
  1789. },
  1790. "_enabled": true,
  1791. "__prefab": {
  1792. "__id__": 71
  1793. },
  1794. "clickEvents": [],
  1795. "_interactable": true,
  1796. "_transition": 3,
  1797. "_normalColor": {
  1798. "__type__": "cc.Color",
  1799. "r": 214,
  1800. "g": 214,
  1801. "b": 214,
  1802. "a": 255
  1803. },
  1804. "_hoverColor": {
  1805. "__type__": "cc.Color",
  1806. "r": 211,
  1807. "g": 211,
  1808. "b": 211,
  1809. "a": 255
  1810. },
  1811. "_pressedColor": {
  1812. "__type__": "cc.Color",
  1813. "r": 255,
  1814. "g": 255,
  1815. "b": 255,
  1816. "a": 255
  1817. },
  1818. "_disabledColor": {
  1819. "__type__": "cc.Color",
  1820. "r": 124,
  1821. "g": 124,
  1822. "b": 124,
  1823. "a": 255
  1824. },
  1825. "_normalSprite": null,
  1826. "_hoverSprite": null,
  1827. "_pressedSprite": null,
  1828. "_disabledSprite": null,
  1829. "_duration": 0.1,
  1830. "_zoomScale": 1.2,
  1831. "_target": {
  1832. "__id__": 47
  1833. },
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.CompPrefabInfo",
  1838. "fileId": "aeCP6y4lNOC5Pi7wUHxGmB"
  1839. },
  1840. {
  1841. "__type__": "cc.PrefabInfo",
  1842. "root": {
  1843. "__id__": 1
  1844. },
  1845. "asset": {
  1846. "__id__": 0
  1847. },
  1848. "fileId": "8djwhmeo5KO4/SK7ImZnPS",
  1849. "instance": null,
  1850. "targetOverrides": null,
  1851. "nestedPrefabInstanceRoots": null
  1852. },
  1853. {
  1854. "__type__": "cc.Node",
  1855. "_name": "btn_no",
  1856. "_objFlags": 0,
  1857. "__editorExtras__": {},
  1858. "_parent": {
  1859. "__id__": 2
  1860. },
  1861. "_children": [],
  1862. "_active": true,
  1863. "_components": [
  1864. {
  1865. "__id__": 74
  1866. },
  1867. {
  1868. "__id__": 76
  1869. },
  1870. {
  1871. "__id__": 78
  1872. },
  1873. {
  1874. "__id__": 80
  1875. },
  1876. {
  1877. "__id__": 82
  1878. }
  1879. ],
  1880. "_prefab": {
  1881. "__id__": 84
  1882. },
  1883. "_lpos": {
  1884. "__type__": "cc.Vec3",
  1885. "x": 0,
  1886. "y": -508.499,
  1887. "z": 0
  1888. },
  1889. "_lrot": {
  1890. "__type__": "cc.Quat",
  1891. "x": 0,
  1892. "y": 0,
  1893. "z": 0,
  1894. "w": 1
  1895. },
  1896. "_lscale": {
  1897. "__type__": "cc.Vec3",
  1898. "x": 1,
  1899. "y": 1,
  1900. "z": 1
  1901. },
  1902. "_mobility": 0,
  1903. "_layer": 33554432,
  1904. "_euler": {
  1905. "__type__": "cc.Vec3",
  1906. "x": 0,
  1907. "y": 0,
  1908. "z": 0
  1909. },
  1910. "_id": ""
  1911. },
  1912. {
  1913. "__type__": "cc.UITransform",
  1914. "_name": "",
  1915. "_objFlags": 0,
  1916. "__editorExtras__": {},
  1917. "node": {
  1918. "__id__": 73
  1919. },
  1920. "_enabled": true,
  1921. "__prefab": {
  1922. "__id__": 75
  1923. },
  1924. "_contentSize": {
  1925. "__type__": "cc.Size",
  1926. "width": 84,
  1927. "height": 35.28
  1928. },
  1929. "_anchorPoint": {
  1930. "__type__": "cc.Vec2",
  1931. "x": 0.5,
  1932. "y": 0.5
  1933. },
  1934. "_id": ""
  1935. },
  1936. {
  1937. "__type__": "cc.CompPrefabInfo",
  1938. "fileId": "25GpyYCUNIL6Ch3luqEjy3"
  1939. },
  1940. {
  1941. "__type__": "cc.Label",
  1942. "_name": "",
  1943. "_objFlags": 0,
  1944. "__editorExtras__": {},
  1945. "node": {
  1946. "__id__": 73
  1947. },
  1948. "_enabled": true,
  1949. "__prefab": {
  1950. "__id__": 77
  1951. },
  1952. "_customMaterial": null,
  1953. "_srcBlendFactor": 2,
  1954. "_dstBlendFactor": 4,
  1955. "_color": {
  1956. "__type__": "cc.Color",
  1957. "r": 158,
  1958. "g": 158,
  1959. "b": 158,
  1960. "a": 255
  1961. },
  1962. "_string": "不需要",
  1963. "_horizontalAlign": 1,
  1964. "_verticalAlign": 1,
  1965. "_actualFontSize": 28,
  1966. "_fontSize": 28,
  1967. "_fontFamily": "Arial",
  1968. "_lineHeight": 28,
  1969. "_overflow": 0,
  1970. "_enableWrapText": true,
  1971. "_font": null,
  1972. "_isSystemFontUsed": true,
  1973. "_spacingX": 0,
  1974. "_isItalic": false,
  1975. "_isBold": false,
  1976. "_isUnderline": true,
  1977. "_underlineHeight": 2,
  1978. "_cacheMode": 0,
  1979. "_enableOutline": false,
  1980. "_outlineColor": {
  1981. "__type__": "cc.Color",
  1982. "r": 0,
  1983. "g": 0,
  1984. "b": 0,
  1985. "a": 255
  1986. },
  1987. "_outlineWidth": 2,
  1988. "_enableShadow": false,
  1989. "_shadowColor": {
  1990. "__type__": "cc.Color",
  1991. "r": 0,
  1992. "g": 0,
  1993. "b": 0,
  1994. "a": 255
  1995. },
  1996. "_shadowOffset": {
  1997. "__type__": "cc.Vec2",
  1998. "x": 2,
  1999. "y": 2
  2000. },
  2001. "_shadowBlur": 2,
  2002. "_id": ""
  2003. },
  2004. {
  2005. "__type__": "cc.CompPrefabInfo",
  2006. "fileId": "5bnTwh7adIr5i6FFVbh8s8"
  2007. },
  2008. {
  2009. "__type__": "cc.Button",
  2010. "_name": "",
  2011. "_objFlags": 0,
  2012. "__editorExtras__": {},
  2013. "node": {
  2014. "__id__": 73
  2015. },
  2016. "_enabled": true,
  2017. "__prefab": {
  2018. "__id__": 79
  2019. },
  2020. "clickEvents": [],
  2021. "_interactable": true,
  2022. "_transition": 0,
  2023. "_normalColor": {
  2024. "__type__": "cc.Color",
  2025. "r": 255,
  2026. "g": 255,
  2027. "b": 255,
  2028. "a": 255
  2029. },
  2030. "_hoverColor": {
  2031. "__type__": "cc.Color",
  2032. "r": 211,
  2033. "g": 211,
  2034. "b": 211,
  2035. "a": 255
  2036. },
  2037. "_pressedColor": {
  2038. "__type__": "cc.Color",
  2039. "r": 255,
  2040. "g": 255,
  2041. "b": 255,
  2042. "a": 255
  2043. },
  2044. "_disabledColor": {
  2045. "__type__": "cc.Color",
  2046. "r": 124,
  2047. "g": 124,
  2048. "b": 124,
  2049. "a": 255
  2050. },
  2051. "_normalSprite": null,
  2052. "_hoverSprite": null,
  2053. "_pressedSprite": null,
  2054. "_disabledSprite": null,
  2055. "_duration": 0.1,
  2056. "_zoomScale": 1.2,
  2057. "_target": null,
  2058. "_id": ""
  2059. },
  2060. {
  2061. "__type__": "cc.CompPrefabInfo",
  2062. "fileId": "6bvUPD56FGo6L2Zb2FIyrM"
  2063. },
  2064. {
  2065. "__type__": "110c8vEd5NEPL/N9meGQnaX",
  2066. "_name": "",
  2067. "_objFlags": 0,
  2068. "__editorExtras__": {},
  2069. "node": {
  2070. "__id__": 73
  2071. },
  2072. "_enabled": true,
  2073. "__prefab": {
  2074. "__id__": 81
  2075. },
  2076. "_params": [],
  2077. "_dataID": "doubleSpeed_close",
  2078. "_id": ""
  2079. },
  2080. {
  2081. "__type__": "cc.CompPrefabInfo",
  2082. "fileId": "3aWOCjHANMDrwuN53ZSZ8E"
  2083. },
  2084. {
  2085. "__type__": "cc.Button",
  2086. "_name": "",
  2087. "_objFlags": 0,
  2088. "__editorExtras__": {},
  2089. "node": {
  2090. "__id__": 73
  2091. },
  2092. "_enabled": true,
  2093. "__prefab": {
  2094. "__id__": 83
  2095. },
  2096. "clickEvents": [],
  2097. "_interactable": true,
  2098. "_transition": 0,
  2099. "_normalColor": {
  2100. "__type__": "cc.Color",
  2101. "r": 255,
  2102. "g": 255,
  2103. "b": 255,
  2104. "a": 255
  2105. },
  2106. "_hoverColor": {
  2107. "__type__": "cc.Color",
  2108. "r": 211,
  2109. "g": 211,
  2110. "b": 211,
  2111. "a": 255
  2112. },
  2113. "_pressedColor": {
  2114. "__type__": "cc.Color",
  2115. "r": 255,
  2116. "g": 255,
  2117. "b": 255,
  2118. "a": 255
  2119. },
  2120. "_disabledColor": {
  2121. "__type__": "cc.Color",
  2122. "r": 124,
  2123. "g": 124,
  2124. "b": 124,
  2125. "a": 255
  2126. },
  2127. "_normalSprite": null,
  2128. "_hoverSprite": null,
  2129. "_pressedSprite": null,
  2130. "_disabledSprite": null,
  2131. "_duration": 0.1,
  2132. "_zoomScale": 1.2,
  2133. "_target": null,
  2134. "_id": ""
  2135. },
  2136. {
  2137. "__type__": "cc.CompPrefabInfo",
  2138. "fileId": "d8bMKJh75IEo5UoeVZbbJ2"
  2139. },
  2140. {
  2141. "__type__": "cc.PrefabInfo",
  2142. "root": {
  2143. "__id__": 1
  2144. },
  2145. "asset": {
  2146. "__id__": 0
  2147. },
  2148. "fileId": "219K2rfPJE3afUCzfGo/sQ",
  2149. "instance": null,
  2150. "targetOverrides": null,
  2151. "nestedPrefabInstanceRoots": null
  2152. },
  2153. {
  2154. "__type__": "cc.Node",
  2155. "_name": "lab_time",
  2156. "_objFlags": 0,
  2157. "__editorExtras__": {},
  2158. "_parent": {
  2159. "__id__": 2
  2160. },
  2161. "_children": [],
  2162. "_active": true,
  2163. "_components": [
  2164. {
  2165. "__id__": 86
  2166. },
  2167. {
  2168. "__id__": 88
  2169. }
  2170. ],
  2171. "_prefab": {
  2172. "__id__": 90
  2173. },
  2174. "_lpos": {
  2175. "__type__": "cc.Vec3",
  2176. "x": 0,
  2177. "y": -426.015,
  2178. "z": 0
  2179. },
  2180. "_lrot": {
  2181. "__type__": "cc.Quat",
  2182. "x": 0,
  2183. "y": 0,
  2184. "z": 0,
  2185. "w": 1
  2186. },
  2187. "_lscale": {
  2188. "__type__": "cc.Vec3",
  2189. "x": 1,
  2190. "y": 1,
  2191. "z": 1
  2192. },
  2193. "_mobility": 0,
  2194. "_layer": 33554432,
  2195. "_euler": {
  2196. "__type__": "cc.Vec3",
  2197. "x": 0,
  2198. "y": 0,
  2199. "z": 0
  2200. },
  2201. "_id": ""
  2202. },
  2203. {
  2204. "__type__": "cc.UITransform",
  2205. "_name": "",
  2206. "_objFlags": 0,
  2207. "__editorExtras__": {},
  2208. "node": {
  2209. "__id__": 85
  2210. },
  2211. "_enabled": true,
  2212. "__prefab": {
  2213. "__id__": 87
  2214. },
  2215. "_contentSize": {
  2216. "__type__": "cc.Size",
  2217. "width": 155.572265625,
  2218. "height": 50.4
  2219. },
  2220. "_anchorPoint": {
  2221. "__type__": "cc.Vec2",
  2222. "x": 0.5,
  2223. "y": 0.5
  2224. },
  2225. "_id": ""
  2226. },
  2227. {
  2228. "__type__": "cc.CompPrefabInfo",
  2229. "fileId": "4cYGe9MxlLOYFasE4B/WVz"
  2230. },
  2231. {
  2232. "__type__": "cc.Label",
  2233. "_name": "",
  2234. "_objFlags": 0,
  2235. "__editorExtras__": {},
  2236. "node": {
  2237. "__id__": 85
  2238. },
  2239. "_enabled": true,
  2240. "__prefab": {
  2241. "__id__": 89
  2242. },
  2243. "_customMaterial": null,
  2244. "_srcBlendFactor": 2,
  2245. "_dstBlendFactor": 4,
  2246. "_color": {
  2247. "__type__": "cc.Color",
  2248. "r": 255,
  2249. "g": 255,
  2250. "b": 255,
  2251. "a": 255
  2252. },
  2253. "_string": "3秒后自启动",
  2254. "_horizontalAlign": 1,
  2255. "_verticalAlign": 1,
  2256. "_actualFontSize": 28,
  2257. "_fontSize": 28,
  2258. "_fontFamily": "Arial",
  2259. "_lineHeight": 40,
  2260. "_overflow": 0,
  2261. "_enableWrapText": true,
  2262. "_font": null,
  2263. "_isSystemFontUsed": true,
  2264. "_spacingX": 0,
  2265. "_isItalic": false,
  2266. "_isBold": false,
  2267. "_isUnderline": false,
  2268. "_underlineHeight": 2,
  2269. "_cacheMode": 0,
  2270. "_enableOutline": false,
  2271. "_outlineColor": {
  2272. "__type__": "cc.Color",
  2273. "r": 0,
  2274. "g": 0,
  2275. "b": 0,
  2276. "a": 255
  2277. },
  2278. "_outlineWidth": 2,
  2279. "_enableShadow": false,
  2280. "_shadowColor": {
  2281. "__type__": "cc.Color",
  2282. "r": 0,
  2283. "g": 0,
  2284. "b": 0,
  2285. "a": 255
  2286. },
  2287. "_shadowOffset": {
  2288. "__type__": "cc.Vec2",
  2289. "x": 2,
  2290. "y": 2
  2291. },
  2292. "_shadowBlur": 2,
  2293. "_id": ""
  2294. },
  2295. {
  2296. "__type__": "cc.CompPrefabInfo",
  2297. "fileId": "a5ZX60xzxIab3UJaHb3ob1"
  2298. },
  2299. {
  2300. "__type__": "cc.PrefabInfo",
  2301. "root": {
  2302. "__id__": 1
  2303. },
  2304. "asset": {
  2305. "__id__": 0
  2306. },
  2307. "fileId": "9aq3ZbB59AdJN/2TpYqNkN",
  2308. "instance": null,
  2309. "targetOverrides": null,
  2310. "nestedPrefabInstanceRoots": null
  2311. },
  2312. {
  2313. "__type__": "cc.Node",
  2314. "_name": "Node",
  2315. "_objFlags": 0,
  2316. "__editorExtras__": {},
  2317. "_parent": {
  2318. "__id__": 2
  2319. },
  2320. "_children": [],
  2321. "_active": true,
  2322. "_components": [
  2323. {
  2324. "__id__": 92
  2325. },
  2326. {
  2327. "__id__": 94
  2328. }
  2329. ],
  2330. "_prefab": {
  2331. "__id__": 96
  2332. },
  2333. "_lpos": {
  2334. "__type__": "cc.Vec3",
  2335. "x": 330.825,
  2336. "y": -463.608,
  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__": 91
  2369. },
  2370. "_enabled": true,
  2371. "__prefab": {
  2372. "__id__": 93
  2373. },
  2374. "_contentSize": {
  2375. "__type__": "cc.Size",
  2376. "width": 120,
  2377. "height": 130
  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": "9dnNjru5xPRYEYAU2i6aqB"
  2389. },
  2390. {
  2391. "__type__": "dragonBones.ArmatureDisplay",
  2392. "_name": "",
  2393. "_objFlags": 0,
  2394. "__editorExtras__": {},
  2395. "node": {
  2396. "__id__": 91
  2397. },
  2398. "_enabled": true,
  2399. "__prefab": {
  2400. "__id__": 95
  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. "playTimes": -1,
  2413. "premultipliedAlpha": false,
  2414. "_defaultArmatureIndexValue": 0,
  2415. "_dragonAsset": {
  2416. "__uuid__": "3bb38972-7753-4c70-a62a-eef56011c90a",
  2417. "__expectedType__": "dragonBones.DragonBonesAsset"
  2418. },
  2419. "_dragonAtlasAsset": {
  2420. "__uuid__": "bb8091c7-c86b-43aa-a918-7106553e4736",
  2421. "__expectedType__": "dragonBones.DragonBonesAtlasAsset"
  2422. },
  2423. "_armatureName": "Armature",
  2424. "_animationName": "newAnimation",
  2425. "_animationIndexValue": 1,
  2426. "_defaultCacheModeValue": 0,
  2427. "_timeScale": 1,
  2428. "_playTimes": -1,
  2429. "_debugBones": false,
  2430. "_enableBatch": false,
  2431. "_sockets": [],
  2432. "_id": ""
  2433. },
  2434. {
  2435. "__type__": "cc.CompPrefabInfo",
  2436. "fileId": "76/LjOYflMHZGjn/93gd8t"
  2437. },
  2438. {
  2439. "__type__": "cc.PrefabInfo",
  2440. "root": {
  2441. "__id__": 1
  2442. },
  2443. "asset": {
  2444. "__id__": 0
  2445. },
  2446. "fileId": "c8R82SsWFDY4t1/DjwlyXo",
  2447. "instance": null,
  2448. "targetOverrides": null,
  2449. "nestedPrefabInstanceRoots": null
  2450. },
  2451. {
  2452. "__type__": "cc.UITransform",
  2453. "_name": "",
  2454. "_objFlags": 0,
  2455. "__editorExtras__": {},
  2456. "node": {
  2457. "__id__": 2
  2458. },
  2459. "_enabled": true,
  2460. "__prefab": {
  2461. "__id__": 98
  2462. },
  2463. "_contentSize": {
  2464. "__type__": "cc.Size",
  2465. "width": 624,
  2466. "height": 750
  2467. },
  2468. "_anchorPoint": {
  2469. "__type__": "cc.Vec2",
  2470. "x": 0.5,
  2471. "y": 0.5
  2472. },
  2473. "_id": ""
  2474. },
  2475. {
  2476. "__type__": "cc.CompPrefabInfo",
  2477. "fileId": "67c3xyVp5L243tZipmcOWS"
  2478. },
  2479. {
  2480. "__type__": "cc.Sprite",
  2481. "_name": "",
  2482. "_objFlags": 0,
  2483. "__editorExtras__": {},
  2484. "node": {
  2485. "__id__": 2
  2486. },
  2487. "_enabled": true,
  2488. "__prefab": {
  2489. "__id__": 100
  2490. },
  2491. "_customMaterial": null,
  2492. "_srcBlendFactor": 2,
  2493. "_dstBlendFactor": 4,
  2494. "_color": {
  2495. "__type__": "cc.Color",
  2496. "r": 255,
  2497. "g": 255,
  2498. "b": 255,
  2499. "a": 255
  2500. },
  2501. "_spriteFrame": {
  2502. "__uuid__": "8d1f4852-9eb2-4333-9516-32bf2999ff64@f9941",
  2503. "__expectedType__": "cc.SpriteFrame"
  2504. },
  2505. "_type": 1,
  2506. "_fillType": 0,
  2507. "_sizeMode": 0,
  2508. "_fillCenter": {
  2509. "__type__": "cc.Vec2",
  2510. "x": 0,
  2511. "y": 0
  2512. },
  2513. "_fillStart": 0,
  2514. "_fillRange": 0,
  2515. "_isTrimmedMode": true,
  2516. "_useGrayscale": false,
  2517. "_atlas": null,
  2518. "_id": ""
  2519. },
  2520. {
  2521. "__type__": "cc.CompPrefabInfo",
  2522. "fileId": "aclkU1gWhAMIw/kX/UPD5K"
  2523. },
  2524. {
  2525. "__type__": "cc.PrefabInfo",
  2526. "root": {
  2527. "__id__": 1
  2528. },
  2529. "asset": {
  2530. "__id__": 0
  2531. },
  2532. "fileId": "b7nO3GqSBPEZg5OwsCUB0E",
  2533. "instance": null,
  2534. "targetOverrides": null,
  2535. "nestedPrefabInstanceRoots": null
  2536. },
  2537. {
  2538. "__type__": "cc.UITransform",
  2539. "_name": "",
  2540. "_objFlags": 0,
  2541. "__editorExtras__": {},
  2542. "node": {
  2543. "__id__": 1
  2544. },
  2545. "_enabled": true,
  2546. "__prefab": {
  2547. "__id__": 103
  2548. },
  2549. "_contentSize": {
  2550. "__type__": "cc.Size",
  2551. "width": 720,
  2552. "height": 1600
  2553. },
  2554. "_anchorPoint": {
  2555. "__type__": "cc.Vec2",
  2556. "x": 0.5,
  2557. "y": 0.5
  2558. },
  2559. "_id": ""
  2560. },
  2561. {
  2562. "__type__": "cc.CompPrefabInfo",
  2563. "fileId": "aa/pbj/3FAnbGkuQ4H6nCe"
  2564. },
  2565. {
  2566. "__type__": "cc.Widget",
  2567. "_name": "",
  2568. "_objFlags": 0,
  2569. "__editorExtras__": {},
  2570. "node": {
  2571. "__id__": 1
  2572. },
  2573. "_enabled": true,
  2574. "__prefab": {
  2575. "__id__": 105
  2576. },
  2577. "_alignFlags": 45,
  2578. "_target": null,
  2579. "_left": 0,
  2580. "_right": 0,
  2581. "_top": 0,
  2582. "_bottom": 0,
  2583. "_horizontalCenter": 0,
  2584. "_verticalCenter": 0,
  2585. "_isAbsLeft": true,
  2586. "_isAbsRight": true,
  2587. "_isAbsTop": true,
  2588. "_isAbsBottom": true,
  2589. "_isAbsHorizontalCenter": true,
  2590. "_isAbsVerticalCenter": true,
  2591. "_originalWidth": 720,
  2592. "_originalHeight": 1280,
  2593. "_alignMode": 2,
  2594. "_lockFlags": 0,
  2595. "_id": ""
  2596. },
  2597. {
  2598. "__type__": "cc.CompPrefabInfo",
  2599. "fileId": "9deG+VU5RHmbSyIDQ2Not3"
  2600. },
  2601. {
  2602. "__type__": "4f0c7zboiZINYMYkd7Rb5OX",
  2603. "_name": "",
  2604. "_objFlags": 0,
  2605. "__editorExtras__": {},
  2606. "node": {
  2607. "__id__": 1
  2608. },
  2609. "_enabled": true,
  2610. "__prefab": {
  2611. "__id__": 107
  2612. },
  2613. "lab_time": {
  2614. "__id__": 88
  2615. },
  2616. "_id": ""
  2617. },
  2618. {
  2619. "__type__": "cc.CompPrefabInfo",
  2620. "fileId": "26+xIFokBEZbSBmFLI7zrH"
  2621. },
  2622. {
  2623. "__type__": "cc.PrefabInfo",
  2624. "root": {
  2625. "__id__": 1
  2626. },
  2627. "asset": {
  2628. "__id__": 0
  2629. },
  2630. "fileId": "b1VzNJ6G5HWIzB7TmVyQ4Z",
  2631. "instance": null,
  2632. "targetOverrides": null
  2633. }
  2634. ]