doubleSpeed.prefab 58 KB

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