doubleSpeed.prefab 59 KB

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