UI_Alert.prefab 66 KB

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