gamePass.prefab 67 KB

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