widget_item.prefab 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "widget_item",
  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": "widget_item",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 8
  26. },
  27. {
  28. "__id__": 16
  29. },
  30. {
  31. "__id__": 28
  32. },
  33. {
  34. "__id__": 40
  35. },
  36. {
  37. "__id__": 82
  38. },
  39. {
  40. "__id__": 106
  41. },
  42. {
  43. "__id__": 112
  44. }
  45. ],
  46. "_active": true,
  47. "_components": [
  48. {
  49. "__id__": 126
  50. },
  51. {
  52. "__id__": 128
  53. }
  54. ],
  55. "_prefab": {
  56. "__id__": 130
  57. },
  58. "_lpos": {
  59. "__type__": "cc.Vec3",
  60. "x": -104.99999999999972,
  61. "y": -105,
  62. "z": 0
  63. },
  64. "_lrot": {
  65. "__type__": "cc.Quat",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0,
  69. "w": 1
  70. },
  71. "_lscale": {
  72. "__type__": "cc.Vec3",
  73. "x": 1,
  74. "y": 1,
  75. "z": 1
  76. },
  77. "_mobility": 0,
  78. "_layer": 33554432,
  79. "_euler": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_id": ""
  86. },
  87. {
  88. "__type__": "cc.Node",
  89. "_name": "other_drag_content",
  90. "_objFlags": 0,
  91. "__editorExtras__": {},
  92. "_parent": {
  93. "__id__": 1
  94. },
  95. "_children": [],
  96. "_active": true,
  97. "_components": [
  98. {
  99. "__id__": 3
  100. },
  101. {
  102. "__id__": 5
  103. }
  104. ],
  105. "_prefab": {
  106. "__id__": 7
  107. },
  108. "_lpos": {
  109. "__type__": "cc.Vec3",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0
  113. },
  114. "_lrot": {
  115. "__type__": "cc.Quat",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0,
  119. "w": 1
  120. },
  121. "_lscale": {
  122. "__type__": "cc.Vec3",
  123. "x": 1,
  124. "y": 1,
  125. "z": 1
  126. },
  127. "_mobility": 0,
  128. "_layer": 33554432,
  129. "_euler": {
  130. "__type__": "cc.Vec3",
  131. "x": 0,
  132. "y": 0,
  133. "z": 0
  134. },
  135. "_id": ""
  136. },
  137. {
  138. "__type__": "cc.UITransform",
  139. "_name": "",
  140. "_objFlags": 0,
  141. "__editorExtras__": {},
  142. "node": {
  143. "__id__": 2
  144. },
  145. "_enabled": true,
  146. "__prefab": {
  147. "__id__": 4
  148. },
  149. "_contentSize": {
  150. "__type__": "cc.Size",
  151. "width": 210,
  152. "height": 210
  153. },
  154. "_anchorPoint": {
  155. "__type__": "cc.Vec2",
  156. "x": 0.5,
  157. "y": 0.5
  158. },
  159. "_id": ""
  160. },
  161. {
  162. "__type__": "cc.CompPrefabInfo",
  163. "fileId": "d4gBCBKp1LFZ10C/UxtnkO"
  164. },
  165. {
  166. "__type__": "cc.Widget",
  167. "_name": "",
  168. "_objFlags": 0,
  169. "__editorExtras__": {},
  170. "node": {
  171. "__id__": 2
  172. },
  173. "_enabled": true,
  174. "__prefab": {
  175. "__id__": 6
  176. },
  177. "_alignFlags": 45,
  178. "_target": null,
  179. "_left": 0,
  180. "_right": 0,
  181. "_top": 0,
  182. "_bottom": 0,
  183. "_horizontalCenter": 0,
  184. "_verticalCenter": 0,
  185. "_isAbsLeft": true,
  186. "_isAbsRight": true,
  187. "_isAbsTop": true,
  188. "_isAbsBottom": true,
  189. "_isAbsHorizontalCenter": true,
  190. "_isAbsVerticalCenter": true,
  191. "_originalWidth": 100,
  192. "_originalHeight": 100,
  193. "_alignMode": 2,
  194. "_lockFlags": 0,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.CompPrefabInfo",
  199. "fileId": "77HvdQt5tIGbIeP84Vb4ZX"
  200. },
  201. {
  202. "__type__": "cc.PrefabInfo",
  203. "root": {
  204. "__id__": 1
  205. },
  206. "asset": {
  207. "__id__": 0
  208. },
  209. "fileId": "1bsV6kgnpNoZsRKBzYX+gP",
  210. "instance": null,
  211. "targetOverrides": null,
  212. "nestedPrefabInstanceRoots": null
  213. },
  214. {
  215. "__type__": "cc.Node",
  216. "_name": "img_select",
  217. "_objFlags": 0,
  218. "__editorExtras__": {},
  219. "_parent": {
  220. "__id__": 1
  221. },
  222. "_children": [],
  223. "_active": false,
  224. "_components": [
  225. {
  226. "__id__": 9
  227. },
  228. {
  229. "__id__": 11
  230. },
  231. {
  232. "__id__": 13
  233. }
  234. ],
  235. "_prefab": {
  236. "__id__": 15
  237. },
  238. "_lpos": {
  239. "__type__": "cc.Vec3",
  240. "x": 0,
  241. "y": 0,
  242. "z": 0
  243. },
  244. "_lrot": {
  245. "__type__": "cc.Quat",
  246. "x": 0,
  247. "y": 0,
  248. "z": 0,
  249. "w": 1
  250. },
  251. "_lscale": {
  252. "__type__": "cc.Vec3",
  253. "x": 1,
  254. "y": 1,
  255. "z": 1
  256. },
  257. "_mobility": 0,
  258. "_layer": 33554432,
  259. "_euler": {
  260. "__type__": "cc.Vec3",
  261. "x": 0,
  262. "y": 0,
  263. "z": 0
  264. },
  265. "_id": ""
  266. },
  267. {
  268. "__type__": "cc.UITransform",
  269. "_name": "",
  270. "_objFlags": 0,
  271. "__editorExtras__": {},
  272. "node": {
  273. "__id__": 8
  274. },
  275. "_enabled": true,
  276. "__prefab": {
  277. "__id__": 10
  278. },
  279. "_contentSize": {
  280. "__type__": "cc.Size",
  281. "width": 220,
  282. "height": 220
  283. },
  284. "_anchorPoint": {
  285. "__type__": "cc.Vec2",
  286. "x": 0.5,
  287. "y": 0.5
  288. },
  289. "_id": ""
  290. },
  291. {
  292. "__type__": "cc.CompPrefabInfo",
  293. "fileId": "a4yMRUIDhGiZXX1UWFL5RY"
  294. },
  295. {
  296. "__type__": "cc.Sprite",
  297. "_name": "",
  298. "_objFlags": 0,
  299. "__editorExtras__": {},
  300. "node": {
  301. "__id__": 8
  302. },
  303. "_enabled": true,
  304. "__prefab": {
  305. "__id__": 12
  306. },
  307. "_customMaterial": null,
  308. "_srcBlendFactor": 2,
  309. "_dstBlendFactor": 4,
  310. "_color": {
  311. "__type__": "cc.Color",
  312. "r": 49,
  313. "g": 238,
  314. "b": 64,
  315. "a": 255
  316. },
  317. "_spriteFrame": {
  318. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  319. "__expectedType__": "cc.SpriteFrame"
  320. },
  321. "_type": 0,
  322. "_fillType": 0,
  323. "_sizeMode": 0,
  324. "_fillCenter": {
  325. "__type__": "cc.Vec2",
  326. "x": 0,
  327. "y": 0
  328. },
  329. "_fillStart": 0,
  330. "_fillRange": 0,
  331. "_isTrimmedMode": true,
  332. "_useGrayscale": false,
  333. "_atlas": null,
  334. "_id": ""
  335. },
  336. {
  337. "__type__": "cc.CompPrefabInfo",
  338. "fileId": "53Gda0l5dFj6Z8nQFVbRby"
  339. },
  340. {
  341. "__type__": "cc.Widget",
  342. "_name": "",
  343. "_objFlags": 0,
  344. "__editorExtras__": {},
  345. "node": {
  346. "__id__": 8
  347. },
  348. "_enabled": true,
  349. "__prefab": {
  350. "__id__": 14
  351. },
  352. "_alignFlags": 45,
  353. "_target": null,
  354. "_left": -5,
  355. "_right": -5,
  356. "_top": -5,
  357. "_bottom": -5,
  358. "_horizontalCenter": 0,
  359. "_verticalCenter": 0,
  360. "_isAbsLeft": true,
  361. "_isAbsRight": true,
  362. "_isAbsTop": true,
  363. "_isAbsBottom": true,
  364. "_isAbsHorizontalCenter": true,
  365. "_isAbsVerticalCenter": true,
  366. "_originalWidth": 261,
  367. "_originalHeight": 102,
  368. "_alignMode": 2,
  369. "_lockFlags": 0,
  370. "_id": ""
  371. },
  372. {
  373. "__type__": "cc.CompPrefabInfo",
  374. "fileId": "f2H1PEgqlGcZ08vGcN9zFm"
  375. },
  376. {
  377. "__type__": "cc.PrefabInfo",
  378. "root": {
  379. "__id__": 1
  380. },
  381. "asset": {
  382. "__id__": 0
  383. },
  384. "fileId": "c3PGbMpPZFxqfApLYoOM/U",
  385. "instance": null,
  386. "targetOverrides": null,
  387. "nestedPrefabInstanceRoots": null
  388. },
  389. {
  390. "__type__": "cc.Node",
  391. "_name": "Sprite",
  392. "_objFlags": 0,
  393. "__editorExtras__": {},
  394. "_parent": {
  395. "__id__": 1
  396. },
  397. "_children": [
  398. {
  399. "__id__": 17
  400. }
  401. ],
  402. "_active": true,
  403. "_components": [
  404. {
  405. "__id__": 23
  406. },
  407. {
  408. "__id__": 25
  409. }
  410. ],
  411. "_prefab": {
  412. "__id__": 27
  413. },
  414. "_lpos": {
  415. "__type__": "cc.Vec3",
  416. "x": 0,
  417. "y": 0,
  418. "z": 0
  419. },
  420. "_lrot": {
  421. "__type__": "cc.Quat",
  422. "x": 0,
  423. "y": 0,
  424. "z": 0,
  425. "w": 1
  426. },
  427. "_lscale": {
  428. "__type__": "cc.Vec3",
  429. "x": 1,
  430. "y": 1,
  431. "z": 1
  432. },
  433. "_mobility": 0,
  434. "_layer": 33554432,
  435. "_euler": {
  436. "__type__": "cc.Vec3",
  437. "x": 0,
  438. "y": 0,
  439. "z": 0
  440. },
  441. "_id": ""
  442. },
  443. {
  444. "__type__": "cc.Node",
  445. "_name": "Label",
  446. "_objFlags": 0,
  447. "__editorExtras__": {},
  448. "_parent": {
  449. "__id__": 16
  450. },
  451. "_children": [],
  452. "_active": true,
  453. "_components": [
  454. {
  455. "__id__": 18
  456. },
  457. {
  458. "__id__": 20
  459. }
  460. ],
  461. "_prefab": {
  462. "__id__": 22
  463. },
  464. "_lpos": {
  465. "__type__": "cc.Vec3",
  466. "x": 0,
  467. "y": 0,
  468. "z": 0
  469. },
  470. "_lrot": {
  471. "__type__": "cc.Quat",
  472. "x": 0,
  473. "y": 0,
  474. "z": 0,
  475. "w": 1
  476. },
  477. "_lscale": {
  478. "__type__": "cc.Vec3",
  479. "x": 1,
  480. "y": 1,
  481. "z": 1
  482. },
  483. "_mobility": 0,
  484. "_layer": 33554432,
  485. "_euler": {
  486. "__type__": "cc.Vec3",
  487. "x": 0,
  488. "y": 0,
  489. "z": 0
  490. },
  491. "_id": ""
  492. },
  493. {
  494. "__type__": "cc.UITransform",
  495. "_name": "",
  496. "_objFlags": 0,
  497. "__editorExtras__": {},
  498. "node": {
  499. "__id__": 17
  500. },
  501. "_enabled": true,
  502. "__prefab": {
  503. "__id__": 19
  504. },
  505. "_contentSize": {
  506. "__type__": "cc.Size",
  507. "width": 200,
  508. "height": 37.8
  509. },
  510. "_anchorPoint": {
  511. "__type__": "cc.Vec2",
  512. "x": 0.5,
  513. "y": 0.5
  514. },
  515. "_id": ""
  516. },
  517. {
  518. "__type__": "cc.CompPrefabInfo",
  519. "fileId": "9aLp9C/NNNtaHrPOnwuQXb"
  520. },
  521. {
  522. "__type__": "cc.Label",
  523. "_name": "",
  524. "_objFlags": 0,
  525. "__editorExtras__": {},
  526. "node": {
  527. "__id__": 17
  528. },
  529. "_enabled": true,
  530. "__prefab": {
  531. "__id__": 21
  532. },
  533. "_customMaterial": null,
  534. "_srcBlendFactor": 2,
  535. "_dstBlendFactor": 4,
  536. "_color": {
  537. "__type__": "cc.Color",
  538. "r": 0,
  539. "g": 0,
  540. "b": 0,
  541. "a": 255
  542. },
  543. "_string": "点击控件",
  544. "_horizontalAlign": 1,
  545. "_verticalAlign": 1,
  546. "_actualFontSize": 31,
  547. "_fontSize": 30,
  548. "_fontFamily": "Arial",
  549. "_lineHeight": 30,
  550. "_overflow": 2,
  551. "_enableWrapText": true,
  552. "_font": null,
  553. "_isSystemFontUsed": true,
  554. "_spacingX": 0,
  555. "_isItalic": false,
  556. "_isBold": true,
  557. "_isUnderline": false,
  558. "_underlineHeight": 2,
  559. "_cacheMode": 0,
  560. "_id": ""
  561. },
  562. {
  563. "__type__": "cc.CompPrefabInfo",
  564. "fileId": "a3SPrtgqFHPYUMANzxM6d0"
  565. },
  566. {
  567. "__type__": "cc.PrefabInfo",
  568. "root": {
  569. "__id__": 1
  570. },
  571. "asset": {
  572. "__id__": 0
  573. },
  574. "fileId": "42KmMWOydBbJh06sSDzLRx",
  575. "instance": null,
  576. "targetOverrides": null,
  577. "nestedPrefabInstanceRoots": null
  578. },
  579. {
  580. "__type__": "cc.UITransform",
  581. "_name": "",
  582. "_objFlags": 0,
  583. "__editorExtras__": {},
  584. "node": {
  585. "__id__": 16
  586. },
  587. "_enabled": true,
  588. "__prefab": {
  589. "__id__": 24
  590. },
  591. "_contentSize": {
  592. "__type__": "cc.Size",
  593. "width": 200,
  594. "height": 200
  595. },
  596. "_anchorPoint": {
  597. "__type__": "cc.Vec2",
  598. "x": 0.5,
  599. "y": 0.5
  600. },
  601. "_id": ""
  602. },
  603. {
  604. "__type__": "cc.CompPrefabInfo",
  605. "fileId": "b3l9Zb8fVPxIMxHiHsmk29"
  606. },
  607. {
  608. "__type__": "cc.Sprite",
  609. "_name": "",
  610. "_objFlags": 0,
  611. "__editorExtras__": {},
  612. "node": {
  613. "__id__": 16
  614. },
  615. "_enabled": true,
  616. "__prefab": {
  617. "__id__": 26
  618. },
  619. "_customMaterial": null,
  620. "_srcBlendFactor": 2,
  621. "_dstBlendFactor": 4,
  622. "_color": {
  623. "__type__": "cc.Color",
  624. "r": 255,
  625. "g": 255,
  626. "b": 255,
  627. "a": 255
  628. },
  629. "_spriteFrame": {
  630. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  631. "__expectedType__": "cc.SpriteFrame"
  632. },
  633. "_type": 0,
  634. "_fillType": 0,
  635. "_sizeMode": 0,
  636. "_fillCenter": {
  637. "__type__": "cc.Vec2",
  638. "x": 0,
  639. "y": 0
  640. },
  641. "_fillStart": 0,
  642. "_fillRange": 0,
  643. "_isTrimmedMode": true,
  644. "_useGrayscale": false,
  645. "_atlas": null,
  646. "_id": ""
  647. },
  648. {
  649. "__type__": "cc.CompPrefabInfo",
  650. "fileId": "08SZ/MVf5K5JER/qNkXmh2"
  651. },
  652. {
  653. "__type__": "cc.PrefabInfo",
  654. "root": {
  655. "__id__": 1
  656. },
  657. "asset": {
  658. "__id__": 0
  659. },
  660. "fileId": "20vnn1ohdGSLjJywC3lDk4",
  661. "instance": null,
  662. "targetOverrides": null,
  663. "nestedPrefabInstanceRoots": null
  664. },
  665. {
  666. "__type__": "cc.Node",
  667. "_name": "drag",
  668. "_objFlags": 0,
  669. "__editorExtras__": {},
  670. "_parent": {
  671. "__id__": 1
  672. },
  673. "_children": [
  674. {
  675. "__id__": 29
  676. }
  677. ],
  678. "_active": false,
  679. "_components": [
  680. {
  681. "__id__": 35
  682. },
  683. {
  684. "__id__": 37
  685. }
  686. ],
  687. "_prefab": {
  688. "__id__": 39
  689. },
  690. "_lpos": {
  691. "__type__": "cc.Vec3",
  692. "x": 166.403,
  693. "y": 0,
  694. "z": 0
  695. },
  696. "_lrot": {
  697. "__type__": "cc.Quat",
  698. "x": 0,
  699. "y": 0,
  700. "z": 0,
  701. "w": 1
  702. },
  703. "_lscale": {
  704. "__type__": "cc.Vec3",
  705. "x": 1,
  706. "y": 1,
  707. "z": 1
  708. },
  709. "_mobility": 0,
  710. "_layer": 33554432,
  711. "_euler": {
  712. "__type__": "cc.Vec3",
  713. "x": 0,
  714. "y": 0,
  715. "z": 0
  716. },
  717. "_id": ""
  718. },
  719. {
  720. "__type__": "cc.Node",
  721. "_name": "lab_drag",
  722. "_objFlags": 0,
  723. "__editorExtras__": {},
  724. "_parent": {
  725. "__id__": 28
  726. },
  727. "_children": [],
  728. "_active": true,
  729. "_components": [
  730. {
  731. "__id__": 30
  732. },
  733. {
  734. "__id__": 32
  735. }
  736. ],
  737. "_prefab": {
  738. "__id__": 34
  739. },
  740. "_lpos": {
  741. "__type__": "cc.Vec3",
  742. "x": 0,
  743. "y": 28.939,
  744. "z": 0
  745. },
  746. "_lrot": {
  747. "__type__": "cc.Quat",
  748. "x": 0,
  749. "y": 0,
  750. "z": 0,
  751. "w": 1
  752. },
  753. "_lscale": {
  754. "__type__": "cc.Vec3",
  755. "x": 1,
  756. "y": 1,
  757. "z": 1
  758. },
  759. "_mobility": 0,
  760. "_layer": 33554432,
  761. "_euler": {
  762. "__type__": "cc.Vec3",
  763. "x": 0,
  764. "y": 0,
  765. "z": 0
  766. },
  767. "_id": ""
  768. },
  769. {
  770. "__type__": "cc.UITransform",
  771. "_name": "",
  772. "_objFlags": 0,
  773. "__editorExtras__": {},
  774. "node": {
  775. "__id__": 29
  776. },
  777. "_enabled": true,
  778. "__prefab": {
  779. "__id__": 31
  780. },
  781. "_contentSize": {
  782. "__type__": "cc.Size",
  783. "width": 120,
  784. "height": 37.8
  785. },
  786. "_anchorPoint": {
  787. "__type__": "cc.Vec2",
  788. "x": 0.5,
  789. "y": 0.5
  790. },
  791. "_id": ""
  792. },
  793. {
  794. "__type__": "cc.CompPrefabInfo",
  795. "fileId": "6exlwmKjBJjJwRmvhCeEnZ"
  796. },
  797. {
  798. "__type__": "cc.Label",
  799. "_name": "",
  800. "_objFlags": 0,
  801. "__editorExtras__": {},
  802. "node": {
  803. "__id__": 29
  804. },
  805. "_enabled": true,
  806. "__prefab": {
  807. "__id__": 33
  808. },
  809. "_customMaterial": null,
  810. "_srcBlendFactor": 2,
  811. "_dstBlendFactor": 4,
  812. "_color": {
  813. "__type__": "cc.Color",
  814. "r": 0,
  815. "g": 0,
  816. "b": 0,
  817. "a": 255
  818. },
  819. "_string": "拖拽目标",
  820. "_horizontalAlign": 1,
  821. "_verticalAlign": 1,
  822. "_actualFontSize": 30,
  823. "_fontSize": 40,
  824. "_fontFamily": "Arial",
  825. "_lineHeight": 40,
  826. "_overflow": 2,
  827. "_enableWrapText": true,
  828. "_font": null,
  829. "_isSystemFontUsed": true,
  830. "_spacingX": 0,
  831. "_isItalic": false,
  832. "_isBold": true,
  833. "_isUnderline": false,
  834. "_underlineHeight": 2,
  835. "_cacheMode": 0,
  836. "_id": ""
  837. },
  838. {
  839. "__type__": "cc.CompPrefabInfo",
  840. "fileId": "4aZ7pOIgJLQJmOqOIEeeT7"
  841. },
  842. {
  843. "__type__": "cc.PrefabInfo",
  844. "root": {
  845. "__id__": 1
  846. },
  847. "asset": {
  848. "__id__": 0
  849. },
  850. "fileId": "2aqvntSxdOJ4Uzby2HU85u",
  851. "instance": null,
  852. "targetOverrides": null,
  853. "nestedPrefabInstanceRoots": null
  854. },
  855. {
  856. "__type__": "cc.UITransform",
  857. "_name": "",
  858. "_objFlags": 0,
  859. "__editorExtras__": {},
  860. "node": {
  861. "__id__": 28
  862. },
  863. "_enabled": true,
  864. "__prefab": {
  865. "__id__": 36
  866. },
  867. "_contentSize": {
  868. "__type__": "cc.Size",
  869. "width": 100,
  870. "height": 100
  871. },
  872. "_anchorPoint": {
  873. "__type__": "cc.Vec2",
  874. "x": 0.5,
  875. "y": 0.5
  876. },
  877. "_id": ""
  878. },
  879. {
  880. "__type__": "cc.CompPrefabInfo",
  881. "fileId": "111t/1goVLMZVfn/uR2uC8"
  882. },
  883. {
  884. "__type__": "cc.Sprite",
  885. "_name": "",
  886. "_objFlags": 0,
  887. "__editorExtras__": {},
  888. "node": {
  889. "__id__": 28
  890. },
  891. "_enabled": true,
  892. "__prefab": {
  893. "__id__": 38
  894. },
  895. "_customMaterial": null,
  896. "_srcBlendFactor": 2,
  897. "_dstBlendFactor": 4,
  898. "_color": {
  899. "__type__": "cc.Color",
  900. "r": 133,
  901. "g": 133,
  902. "b": 133,
  903. "a": 255
  904. },
  905. "_spriteFrame": {
  906. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  907. "__expectedType__": "cc.SpriteFrame"
  908. },
  909. "_type": 0,
  910. "_fillType": 0,
  911. "_sizeMode": 0,
  912. "_fillCenter": {
  913. "__type__": "cc.Vec2",
  914. "x": 0,
  915. "y": 0
  916. },
  917. "_fillStart": 0,
  918. "_fillRange": 0,
  919. "_isTrimmedMode": true,
  920. "_useGrayscale": false,
  921. "_atlas": null,
  922. "_id": ""
  923. },
  924. {
  925. "__type__": "cc.CompPrefabInfo",
  926. "fileId": "1dDQStLDJJUKbb+VOIbgZC"
  927. },
  928. {
  929. "__type__": "cc.PrefabInfo",
  930. "root": {
  931. "__id__": 1
  932. },
  933. "asset": {
  934. "__id__": 0
  935. },
  936. "fileId": "79bz0og1JKzIv7yXMpWs5O",
  937. "instance": null,
  938. "targetOverrides": null,
  939. "nestedPrefabInstanceRoots": null
  940. },
  941. {
  942. "__type__": "cc.Node",
  943. "_name": "slide",
  944. "_objFlags": 0,
  945. "__editorExtras__": {},
  946. "_parent": {
  947. "__id__": 1
  948. },
  949. "_children": [
  950. {
  951. "__id__": 41
  952. },
  953. {
  954. "__id__": 47
  955. }
  956. ],
  957. "_active": false,
  958. "_components": [
  959. {
  960. "__id__": 75
  961. },
  962. {
  963. "__id__": 77
  964. },
  965. {
  966. "__id__": 79
  967. }
  968. ],
  969. "_prefab": {
  970. "__id__": 81
  971. },
  972. "_lpos": {
  973. "__type__": "cc.Vec3",
  974. "x": 0,
  975. "y": 0,
  976. "z": 0
  977. },
  978. "_lrot": {
  979. "__type__": "cc.Quat",
  980. "x": 0,
  981. "y": 0,
  982. "z": 0,
  983. "w": 1
  984. },
  985. "_lscale": {
  986. "__type__": "cc.Vec3",
  987. "x": 1,
  988. "y": 1,
  989. "z": 1
  990. },
  991. "_mobility": 0,
  992. "_layer": 33554432,
  993. "_euler": {
  994. "__type__": "cc.Vec3",
  995. "x": 0,
  996. "y": 0,
  997. "z": 0
  998. },
  999. "_id": ""
  1000. },
  1001. {
  1002. "__type__": "cc.Node",
  1003. "_name": "Label",
  1004. "_objFlags": 0,
  1005. "__editorExtras__": {},
  1006. "_parent": {
  1007. "__id__": 40
  1008. },
  1009. "_children": [],
  1010. "_active": true,
  1011. "_components": [
  1012. {
  1013. "__id__": 42
  1014. },
  1015. {
  1016. "__id__": 44
  1017. }
  1018. ],
  1019. "_prefab": {
  1020. "__id__": 46
  1021. },
  1022. "_lpos": {
  1023. "__type__": "cc.Vec3",
  1024. "x": 0,
  1025. "y": 74.157,
  1026. "z": 0
  1027. },
  1028. "_lrot": {
  1029. "__type__": "cc.Quat",
  1030. "x": 0,
  1031. "y": 0,
  1032. "z": 0,
  1033. "w": 1
  1034. },
  1035. "_lscale": {
  1036. "__type__": "cc.Vec3",
  1037. "x": 1,
  1038. "y": 1,
  1039. "z": 1
  1040. },
  1041. "_mobility": 0,
  1042. "_layer": 33554432,
  1043. "_euler": {
  1044. "__type__": "cc.Vec3",
  1045. "x": 0,
  1046. "y": 0,
  1047. "z": 0
  1048. },
  1049. "_id": ""
  1050. },
  1051. {
  1052. "__type__": "cc.UITransform",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "__editorExtras__": {},
  1056. "node": {
  1057. "__id__": 41
  1058. },
  1059. "_enabled": true,
  1060. "__prefab": {
  1061. "__id__": 43
  1062. },
  1063. "_contentSize": {
  1064. "__type__": "cc.Size",
  1065. "width": 120,
  1066. "height": 37.8
  1067. },
  1068. "_anchorPoint": {
  1069. "__type__": "cc.Vec2",
  1070. "x": 0.5,
  1071. "y": 0.5
  1072. },
  1073. "_id": ""
  1074. },
  1075. {
  1076. "__type__": "cc.CompPrefabInfo",
  1077. "fileId": "2b9iGJ2S1N+6/T6xEKd38D"
  1078. },
  1079. {
  1080. "__type__": "cc.Label",
  1081. "_name": "",
  1082. "_objFlags": 0,
  1083. "__editorExtras__": {},
  1084. "node": {
  1085. "__id__": 41
  1086. },
  1087. "_enabled": true,
  1088. "__prefab": {
  1089. "__id__": 45
  1090. },
  1091. "_customMaterial": null,
  1092. "_srcBlendFactor": 2,
  1093. "_dstBlendFactor": 4,
  1094. "_color": {
  1095. "__type__": "cc.Color",
  1096. "r": 0,
  1097. "g": 0,
  1098. "b": 0,
  1099. "a": 255
  1100. },
  1101. "_string": "滑动",
  1102. "_horizontalAlign": 1,
  1103. "_verticalAlign": 1,
  1104. "_actualFontSize": 21,
  1105. "_fontSize": 20,
  1106. "_fontFamily": "Arial",
  1107. "_lineHeight": 30,
  1108. "_overflow": 2,
  1109. "_enableWrapText": true,
  1110. "_font": null,
  1111. "_isSystemFontUsed": true,
  1112. "_spacingX": 0,
  1113. "_isItalic": false,
  1114. "_isBold": true,
  1115. "_isUnderline": false,
  1116. "_underlineHeight": 2,
  1117. "_cacheMode": 0,
  1118. "_id": ""
  1119. },
  1120. {
  1121. "__type__": "cc.CompPrefabInfo",
  1122. "fileId": "32ftDo66VGJaTVYmv8o5/f"
  1123. },
  1124. {
  1125. "__type__": "cc.PrefabInfo",
  1126. "root": {
  1127. "__id__": 1
  1128. },
  1129. "asset": {
  1130. "__id__": 0
  1131. },
  1132. "fileId": "58F7lK1G5FeaDDlQfMochC",
  1133. "instance": null,
  1134. "targetOverrides": null,
  1135. "nestedPrefabInstanceRoots": null
  1136. },
  1137. {
  1138. "__type__": "cc.Node",
  1139. "_name": "dir",
  1140. "_objFlags": 0,
  1141. "__editorExtras__": {},
  1142. "_parent": {
  1143. "__id__": 40
  1144. },
  1145. "_children": [
  1146. {
  1147. "__id__": 48
  1148. },
  1149. {
  1150. "__id__": 54
  1151. },
  1152. {
  1153. "__id__": 60
  1154. },
  1155. {
  1156. "__id__": 66
  1157. }
  1158. ],
  1159. "_active": true,
  1160. "_components": [
  1161. {
  1162. "__id__": 72
  1163. }
  1164. ],
  1165. "_prefab": {
  1166. "__id__": 74
  1167. },
  1168. "_lpos": {
  1169. "__type__": "cc.Vec3",
  1170. "x": 0,
  1171. "y": 0,
  1172. "z": 0
  1173. },
  1174. "_lrot": {
  1175. "__type__": "cc.Quat",
  1176. "x": 0,
  1177. "y": 0,
  1178. "z": 0,
  1179. "w": 1
  1180. },
  1181. "_lscale": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 1,
  1184. "y": 1,
  1185. "z": 1
  1186. },
  1187. "_mobility": 0,
  1188. "_layer": 33554432,
  1189. "_euler": {
  1190. "__type__": "cc.Vec3",
  1191. "x": 0,
  1192. "y": 0,
  1193. "z": 0
  1194. },
  1195. "_id": ""
  1196. },
  1197. {
  1198. "__type__": "cc.Node",
  1199. "_name": "img_scene_left",
  1200. "_objFlags": 0,
  1201. "__editorExtras__": {},
  1202. "_parent": {
  1203. "__id__": 47
  1204. },
  1205. "_children": [],
  1206. "_active": true,
  1207. "_components": [
  1208. {
  1209. "__id__": 49
  1210. },
  1211. {
  1212. "__id__": 51
  1213. }
  1214. ],
  1215. "_prefab": {
  1216. "__id__": 53
  1217. },
  1218. "_lpos": {
  1219. "__type__": "cc.Vec3",
  1220. "x": -150.606,
  1221. "y": 0,
  1222. "z": 0
  1223. },
  1224. "_lrot": {
  1225. "__type__": "cc.Quat",
  1226. "x": 0,
  1227. "y": 0,
  1228. "z": 0,
  1229. "w": 1
  1230. },
  1231. "_lscale": {
  1232. "__type__": "cc.Vec3",
  1233. "x": 0.5,
  1234. "y": 0.5,
  1235. "z": 1
  1236. },
  1237. "_mobility": 0,
  1238. "_layer": 33554432,
  1239. "_euler": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 0,
  1242. "y": 0,
  1243. "z": 0
  1244. },
  1245. "_id": ""
  1246. },
  1247. {
  1248. "__type__": "cc.UITransform",
  1249. "_name": "",
  1250. "_objFlags": 0,
  1251. "__editorExtras__": {},
  1252. "node": {
  1253. "__id__": 48
  1254. },
  1255. "_enabled": true,
  1256. "__prefab": {
  1257. "__id__": 50
  1258. },
  1259. "_contentSize": {
  1260. "__type__": "cc.Size",
  1261. "width": 177,
  1262. "height": 130
  1263. },
  1264. "_anchorPoint": {
  1265. "__type__": "cc.Vec2",
  1266. "x": 0.5,
  1267. "y": 0.5
  1268. },
  1269. "_id": ""
  1270. },
  1271. {
  1272. "__type__": "cc.CompPrefabInfo",
  1273. "fileId": "49sqRTSv9GnL7bcQPGAvHA"
  1274. },
  1275. {
  1276. "__type__": "cc.Sprite",
  1277. "_name": "",
  1278. "_objFlags": 0,
  1279. "__editorExtras__": {},
  1280. "node": {
  1281. "__id__": 48
  1282. },
  1283. "_enabled": true,
  1284. "__prefab": {
  1285. "__id__": 52
  1286. },
  1287. "_customMaterial": null,
  1288. "_srcBlendFactor": 2,
  1289. "_dstBlendFactor": 4,
  1290. "_color": {
  1291. "__type__": "cc.Color",
  1292. "r": 255,
  1293. "g": 255,
  1294. "b": 255,
  1295. "a": 255
  1296. },
  1297. "_spriteFrame": {
  1298. "__uuid__": "7598ca6e-8d48-478c-b170-bb449c0744c7@f9941",
  1299. "__expectedType__": "cc.SpriteFrame"
  1300. },
  1301. "_type": 0,
  1302. "_fillType": 0,
  1303. "_sizeMode": 0,
  1304. "_fillCenter": {
  1305. "__type__": "cc.Vec2",
  1306. "x": 0,
  1307. "y": 0
  1308. },
  1309. "_fillStart": 0,
  1310. "_fillRange": 0,
  1311. "_isTrimmedMode": true,
  1312. "_useGrayscale": false,
  1313. "_atlas": null,
  1314. "_id": ""
  1315. },
  1316. {
  1317. "__type__": "cc.CompPrefabInfo",
  1318. "fileId": "7eCHbaHYtE/bN2RxLfULVE"
  1319. },
  1320. {
  1321. "__type__": "cc.PrefabInfo",
  1322. "root": {
  1323. "__id__": 1
  1324. },
  1325. "asset": {
  1326. "__id__": 0
  1327. },
  1328. "fileId": "7fAhdYCGVOmaVf9gEXE983",
  1329. "instance": null,
  1330. "targetOverrides": null,
  1331. "nestedPrefabInstanceRoots": null
  1332. },
  1333. {
  1334. "__type__": "cc.Node",
  1335. "_name": "img_scene_rigth",
  1336. "_objFlags": 0,
  1337. "__editorExtras__": {},
  1338. "_parent": {
  1339. "__id__": 47
  1340. },
  1341. "_children": [],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 55
  1346. },
  1347. {
  1348. "__id__": 57
  1349. }
  1350. ],
  1351. "_prefab": {
  1352. "__id__": 59
  1353. },
  1354. "_lpos": {
  1355. "__type__": "cc.Vec3",
  1356. "x": 155.394,
  1357. "y": 0,
  1358. "z": 0
  1359. },
  1360. "_lrot": {
  1361. "__type__": "cc.Quat",
  1362. "x": 0,
  1363. "y": 0,
  1364. "z": 1,
  1365. "w": 6.123233995736766e-17
  1366. },
  1367. "_lscale": {
  1368. "__type__": "cc.Vec3",
  1369. "x": 0.5,
  1370. "y": 0.5,
  1371. "z": 1
  1372. },
  1373. "_mobility": 0,
  1374. "_layer": 33554432,
  1375. "_euler": {
  1376. "__type__": "cc.Vec3",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 180
  1380. },
  1381. "_id": ""
  1382. },
  1383. {
  1384. "__type__": "cc.UITransform",
  1385. "_name": "",
  1386. "_objFlags": 0,
  1387. "__editorExtras__": {},
  1388. "node": {
  1389. "__id__": 54
  1390. },
  1391. "_enabled": true,
  1392. "__prefab": {
  1393. "__id__": 56
  1394. },
  1395. "_contentSize": {
  1396. "__type__": "cc.Size",
  1397. "width": 177,
  1398. "height": 130
  1399. },
  1400. "_anchorPoint": {
  1401. "__type__": "cc.Vec2",
  1402. "x": 0.5,
  1403. "y": 0.5
  1404. },
  1405. "_id": ""
  1406. },
  1407. {
  1408. "__type__": "cc.CompPrefabInfo",
  1409. "fileId": "5cJL3nFmZPm7ceRkOfKbs/"
  1410. },
  1411. {
  1412. "__type__": "cc.Sprite",
  1413. "_name": "",
  1414. "_objFlags": 0,
  1415. "__editorExtras__": {},
  1416. "node": {
  1417. "__id__": 54
  1418. },
  1419. "_enabled": true,
  1420. "__prefab": {
  1421. "__id__": 58
  1422. },
  1423. "_customMaterial": null,
  1424. "_srcBlendFactor": 2,
  1425. "_dstBlendFactor": 4,
  1426. "_color": {
  1427. "__type__": "cc.Color",
  1428. "r": 255,
  1429. "g": 255,
  1430. "b": 255,
  1431. "a": 255
  1432. },
  1433. "_spriteFrame": {
  1434. "__uuid__": "7598ca6e-8d48-478c-b170-bb449c0744c7@f9941",
  1435. "__expectedType__": "cc.SpriteFrame"
  1436. },
  1437. "_type": 0,
  1438. "_fillType": 0,
  1439. "_sizeMode": 0,
  1440. "_fillCenter": {
  1441. "__type__": "cc.Vec2",
  1442. "x": 0,
  1443. "y": 0
  1444. },
  1445. "_fillStart": 0,
  1446. "_fillRange": 0,
  1447. "_isTrimmedMode": true,
  1448. "_useGrayscale": false,
  1449. "_atlas": null,
  1450. "_id": ""
  1451. },
  1452. {
  1453. "__type__": "cc.CompPrefabInfo",
  1454. "fileId": "efe7c44cNBVb5Iw1dH9Amh"
  1455. },
  1456. {
  1457. "__type__": "cc.PrefabInfo",
  1458. "root": {
  1459. "__id__": 1
  1460. },
  1461. "asset": {
  1462. "__id__": 0
  1463. },
  1464. "fileId": "19DChbkPFJc46UWsaBbwgY",
  1465. "instance": null,
  1466. "targetOverrides": null,
  1467. "nestedPrefabInstanceRoots": null
  1468. },
  1469. {
  1470. "__type__": "cc.Node",
  1471. "_name": "img_scene_up",
  1472. "_objFlags": 0,
  1473. "__editorExtras__": {},
  1474. "_parent": {
  1475. "__id__": 47
  1476. },
  1477. "_children": [],
  1478. "_active": true,
  1479. "_components": [
  1480. {
  1481. "__id__": 61
  1482. },
  1483. {
  1484. "__id__": 63
  1485. }
  1486. ],
  1487. "_prefab": {
  1488. "__id__": 65
  1489. },
  1490. "_lpos": {
  1491. "__type__": "cc.Vec3",
  1492. "x": 3.894,
  1493. "y": 150,
  1494. "z": 0
  1495. },
  1496. "_lrot": {
  1497. "__type__": "cc.Quat",
  1498. "x": 0,
  1499. "y": 0,
  1500. "z": -0.7071067811865475,
  1501. "w": 0.7071067811865476
  1502. },
  1503. "_lscale": {
  1504. "__type__": "cc.Vec3",
  1505. "x": 0.5,
  1506. "y": 0.5,
  1507. "z": 1
  1508. },
  1509. "_mobility": 0,
  1510. "_layer": 33554432,
  1511. "_euler": {
  1512. "__type__": "cc.Vec3",
  1513. "x": 0,
  1514. "y": 0,
  1515. "z": -90
  1516. },
  1517. "_id": ""
  1518. },
  1519. {
  1520. "__type__": "cc.UITransform",
  1521. "_name": "",
  1522. "_objFlags": 0,
  1523. "__editorExtras__": {},
  1524. "node": {
  1525. "__id__": 60
  1526. },
  1527. "_enabled": true,
  1528. "__prefab": {
  1529. "__id__": 62
  1530. },
  1531. "_contentSize": {
  1532. "__type__": "cc.Size",
  1533. "width": 177,
  1534. "height": 130
  1535. },
  1536. "_anchorPoint": {
  1537. "__type__": "cc.Vec2",
  1538. "x": 0.5,
  1539. "y": 0.5
  1540. },
  1541. "_id": ""
  1542. },
  1543. {
  1544. "__type__": "cc.CompPrefabInfo",
  1545. "fileId": "83b/lYCxBKLY5bq5Qq6iiD"
  1546. },
  1547. {
  1548. "__type__": "cc.Sprite",
  1549. "_name": "",
  1550. "_objFlags": 0,
  1551. "__editorExtras__": {},
  1552. "node": {
  1553. "__id__": 60
  1554. },
  1555. "_enabled": true,
  1556. "__prefab": {
  1557. "__id__": 64
  1558. },
  1559. "_customMaterial": null,
  1560. "_srcBlendFactor": 2,
  1561. "_dstBlendFactor": 4,
  1562. "_color": {
  1563. "__type__": "cc.Color",
  1564. "r": 255,
  1565. "g": 255,
  1566. "b": 255,
  1567. "a": 255
  1568. },
  1569. "_spriteFrame": {
  1570. "__uuid__": "7598ca6e-8d48-478c-b170-bb449c0744c7@f9941",
  1571. "__expectedType__": "cc.SpriteFrame"
  1572. },
  1573. "_type": 0,
  1574. "_fillType": 0,
  1575. "_sizeMode": 0,
  1576. "_fillCenter": {
  1577. "__type__": "cc.Vec2",
  1578. "x": 0,
  1579. "y": 0
  1580. },
  1581. "_fillStart": 0,
  1582. "_fillRange": 0,
  1583. "_isTrimmedMode": true,
  1584. "_useGrayscale": false,
  1585. "_atlas": null,
  1586. "_id": ""
  1587. },
  1588. {
  1589. "__type__": "cc.CompPrefabInfo",
  1590. "fileId": "29h+bm8MNN27tx2Y9MIvc7"
  1591. },
  1592. {
  1593. "__type__": "cc.PrefabInfo",
  1594. "root": {
  1595. "__id__": 1
  1596. },
  1597. "asset": {
  1598. "__id__": 0
  1599. },
  1600. "fileId": "266+6hRH5Ms4rvq2a7Y/ec",
  1601. "instance": null,
  1602. "targetOverrides": null,
  1603. "nestedPrefabInstanceRoots": null
  1604. },
  1605. {
  1606. "__type__": "cc.Node",
  1607. "_name": "img_scene_down",
  1608. "_objFlags": 0,
  1609. "__editorExtras__": {},
  1610. "_parent": {
  1611. "__id__": 47
  1612. },
  1613. "_children": [],
  1614. "_active": true,
  1615. "_components": [
  1616. {
  1617. "__id__": 67
  1618. },
  1619. {
  1620. "__id__": 69
  1621. }
  1622. ],
  1623. "_prefab": {
  1624. "__id__": 71
  1625. },
  1626. "_lpos": {
  1627. "__type__": "cc.Vec3",
  1628. "x": 3.894,
  1629. "y": -160.5,
  1630. "z": 0
  1631. },
  1632. "_lrot": {
  1633. "__type__": "cc.Quat",
  1634. "x": 0,
  1635. "y": 0,
  1636. "z": 0.7071067811865475,
  1637. "w": 0.7071067811865476
  1638. },
  1639. "_lscale": {
  1640. "__type__": "cc.Vec3",
  1641. "x": 0.5,
  1642. "y": 0.5,
  1643. "z": 1
  1644. },
  1645. "_mobility": 0,
  1646. "_layer": 33554432,
  1647. "_euler": {
  1648. "__type__": "cc.Vec3",
  1649. "x": 0,
  1650. "y": 0,
  1651. "z": 90
  1652. },
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.UITransform",
  1657. "_name": "",
  1658. "_objFlags": 0,
  1659. "__editorExtras__": {},
  1660. "node": {
  1661. "__id__": 66
  1662. },
  1663. "_enabled": true,
  1664. "__prefab": {
  1665. "__id__": 68
  1666. },
  1667. "_contentSize": {
  1668. "__type__": "cc.Size",
  1669. "width": 177,
  1670. "height": 130
  1671. },
  1672. "_anchorPoint": {
  1673. "__type__": "cc.Vec2",
  1674. "x": 0.5,
  1675. "y": 0.5
  1676. },
  1677. "_id": ""
  1678. },
  1679. {
  1680. "__type__": "cc.CompPrefabInfo",
  1681. "fileId": "1eHB/28lxCKaUvNNRbXCIH"
  1682. },
  1683. {
  1684. "__type__": "cc.Sprite",
  1685. "_name": "",
  1686. "_objFlags": 0,
  1687. "__editorExtras__": {},
  1688. "node": {
  1689. "__id__": 66
  1690. },
  1691. "_enabled": true,
  1692. "__prefab": {
  1693. "__id__": 70
  1694. },
  1695. "_customMaterial": null,
  1696. "_srcBlendFactor": 2,
  1697. "_dstBlendFactor": 4,
  1698. "_color": {
  1699. "__type__": "cc.Color",
  1700. "r": 255,
  1701. "g": 255,
  1702. "b": 255,
  1703. "a": 255
  1704. },
  1705. "_spriteFrame": {
  1706. "__uuid__": "7598ca6e-8d48-478c-b170-bb449c0744c7@f9941",
  1707. "__expectedType__": "cc.SpriteFrame"
  1708. },
  1709. "_type": 0,
  1710. "_fillType": 0,
  1711. "_sizeMode": 0,
  1712. "_fillCenter": {
  1713. "__type__": "cc.Vec2",
  1714. "x": 0,
  1715. "y": 0
  1716. },
  1717. "_fillStart": 0,
  1718. "_fillRange": 0,
  1719. "_isTrimmedMode": true,
  1720. "_useGrayscale": false,
  1721. "_atlas": null,
  1722. "_id": ""
  1723. },
  1724. {
  1725. "__type__": "cc.CompPrefabInfo",
  1726. "fileId": "180z/vrn9Cd5AZ5cEui4RP"
  1727. },
  1728. {
  1729. "__type__": "cc.PrefabInfo",
  1730. "root": {
  1731. "__id__": 1
  1732. },
  1733. "asset": {
  1734. "__id__": 0
  1735. },
  1736. "fileId": "ceg1AblpdKg4Hj0DHrqgcg",
  1737. "instance": null,
  1738. "targetOverrides": null,
  1739. "nestedPrefabInstanceRoots": null
  1740. },
  1741. {
  1742. "__type__": "cc.UITransform",
  1743. "_name": "",
  1744. "_objFlags": 0,
  1745. "__editorExtras__": {},
  1746. "node": {
  1747. "__id__": 47
  1748. },
  1749. "_enabled": true,
  1750. "__prefab": {
  1751. "__id__": 73
  1752. },
  1753. "_contentSize": {
  1754. "__type__": "cc.Size",
  1755. "width": 100,
  1756. "height": 100
  1757. },
  1758. "_anchorPoint": {
  1759. "__type__": "cc.Vec2",
  1760. "x": 0.5,
  1761. "y": 0.5
  1762. },
  1763. "_id": ""
  1764. },
  1765. {
  1766. "__type__": "cc.CompPrefabInfo",
  1767. "fileId": "7fal4244tH8ZtxTjixDF/u"
  1768. },
  1769. {
  1770. "__type__": "cc.PrefabInfo",
  1771. "root": {
  1772. "__id__": 1
  1773. },
  1774. "asset": {
  1775. "__id__": 0
  1776. },
  1777. "fileId": "c9b8F3oBVHwZhF5hHJooLp",
  1778. "instance": null,
  1779. "targetOverrides": null,
  1780. "nestedPrefabInstanceRoots": null
  1781. },
  1782. {
  1783. "__type__": "cc.UITransform",
  1784. "_name": "",
  1785. "_objFlags": 0,
  1786. "__editorExtras__": {},
  1787. "node": {
  1788. "__id__": 40
  1789. },
  1790. "_enabled": true,
  1791. "__prefab": {
  1792. "__id__": 76
  1793. },
  1794. "_contentSize": {
  1795. "__type__": "cc.Size",
  1796. "width": 100,
  1797. "height": 200
  1798. },
  1799. "_anchorPoint": {
  1800. "__type__": "cc.Vec2",
  1801. "x": 0.5,
  1802. "y": 0.5
  1803. },
  1804. "_id": ""
  1805. },
  1806. {
  1807. "__type__": "cc.CompPrefabInfo",
  1808. "fileId": "3dnSDyyNNKHL4Xx2eILdFz"
  1809. },
  1810. {
  1811. "__type__": "cc.Sprite",
  1812. "_name": "",
  1813. "_objFlags": 0,
  1814. "__editorExtras__": {},
  1815. "node": {
  1816. "__id__": 40
  1817. },
  1818. "_enabled": true,
  1819. "__prefab": {
  1820. "__id__": 78
  1821. },
  1822. "_customMaterial": null,
  1823. "_srcBlendFactor": 2,
  1824. "_dstBlendFactor": 4,
  1825. "_color": {
  1826. "__type__": "cc.Color",
  1827. "r": 133,
  1828. "g": 133,
  1829. "b": 133,
  1830. "a": 146
  1831. },
  1832. "_spriteFrame": {
  1833. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  1834. "__expectedType__": "cc.SpriteFrame"
  1835. },
  1836. "_type": 0,
  1837. "_fillType": 0,
  1838. "_sizeMode": 0,
  1839. "_fillCenter": {
  1840. "__type__": "cc.Vec2",
  1841. "x": 0.5,
  1842. "y": 0.5
  1843. },
  1844. "_fillStart": 0,
  1845. "_fillRange": 0.6,
  1846. "_isTrimmedMode": true,
  1847. "_useGrayscale": false,
  1848. "_atlas": null,
  1849. "_id": ""
  1850. },
  1851. {
  1852. "__type__": "cc.CompPrefabInfo",
  1853. "fileId": "eaRHQBRP1Cu6YLUPfeoAey"
  1854. },
  1855. {
  1856. "__type__": "4cf0bPL2pxBbac+GFxT7Mem",
  1857. "_name": "",
  1858. "_objFlags": 0,
  1859. "__editorExtras__": {},
  1860. "node": {
  1861. "__id__": 40
  1862. },
  1863. "_enabled": true,
  1864. "__prefab": {
  1865. "__id__": 80
  1866. },
  1867. "left": {
  1868. "__id__": 48
  1869. },
  1870. "right": {
  1871. "__id__": 54
  1872. },
  1873. "up": {
  1874. "__id__": 60
  1875. },
  1876. "down": {
  1877. "__id__": 66
  1878. },
  1879. "_id": ""
  1880. },
  1881. {
  1882. "__type__": "cc.CompPrefabInfo",
  1883. "fileId": "07t7lkRZ5Df6UfIqkjmG56"
  1884. },
  1885. {
  1886. "__type__": "cc.PrefabInfo",
  1887. "root": {
  1888. "__id__": 1
  1889. },
  1890. "asset": {
  1891. "__id__": 0
  1892. },
  1893. "fileId": "77dW9JlPxEPKEPFuhJX39k",
  1894. "instance": null,
  1895. "targetOverrides": null,
  1896. "nestedPrefabInstanceRoots": null
  1897. },
  1898. {
  1899. "__type__": "cc.Node",
  1900. "_name": "toggle_active",
  1901. "_objFlags": 0,
  1902. "__editorExtras__": {},
  1903. "_parent": {
  1904. "__id__": 1
  1905. },
  1906. "_children": [
  1907. {
  1908. "__id__": 83
  1909. },
  1910. {
  1911. "__id__": 89
  1912. }
  1913. ],
  1914. "_active": false,
  1915. "_components": [
  1916. {
  1917. "__id__": 103
  1918. }
  1919. ],
  1920. "_prefab": {
  1921. "__id__": 105
  1922. },
  1923. "_lpos": {
  1924. "__type__": "cc.Vec3",
  1925. "x": 0,
  1926. "y": 47.358,
  1927. "z": 0
  1928. },
  1929. "_lrot": {
  1930. "__type__": "cc.Quat",
  1931. "x": 0,
  1932. "y": 0,
  1933. "z": 0,
  1934. "w": 1
  1935. },
  1936. "_lscale": {
  1937. "__type__": "cc.Vec3",
  1938. "x": 1,
  1939. "y": 1,
  1940. "z": 1
  1941. },
  1942. "_mobility": 0,
  1943. "_layer": 33554432,
  1944. "_euler": {
  1945. "__type__": "cc.Vec3",
  1946. "x": 0,
  1947. "y": 0,
  1948. "z": 0
  1949. },
  1950. "_id": ""
  1951. },
  1952. {
  1953. "__type__": "cc.Node",
  1954. "_name": "Label",
  1955. "_objFlags": 0,
  1956. "__editorExtras__": {},
  1957. "_parent": {
  1958. "__id__": 82
  1959. },
  1960. "_children": [],
  1961. "_active": true,
  1962. "_components": [
  1963. {
  1964. "__id__": 84
  1965. },
  1966. {
  1967. "__id__": 86
  1968. }
  1969. ],
  1970. "_prefab": {
  1971. "__id__": 88
  1972. },
  1973. "_lpos": {
  1974. "__type__": "cc.Vec3",
  1975. "x": 0,
  1976. "y": 25.97,
  1977. "z": 0
  1978. },
  1979. "_lrot": {
  1980. "__type__": "cc.Quat",
  1981. "x": 0,
  1982. "y": 0,
  1983. "z": 0,
  1984. "w": 1
  1985. },
  1986. "_lscale": {
  1987. "__type__": "cc.Vec3",
  1988. "x": 1,
  1989. "y": 1,
  1990. "z": 1
  1991. },
  1992. "_mobility": 0,
  1993. "_layer": 33554432,
  1994. "_euler": {
  1995. "__type__": "cc.Vec3",
  1996. "x": 0,
  1997. "y": 0,
  1998. "z": 0
  1999. },
  2000. "_id": ""
  2001. },
  2002. {
  2003. "__type__": "cc.UITransform",
  2004. "_name": "",
  2005. "_objFlags": 0,
  2006. "__editorExtras__": {},
  2007. "node": {
  2008. "__id__": 83
  2009. },
  2010. "_enabled": true,
  2011. "__prefab": {
  2012. "__id__": 85
  2013. },
  2014. "_contentSize": {
  2015. "__type__": "cc.Size",
  2016. "width": 160,
  2017. "height": 50.4
  2018. },
  2019. "_anchorPoint": {
  2020. "__type__": "cc.Vec2",
  2021. "x": 0.5,
  2022. "y": 0.5
  2023. },
  2024. "_id": ""
  2025. },
  2026. {
  2027. "__type__": "cc.CompPrefabInfo",
  2028. "fileId": "a5FpdfZOhIwrIlOpSk1p6R"
  2029. },
  2030. {
  2031. "__type__": "cc.Label",
  2032. "_name": "",
  2033. "_objFlags": 0,
  2034. "__editorExtras__": {},
  2035. "node": {
  2036. "__id__": 83
  2037. },
  2038. "_enabled": true,
  2039. "__prefab": {
  2040. "__id__": 87
  2041. },
  2042. "_customMaterial": null,
  2043. "_srcBlendFactor": 2,
  2044. "_dstBlendFactor": 4,
  2045. "_color": {
  2046. "__type__": "cc.Color",
  2047. "r": 0,
  2048. "g": 0,
  2049. "b": 0,
  2050. "a": 255
  2051. },
  2052. "_string": "在场景中是否显示",
  2053. "_horizontalAlign": 1,
  2054. "_verticalAlign": 1,
  2055. "_actualFontSize": 20,
  2056. "_fontSize": 20,
  2057. "_fontFamily": "Arial",
  2058. "_lineHeight": 40,
  2059. "_overflow": 0,
  2060. "_enableWrapText": true,
  2061. "_font": null,
  2062. "_isSystemFontUsed": true,
  2063. "_spacingX": 0,
  2064. "_isItalic": false,
  2065. "_isBold": true,
  2066. "_isUnderline": false,
  2067. "_underlineHeight": 2,
  2068. "_cacheMode": 0,
  2069. "_id": ""
  2070. },
  2071. {
  2072. "__type__": "cc.CompPrefabInfo",
  2073. "fileId": "56PeWgPwVOIKe7CD/+zzTE"
  2074. },
  2075. {
  2076. "__type__": "cc.PrefabInfo",
  2077. "root": {
  2078. "__id__": 1
  2079. },
  2080. "asset": {
  2081. "__id__": 0
  2082. },
  2083. "fileId": "d3z4hSvspFi5KKlCkbaohE",
  2084. "instance": null,
  2085. "targetOverrides": null,
  2086. "nestedPrefabInstanceRoots": null
  2087. },
  2088. {
  2089. "__type__": "cc.Node",
  2090. "_name": "Toggle",
  2091. "_objFlags": 0,
  2092. "__editorExtras__": {},
  2093. "_parent": {
  2094. "__id__": 82
  2095. },
  2096. "_children": [
  2097. {
  2098. "__id__": 90
  2099. }
  2100. ],
  2101. "_active": true,
  2102. "_components": [
  2103. {
  2104. "__id__": 96
  2105. },
  2106. {
  2107. "__id__": 98
  2108. },
  2109. {
  2110. "__id__": 100
  2111. }
  2112. ],
  2113. "_prefab": {
  2114. "__id__": 102
  2115. },
  2116. "_lpos": {
  2117. "__type__": "cc.Vec3",
  2118. "x": 0,
  2119. "y": -12.222,
  2120. "z": 0
  2121. },
  2122. "_lrot": {
  2123. "__type__": "cc.Quat",
  2124. "x": 0,
  2125. "y": 0,
  2126. "z": 0,
  2127. "w": 1
  2128. },
  2129. "_lscale": {
  2130. "__type__": "cc.Vec3",
  2131. "x": 1,
  2132. "y": 1,
  2133. "z": 1
  2134. },
  2135. "_mobility": 0,
  2136. "_layer": 33554432,
  2137. "_euler": {
  2138. "__type__": "cc.Vec3",
  2139. "x": 0,
  2140. "y": 0,
  2141. "z": 0
  2142. },
  2143. "_id": ""
  2144. },
  2145. {
  2146. "__type__": "cc.Node",
  2147. "_name": "Checkmark",
  2148. "_objFlags": 0,
  2149. "__editorExtras__": {},
  2150. "_parent": {
  2151. "__id__": 89
  2152. },
  2153. "_children": [],
  2154. "_active": true,
  2155. "_components": [
  2156. {
  2157. "__id__": 91
  2158. },
  2159. {
  2160. "__id__": 93
  2161. }
  2162. ],
  2163. "_prefab": {
  2164. "__id__": 95
  2165. },
  2166. "_lpos": {
  2167. "__type__": "cc.Vec3",
  2168. "x": 0,
  2169. "y": 0,
  2170. "z": 0
  2171. },
  2172. "_lrot": {
  2173. "__type__": "cc.Quat",
  2174. "x": 0,
  2175. "y": 0,
  2176. "z": 0,
  2177. "w": 1
  2178. },
  2179. "_lscale": {
  2180. "__type__": "cc.Vec3",
  2181. "x": 1,
  2182. "y": 1,
  2183. "z": 1
  2184. },
  2185. "_mobility": 0,
  2186. "_layer": 33554432,
  2187. "_euler": {
  2188. "__type__": "cc.Vec3",
  2189. "x": 0,
  2190. "y": 0,
  2191. "z": 0
  2192. },
  2193. "_id": ""
  2194. },
  2195. {
  2196. "__type__": "cc.UITransform",
  2197. "_name": "",
  2198. "_objFlags": 0,
  2199. "__editorExtras__": {},
  2200. "node": {
  2201. "__id__": 90
  2202. },
  2203. "_enabled": true,
  2204. "__prefab": {
  2205. "__id__": 92
  2206. },
  2207. "_contentSize": {
  2208. "__type__": "cc.Size",
  2209. "width": 26,
  2210. "height": 26
  2211. },
  2212. "_anchorPoint": {
  2213. "__type__": "cc.Vec2",
  2214. "x": 0.5,
  2215. "y": 0.5
  2216. },
  2217. "_id": ""
  2218. },
  2219. {
  2220. "__type__": "cc.CompPrefabInfo",
  2221. "fileId": "a8nW3fuCJAmZKlWMJEmP79"
  2222. },
  2223. {
  2224. "__type__": "cc.Sprite",
  2225. "_name": "",
  2226. "_objFlags": 0,
  2227. "__editorExtras__": {},
  2228. "node": {
  2229. "__id__": 90
  2230. },
  2231. "_enabled": true,
  2232. "__prefab": {
  2233. "__id__": 94
  2234. },
  2235. "_customMaterial": null,
  2236. "_srcBlendFactor": 2,
  2237. "_dstBlendFactor": 4,
  2238. "_color": {
  2239. "__type__": "cc.Color",
  2240. "r": 255,
  2241. "g": 255,
  2242. "b": 255,
  2243. "a": 255
  2244. },
  2245. "_spriteFrame": {
  2246. "__uuid__": "158e7e52-3220-4cd7-9694-713e0e6e8278@f9941",
  2247. "__expectedType__": "cc.SpriteFrame"
  2248. },
  2249. "_type": 0,
  2250. "_fillType": 0,
  2251. "_sizeMode": 0,
  2252. "_fillCenter": {
  2253. "__type__": "cc.Vec2",
  2254. "x": 0,
  2255. "y": 0
  2256. },
  2257. "_fillStart": 0,
  2258. "_fillRange": 0,
  2259. "_isTrimmedMode": true,
  2260. "_useGrayscale": false,
  2261. "_atlas": null,
  2262. "_id": ""
  2263. },
  2264. {
  2265. "__type__": "cc.CompPrefabInfo",
  2266. "fileId": "8a0jM9UTxBP4GgP+s7UMFG"
  2267. },
  2268. {
  2269. "__type__": "cc.PrefabInfo",
  2270. "root": {
  2271. "__id__": 1
  2272. },
  2273. "asset": {
  2274. "__id__": 0
  2275. },
  2276. "fileId": "bcYsGt8G9Gya6IKE5mXpqQ",
  2277. "instance": null,
  2278. "targetOverrides": null,
  2279. "nestedPrefabInstanceRoots": null
  2280. },
  2281. {
  2282. "__type__": "cc.UITransform",
  2283. "_name": "",
  2284. "_objFlags": 0,
  2285. "__editorExtras__": {},
  2286. "node": {
  2287. "__id__": 89
  2288. },
  2289. "_enabled": true,
  2290. "__prefab": {
  2291. "__id__": 97
  2292. },
  2293. "_contentSize": {
  2294. "__type__": "cc.Size",
  2295. "width": 28,
  2296. "height": 28
  2297. },
  2298. "_anchorPoint": {
  2299. "__type__": "cc.Vec2",
  2300. "x": 0.5,
  2301. "y": 0.5
  2302. },
  2303. "_id": ""
  2304. },
  2305. {
  2306. "__type__": "cc.CompPrefabInfo",
  2307. "fileId": "62E8X1p2NADZmu1j9e6Hg+"
  2308. },
  2309. {
  2310. "__type__": "cc.Sprite",
  2311. "_name": "",
  2312. "_objFlags": 0,
  2313. "__editorExtras__": {},
  2314. "node": {
  2315. "__id__": 89
  2316. },
  2317. "_enabled": true,
  2318. "__prefab": {
  2319. "__id__": 99
  2320. },
  2321. "_customMaterial": null,
  2322. "_srcBlendFactor": 2,
  2323. "_dstBlendFactor": 4,
  2324. "_color": {
  2325. "__type__": "cc.Color",
  2326. "r": 255,
  2327. "g": 255,
  2328. "b": 255,
  2329. "a": 255
  2330. },
  2331. "_spriteFrame": {
  2332. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2333. "__expectedType__": "cc.SpriteFrame"
  2334. },
  2335. "_type": 0,
  2336. "_fillType": 0,
  2337. "_sizeMode": 1,
  2338. "_fillCenter": {
  2339. "__type__": "cc.Vec2",
  2340. "x": 0,
  2341. "y": 0
  2342. },
  2343. "_fillStart": 0,
  2344. "_fillRange": 0,
  2345. "_isTrimmedMode": true,
  2346. "_useGrayscale": false,
  2347. "_atlas": null,
  2348. "_id": ""
  2349. },
  2350. {
  2351. "__type__": "cc.CompPrefabInfo",
  2352. "fileId": "56aP8HUqdLxZYC5PjPgZSQ"
  2353. },
  2354. {
  2355. "__type__": "cc.Toggle",
  2356. "_name": "",
  2357. "_objFlags": 0,
  2358. "__editorExtras__": {},
  2359. "node": {
  2360. "__id__": 89
  2361. },
  2362. "_enabled": true,
  2363. "__prefab": {
  2364. "__id__": 101
  2365. },
  2366. "clickEvents": [],
  2367. "_interactable": true,
  2368. "_transition": 0,
  2369. "_normalColor": {
  2370. "__type__": "cc.Color",
  2371. "r": 214,
  2372. "g": 214,
  2373. "b": 214,
  2374. "a": 255
  2375. },
  2376. "_hoverColor": {
  2377. "__type__": "cc.Color",
  2378. "r": 211,
  2379. "g": 211,
  2380. "b": 211,
  2381. "a": 255
  2382. },
  2383. "_pressedColor": {
  2384. "__type__": "cc.Color",
  2385. "r": 255,
  2386. "g": 255,
  2387. "b": 255,
  2388. "a": 255
  2389. },
  2390. "_disabledColor": {
  2391. "__type__": "cc.Color",
  2392. "r": 124,
  2393. "g": 124,
  2394. "b": 124,
  2395. "a": 255
  2396. },
  2397. "_normalSprite": {
  2398. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2399. "__expectedType__": "cc.SpriteFrame"
  2400. },
  2401. "_hoverSprite": null,
  2402. "_pressedSprite": null,
  2403. "_disabledSprite": null,
  2404. "_duration": 0.1,
  2405. "_zoomScale": 1.2,
  2406. "_target": {
  2407. "__id__": 89
  2408. },
  2409. "checkEvents": [],
  2410. "_isChecked": true,
  2411. "_checkMark": {
  2412. "__id__": 93
  2413. },
  2414. "_id": ""
  2415. },
  2416. {
  2417. "__type__": "cc.CompPrefabInfo",
  2418. "fileId": "ecdmtVh4NDw6TrS/FH5Vn2"
  2419. },
  2420. {
  2421. "__type__": "cc.PrefabInfo",
  2422. "root": {
  2423. "__id__": 1
  2424. },
  2425. "asset": {
  2426. "__id__": 0
  2427. },
  2428. "fileId": "55aJynTmJLY7KKQ22bKy+g",
  2429. "instance": null,
  2430. "targetOverrides": null,
  2431. "nestedPrefabInstanceRoots": null
  2432. },
  2433. {
  2434. "__type__": "cc.UITransform",
  2435. "_name": "",
  2436. "_objFlags": 0,
  2437. "__editorExtras__": {},
  2438. "node": {
  2439. "__id__": 82
  2440. },
  2441. "_enabled": true,
  2442. "__prefab": {
  2443. "__id__": 104
  2444. },
  2445. "_contentSize": {
  2446. "__type__": "cc.Size",
  2447. "width": 100,
  2448. "height": 100
  2449. },
  2450. "_anchorPoint": {
  2451. "__type__": "cc.Vec2",
  2452. "x": 0.5,
  2453. "y": 0.5
  2454. },
  2455. "_id": ""
  2456. },
  2457. {
  2458. "__type__": "cc.CompPrefabInfo",
  2459. "fileId": "22guQs3uZJu5ZQpKf62nfY"
  2460. },
  2461. {
  2462. "__type__": "cc.PrefabInfo",
  2463. "root": {
  2464. "__id__": 1
  2465. },
  2466. "asset": {
  2467. "__id__": 0
  2468. },
  2469. "fileId": "8bKgWq7ahMG5WjpPHmKR/z",
  2470. "instance": null,
  2471. "targetOverrides": null,
  2472. "nestedPrefabInstanceRoots": null
  2473. },
  2474. {
  2475. "__type__": "cc.Node",
  2476. "_name": "lab_remark",
  2477. "_objFlags": 0,
  2478. "__editorExtras__": {},
  2479. "_parent": {
  2480. "__id__": 1
  2481. },
  2482. "_children": [],
  2483. "_active": true,
  2484. "_components": [
  2485. {
  2486. "__id__": 107
  2487. },
  2488. {
  2489. "__id__": 109
  2490. }
  2491. ],
  2492. "_prefab": {
  2493. "__id__": 111
  2494. },
  2495. "_lpos": {
  2496. "__type__": "cc.Vec3",
  2497. "x": 0,
  2498. "y": -54.64200000000005,
  2499. "z": 0
  2500. },
  2501. "_lrot": {
  2502. "__type__": "cc.Quat",
  2503. "x": 0,
  2504. "y": 0,
  2505. "z": 0,
  2506. "w": 1
  2507. },
  2508. "_lscale": {
  2509. "__type__": "cc.Vec3",
  2510. "x": 1,
  2511. "y": 1,
  2512. "z": 1
  2513. },
  2514. "_mobility": 0,
  2515. "_layer": 33554432,
  2516. "_euler": {
  2517. "__type__": "cc.Vec3",
  2518. "x": 0,
  2519. "y": 0,
  2520. "z": 0
  2521. },
  2522. "_id": ""
  2523. },
  2524. {
  2525. "__type__": "cc.UITransform",
  2526. "_name": "",
  2527. "_objFlags": 0,
  2528. "__editorExtras__": {},
  2529. "node": {
  2530. "__id__": 106
  2531. },
  2532. "_enabled": true,
  2533. "__prefab": {
  2534. "__id__": 108
  2535. },
  2536. "_contentSize": {
  2537. "__type__": "cc.Size",
  2538. "width": 200,
  2539. "height": 50.4
  2540. },
  2541. "_anchorPoint": {
  2542. "__type__": "cc.Vec2",
  2543. "x": 0.5,
  2544. "y": 0.5
  2545. },
  2546. "_id": ""
  2547. },
  2548. {
  2549. "__type__": "cc.CompPrefabInfo",
  2550. "fileId": "42RdnWIJlLk6l5B+/+FPJ2"
  2551. },
  2552. {
  2553. "__type__": "cc.Label",
  2554. "_name": "",
  2555. "_objFlags": 0,
  2556. "__editorExtras__": {},
  2557. "node": {
  2558. "__id__": 106
  2559. },
  2560. "_enabled": true,
  2561. "__prefab": {
  2562. "__id__": 110
  2563. },
  2564. "_customMaterial": null,
  2565. "_srcBlendFactor": 2,
  2566. "_dstBlendFactor": 4,
  2567. "_color": {
  2568. "__type__": "cc.Color",
  2569. "r": 0,
  2570. "g": 0,
  2571. "b": 0,
  2572. "a": 255
  2573. },
  2574. "_string": "",
  2575. "_horizontalAlign": 1,
  2576. "_verticalAlign": 1,
  2577. "_actualFontSize": 21,
  2578. "_fontSize": 20,
  2579. "_fontFamily": "Arial",
  2580. "_lineHeight": 40,
  2581. "_overflow": 2,
  2582. "_enableWrapText": true,
  2583. "_font": null,
  2584. "_isSystemFontUsed": true,
  2585. "_spacingX": 0,
  2586. "_isItalic": false,
  2587. "_isBold": true,
  2588. "_isUnderline": false,
  2589. "_underlineHeight": 2,
  2590. "_cacheMode": 0,
  2591. "_id": ""
  2592. },
  2593. {
  2594. "__type__": "cc.CompPrefabInfo",
  2595. "fileId": "f3mfdyradKDoaQDp7KHrDE"
  2596. },
  2597. {
  2598. "__type__": "cc.PrefabInfo",
  2599. "root": {
  2600. "__id__": 1
  2601. },
  2602. "asset": {
  2603. "__id__": 0
  2604. },
  2605. "fileId": "abTNOex05O3IjNzMcN7nXa",
  2606. "instance": null,
  2607. "targetOverrides": null,
  2608. "nestedPrefabInstanceRoots": null
  2609. },
  2610. {
  2611. "__type__": "cc.Node",
  2612. "_name": "btn_look_voice_text",
  2613. "_objFlags": 0,
  2614. "__editorExtras__": {},
  2615. "_parent": {
  2616. "__id__": 1
  2617. },
  2618. "_children": [
  2619. {
  2620. "__id__": 113
  2621. }
  2622. ],
  2623. "_active": false,
  2624. "_components": [
  2625. {
  2626. "__id__": 119
  2627. },
  2628. {
  2629. "__id__": 121
  2630. },
  2631. {
  2632. "__id__": 123
  2633. }
  2634. ],
  2635. "_prefab": {
  2636. "__id__": 125
  2637. },
  2638. "_lpos": {
  2639. "__type__": "cc.Vec3",
  2640. "x": 70,
  2641. "y": -84,
  2642. "z": 0
  2643. },
  2644. "_lrot": {
  2645. "__type__": "cc.Quat",
  2646. "x": 0,
  2647. "y": 0,
  2648. "z": 0,
  2649. "w": 1
  2650. },
  2651. "_lscale": {
  2652. "__type__": "cc.Vec3",
  2653. "x": 1,
  2654. "y": 1,
  2655. "z": 1
  2656. },
  2657. "_mobility": 0,
  2658. "_layer": 33554432,
  2659. "_euler": {
  2660. "__type__": "cc.Vec3",
  2661. "x": 0,
  2662. "y": 0,
  2663. "z": 0
  2664. },
  2665. "_id": ""
  2666. },
  2667. {
  2668. "__type__": "cc.Node",
  2669. "_name": "Label",
  2670. "_objFlags": 512,
  2671. "__editorExtras__": {},
  2672. "_parent": {
  2673. "__id__": 112
  2674. },
  2675. "_children": [],
  2676. "_active": true,
  2677. "_components": [
  2678. {
  2679. "__id__": 114
  2680. },
  2681. {
  2682. "__id__": 116
  2683. }
  2684. ],
  2685. "_prefab": {
  2686. "__id__": 118
  2687. },
  2688. "_lpos": {
  2689. "__type__": "cc.Vec3",
  2690. "x": 0,
  2691. "y": 0,
  2692. "z": 0
  2693. },
  2694. "_lrot": {
  2695. "__type__": "cc.Quat",
  2696. "x": 0,
  2697. "y": 0,
  2698. "z": 0,
  2699. "w": 1
  2700. },
  2701. "_lscale": {
  2702. "__type__": "cc.Vec3",
  2703. "x": 1,
  2704. "y": 1,
  2705. "z": 1
  2706. },
  2707. "_mobility": 0,
  2708. "_layer": 33554432,
  2709. "_euler": {
  2710. "__type__": "cc.Vec3",
  2711. "x": 0,
  2712. "y": 0,
  2713. "z": 0
  2714. },
  2715. "_id": ""
  2716. },
  2717. {
  2718. "__type__": "cc.UITransform",
  2719. "_name": "",
  2720. "_objFlags": 0,
  2721. "__editorExtras__": {},
  2722. "node": {
  2723. "__id__": 113
  2724. },
  2725. "_enabled": true,
  2726. "__prefab": {
  2727. "__id__": 115
  2728. },
  2729. "_contentSize": {
  2730. "__type__": "cc.Size",
  2731. "width": 60,
  2732. "height": 30
  2733. },
  2734. "_anchorPoint": {
  2735. "__type__": "cc.Vec2",
  2736. "x": 0.5,
  2737. "y": 0.5
  2738. },
  2739. "_id": ""
  2740. },
  2741. {
  2742. "__type__": "cc.CompPrefabInfo",
  2743. "fileId": "daqkvIdrRIP5zB4+4kU/NE"
  2744. },
  2745. {
  2746. "__type__": "cc.Label",
  2747. "_name": "",
  2748. "_objFlags": 0,
  2749. "__editorExtras__": {},
  2750. "node": {
  2751. "__id__": 113
  2752. },
  2753. "_enabled": true,
  2754. "__prefab": {
  2755. "__id__": 117
  2756. },
  2757. "_customMaterial": null,
  2758. "_srcBlendFactor": 2,
  2759. "_dstBlendFactor": 4,
  2760. "_color": {
  2761. "__type__": "cc.Color",
  2762. "r": 0,
  2763. "g": 0,
  2764. "b": 0,
  2765. "a": 255
  2766. },
  2767. "_string": "语音文本",
  2768. "_horizontalAlign": 1,
  2769. "_verticalAlign": 1,
  2770. "_actualFontSize": 15,
  2771. "_fontSize": 15,
  2772. "_fontFamily": "Arial",
  2773. "_lineHeight": 20,
  2774. "_overflow": 1,
  2775. "_enableWrapText": false,
  2776. "_font": null,
  2777. "_isSystemFontUsed": true,
  2778. "_spacingX": 0,
  2779. "_isItalic": false,
  2780. "_isBold": false,
  2781. "_isUnderline": false,
  2782. "_underlineHeight": 2,
  2783. "_cacheMode": 0,
  2784. "_id": ""
  2785. },
  2786. {
  2787. "__type__": "cc.CompPrefabInfo",
  2788. "fileId": "4d+87LldZEVbLg6R4V5hcp"
  2789. },
  2790. {
  2791. "__type__": "cc.PrefabInfo",
  2792. "root": {
  2793. "__id__": 1
  2794. },
  2795. "asset": {
  2796. "__id__": 0
  2797. },
  2798. "fileId": "26K4a5HilG87NxJo3LraSO",
  2799. "instance": null,
  2800. "targetOverrides": null,
  2801. "nestedPrefabInstanceRoots": null
  2802. },
  2803. {
  2804. "__type__": "cc.UITransform",
  2805. "_name": "",
  2806. "_objFlags": 0,
  2807. "__editorExtras__": {},
  2808. "node": {
  2809. "__id__": 112
  2810. },
  2811. "_enabled": true,
  2812. "__prefab": {
  2813. "__id__": 120
  2814. },
  2815. "_contentSize": {
  2816. "__type__": "cc.Size",
  2817. "width": 60,
  2818. "height": 30
  2819. },
  2820. "_anchorPoint": {
  2821. "__type__": "cc.Vec2",
  2822. "x": 0.5,
  2823. "y": 0.5
  2824. },
  2825. "_id": ""
  2826. },
  2827. {
  2828. "__type__": "cc.CompPrefabInfo",
  2829. "fileId": "87YnuiDKxMpbZFGb7CulMS"
  2830. },
  2831. {
  2832. "__type__": "cc.Sprite",
  2833. "_name": "",
  2834. "_objFlags": 0,
  2835. "__editorExtras__": {},
  2836. "node": {
  2837. "__id__": 112
  2838. },
  2839. "_enabled": true,
  2840. "__prefab": {
  2841. "__id__": 122
  2842. },
  2843. "_customMaterial": null,
  2844. "_srcBlendFactor": 2,
  2845. "_dstBlendFactor": 4,
  2846. "_color": {
  2847. "__type__": "cc.Color",
  2848. "r": 255,
  2849. "g": 255,
  2850. "b": 255,
  2851. "a": 255
  2852. },
  2853. "_spriteFrame": {
  2854. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2855. "__expectedType__": "cc.SpriteFrame"
  2856. },
  2857. "_type": 1,
  2858. "_fillType": 0,
  2859. "_sizeMode": 0,
  2860. "_fillCenter": {
  2861. "__type__": "cc.Vec2",
  2862. "x": 0,
  2863. "y": 0
  2864. },
  2865. "_fillStart": 0,
  2866. "_fillRange": 0,
  2867. "_isTrimmedMode": true,
  2868. "_useGrayscale": false,
  2869. "_atlas": null,
  2870. "_id": ""
  2871. },
  2872. {
  2873. "__type__": "cc.CompPrefabInfo",
  2874. "fileId": "dfIUhNQgVDZI22wUokiYTi"
  2875. },
  2876. {
  2877. "__type__": "cc.Button",
  2878. "_name": "",
  2879. "_objFlags": 0,
  2880. "__editorExtras__": {},
  2881. "node": {
  2882. "__id__": 112
  2883. },
  2884. "_enabled": true,
  2885. "__prefab": {
  2886. "__id__": 124
  2887. },
  2888. "clickEvents": [],
  2889. "_interactable": true,
  2890. "_transition": 0,
  2891. "_normalColor": {
  2892. "__type__": "cc.Color",
  2893. "r": 214,
  2894. "g": 214,
  2895. "b": 214,
  2896. "a": 255
  2897. },
  2898. "_hoverColor": {
  2899. "__type__": "cc.Color",
  2900. "r": 211,
  2901. "g": 211,
  2902. "b": 211,
  2903. "a": 255
  2904. },
  2905. "_pressedColor": {
  2906. "__type__": "cc.Color",
  2907. "r": 255,
  2908. "g": 255,
  2909. "b": 255,
  2910. "a": 255
  2911. },
  2912. "_disabledColor": {
  2913. "__type__": "cc.Color",
  2914. "r": 124,
  2915. "g": 124,
  2916. "b": 124,
  2917. "a": 255
  2918. },
  2919. "_normalSprite": {
  2920. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2921. "__expectedType__": "cc.SpriteFrame"
  2922. },
  2923. "_hoverSprite": {
  2924. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2925. "__expectedType__": "cc.SpriteFrame"
  2926. },
  2927. "_pressedSprite": {
  2928. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2929. "__expectedType__": "cc.SpriteFrame"
  2930. },
  2931. "_disabledSprite": {
  2932. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2933. "__expectedType__": "cc.SpriteFrame"
  2934. },
  2935. "_duration": 0.1,
  2936. "_zoomScale": 1.2,
  2937. "_target": {
  2938. "__id__": 112
  2939. },
  2940. "_id": ""
  2941. },
  2942. {
  2943. "__type__": "cc.CompPrefabInfo",
  2944. "fileId": "c1CvGoEF1IH5ALTNmyGuzB"
  2945. },
  2946. {
  2947. "__type__": "cc.PrefabInfo",
  2948. "root": {
  2949. "__id__": 1
  2950. },
  2951. "asset": {
  2952. "__id__": 0
  2953. },
  2954. "fileId": "99vgWT6kxO+o54ngLTMxxm",
  2955. "instance": null,
  2956. "targetOverrides": null,
  2957. "nestedPrefabInstanceRoots": null
  2958. },
  2959. {
  2960. "__type__": "cc.UITransform",
  2961. "_name": "",
  2962. "_objFlags": 0,
  2963. "__editorExtras__": {},
  2964. "node": {
  2965. "__id__": 1
  2966. },
  2967. "_enabled": true,
  2968. "__prefab": {
  2969. "__id__": 127
  2970. },
  2971. "_contentSize": {
  2972. "__type__": "cc.Size",
  2973. "width": 210,
  2974. "height": 210
  2975. },
  2976. "_anchorPoint": {
  2977. "__type__": "cc.Vec2",
  2978. "x": 0.5,
  2979. "y": 0.5
  2980. },
  2981. "_id": ""
  2982. },
  2983. {
  2984. "__type__": "cc.CompPrefabInfo",
  2985. "fileId": "33LDbuU89HF7N+6q9eU2As"
  2986. },
  2987. {
  2988. "__type__": "841fatEKNlOWahOCy9e1gsm",
  2989. "_name": "",
  2990. "_objFlags": 0,
  2991. "__editorExtras__": {},
  2992. "node": {
  2993. "__id__": 1
  2994. },
  2995. "_enabled": true,
  2996. "__prefab": {
  2997. "__id__": 129
  2998. },
  2999. "lab_name": {
  3000. "__id__": 17
  3001. },
  3002. "spr": {
  3003. "__id__": 16
  3004. },
  3005. "slide": {
  3006. "__id__": 40
  3007. },
  3008. "drag": {
  3009. "__id__": 28
  3010. },
  3011. "lab_drag": {
  3012. "__id__": 29
  3013. },
  3014. "img_select": {
  3015. "__id__": 8
  3016. },
  3017. "ui_prefab": {
  3018. "__uuid__": "63a6306b-40ab-4a16-b0cf-beb101751b8d",
  3019. "__expectedType__": "cc.Prefab"
  3020. },
  3021. "text_sound_pf": {
  3022. "__uuid__": "e2f3d175-d8e8-465e-a918-6263e35d9515",
  3023. "__expectedType__": "cc.Prefab"
  3024. },
  3025. "count_down_pf": {
  3026. "__uuid__": "c29afbf0-3451-4fca-818b-92acf0bf6685",
  3027. "__expectedType__": "cc.Prefab"
  3028. },
  3029. "question_select_pf": {
  3030. "__uuid__": "647d2443-215f-435c-8ea1-55a948f5e099",
  3031. "__expectedType__": "cc.Prefab"
  3032. },
  3033. "toggle_active": {
  3034. "__id__": 82
  3035. },
  3036. "toggle_check": {
  3037. "__id__": 89
  3038. },
  3039. "other_drag_content": {
  3040. "__id__": 2
  3041. },
  3042. "lab_remark": {
  3043. "__id__": 106
  3044. },
  3045. "btn_look_voice_text": {
  3046. "__id__": 112
  3047. },
  3048. "_id": ""
  3049. },
  3050. {
  3051. "__type__": "cc.CompPrefabInfo",
  3052. "fileId": "f6ikh2CUNNY4BucifygRBg"
  3053. },
  3054. {
  3055. "__type__": "cc.PrefabInfo",
  3056. "root": {
  3057. "__id__": 1
  3058. },
  3059. "asset": {
  3060. "__id__": 0
  3061. },
  3062. "fileId": "6esWPWC21PUIxKxKf+0XMa",
  3063. "instance": null,
  3064. "targetOverrides": null
  3065. }
  3066. ]