widget_item.prefab 60 KB

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