OperateWeaveCtrlPrefab - 001.prefab 99 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "WeaveCtrlPrefab",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 19
  28. },
  29. {
  30. "__id__": 33
  31. },
  32. {
  33. "__id__": 46
  34. },
  35. {
  36. "__id__": 57
  37. },
  38. {
  39. "__id__": 71
  40. },
  41. {
  42. "__id__": 85
  43. },
  44. {
  45. "__id__": 96
  46. },
  47. {
  48. "__id__": 110
  49. },
  50. {
  51. "__id__": 120
  52. }
  53. ],
  54. "_active": true,
  55. "_components": [
  56. {
  57. "__id__": 143
  58. }
  59. ],
  60. "_prefab": {
  61. "__id__": 144
  62. },
  63. "_opacity": 255,
  64. "_color": {
  65. "__type__": "cc.Color",
  66. "r": 255,
  67. "g": 255,
  68. "b": 255,
  69. "a": 255
  70. },
  71. "_contentSize": {
  72. "__type__": "cc.Size",
  73. "width": 120,
  74. "height": 120
  75. },
  76. "_anchorPoint": {
  77. "__type__": "cc.Vec2",
  78. "x": 1,
  79. "y": 0
  80. },
  81. "_trs": {
  82. "__type__": "TypedArray",
  83. "ctor": "Float64Array",
  84. "array": [
  85. 0,
  86. 0,
  87. 0,
  88. 0,
  89. 0,
  90. 0,
  91. 1,
  92. 1,
  93. 1,
  94. 1
  95. ]
  96. },
  97. "_eulerAngles": {
  98. "__type__": "cc.Vec3",
  99. "x": 0,
  100. "y": 0,
  101. "z": 0
  102. },
  103. "_skewX": 0,
  104. "_skewY": 0,
  105. "_is3DNode": false,
  106. "_groupIndex": 0,
  107. "groupIndex": 0,
  108. "_id": ""
  109. },
  110. {
  111. "__type__": "cc.Node",
  112. "_name": "bg",
  113. "_objFlags": 0,
  114. "_parent": {
  115. "__id__": 1
  116. },
  117. "_children": [],
  118. "_active": true,
  119. "_components": [
  120. {
  121. "__id__": 3
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 4
  126. },
  127. "_opacity": 255,
  128. "_color": {
  129. "__type__": "cc.Color",
  130. "r": 255,
  131. "g": 255,
  132. "b": 255,
  133. "a": 255
  134. },
  135. "_contentSize": {
  136. "__type__": "cc.Size",
  137. "width": 300,
  138. "height": 120
  139. },
  140. "_anchorPoint": {
  141. "__type__": "cc.Vec2",
  142. "x": 1,
  143. "y": 0
  144. },
  145. "_trs": {
  146. "__type__": "TypedArray",
  147. "ctor": "Float64Array",
  148. "array": [
  149. 0,
  150. 0,
  151. 0,
  152. 0,
  153. 0,
  154. 0,
  155. 1,
  156. 1,
  157. 1,
  158. 1
  159. ]
  160. },
  161. "_eulerAngles": {
  162. "__type__": "cc.Vec3",
  163. "x": 0,
  164. "y": 0,
  165. "z": 0
  166. },
  167. "_skewX": 0,
  168. "_skewY": 0,
  169. "_is3DNode": false,
  170. "_groupIndex": 0,
  171. "groupIndex": 0,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.Sprite",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "node": {
  179. "__id__": 2
  180. },
  181. "_enabled": true,
  182. "_materials": [
  183. {
  184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  185. }
  186. ],
  187. "_srcBlendFactor": 770,
  188. "_dstBlendFactor": 771,
  189. "_spriteFrame": {
  190. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  191. },
  192. "_type": 0,
  193. "_sizeMode": 0,
  194. "_fillType": 0,
  195. "_fillCenter": {
  196. "__type__": "cc.Vec2",
  197. "x": 0,
  198. "y": 0
  199. },
  200. "_fillStart": 0,
  201. "_fillRange": 0,
  202. "_isTrimmedMode": true,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.PrefabInfo",
  208. "root": {
  209. "__id__": 1
  210. },
  211. "asset": {
  212. "__id__": 0
  213. },
  214. "fileId": "3dmh+kJKVBOYhGy1BqFdoE",
  215. "sync": false
  216. },
  217. {
  218. "__type__": "cc.Node",
  219. "_name": "chiBG",
  220. "_objFlags": 0,
  221. "_parent": {
  222. "__id__": 1
  223. },
  224. "_children": [
  225. {
  226. "__id__": 6
  227. },
  228. {
  229. "__id__": 9
  230. }
  231. ],
  232. "_active": true,
  233. "_components": [
  234. {
  235. "__id__": 15
  236. },
  237. {
  238. "__id__": 16
  239. }
  240. ],
  241. "_prefab": {
  242. "__id__": 18
  243. },
  244. "_opacity": 255,
  245. "_color": {
  246. "__type__": "cc.Color",
  247. "r": 255,
  248. "g": 255,
  249. "b": 255,
  250. "a": 255
  251. },
  252. "_contentSize": {
  253. "__type__": "cc.Size",
  254. "width": 300,
  255. "height": 120
  256. },
  257. "_anchorPoint": {
  258. "__type__": "cc.Vec2",
  259. "x": 1,
  260. "y": 0
  261. },
  262. "_trs": {
  263. "__type__": "TypedArray",
  264. "ctor": "Float64Array",
  265. "array": [
  266. 0,
  267. 0,
  268. 0,
  269. 0,
  270. 0,
  271. 0,
  272. 1,
  273. 1,
  274. 1,
  275. 1
  276. ]
  277. },
  278. "_eulerAngles": {
  279. "__type__": "cc.Vec3",
  280. "x": 0,
  281. "y": 0,
  282. "z": 0
  283. },
  284. "_skewX": 0,
  285. "_skewY": 0,
  286. "_is3DNode": false,
  287. "_groupIndex": 0,
  288. "groupIndex": 0,
  289. "_id": ""
  290. },
  291. {
  292. "__type__": "cc.Node",
  293. "_name": "anim",
  294. "_objFlags": 0,
  295. "_parent": {
  296. "__id__": 5
  297. },
  298. "_children": [],
  299. "_active": true,
  300. "_components": [
  301. {
  302. "__id__": 7
  303. }
  304. ],
  305. "_prefab": {
  306. "__id__": 8
  307. },
  308. "_opacity": 255,
  309. "_color": {
  310. "__type__": "cc.Color",
  311. "r": 255,
  312. "g": 255,
  313. "b": 255,
  314. "a": 255
  315. },
  316. "_contentSize": {
  317. "__type__": "cc.Size",
  318. "width": 256,
  319. "height": 256
  320. },
  321. "_anchorPoint": {
  322. "__type__": "cc.Vec2",
  323. "x": 0.5,
  324. "y": 0.5
  325. },
  326. "_trs": {
  327. "__type__": "TypedArray",
  328. "ctor": "Float64Array",
  329. "array": [
  330. -52,
  331. 54,
  332. 0,
  333. 0,
  334. 0,
  335. 0,
  336. 1,
  337. 1,
  338. 1,
  339. 1
  340. ]
  341. },
  342. "_eulerAngles": {
  343. "__type__": "cc.Vec3",
  344. "x": 0,
  345. "y": 0,
  346. "z": 0
  347. },
  348. "_skewX": 0,
  349. "_skewY": 0,
  350. "_is3DNode": false,
  351. "_groupIndex": 0,
  352. "groupIndex": 0,
  353. "_id": ""
  354. },
  355. {
  356. "__type__": "dragonBones.ArmatureDisplay",
  357. "_name": "",
  358. "_objFlags": 0,
  359. "node": {
  360. "__id__": 6
  361. },
  362. "_enabled": true,
  363. "_materials": [
  364. {
  365. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  366. }
  367. ],
  368. "_armatureName": "texiao",
  369. "_animationName": "newAnimation",
  370. "_preCacheMode": 0,
  371. "_cacheMode": 0,
  372. "playTimes": 0,
  373. "premultipliedAlpha": false,
  374. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  375. "_accTime": 0,
  376. "_playCount": 0,
  377. "_frameCache": null,
  378. "_curFrame": null,
  379. "_playing": false,
  380. "_armatureCache": null,
  381. "_N$dragonAsset": {
  382. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  383. },
  384. "_N$dragonAtlasAsset": {
  385. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  386. },
  387. "_N$_defaultArmatureIndex": 0,
  388. "_N$_animationIndex": 1,
  389. "_N$_defaultCacheMode": 0,
  390. "_N$timeScale": 1,
  391. "_N$debugBones": false,
  392. "_N$enableBatch": false,
  393. "_id": ""
  394. },
  395. {
  396. "__type__": "cc.PrefabInfo",
  397. "root": {
  398. "__id__": 1
  399. },
  400. "asset": {
  401. "__id__": 0
  402. },
  403. "fileId": "55Q05hFghLsrwGJgFSY1Vo",
  404. "sync": false
  405. },
  406. {
  407. "__type__": "cc.Node",
  408. "_name": "chi",
  409. "_objFlags": 0,
  410. "_parent": {
  411. "__id__": 5
  412. },
  413. "_children": [
  414. {
  415. "__id__": 10
  416. }
  417. ],
  418. "_active": true,
  419. "_components": [
  420. {
  421. "__id__": 13
  422. }
  423. ],
  424. "_prefab": {
  425. "__id__": 14
  426. },
  427. "_opacity": 255,
  428. "_color": {
  429. "__type__": "cc.Color",
  430. "r": 255,
  431. "g": 255,
  432. "b": 255,
  433. "a": 255
  434. },
  435. "_contentSize": {
  436. "__type__": "cc.Size",
  437. "width": 139,
  438. "height": 142
  439. },
  440. "_anchorPoint": {
  441. "__type__": "cc.Vec2",
  442. "x": 0.5,
  443. "y": 0.5
  444. },
  445. "_trs": {
  446. "__type__": "TypedArray",
  447. "ctor": "Float64Array",
  448. "array": [
  449. -54,
  450. 55,
  451. 0,
  452. 0,
  453. 0,
  454. 0,
  455. 1,
  456. 0.8,
  457. 0.8,
  458. 1
  459. ]
  460. },
  461. "_eulerAngles": {
  462. "__type__": "cc.Vec3",
  463. "x": 0,
  464. "y": 0,
  465. "z": 0
  466. },
  467. "_skewX": 0,
  468. "_skewY": 0,
  469. "_is3DNode": false,
  470. "_groupIndex": 0,
  471. "groupIndex": 0,
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.Node",
  476. "_name": "New Node",
  477. "_objFlags": 0,
  478. "_parent": {
  479. "__id__": 9
  480. },
  481. "_children": [],
  482. "_active": true,
  483. "_components": [
  484. {
  485. "__id__": 11
  486. }
  487. ],
  488. "_prefab": {
  489. "__id__": 12
  490. },
  491. "_opacity": 255,
  492. "_color": {
  493. "__type__": "cc.Color",
  494. "r": 255,
  495. "g": 255,
  496. "b": 255,
  497. "a": 255
  498. },
  499. "_contentSize": {
  500. "__type__": "cc.Size",
  501. "width": 75,
  502. "height": 77
  503. },
  504. "_anchorPoint": {
  505. "__type__": "cc.Vec2",
  506. "x": 0.5,
  507. "y": 0.5
  508. },
  509. "_trs": {
  510. "__type__": "TypedArray",
  511. "ctor": "Float64Array",
  512. "array": [
  513. 0,
  514. 0,
  515. 0,
  516. 0,
  517. 0,
  518. 0,
  519. 1,
  520. 1,
  521. 1,
  522. 1
  523. ]
  524. },
  525. "_eulerAngles": {
  526. "__type__": "cc.Vec3",
  527. "x": 0,
  528. "y": 0,
  529. "z": 0
  530. },
  531. "_skewX": 0,
  532. "_skewY": 0,
  533. "_is3DNode": false,
  534. "_groupIndex": 0,
  535. "groupIndex": 0,
  536. "_id": ""
  537. },
  538. {
  539. "__type__": "cc.Sprite",
  540. "_name": "",
  541. "_objFlags": 0,
  542. "node": {
  543. "__id__": 10
  544. },
  545. "_enabled": true,
  546. "_materials": [
  547. {
  548. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  549. }
  550. ],
  551. "_srcBlendFactor": 770,
  552. "_dstBlendFactor": 771,
  553. "_spriteFrame": {
  554. "__uuid__": "55f074ba-64c0-433a-8e64-d092352db4a0"
  555. },
  556. "_type": 0,
  557. "_sizeMode": 1,
  558. "_fillType": 0,
  559. "_fillCenter": {
  560. "__type__": "cc.Vec2",
  561. "x": 0,
  562. "y": 0
  563. },
  564. "_fillStart": 0,
  565. "_fillRange": 0,
  566. "_isTrimmedMode": true,
  567. "_atlas": null,
  568. "_id": ""
  569. },
  570. {
  571. "__type__": "cc.PrefabInfo",
  572. "root": {
  573. "__id__": 1
  574. },
  575. "asset": {
  576. "__id__": 0
  577. },
  578. "fileId": "e33RPpqdRKKIqEBW7L9uds",
  579. "sync": false
  580. },
  581. {
  582. "__type__": "cc.Sprite",
  583. "_name": "",
  584. "_objFlags": 0,
  585. "node": {
  586. "__id__": 9
  587. },
  588. "_enabled": true,
  589. "_materials": [
  590. {
  591. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  592. }
  593. ],
  594. "_srcBlendFactor": 770,
  595. "_dstBlendFactor": 771,
  596. "_spriteFrame": {
  597. "__uuid__": "8d0f3958-ba23-454c-b61b-bdf41e323df4"
  598. },
  599. "_type": 0,
  600. "_sizeMode": 1,
  601. "_fillType": 0,
  602. "_fillCenter": {
  603. "__type__": "cc.Vec2",
  604. "x": 0,
  605. "y": 0
  606. },
  607. "_fillStart": 0,
  608. "_fillRange": 0,
  609. "_isTrimmedMode": true,
  610. "_atlas": null,
  611. "_id": ""
  612. },
  613. {
  614. "__type__": "cc.PrefabInfo",
  615. "root": {
  616. "__id__": 1
  617. },
  618. "asset": {
  619. "__id__": 0
  620. },
  621. "fileId": "de27fxrhiVKIbMnXhHrQdZB",
  622. "sync": false
  623. },
  624. {
  625. "__type__": "cc.Sprite",
  626. "_name": "",
  627. "_objFlags": 0,
  628. "node": {
  629. "__id__": 5
  630. },
  631. "_enabled": false,
  632. "_materials": [
  633. {
  634. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  635. }
  636. ],
  637. "_srcBlendFactor": 770,
  638. "_dstBlendFactor": 771,
  639. "_spriteFrame": {
  640. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  641. },
  642. "_type": 1,
  643. "_sizeMode": 0,
  644. "_fillType": 0,
  645. "_fillCenter": {
  646. "__type__": "cc.Vec2",
  647. "x": 0,
  648. "y": 0
  649. },
  650. "_fillStart": 0,
  651. "_fillRange": 0,
  652. "_isTrimmedMode": true,
  653. "_atlas": null,
  654. "_id": ""
  655. },
  656. {
  657. "__type__": "cc.Button",
  658. "_name": "",
  659. "_objFlags": 0,
  660. "node": {
  661. "__id__": 5
  662. },
  663. "_enabled": true,
  664. "_normalMaterial": null,
  665. "_grayMaterial": null,
  666. "duration": 0.1,
  667. "zoomScale": 1.1,
  668. "clickEvents": [
  669. {
  670. "__id__": 17
  671. }
  672. ],
  673. "_N$interactable": true,
  674. "_N$enableAutoGrayEffect": false,
  675. "_N$transition": 0,
  676. "transition": 0,
  677. "_N$normalColor": {
  678. "__type__": "cc.Color",
  679. "r": 255,
  680. "g": 255,
  681. "b": 255,
  682. "a": 255
  683. },
  684. "_N$pressedColor": {
  685. "__type__": "cc.Color",
  686. "r": 255,
  687. "g": 255,
  688. "b": 255,
  689. "a": 255
  690. },
  691. "pressedColor": {
  692. "__type__": "cc.Color",
  693. "r": 255,
  694. "g": 255,
  695. "b": 255,
  696. "a": 255
  697. },
  698. "_N$hoverColor": {
  699. "__type__": "cc.Color",
  700. "r": 255,
  701. "g": 255,
  702. "b": 255,
  703. "a": 255
  704. },
  705. "hoverColor": {
  706. "__type__": "cc.Color",
  707. "r": 255,
  708. "g": 255,
  709. "b": 255,
  710. "a": 255
  711. },
  712. "_N$disabledColor": {
  713. "__type__": "cc.Color",
  714. "r": 255,
  715. "g": 255,
  716. "b": 255,
  717. "a": 255
  718. },
  719. "_N$normalSprite": null,
  720. "_N$pressedSprite": null,
  721. "pressedSprite": null,
  722. "_N$hoverSprite": null,
  723. "hoverSprite": null,
  724. "_N$disabledSprite": null,
  725. "_N$target": {
  726. "__id__": 5
  727. },
  728. "_id": ""
  729. },
  730. {
  731. "__type__": "cc.ClickEvent",
  732. "target": {
  733. "__id__": 1
  734. },
  735. "component": "",
  736. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  737. "handler": "subClickBtn",
  738. "customEventData": ""
  739. },
  740. {
  741. "__type__": "cc.PrefabInfo",
  742. "root": {
  743. "__id__": 1
  744. },
  745. "asset": {
  746. "__id__": 0
  747. },
  748. "fileId": "44qICArHZBoIgIP/B7+V4c",
  749. "sync": false
  750. },
  751. {
  752. "__type__": "cc.Node",
  753. "_name": "huBG",
  754. "_objFlags": 0,
  755. "_parent": {
  756. "__id__": 1
  757. },
  758. "_children": [
  759. {
  760. "__id__": 20
  761. },
  762. {
  763. "__id__": 23
  764. }
  765. ],
  766. "_active": false,
  767. "_components": [
  768. {
  769. "__id__": 29
  770. },
  771. {
  772. "__id__": 30
  773. }
  774. ],
  775. "_prefab": {
  776. "__id__": 32
  777. },
  778. "_opacity": 255,
  779. "_color": {
  780. "__type__": "cc.Color",
  781. "r": 255,
  782. "g": 255,
  783. "b": 255,
  784. "a": 255
  785. },
  786. "_contentSize": {
  787. "__type__": "cc.Size",
  788. "width": 300,
  789. "height": 120
  790. },
  791. "_anchorPoint": {
  792. "__type__": "cc.Vec2",
  793. "x": 1,
  794. "y": 0
  795. },
  796. "_trs": {
  797. "__type__": "TypedArray",
  798. "ctor": "Float64Array",
  799. "array": [
  800. 0,
  801. 0,
  802. 0,
  803. 0,
  804. 0,
  805. 0,
  806. 1,
  807. 1,
  808. 1,
  809. 1
  810. ]
  811. },
  812. "_eulerAngles": {
  813. "__type__": "cc.Vec3",
  814. "x": 0,
  815. "y": 0,
  816. "z": 0
  817. },
  818. "_skewX": 0,
  819. "_skewY": 0,
  820. "_is3DNode": false,
  821. "_groupIndex": 0,
  822. "groupIndex": 0,
  823. "_id": ""
  824. },
  825. {
  826. "__type__": "cc.Node",
  827. "_name": "anim",
  828. "_objFlags": 0,
  829. "_parent": {
  830. "__id__": 19
  831. },
  832. "_children": [],
  833. "_active": true,
  834. "_components": [
  835. {
  836. "__id__": 21
  837. }
  838. ],
  839. "_prefab": {
  840. "__id__": 22
  841. },
  842. "_opacity": 255,
  843. "_color": {
  844. "__type__": "cc.Color",
  845. "r": 255,
  846. "g": 255,
  847. "b": 255,
  848. "a": 255
  849. },
  850. "_contentSize": {
  851. "__type__": "cc.Size",
  852. "width": 256,
  853. "height": 256
  854. },
  855. "_anchorPoint": {
  856. "__type__": "cc.Vec2",
  857. "x": 0.5,
  858. "y": 0.5
  859. },
  860. "_trs": {
  861. "__type__": "TypedArray",
  862. "ctor": "Float64Array",
  863. "array": [
  864. -162,
  865. 54,
  866. 0,
  867. 0,
  868. 0,
  869. 0,
  870. 1,
  871. 1,
  872. 1,
  873. 1
  874. ]
  875. },
  876. "_eulerAngles": {
  877. "__type__": "cc.Vec3",
  878. "x": 0,
  879. "y": 0,
  880. "z": 0
  881. },
  882. "_skewX": 0,
  883. "_skewY": 0,
  884. "_is3DNode": false,
  885. "_groupIndex": 0,
  886. "groupIndex": 0,
  887. "_id": ""
  888. },
  889. {
  890. "__type__": "dragonBones.ArmatureDisplay",
  891. "_name": "",
  892. "_objFlags": 0,
  893. "node": {
  894. "__id__": 20
  895. },
  896. "_enabled": true,
  897. "_materials": [
  898. {
  899. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  900. }
  901. ],
  902. "_armatureName": "texiao",
  903. "_animationName": "newAnimation",
  904. "_preCacheMode": 0,
  905. "_cacheMode": 0,
  906. "playTimes": 0,
  907. "premultipliedAlpha": false,
  908. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  909. "_accTime": 0,
  910. "_playCount": 0,
  911. "_frameCache": null,
  912. "_curFrame": null,
  913. "_playing": false,
  914. "_armatureCache": null,
  915. "_N$dragonAsset": {
  916. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  917. },
  918. "_N$dragonAtlasAsset": {
  919. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  920. },
  921. "_N$_defaultArmatureIndex": 0,
  922. "_N$_animationIndex": 1,
  923. "_N$_defaultCacheMode": 0,
  924. "_N$timeScale": 1,
  925. "_N$debugBones": false,
  926. "_N$enableBatch": false,
  927. "_id": ""
  928. },
  929. {
  930. "__type__": "cc.PrefabInfo",
  931. "root": {
  932. "__id__": 1
  933. },
  934. "asset": {
  935. "__id__": 0
  936. },
  937. "fileId": "59BeAHjMZOn56fy1Xcs5RH",
  938. "sync": false
  939. },
  940. {
  941. "__type__": "cc.Node",
  942. "_name": "hu",
  943. "_objFlags": 0,
  944. "_parent": {
  945. "__id__": 19
  946. },
  947. "_children": [
  948. {
  949. "__id__": 24
  950. }
  951. ],
  952. "_active": true,
  953. "_components": [
  954. {
  955. "__id__": 27
  956. }
  957. ],
  958. "_prefab": {
  959. "__id__": 28
  960. },
  961. "_opacity": 255,
  962. "_color": {
  963. "__type__": "cc.Color",
  964. "r": 255,
  965. "g": 255,
  966. "b": 255,
  967. "a": 255
  968. },
  969. "_contentSize": {
  970. "__type__": "cc.Size",
  971. "width": 139,
  972. "height": 142
  973. },
  974. "_anchorPoint": {
  975. "__type__": "cc.Vec2",
  976. "x": 0.5,
  977. "y": 0.5
  978. },
  979. "_trs": {
  980. "__type__": "TypedArray",
  981. "ctor": "Float64Array",
  982. "array": [
  983. -164,
  984. 55,
  985. 0,
  986. 0,
  987. 0,
  988. 0,
  989. 1,
  990. 0.8,
  991. 0.8,
  992. 1
  993. ]
  994. },
  995. "_eulerAngles": {
  996. "__type__": "cc.Vec3",
  997. "x": 0,
  998. "y": 0,
  999. "z": 0
  1000. },
  1001. "_skewX": 0,
  1002. "_skewY": 0,
  1003. "_is3DNode": false,
  1004. "_groupIndex": 0,
  1005. "groupIndex": 0,
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "cc.Node",
  1010. "_name": "New Node",
  1011. "_objFlags": 0,
  1012. "_parent": {
  1013. "__id__": 23
  1014. },
  1015. "_children": [],
  1016. "_active": true,
  1017. "_components": [
  1018. {
  1019. "__id__": 25
  1020. }
  1021. ],
  1022. "_prefab": {
  1023. "__id__": 26
  1024. },
  1025. "_opacity": 255,
  1026. "_color": {
  1027. "__type__": "cc.Color",
  1028. "r": 255,
  1029. "g": 255,
  1030. "b": 255,
  1031. "a": 255
  1032. },
  1033. "_contentSize": {
  1034. "__type__": "cc.Size",
  1035. "width": 74,
  1036. "height": 78
  1037. },
  1038. "_anchorPoint": {
  1039. "__type__": "cc.Vec2",
  1040. "x": 0.5,
  1041. "y": 0.5
  1042. },
  1043. "_trs": {
  1044. "__type__": "TypedArray",
  1045. "ctor": "Float64Array",
  1046. "array": [
  1047. 0,
  1048. 0,
  1049. 0,
  1050. 0,
  1051. 0,
  1052. 0,
  1053. 1,
  1054. 1,
  1055. 1,
  1056. 1
  1057. ]
  1058. },
  1059. "_eulerAngles": {
  1060. "__type__": "cc.Vec3",
  1061. "x": 0,
  1062. "y": 0,
  1063. "z": 0
  1064. },
  1065. "_skewX": 0,
  1066. "_skewY": 0,
  1067. "_is3DNode": false,
  1068. "_groupIndex": 0,
  1069. "groupIndex": 0,
  1070. "_id": ""
  1071. },
  1072. {
  1073. "__type__": "cc.Sprite",
  1074. "_name": "",
  1075. "_objFlags": 0,
  1076. "node": {
  1077. "__id__": 24
  1078. },
  1079. "_enabled": true,
  1080. "_materials": [
  1081. {
  1082. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1083. }
  1084. ],
  1085. "_srcBlendFactor": 770,
  1086. "_dstBlendFactor": 771,
  1087. "_spriteFrame": {
  1088. "__uuid__": "825e059d-efec-42dd-a589-ce3451a4d629"
  1089. },
  1090. "_type": 0,
  1091. "_sizeMode": 1,
  1092. "_fillType": 0,
  1093. "_fillCenter": {
  1094. "__type__": "cc.Vec2",
  1095. "x": 0,
  1096. "y": 0
  1097. },
  1098. "_fillStart": 0,
  1099. "_fillRange": 0,
  1100. "_isTrimmedMode": true,
  1101. "_atlas": null,
  1102. "_id": ""
  1103. },
  1104. {
  1105. "__type__": "cc.PrefabInfo",
  1106. "root": {
  1107. "__id__": 1
  1108. },
  1109. "asset": {
  1110. "__id__": 0
  1111. },
  1112. "fileId": "cae7V729ROsI4ISBgtsTam",
  1113. "sync": false
  1114. },
  1115. {
  1116. "__type__": "cc.Sprite",
  1117. "_name": "",
  1118. "_objFlags": 0,
  1119. "node": {
  1120. "__id__": 23
  1121. },
  1122. "_enabled": true,
  1123. "_materials": [
  1124. {
  1125. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1126. }
  1127. ],
  1128. "_srcBlendFactor": 770,
  1129. "_dstBlendFactor": 771,
  1130. "_spriteFrame": {
  1131. "__uuid__": "dbfae183-0123-4d98-aac2-e73a1e28ceec"
  1132. },
  1133. "_type": 0,
  1134. "_sizeMode": 1,
  1135. "_fillType": 0,
  1136. "_fillCenter": {
  1137. "__type__": "cc.Vec2",
  1138. "x": 0,
  1139. "y": 0
  1140. },
  1141. "_fillStart": 0,
  1142. "_fillRange": 0,
  1143. "_isTrimmedMode": true,
  1144. "_atlas": null,
  1145. "_id": ""
  1146. },
  1147. {
  1148. "__type__": "cc.PrefabInfo",
  1149. "root": {
  1150. "__id__": 1
  1151. },
  1152. "asset": {
  1153. "__id__": 0
  1154. },
  1155. "fileId": "08ad5twZv5M1Kj1FSaryDqJ",
  1156. "sync": false
  1157. },
  1158. {
  1159. "__type__": "cc.Sprite",
  1160. "_name": "",
  1161. "_objFlags": 0,
  1162. "node": {
  1163. "__id__": 19
  1164. },
  1165. "_enabled": false,
  1166. "_materials": [
  1167. {
  1168. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1169. }
  1170. ],
  1171. "_srcBlendFactor": 770,
  1172. "_dstBlendFactor": 771,
  1173. "_spriteFrame": {
  1174. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  1175. },
  1176. "_type": 1,
  1177. "_sizeMode": 0,
  1178. "_fillType": 0,
  1179. "_fillCenter": {
  1180. "__type__": "cc.Vec2",
  1181. "x": 0,
  1182. "y": 0
  1183. },
  1184. "_fillStart": 0,
  1185. "_fillRange": 0,
  1186. "_isTrimmedMode": true,
  1187. "_atlas": null,
  1188. "_id": ""
  1189. },
  1190. {
  1191. "__type__": "cc.Button",
  1192. "_name": "",
  1193. "_objFlags": 0,
  1194. "node": {
  1195. "__id__": 19
  1196. },
  1197. "_enabled": true,
  1198. "_normalMaterial": null,
  1199. "_grayMaterial": null,
  1200. "duration": 0.1,
  1201. "zoomScale": 1.1,
  1202. "clickEvents": [
  1203. {
  1204. "__id__": 31
  1205. }
  1206. ],
  1207. "_N$interactable": true,
  1208. "_N$enableAutoGrayEffect": false,
  1209. "_N$transition": 0,
  1210. "transition": 0,
  1211. "_N$normalColor": {
  1212. "__type__": "cc.Color",
  1213. "r": 255,
  1214. "g": 255,
  1215. "b": 255,
  1216. "a": 255
  1217. },
  1218. "_N$pressedColor": {
  1219. "__type__": "cc.Color",
  1220. "r": 255,
  1221. "g": 255,
  1222. "b": 255,
  1223. "a": 255
  1224. },
  1225. "pressedColor": {
  1226. "__type__": "cc.Color",
  1227. "r": 255,
  1228. "g": 255,
  1229. "b": 255,
  1230. "a": 255
  1231. },
  1232. "_N$hoverColor": {
  1233. "__type__": "cc.Color",
  1234. "r": 255,
  1235. "g": 255,
  1236. "b": 255,
  1237. "a": 255
  1238. },
  1239. "hoverColor": {
  1240. "__type__": "cc.Color",
  1241. "r": 255,
  1242. "g": 255,
  1243. "b": 255,
  1244. "a": 255
  1245. },
  1246. "_N$disabledColor": {
  1247. "__type__": "cc.Color",
  1248. "r": 255,
  1249. "g": 255,
  1250. "b": 255,
  1251. "a": 255
  1252. },
  1253. "_N$normalSprite": null,
  1254. "_N$pressedSprite": null,
  1255. "pressedSprite": null,
  1256. "_N$hoverSprite": null,
  1257. "hoverSprite": null,
  1258. "_N$disabledSprite": null,
  1259. "_N$target": {
  1260. "__id__": 19
  1261. },
  1262. "_id": ""
  1263. },
  1264. {
  1265. "__type__": "cc.ClickEvent",
  1266. "target": {
  1267. "__id__": 1
  1268. },
  1269. "component": "",
  1270. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  1271. "handler": "subClickBtn",
  1272. "customEventData": ""
  1273. },
  1274. {
  1275. "__type__": "cc.PrefabInfo",
  1276. "root": {
  1277. "__id__": 1
  1278. },
  1279. "asset": {
  1280. "__id__": 0
  1281. },
  1282. "fileId": "c0EegjCxFOp6u3U+Y6rWhJ",
  1283. "sync": false
  1284. },
  1285. {
  1286. "__type__": "cc.Node",
  1287. "_name": "menhuBG",
  1288. "_objFlags": 0,
  1289. "_parent": {
  1290. "__id__": 1
  1291. },
  1292. "_children": [
  1293. {
  1294. "__id__": 34
  1295. },
  1296. {
  1297. "__id__": 37
  1298. }
  1299. ],
  1300. "_active": false,
  1301. "_components": [
  1302. {
  1303. "__id__": 42
  1304. },
  1305. {
  1306. "__id__": 43
  1307. }
  1308. ],
  1309. "_prefab": {
  1310. "__id__": 45
  1311. },
  1312. "_opacity": 255,
  1313. "_color": {
  1314. "__type__": "cc.Color",
  1315. "r": 255,
  1316. "g": 255,
  1317. "b": 255,
  1318. "a": 255
  1319. },
  1320. "_contentSize": {
  1321. "__type__": "cc.Size",
  1322. "width": 300,
  1323. "height": 120
  1324. },
  1325. "_anchorPoint": {
  1326. "__type__": "cc.Vec2",
  1327. "x": 1,
  1328. "y": 0
  1329. },
  1330. "_trs": {
  1331. "__type__": "TypedArray",
  1332. "ctor": "Float64Array",
  1333. "array": [
  1334. 0,
  1335. 0,
  1336. 0,
  1337. 0,
  1338. 0,
  1339. 0,
  1340. 1,
  1341. 1,
  1342. 1,
  1343. 1
  1344. ]
  1345. },
  1346. "_eulerAngles": {
  1347. "__type__": "cc.Vec3",
  1348. "x": 0,
  1349. "y": 0,
  1350. "z": 0
  1351. },
  1352. "_skewX": 0,
  1353. "_skewY": 0,
  1354. "_is3DNode": false,
  1355. "_groupIndex": 0,
  1356. "groupIndex": 0,
  1357. "_id": ""
  1358. },
  1359. {
  1360. "__type__": "cc.Node",
  1361. "_name": "anim",
  1362. "_objFlags": 0,
  1363. "_parent": {
  1364. "__id__": 33
  1365. },
  1366. "_children": [],
  1367. "_active": true,
  1368. "_components": [
  1369. {
  1370. "__id__": 35
  1371. }
  1372. ],
  1373. "_prefab": {
  1374. "__id__": 36
  1375. },
  1376. "_opacity": 255,
  1377. "_color": {
  1378. "__type__": "cc.Color",
  1379. "r": 255,
  1380. "g": 255,
  1381. "b": 255,
  1382. "a": 255
  1383. },
  1384. "_contentSize": {
  1385. "__type__": "cc.Size",
  1386. "width": 256,
  1387. "height": 256
  1388. },
  1389. "_anchorPoint": {
  1390. "__type__": "cc.Vec2",
  1391. "x": 0.5,
  1392. "y": 0.5
  1393. },
  1394. "_trs": {
  1395. "__type__": "TypedArray",
  1396. "ctor": "Float64Array",
  1397. "array": [
  1398. -162,
  1399. 54,
  1400. 0,
  1401. 0,
  1402. 0,
  1403. 0,
  1404. 1,
  1405. 1,
  1406. 1,
  1407. 1
  1408. ]
  1409. },
  1410. "_eulerAngles": {
  1411. "__type__": "cc.Vec3",
  1412. "x": 0,
  1413. "y": 0,
  1414. "z": 0
  1415. },
  1416. "_skewX": 0,
  1417. "_skewY": 0,
  1418. "_is3DNode": false,
  1419. "_groupIndex": 0,
  1420. "groupIndex": 0,
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "dragonBones.ArmatureDisplay",
  1425. "_name": "",
  1426. "_objFlags": 0,
  1427. "node": {
  1428. "__id__": 34
  1429. },
  1430. "_enabled": true,
  1431. "_materials": [
  1432. {
  1433. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1434. }
  1435. ],
  1436. "_armatureName": "texiao",
  1437. "_animationName": "newAnimation",
  1438. "_preCacheMode": 0,
  1439. "_cacheMode": 0,
  1440. "playTimes": 0,
  1441. "premultipliedAlpha": false,
  1442. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  1443. "_accTime": 0,
  1444. "_playCount": 0,
  1445. "_frameCache": null,
  1446. "_curFrame": null,
  1447. "_playing": false,
  1448. "_armatureCache": null,
  1449. "_N$dragonAsset": {
  1450. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  1451. },
  1452. "_N$dragonAtlasAsset": {
  1453. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  1454. },
  1455. "_N$_defaultArmatureIndex": 0,
  1456. "_N$_animationIndex": 1,
  1457. "_N$_defaultCacheMode": 0,
  1458. "_N$timeScale": 1,
  1459. "_N$debugBones": false,
  1460. "_N$enableBatch": false,
  1461. "_id": ""
  1462. },
  1463. {
  1464. "__type__": "cc.PrefabInfo",
  1465. "root": {
  1466. "__id__": 1
  1467. },
  1468. "asset": {
  1469. "__id__": 0
  1470. },
  1471. "fileId": "3eLuGzfLtInZ5+C90+iUC+",
  1472. "sync": false
  1473. },
  1474. {
  1475. "__type__": "cc.Node",
  1476. "_name": "hu",
  1477. "_objFlags": 0,
  1478. "_parent": {
  1479. "__id__": 33
  1480. },
  1481. "_children": [
  1482. {
  1483. "__id__": 38
  1484. }
  1485. ],
  1486. "_active": true,
  1487. "_components": [
  1488. {
  1489. "__id__": 40
  1490. }
  1491. ],
  1492. "_prefab": {
  1493. "__id__": 41
  1494. },
  1495. "_opacity": 255,
  1496. "_color": {
  1497. "__type__": "cc.Color",
  1498. "r": 255,
  1499. "g": 255,
  1500. "b": 255,
  1501. "a": 255
  1502. },
  1503. "_contentSize": {
  1504. "__type__": "cc.Size",
  1505. "width": 127,
  1506. "height": 123
  1507. },
  1508. "_anchorPoint": {
  1509. "__type__": "cc.Vec2",
  1510. "x": 0.5,
  1511. "y": 0.5
  1512. },
  1513. "_trs": {
  1514. "__type__": "TypedArray",
  1515. "ctor": "Float64Array",
  1516. "array": [
  1517. -159,
  1518. 50,
  1519. 0,
  1520. 0,
  1521. 0,
  1522. 0,
  1523. 1,
  1524. 1,
  1525. 1,
  1526. 1
  1527. ]
  1528. },
  1529. "_eulerAngles": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0,
  1532. "y": 0,
  1533. "z": 0
  1534. },
  1535. "_skewX": 0,
  1536. "_skewY": 0,
  1537. "_is3DNode": false,
  1538. "_groupIndex": 0,
  1539. "groupIndex": 0,
  1540. "_id": ""
  1541. },
  1542. {
  1543. "__type__": "cc.Node",
  1544. "_name": "New Node",
  1545. "_objFlags": 0,
  1546. "_parent": {
  1547. "__id__": 37
  1548. },
  1549. "_children": [],
  1550. "_active": true,
  1551. "_components": [],
  1552. "_prefab": {
  1553. "__id__": 39
  1554. },
  1555. "_opacity": 255,
  1556. "_color": {
  1557. "__type__": "cc.Color",
  1558. "r": 255,
  1559. "g": 255,
  1560. "b": 255,
  1561. "a": 255
  1562. },
  1563. "_contentSize": {
  1564. "__type__": "cc.Size",
  1565. "width": 0,
  1566. "height": 0
  1567. },
  1568. "_anchorPoint": {
  1569. "__type__": "cc.Vec2",
  1570. "x": 0.5,
  1571. "y": 0.5
  1572. },
  1573. "_trs": {
  1574. "__type__": "TypedArray",
  1575. "ctor": "Float64Array",
  1576. "array": [
  1577. 0,
  1578. 0,
  1579. 0,
  1580. 0,
  1581. 0,
  1582. 0,
  1583. 1,
  1584. 1,
  1585. 1,
  1586. 1
  1587. ]
  1588. },
  1589. "_eulerAngles": {
  1590. "__type__": "cc.Vec3",
  1591. "x": 0,
  1592. "y": 0,
  1593. "z": 0
  1594. },
  1595. "_skewX": 0,
  1596. "_skewY": 0,
  1597. "_is3DNode": false,
  1598. "_groupIndex": 0,
  1599. "groupIndex": 0,
  1600. "_id": ""
  1601. },
  1602. {
  1603. "__type__": "cc.PrefabInfo",
  1604. "root": {
  1605. "__id__": 1
  1606. },
  1607. "asset": {
  1608. "__id__": 0
  1609. },
  1610. "fileId": "5bWR+wqXNBvoFV/FD9FAsn",
  1611. "sync": false
  1612. },
  1613. {
  1614. "__type__": "cc.Sprite",
  1615. "_name": "",
  1616. "_objFlags": 0,
  1617. "node": {
  1618. "__id__": 37
  1619. },
  1620. "_enabled": true,
  1621. "_materials": [
  1622. {
  1623. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1624. }
  1625. ],
  1626. "_srcBlendFactor": 770,
  1627. "_dstBlendFactor": 771,
  1628. "_spriteFrame": {
  1629. "__uuid__": "c01ed731-9cb8-4a8b-8fa0-b9af3ec2c7d9"
  1630. },
  1631. "_type": 0,
  1632. "_sizeMode": 1,
  1633. "_fillType": 0,
  1634. "_fillCenter": {
  1635. "__type__": "cc.Vec2",
  1636. "x": 0,
  1637. "y": 0
  1638. },
  1639. "_fillStart": 0,
  1640. "_fillRange": 0,
  1641. "_isTrimmedMode": true,
  1642. "_atlas": {
  1643. "__uuid__": "f472c153-0747-4a02-9a40-bff84ac4454c"
  1644. },
  1645. "_id": ""
  1646. },
  1647. {
  1648. "__type__": "cc.PrefabInfo",
  1649. "root": {
  1650. "__id__": 1
  1651. },
  1652. "asset": {
  1653. "__id__": 0
  1654. },
  1655. "fileId": "e9ULJ2vflJR54dGn1zvmP6",
  1656. "sync": false
  1657. },
  1658. {
  1659. "__type__": "cc.Sprite",
  1660. "_name": "",
  1661. "_objFlags": 0,
  1662. "node": {
  1663. "__id__": 33
  1664. },
  1665. "_enabled": false,
  1666. "_materials": [
  1667. {
  1668. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1669. }
  1670. ],
  1671. "_srcBlendFactor": 770,
  1672. "_dstBlendFactor": 771,
  1673. "_spriteFrame": {
  1674. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  1675. },
  1676. "_type": 1,
  1677. "_sizeMode": 0,
  1678. "_fillType": 0,
  1679. "_fillCenter": {
  1680. "__type__": "cc.Vec2",
  1681. "x": 0,
  1682. "y": 0
  1683. },
  1684. "_fillStart": 0,
  1685. "_fillRange": 0,
  1686. "_isTrimmedMode": true,
  1687. "_atlas": null,
  1688. "_id": ""
  1689. },
  1690. {
  1691. "__type__": "cc.Button",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "node": {
  1695. "__id__": 33
  1696. },
  1697. "_enabled": true,
  1698. "_normalMaterial": null,
  1699. "_grayMaterial": null,
  1700. "duration": 0.1,
  1701. "zoomScale": 1.1,
  1702. "clickEvents": [
  1703. {
  1704. "__id__": 44
  1705. }
  1706. ],
  1707. "_N$interactable": true,
  1708. "_N$enableAutoGrayEffect": false,
  1709. "_N$transition": 0,
  1710. "transition": 0,
  1711. "_N$normalColor": {
  1712. "__type__": "cc.Color",
  1713. "r": 255,
  1714. "g": 255,
  1715. "b": 255,
  1716. "a": 255
  1717. },
  1718. "_N$pressedColor": {
  1719. "__type__": "cc.Color",
  1720. "r": 255,
  1721. "g": 255,
  1722. "b": 255,
  1723. "a": 255
  1724. },
  1725. "pressedColor": {
  1726. "__type__": "cc.Color",
  1727. "r": 255,
  1728. "g": 255,
  1729. "b": 255,
  1730. "a": 255
  1731. },
  1732. "_N$hoverColor": {
  1733. "__type__": "cc.Color",
  1734. "r": 255,
  1735. "g": 255,
  1736. "b": 255,
  1737. "a": 255
  1738. },
  1739. "hoverColor": {
  1740. "__type__": "cc.Color",
  1741. "r": 255,
  1742. "g": 255,
  1743. "b": 255,
  1744. "a": 255
  1745. },
  1746. "_N$disabledColor": {
  1747. "__type__": "cc.Color",
  1748. "r": 255,
  1749. "g": 255,
  1750. "b": 255,
  1751. "a": 255
  1752. },
  1753. "_N$normalSprite": null,
  1754. "_N$pressedSprite": null,
  1755. "pressedSprite": null,
  1756. "_N$hoverSprite": null,
  1757. "hoverSprite": null,
  1758. "_N$disabledSprite": null,
  1759. "_N$target": {
  1760. "__id__": 33
  1761. },
  1762. "_id": ""
  1763. },
  1764. {
  1765. "__type__": "cc.ClickEvent",
  1766. "target": {
  1767. "__id__": 1
  1768. },
  1769. "component": "",
  1770. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  1771. "handler": "subClickBtn",
  1772. "customEventData": ""
  1773. },
  1774. {
  1775. "__type__": "cc.PrefabInfo",
  1776. "root": {
  1777. "__id__": 1
  1778. },
  1779. "asset": {
  1780. "__id__": 0
  1781. },
  1782. "fileId": "d6PFwPz7hAB4I8o9Z8Lck+",
  1783. "sync": false
  1784. },
  1785. {
  1786. "__type__": "cc.Node",
  1787. "_name": "tingBG",
  1788. "_objFlags": 0,
  1789. "_parent": {
  1790. "__id__": 1
  1791. },
  1792. "_children": [
  1793. {
  1794. "__id__": 47
  1795. },
  1796. {
  1797. "__id__": 50
  1798. }
  1799. ],
  1800. "_active": false,
  1801. "_components": [
  1802. {
  1803. "__id__": 53
  1804. },
  1805. {
  1806. "__id__": 54
  1807. }
  1808. ],
  1809. "_prefab": {
  1810. "__id__": 56
  1811. },
  1812. "_opacity": 255,
  1813. "_color": {
  1814. "__type__": "cc.Color",
  1815. "r": 255,
  1816. "g": 255,
  1817. "b": 255,
  1818. "a": 255
  1819. },
  1820. "_contentSize": {
  1821. "__type__": "cc.Size",
  1822. "width": 300,
  1823. "height": 120
  1824. },
  1825. "_anchorPoint": {
  1826. "__type__": "cc.Vec2",
  1827. "x": 1,
  1828. "y": 0
  1829. },
  1830. "_trs": {
  1831. "__type__": "TypedArray",
  1832. "ctor": "Float64Array",
  1833. "array": [
  1834. 0,
  1835. 0,
  1836. 0,
  1837. 0,
  1838. 0,
  1839. 0,
  1840. 1,
  1841. 1,
  1842. 1,
  1843. 1
  1844. ]
  1845. },
  1846. "_eulerAngles": {
  1847. "__type__": "cc.Vec3",
  1848. "x": 0,
  1849. "y": 0,
  1850. "z": 0
  1851. },
  1852. "_skewX": 0,
  1853. "_skewY": 0,
  1854. "_is3DNode": false,
  1855. "_groupIndex": 0,
  1856. "groupIndex": 0,
  1857. "_id": ""
  1858. },
  1859. {
  1860. "__type__": "cc.Node",
  1861. "_name": "anim",
  1862. "_objFlags": 0,
  1863. "_parent": {
  1864. "__id__": 46
  1865. },
  1866. "_children": [],
  1867. "_active": true,
  1868. "_components": [
  1869. {
  1870. "__id__": 48
  1871. }
  1872. ],
  1873. "_prefab": {
  1874. "__id__": 49
  1875. },
  1876. "_opacity": 255,
  1877. "_color": {
  1878. "__type__": "cc.Color",
  1879. "r": 255,
  1880. "g": 255,
  1881. "b": 255,
  1882. "a": 255
  1883. },
  1884. "_contentSize": {
  1885. "__type__": "cc.Size",
  1886. "width": 256,
  1887. "height": 256
  1888. },
  1889. "_anchorPoint": {
  1890. "__type__": "cc.Vec2",
  1891. "x": 0.5,
  1892. "y": 0.5
  1893. },
  1894. "_trs": {
  1895. "__type__": "TypedArray",
  1896. "ctor": "Float64Array",
  1897. "array": [
  1898. -162,
  1899. 54,
  1900. 0,
  1901. 0,
  1902. 0,
  1903. 0,
  1904. 1,
  1905. 1,
  1906. 1,
  1907. 1
  1908. ]
  1909. },
  1910. "_eulerAngles": {
  1911. "__type__": "cc.Vec3",
  1912. "x": 0,
  1913. "y": 0,
  1914. "z": 0
  1915. },
  1916. "_skewX": 0,
  1917. "_skewY": 0,
  1918. "_is3DNode": false,
  1919. "_groupIndex": 0,
  1920. "groupIndex": 0,
  1921. "_id": ""
  1922. },
  1923. {
  1924. "__type__": "dragonBones.ArmatureDisplay",
  1925. "_name": "",
  1926. "_objFlags": 0,
  1927. "node": {
  1928. "__id__": 47
  1929. },
  1930. "_enabled": true,
  1931. "_materials": [
  1932. {
  1933. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1934. }
  1935. ],
  1936. "_armatureName": "texiao",
  1937. "_animationName": "newAnimation",
  1938. "_preCacheMode": 0,
  1939. "_cacheMode": 0,
  1940. "playTimes": 0,
  1941. "premultipliedAlpha": false,
  1942. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  1943. "_accTime": 0,
  1944. "_playCount": 0,
  1945. "_frameCache": null,
  1946. "_curFrame": null,
  1947. "_playing": false,
  1948. "_armatureCache": null,
  1949. "_N$dragonAsset": {
  1950. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  1951. },
  1952. "_N$dragonAtlasAsset": {
  1953. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  1954. },
  1955. "_N$_defaultArmatureIndex": 0,
  1956. "_N$_animationIndex": 1,
  1957. "_N$_defaultCacheMode": 0,
  1958. "_N$timeScale": 1,
  1959. "_N$debugBones": false,
  1960. "_N$enableBatch": false,
  1961. "_id": ""
  1962. },
  1963. {
  1964. "__type__": "cc.PrefabInfo",
  1965. "root": {
  1966. "__id__": 1
  1967. },
  1968. "asset": {
  1969. "__id__": 0
  1970. },
  1971. "fileId": "40sZtZ7y5Pz6+Kn/57gJLM",
  1972. "sync": false
  1973. },
  1974. {
  1975. "__type__": "cc.Node",
  1976. "_name": "ting",
  1977. "_objFlags": 0,
  1978. "_parent": {
  1979. "__id__": 46
  1980. },
  1981. "_children": [],
  1982. "_active": true,
  1983. "_components": [
  1984. {
  1985. "__id__": 51
  1986. }
  1987. ],
  1988. "_prefab": {
  1989. "__id__": 52
  1990. },
  1991. "_opacity": 255,
  1992. "_color": {
  1993. "__type__": "cc.Color",
  1994. "r": 255,
  1995. "g": 255,
  1996. "b": 255,
  1997. "a": 255
  1998. },
  1999. "_contentSize": {
  2000. "__type__": "cc.Size",
  2001. "width": 117,
  2002. "height": 117
  2003. },
  2004. "_anchorPoint": {
  2005. "__type__": "cc.Vec2",
  2006. "x": 0.5,
  2007. "y": 0.5
  2008. },
  2009. "_trs": {
  2010. "__type__": "TypedArray",
  2011. "ctor": "Float64Array",
  2012. "array": [
  2013. -166,
  2014. 55,
  2015. 0,
  2016. 0,
  2017. 0,
  2018. 0,
  2019. 1,
  2020. 1,
  2021. 1,
  2022. 1
  2023. ]
  2024. },
  2025. "_eulerAngles": {
  2026. "__type__": "cc.Vec3",
  2027. "x": 0,
  2028. "y": 0,
  2029. "z": 0
  2030. },
  2031. "_skewX": 0,
  2032. "_skewY": 0,
  2033. "_is3DNode": false,
  2034. "_groupIndex": 0,
  2035. "groupIndex": 0,
  2036. "_id": ""
  2037. },
  2038. {
  2039. "__type__": "cc.Sprite",
  2040. "_name": "",
  2041. "_objFlags": 0,
  2042. "node": {
  2043. "__id__": 50
  2044. },
  2045. "_enabled": true,
  2046. "_materials": [
  2047. {
  2048. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2049. }
  2050. ],
  2051. "_srcBlendFactor": 770,
  2052. "_dstBlendFactor": 771,
  2053. "_spriteFrame": {
  2054. "__uuid__": "f0b9719f-e3c6-4481-b329-bcde779042ed"
  2055. },
  2056. "_type": 0,
  2057. "_sizeMode": 1,
  2058. "_fillType": 0,
  2059. "_fillCenter": {
  2060. "__type__": "cc.Vec2",
  2061. "x": 0,
  2062. "y": 0
  2063. },
  2064. "_fillStart": 0,
  2065. "_fillRange": 0,
  2066. "_isTrimmedMode": true,
  2067. "_atlas": {
  2068. "__uuid__": "f472c153-0747-4a02-9a40-bff84ac4454c"
  2069. },
  2070. "_id": ""
  2071. },
  2072. {
  2073. "__type__": "cc.PrefabInfo",
  2074. "root": {
  2075. "__id__": 1
  2076. },
  2077. "asset": {
  2078. "__id__": 0
  2079. },
  2080. "fileId": "c9CJ9/V5dGirwtJdypJDgz",
  2081. "sync": false
  2082. },
  2083. {
  2084. "__type__": "cc.Sprite",
  2085. "_name": "",
  2086. "_objFlags": 0,
  2087. "node": {
  2088. "__id__": 46
  2089. },
  2090. "_enabled": false,
  2091. "_materials": [
  2092. {
  2093. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2094. }
  2095. ],
  2096. "_srcBlendFactor": 770,
  2097. "_dstBlendFactor": 771,
  2098. "_spriteFrame": {
  2099. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  2100. },
  2101. "_type": 1,
  2102. "_sizeMode": 0,
  2103. "_fillType": 0,
  2104. "_fillCenter": {
  2105. "__type__": "cc.Vec2",
  2106. "x": 0,
  2107. "y": 0
  2108. },
  2109. "_fillStart": 0,
  2110. "_fillRange": 0,
  2111. "_isTrimmedMode": true,
  2112. "_atlas": null,
  2113. "_id": ""
  2114. },
  2115. {
  2116. "__type__": "cc.Button",
  2117. "_name": "",
  2118. "_objFlags": 0,
  2119. "node": {
  2120. "__id__": 46
  2121. },
  2122. "_enabled": true,
  2123. "_normalMaterial": null,
  2124. "_grayMaterial": null,
  2125. "duration": 0.1,
  2126. "zoomScale": 1.1,
  2127. "clickEvents": [
  2128. {
  2129. "__id__": 55
  2130. }
  2131. ],
  2132. "_N$interactable": true,
  2133. "_N$enableAutoGrayEffect": false,
  2134. "_N$transition": 0,
  2135. "transition": 0,
  2136. "_N$normalColor": {
  2137. "__type__": "cc.Color",
  2138. "r": 255,
  2139. "g": 255,
  2140. "b": 255,
  2141. "a": 255
  2142. },
  2143. "_N$pressedColor": {
  2144. "__type__": "cc.Color",
  2145. "r": 255,
  2146. "g": 255,
  2147. "b": 255,
  2148. "a": 255
  2149. },
  2150. "pressedColor": {
  2151. "__type__": "cc.Color",
  2152. "r": 255,
  2153. "g": 255,
  2154. "b": 255,
  2155. "a": 255
  2156. },
  2157. "_N$hoverColor": {
  2158. "__type__": "cc.Color",
  2159. "r": 255,
  2160. "g": 255,
  2161. "b": 255,
  2162. "a": 255
  2163. },
  2164. "hoverColor": {
  2165. "__type__": "cc.Color",
  2166. "r": 255,
  2167. "g": 255,
  2168. "b": 255,
  2169. "a": 255
  2170. },
  2171. "_N$disabledColor": {
  2172. "__type__": "cc.Color",
  2173. "r": 255,
  2174. "g": 255,
  2175. "b": 255,
  2176. "a": 255
  2177. },
  2178. "_N$normalSprite": null,
  2179. "_N$pressedSprite": null,
  2180. "pressedSprite": null,
  2181. "_N$hoverSprite": null,
  2182. "hoverSprite": null,
  2183. "_N$disabledSprite": null,
  2184. "_N$target": {
  2185. "__id__": 46
  2186. },
  2187. "_id": ""
  2188. },
  2189. {
  2190. "__type__": "cc.ClickEvent",
  2191. "target": {
  2192. "__id__": 1
  2193. },
  2194. "component": "",
  2195. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  2196. "handler": "subClickBtn",
  2197. "customEventData": ""
  2198. },
  2199. {
  2200. "__type__": "cc.PrefabInfo",
  2201. "root": {
  2202. "__id__": 1
  2203. },
  2204. "asset": {
  2205. "__id__": 0
  2206. },
  2207. "fileId": "e0f6SQMLVDxICTK5HBqjRc",
  2208. "sync": false
  2209. },
  2210. {
  2211. "__type__": "cc.Node",
  2212. "_name": "gangBG",
  2213. "_objFlags": 0,
  2214. "_parent": {
  2215. "__id__": 1
  2216. },
  2217. "_children": [
  2218. {
  2219. "__id__": 58
  2220. },
  2221. {
  2222. "__id__": 61
  2223. }
  2224. ],
  2225. "_active": false,
  2226. "_components": [
  2227. {
  2228. "__id__": 67
  2229. },
  2230. {
  2231. "__id__": 68
  2232. }
  2233. ],
  2234. "_prefab": {
  2235. "__id__": 70
  2236. },
  2237. "_opacity": 255,
  2238. "_color": {
  2239. "__type__": "cc.Color",
  2240. "r": 255,
  2241. "g": 255,
  2242. "b": 255,
  2243. "a": 255
  2244. },
  2245. "_contentSize": {
  2246. "__type__": "cc.Size",
  2247. "width": 300,
  2248. "height": 120
  2249. },
  2250. "_anchorPoint": {
  2251. "__type__": "cc.Vec2",
  2252. "x": 1,
  2253. "y": 0
  2254. },
  2255. "_trs": {
  2256. "__type__": "TypedArray",
  2257. "ctor": "Float64Array",
  2258. "array": [
  2259. 0,
  2260. 0,
  2261. 0,
  2262. 0,
  2263. 0,
  2264. 0,
  2265. 1,
  2266. 1,
  2267. 1,
  2268. 1
  2269. ]
  2270. },
  2271. "_eulerAngles": {
  2272. "__type__": "cc.Vec3",
  2273. "x": 0,
  2274. "y": 0,
  2275. "z": 0
  2276. },
  2277. "_skewX": 0,
  2278. "_skewY": 0,
  2279. "_is3DNode": false,
  2280. "_groupIndex": 0,
  2281. "groupIndex": 0,
  2282. "_id": ""
  2283. },
  2284. {
  2285. "__type__": "cc.Node",
  2286. "_name": "anim",
  2287. "_objFlags": 0,
  2288. "_parent": {
  2289. "__id__": 57
  2290. },
  2291. "_children": [],
  2292. "_active": true,
  2293. "_components": [
  2294. {
  2295. "__id__": 59
  2296. }
  2297. ],
  2298. "_prefab": {
  2299. "__id__": 60
  2300. },
  2301. "_opacity": 255,
  2302. "_color": {
  2303. "__type__": "cc.Color",
  2304. "r": 255,
  2305. "g": 255,
  2306. "b": 255,
  2307. "a": 255
  2308. },
  2309. "_contentSize": {
  2310. "__type__": "cc.Size",
  2311. "width": 256,
  2312. "height": 256
  2313. },
  2314. "_anchorPoint": {
  2315. "__type__": "cc.Vec2",
  2316. "x": 0.5,
  2317. "y": 0.5
  2318. },
  2319. "_trs": {
  2320. "__type__": "TypedArray",
  2321. "ctor": "Float64Array",
  2322. "array": [
  2323. -52,
  2324. 54,
  2325. 0,
  2326. 0,
  2327. 0,
  2328. 0,
  2329. 1,
  2330. 1,
  2331. 1,
  2332. 1
  2333. ]
  2334. },
  2335. "_eulerAngles": {
  2336. "__type__": "cc.Vec3",
  2337. "x": 0,
  2338. "y": 0,
  2339. "z": 0
  2340. },
  2341. "_skewX": 0,
  2342. "_skewY": 0,
  2343. "_is3DNode": false,
  2344. "_groupIndex": 0,
  2345. "groupIndex": 0,
  2346. "_id": ""
  2347. },
  2348. {
  2349. "__type__": "dragonBones.ArmatureDisplay",
  2350. "_name": "",
  2351. "_objFlags": 0,
  2352. "node": {
  2353. "__id__": 58
  2354. },
  2355. "_enabled": true,
  2356. "_materials": [
  2357. {
  2358. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2359. }
  2360. ],
  2361. "_armatureName": "texiao",
  2362. "_animationName": "newAnimation",
  2363. "_preCacheMode": 0,
  2364. "_cacheMode": 0,
  2365. "playTimes": 0,
  2366. "premultipliedAlpha": false,
  2367. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  2368. "_accTime": 0,
  2369. "_playCount": 0,
  2370. "_frameCache": null,
  2371. "_curFrame": null,
  2372. "_playing": false,
  2373. "_armatureCache": null,
  2374. "_N$dragonAsset": {
  2375. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  2376. },
  2377. "_N$dragonAtlasAsset": {
  2378. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  2379. },
  2380. "_N$_defaultArmatureIndex": 0,
  2381. "_N$_animationIndex": 1,
  2382. "_N$_defaultCacheMode": 0,
  2383. "_N$timeScale": 1,
  2384. "_N$debugBones": false,
  2385. "_N$enableBatch": false,
  2386. "_id": ""
  2387. },
  2388. {
  2389. "__type__": "cc.PrefabInfo",
  2390. "root": {
  2391. "__id__": 1
  2392. },
  2393. "asset": {
  2394. "__id__": 0
  2395. },
  2396. "fileId": "90JPlKqORO1o6+CcHC6/o+",
  2397. "sync": false
  2398. },
  2399. {
  2400. "__type__": "cc.Node",
  2401. "_name": "gang",
  2402. "_objFlags": 0,
  2403. "_parent": {
  2404. "__id__": 57
  2405. },
  2406. "_children": [
  2407. {
  2408. "__id__": 62
  2409. }
  2410. ],
  2411. "_active": true,
  2412. "_components": [
  2413. {
  2414. "__id__": 65
  2415. }
  2416. ],
  2417. "_prefab": {
  2418. "__id__": 66
  2419. },
  2420. "_opacity": 255,
  2421. "_color": {
  2422. "__type__": "cc.Color",
  2423. "r": 255,
  2424. "g": 255,
  2425. "b": 255,
  2426. "a": 255
  2427. },
  2428. "_contentSize": {
  2429. "__type__": "cc.Size",
  2430. "width": 139,
  2431. "height": 142
  2432. },
  2433. "_anchorPoint": {
  2434. "__type__": "cc.Vec2",
  2435. "x": 0.5,
  2436. "y": 0.5
  2437. },
  2438. "_trs": {
  2439. "__type__": "TypedArray",
  2440. "ctor": "Float64Array",
  2441. "array": [
  2442. -54,
  2443. 55,
  2444. 0,
  2445. 0,
  2446. 0,
  2447. 0,
  2448. 1,
  2449. 0.8,
  2450. 0.8,
  2451. 1
  2452. ]
  2453. },
  2454. "_eulerAngles": {
  2455. "__type__": "cc.Vec3",
  2456. "x": 0,
  2457. "y": 0,
  2458. "z": 0
  2459. },
  2460. "_skewX": 0,
  2461. "_skewY": 0,
  2462. "_is3DNode": false,
  2463. "_groupIndex": 0,
  2464. "groupIndex": 0,
  2465. "_id": ""
  2466. },
  2467. {
  2468. "__type__": "cc.Node",
  2469. "_name": "New Node",
  2470. "_objFlags": 0,
  2471. "_parent": {
  2472. "__id__": 61
  2473. },
  2474. "_children": [],
  2475. "_active": true,
  2476. "_components": [
  2477. {
  2478. "__id__": 63
  2479. }
  2480. ],
  2481. "_prefab": {
  2482. "__id__": 64
  2483. },
  2484. "_opacity": 255,
  2485. "_color": {
  2486. "__type__": "cc.Color",
  2487. "r": 255,
  2488. "g": 255,
  2489. "b": 255,
  2490. "a": 255
  2491. },
  2492. "_contentSize": {
  2493. "__type__": "cc.Size",
  2494. "width": 80,
  2495. "height": 77
  2496. },
  2497. "_anchorPoint": {
  2498. "__type__": "cc.Vec2",
  2499. "x": 0.5,
  2500. "y": 0.5
  2501. },
  2502. "_trs": {
  2503. "__type__": "TypedArray",
  2504. "ctor": "Float64Array",
  2505. "array": [
  2506. 0,
  2507. 0,
  2508. 0,
  2509. 0,
  2510. 0,
  2511. 0,
  2512. 1,
  2513. 1,
  2514. 1,
  2515. 1
  2516. ]
  2517. },
  2518. "_eulerAngles": {
  2519. "__type__": "cc.Vec3",
  2520. "x": 0,
  2521. "y": 0,
  2522. "z": 0
  2523. },
  2524. "_skewX": 0,
  2525. "_skewY": 0,
  2526. "_is3DNode": false,
  2527. "_groupIndex": 0,
  2528. "groupIndex": 0,
  2529. "_id": ""
  2530. },
  2531. {
  2532. "__type__": "cc.Sprite",
  2533. "_name": "",
  2534. "_objFlags": 0,
  2535. "node": {
  2536. "__id__": 62
  2537. },
  2538. "_enabled": true,
  2539. "_materials": [
  2540. {
  2541. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2542. }
  2543. ],
  2544. "_srcBlendFactor": 770,
  2545. "_dstBlendFactor": 771,
  2546. "_spriteFrame": {
  2547. "__uuid__": "6018b25e-af86-43fd-bd77-24d21938c5d0"
  2548. },
  2549. "_type": 0,
  2550. "_sizeMode": 1,
  2551. "_fillType": 0,
  2552. "_fillCenter": {
  2553. "__type__": "cc.Vec2",
  2554. "x": 0,
  2555. "y": 0
  2556. },
  2557. "_fillStart": 0,
  2558. "_fillRange": 0,
  2559. "_isTrimmedMode": true,
  2560. "_atlas": null,
  2561. "_id": ""
  2562. },
  2563. {
  2564. "__type__": "cc.PrefabInfo",
  2565. "root": {
  2566. "__id__": 1
  2567. },
  2568. "asset": {
  2569. "__id__": 0
  2570. },
  2571. "fileId": "05uOkDfy9PFbuPnnkLbBiV",
  2572. "sync": false
  2573. },
  2574. {
  2575. "__type__": "cc.Sprite",
  2576. "_name": "",
  2577. "_objFlags": 0,
  2578. "node": {
  2579. "__id__": 61
  2580. },
  2581. "_enabled": true,
  2582. "_materials": [
  2583. {
  2584. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2585. }
  2586. ],
  2587. "_srcBlendFactor": 770,
  2588. "_dstBlendFactor": 771,
  2589. "_spriteFrame": {
  2590. "__uuid__": "8d0f3958-ba23-454c-b61b-bdf41e323df4"
  2591. },
  2592. "_type": 0,
  2593. "_sizeMode": 1,
  2594. "_fillType": 0,
  2595. "_fillCenter": {
  2596. "__type__": "cc.Vec2",
  2597. "x": 0,
  2598. "y": 0
  2599. },
  2600. "_fillStart": 0,
  2601. "_fillRange": 0,
  2602. "_isTrimmedMode": true,
  2603. "_atlas": null,
  2604. "_id": ""
  2605. },
  2606. {
  2607. "__type__": "cc.PrefabInfo",
  2608. "root": {
  2609. "__id__": 1
  2610. },
  2611. "asset": {
  2612. "__id__": 0
  2613. },
  2614. "fileId": "75308dtjzFFc4Qfv1FgEdD+",
  2615. "sync": false
  2616. },
  2617. {
  2618. "__type__": "cc.Sprite",
  2619. "_name": "",
  2620. "_objFlags": 0,
  2621. "node": {
  2622. "__id__": 57
  2623. },
  2624. "_enabled": false,
  2625. "_materials": [
  2626. {
  2627. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2628. }
  2629. ],
  2630. "_srcBlendFactor": 770,
  2631. "_dstBlendFactor": 771,
  2632. "_spriteFrame": {
  2633. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  2634. },
  2635. "_type": 1,
  2636. "_sizeMode": 0,
  2637. "_fillType": 0,
  2638. "_fillCenter": {
  2639. "__type__": "cc.Vec2",
  2640. "x": 0,
  2641. "y": 0
  2642. },
  2643. "_fillStart": 0,
  2644. "_fillRange": 0,
  2645. "_isTrimmedMode": true,
  2646. "_atlas": null,
  2647. "_id": ""
  2648. },
  2649. {
  2650. "__type__": "cc.Button",
  2651. "_name": "",
  2652. "_objFlags": 0,
  2653. "node": {
  2654. "__id__": 57
  2655. },
  2656. "_enabled": true,
  2657. "_normalMaterial": null,
  2658. "_grayMaterial": null,
  2659. "duration": 0.1,
  2660. "zoomScale": 1.1,
  2661. "clickEvents": [
  2662. {
  2663. "__id__": 69
  2664. }
  2665. ],
  2666. "_N$interactable": true,
  2667. "_N$enableAutoGrayEffect": false,
  2668. "_N$transition": 0,
  2669. "transition": 0,
  2670. "_N$normalColor": {
  2671. "__type__": "cc.Color",
  2672. "r": 255,
  2673. "g": 255,
  2674. "b": 255,
  2675. "a": 255
  2676. },
  2677. "_N$pressedColor": {
  2678. "__type__": "cc.Color",
  2679. "r": 255,
  2680. "g": 255,
  2681. "b": 255,
  2682. "a": 255
  2683. },
  2684. "pressedColor": {
  2685. "__type__": "cc.Color",
  2686. "r": 255,
  2687. "g": 255,
  2688. "b": 255,
  2689. "a": 255
  2690. },
  2691. "_N$hoverColor": {
  2692. "__type__": "cc.Color",
  2693. "r": 255,
  2694. "g": 255,
  2695. "b": 255,
  2696. "a": 255
  2697. },
  2698. "hoverColor": {
  2699. "__type__": "cc.Color",
  2700. "r": 255,
  2701. "g": 255,
  2702. "b": 255,
  2703. "a": 255
  2704. },
  2705. "_N$disabledColor": {
  2706. "__type__": "cc.Color",
  2707. "r": 255,
  2708. "g": 255,
  2709. "b": 255,
  2710. "a": 255
  2711. },
  2712. "_N$normalSprite": null,
  2713. "_N$pressedSprite": null,
  2714. "pressedSprite": null,
  2715. "_N$hoverSprite": null,
  2716. "hoverSprite": null,
  2717. "_N$disabledSprite": null,
  2718. "_N$target": {
  2719. "__id__": 57
  2720. },
  2721. "_id": ""
  2722. },
  2723. {
  2724. "__type__": "cc.ClickEvent",
  2725. "target": {
  2726. "__id__": 1
  2727. },
  2728. "component": "",
  2729. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  2730. "handler": "subClickBtn",
  2731. "customEventData": ""
  2732. },
  2733. {
  2734. "__type__": "cc.PrefabInfo",
  2735. "root": {
  2736. "__id__": 1
  2737. },
  2738. "asset": {
  2739. "__id__": 0
  2740. },
  2741. "fileId": "86I3s6fhBH4Jg6wMMuMJt0",
  2742. "sync": false
  2743. },
  2744. {
  2745. "__type__": "cc.Node",
  2746. "_name": "pengBG",
  2747. "_objFlags": 0,
  2748. "_parent": {
  2749. "__id__": 1
  2750. },
  2751. "_children": [
  2752. {
  2753. "__id__": 72
  2754. },
  2755. {
  2756. "__id__": 75
  2757. }
  2758. ],
  2759. "_active": false,
  2760. "_components": [
  2761. {
  2762. "__id__": 81
  2763. },
  2764. {
  2765. "__id__": 82
  2766. }
  2767. ],
  2768. "_prefab": {
  2769. "__id__": 84
  2770. },
  2771. "_opacity": 255,
  2772. "_color": {
  2773. "__type__": "cc.Color",
  2774. "r": 255,
  2775. "g": 255,
  2776. "b": 255,
  2777. "a": 255
  2778. },
  2779. "_contentSize": {
  2780. "__type__": "cc.Size",
  2781. "width": 300,
  2782. "height": 120
  2783. },
  2784. "_anchorPoint": {
  2785. "__type__": "cc.Vec2",
  2786. "x": 1,
  2787. "y": 0
  2788. },
  2789. "_trs": {
  2790. "__type__": "TypedArray",
  2791. "ctor": "Float64Array",
  2792. "array": [
  2793. 0,
  2794. 0,
  2795. 0,
  2796. 0,
  2797. 0,
  2798. 0,
  2799. 1,
  2800. 1,
  2801. 1,
  2802. 1
  2803. ]
  2804. },
  2805. "_eulerAngles": {
  2806. "__type__": "cc.Vec3",
  2807. "x": 0,
  2808. "y": 0,
  2809. "z": 0
  2810. },
  2811. "_skewX": 0,
  2812. "_skewY": 0,
  2813. "_is3DNode": false,
  2814. "_groupIndex": 0,
  2815. "groupIndex": 0,
  2816. "_id": ""
  2817. },
  2818. {
  2819. "__type__": "cc.Node",
  2820. "_name": "anim",
  2821. "_objFlags": 0,
  2822. "_parent": {
  2823. "__id__": 71
  2824. },
  2825. "_children": [],
  2826. "_active": true,
  2827. "_components": [
  2828. {
  2829. "__id__": 73
  2830. }
  2831. ],
  2832. "_prefab": {
  2833. "__id__": 74
  2834. },
  2835. "_opacity": 255,
  2836. "_color": {
  2837. "__type__": "cc.Color",
  2838. "r": 255,
  2839. "g": 255,
  2840. "b": 255,
  2841. "a": 255
  2842. },
  2843. "_contentSize": {
  2844. "__type__": "cc.Size",
  2845. "width": 256,
  2846. "height": 256
  2847. },
  2848. "_anchorPoint": {
  2849. "__type__": "cc.Vec2",
  2850. "x": 0.5,
  2851. "y": 0.5
  2852. },
  2853. "_trs": {
  2854. "__type__": "TypedArray",
  2855. "ctor": "Float64Array",
  2856. "array": [
  2857. -52,
  2858. 54,
  2859. 0,
  2860. 0,
  2861. 0,
  2862. 0,
  2863. 1,
  2864. 1,
  2865. 1,
  2866. 1
  2867. ]
  2868. },
  2869. "_eulerAngles": {
  2870. "__type__": "cc.Vec3",
  2871. "x": 0,
  2872. "y": 0,
  2873. "z": 0
  2874. },
  2875. "_skewX": 0,
  2876. "_skewY": 0,
  2877. "_is3DNode": false,
  2878. "_groupIndex": 0,
  2879. "groupIndex": 0,
  2880. "_id": ""
  2881. },
  2882. {
  2883. "__type__": "dragonBones.ArmatureDisplay",
  2884. "_name": "",
  2885. "_objFlags": 0,
  2886. "node": {
  2887. "__id__": 72
  2888. },
  2889. "_enabled": true,
  2890. "_materials": [
  2891. {
  2892. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2893. }
  2894. ],
  2895. "_armatureName": "texiao",
  2896. "_animationName": "newAnimation",
  2897. "_preCacheMode": 0,
  2898. "_cacheMode": 0,
  2899. "playTimes": 0,
  2900. "premultipliedAlpha": false,
  2901. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  2902. "_accTime": 0,
  2903. "_playCount": 0,
  2904. "_frameCache": null,
  2905. "_curFrame": null,
  2906. "_playing": false,
  2907. "_armatureCache": null,
  2908. "_N$dragonAsset": {
  2909. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  2910. },
  2911. "_N$dragonAtlasAsset": {
  2912. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  2913. },
  2914. "_N$_defaultArmatureIndex": 0,
  2915. "_N$_animationIndex": 1,
  2916. "_N$_defaultCacheMode": 0,
  2917. "_N$timeScale": 1,
  2918. "_N$debugBones": false,
  2919. "_N$enableBatch": false,
  2920. "_id": ""
  2921. },
  2922. {
  2923. "__type__": "cc.PrefabInfo",
  2924. "root": {
  2925. "__id__": 1
  2926. },
  2927. "asset": {
  2928. "__id__": 0
  2929. },
  2930. "fileId": "e7tXgm7VZNSIurAgNrlQ1d",
  2931. "sync": false
  2932. },
  2933. {
  2934. "__type__": "cc.Node",
  2935. "_name": "peng",
  2936. "_objFlags": 0,
  2937. "_parent": {
  2938. "__id__": 71
  2939. },
  2940. "_children": [
  2941. {
  2942. "__id__": 76
  2943. }
  2944. ],
  2945. "_active": true,
  2946. "_components": [
  2947. {
  2948. "__id__": 79
  2949. }
  2950. ],
  2951. "_prefab": {
  2952. "__id__": 80
  2953. },
  2954. "_opacity": 255,
  2955. "_color": {
  2956. "__type__": "cc.Color",
  2957. "r": 255,
  2958. "g": 255,
  2959. "b": 255,
  2960. "a": 255
  2961. },
  2962. "_contentSize": {
  2963. "__type__": "cc.Size",
  2964. "width": 139,
  2965. "height": 142
  2966. },
  2967. "_anchorPoint": {
  2968. "__type__": "cc.Vec2",
  2969. "x": 0.5,
  2970. "y": 0.5
  2971. },
  2972. "_trs": {
  2973. "__type__": "TypedArray",
  2974. "ctor": "Float64Array",
  2975. "array": [
  2976. -54,
  2977. 55,
  2978. 0,
  2979. 0,
  2980. 0,
  2981. 0,
  2982. 1,
  2983. 0.8,
  2984. 0.8,
  2985. 1
  2986. ]
  2987. },
  2988. "_eulerAngles": {
  2989. "__type__": "cc.Vec3",
  2990. "x": 0,
  2991. "y": 0,
  2992. "z": 0
  2993. },
  2994. "_skewX": 0,
  2995. "_skewY": 0,
  2996. "_is3DNode": false,
  2997. "_groupIndex": 0,
  2998. "groupIndex": 0,
  2999. "_id": ""
  3000. },
  3001. {
  3002. "__type__": "cc.Node",
  3003. "_name": "New Node",
  3004. "_objFlags": 0,
  3005. "_parent": {
  3006. "__id__": 75
  3007. },
  3008. "_children": [],
  3009. "_active": true,
  3010. "_components": [
  3011. {
  3012. "__id__": 77
  3013. }
  3014. ],
  3015. "_prefab": {
  3016. "__id__": 78
  3017. },
  3018. "_opacity": 255,
  3019. "_color": {
  3020. "__type__": "cc.Color",
  3021. "r": 255,
  3022. "g": 255,
  3023. "b": 255,
  3024. "a": 255
  3025. },
  3026. "_contentSize": {
  3027. "__type__": "cc.Size",
  3028. "width": 81,
  3029. "height": 75
  3030. },
  3031. "_anchorPoint": {
  3032. "__type__": "cc.Vec2",
  3033. "x": 0.5,
  3034. "y": 0.5
  3035. },
  3036. "_trs": {
  3037. "__type__": "TypedArray",
  3038. "ctor": "Float64Array",
  3039. "array": [
  3040. 0,
  3041. 0,
  3042. 0,
  3043. 0,
  3044. 0,
  3045. 0,
  3046. 1,
  3047. 1,
  3048. 1,
  3049. 1
  3050. ]
  3051. },
  3052. "_eulerAngles": {
  3053. "__type__": "cc.Vec3",
  3054. "x": 0,
  3055. "y": 0,
  3056. "z": 0
  3057. },
  3058. "_skewX": 0,
  3059. "_skewY": 0,
  3060. "_is3DNode": false,
  3061. "_groupIndex": 0,
  3062. "groupIndex": 0,
  3063. "_id": ""
  3064. },
  3065. {
  3066. "__type__": "cc.Sprite",
  3067. "_name": "",
  3068. "_objFlags": 0,
  3069. "node": {
  3070. "__id__": 76
  3071. },
  3072. "_enabled": true,
  3073. "_materials": [
  3074. {
  3075. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3076. }
  3077. ],
  3078. "_srcBlendFactor": 770,
  3079. "_dstBlendFactor": 771,
  3080. "_spriteFrame": {
  3081. "__uuid__": "6327c742-c7b1-46b9-8f0e-69aa5ccb5f21"
  3082. },
  3083. "_type": 0,
  3084. "_sizeMode": 1,
  3085. "_fillType": 0,
  3086. "_fillCenter": {
  3087. "__type__": "cc.Vec2",
  3088. "x": 0,
  3089. "y": 0
  3090. },
  3091. "_fillStart": 0,
  3092. "_fillRange": 0,
  3093. "_isTrimmedMode": true,
  3094. "_atlas": null,
  3095. "_id": ""
  3096. },
  3097. {
  3098. "__type__": "cc.PrefabInfo",
  3099. "root": {
  3100. "__id__": 1
  3101. },
  3102. "asset": {
  3103. "__id__": 0
  3104. },
  3105. "fileId": "37X0wE3f1Ea7fYKk9isd8D",
  3106. "sync": false
  3107. },
  3108. {
  3109. "__type__": "cc.Sprite",
  3110. "_name": "",
  3111. "_objFlags": 0,
  3112. "node": {
  3113. "__id__": 75
  3114. },
  3115. "_enabled": true,
  3116. "_materials": [
  3117. {
  3118. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3119. }
  3120. ],
  3121. "_srcBlendFactor": 770,
  3122. "_dstBlendFactor": 771,
  3123. "_spriteFrame": {
  3124. "__uuid__": "8d0f3958-ba23-454c-b61b-bdf41e323df4"
  3125. },
  3126. "_type": 0,
  3127. "_sizeMode": 1,
  3128. "_fillType": 0,
  3129. "_fillCenter": {
  3130. "__type__": "cc.Vec2",
  3131. "x": 0,
  3132. "y": 0
  3133. },
  3134. "_fillStart": 0,
  3135. "_fillRange": 0,
  3136. "_isTrimmedMode": true,
  3137. "_atlas": null,
  3138. "_id": ""
  3139. },
  3140. {
  3141. "__type__": "cc.PrefabInfo",
  3142. "root": {
  3143. "__id__": 1
  3144. },
  3145. "asset": {
  3146. "__id__": 0
  3147. },
  3148. "fileId": "a9rMFRzGND+4YUAj7DZjmm",
  3149. "sync": false
  3150. },
  3151. {
  3152. "__type__": "cc.Sprite",
  3153. "_name": "",
  3154. "_objFlags": 0,
  3155. "node": {
  3156. "__id__": 71
  3157. },
  3158. "_enabled": false,
  3159. "_materials": [
  3160. {
  3161. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3162. }
  3163. ],
  3164. "_srcBlendFactor": 770,
  3165. "_dstBlendFactor": 771,
  3166. "_spriteFrame": {
  3167. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  3168. },
  3169. "_type": 1,
  3170. "_sizeMode": 0,
  3171. "_fillType": 0,
  3172. "_fillCenter": {
  3173. "__type__": "cc.Vec2",
  3174. "x": 0,
  3175. "y": 0
  3176. },
  3177. "_fillStart": 0,
  3178. "_fillRange": 0,
  3179. "_isTrimmedMode": true,
  3180. "_atlas": null,
  3181. "_id": ""
  3182. },
  3183. {
  3184. "__type__": "cc.Button",
  3185. "_name": "",
  3186. "_objFlags": 0,
  3187. "node": {
  3188. "__id__": 71
  3189. },
  3190. "_enabled": true,
  3191. "_normalMaterial": null,
  3192. "_grayMaterial": null,
  3193. "duration": 0.1,
  3194. "zoomScale": 1.1,
  3195. "clickEvents": [
  3196. {
  3197. "__id__": 83
  3198. }
  3199. ],
  3200. "_N$interactable": true,
  3201. "_N$enableAutoGrayEffect": false,
  3202. "_N$transition": 0,
  3203. "transition": 0,
  3204. "_N$normalColor": {
  3205. "__type__": "cc.Color",
  3206. "r": 255,
  3207. "g": 255,
  3208. "b": 255,
  3209. "a": 255
  3210. },
  3211. "_N$pressedColor": {
  3212. "__type__": "cc.Color",
  3213. "r": 255,
  3214. "g": 255,
  3215. "b": 255,
  3216. "a": 255
  3217. },
  3218. "pressedColor": {
  3219. "__type__": "cc.Color",
  3220. "r": 255,
  3221. "g": 255,
  3222. "b": 255,
  3223. "a": 255
  3224. },
  3225. "_N$hoverColor": {
  3226. "__type__": "cc.Color",
  3227. "r": 255,
  3228. "g": 255,
  3229. "b": 255,
  3230. "a": 255
  3231. },
  3232. "hoverColor": {
  3233. "__type__": "cc.Color",
  3234. "r": 255,
  3235. "g": 255,
  3236. "b": 255,
  3237. "a": 255
  3238. },
  3239. "_N$disabledColor": {
  3240. "__type__": "cc.Color",
  3241. "r": 255,
  3242. "g": 255,
  3243. "b": 255,
  3244. "a": 255
  3245. },
  3246. "_N$normalSprite": null,
  3247. "_N$pressedSprite": null,
  3248. "pressedSprite": null,
  3249. "_N$hoverSprite": null,
  3250. "hoverSprite": null,
  3251. "_N$disabledSprite": null,
  3252. "_N$target": {
  3253. "__id__": 71
  3254. },
  3255. "_id": ""
  3256. },
  3257. {
  3258. "__type__": "cc.ClickEvent",
  3259. "target": {
  3260. "__id__": 1
  3261. },
  3262. "component": "",
  3263. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  3264. "handler": "subClickBtn",
  3265. "customEventData": ""
  3266. },
  3267. {
  3268. "__type__": "cc.PrefabInfo",
  3269. "root": {
  3270. "__id__": 1
  3271. },
  3272. "asset": {
  3273. "__id__": 0
  3274. },
  3275. "fileId": "70/R/YAflN0qCvmYFC5EkO",
  3276. "sync": false
  3277. },
  3278. {
  3279. "__type__": "cc.Node",
  3280. "_name": "haidiBG",
  3281. "_objFlags": 0,
  3282. "_parent": {
  3283. "__id__": 1
  3284. },
  3285. "_children": [
  3286. {
  3287. "__id__": 86
  3288. },
  3289. {
  3290. "__id__": 89
  3291. }
  3292. ],
  3293. "_active": false,
  3294. "_components": [
  3295. {
  3296. "__id__": 92
  3297. },
  3298. {
  3299. "__id__": 93
  3300. }
  3301. ],
  3302. "_prefab": {
  3303. "__id__": 95
  3304. },
  3305. "_opacity": 255,
  3306. "_color": {
  3307. "__type__": "cc.Color",
  3308. "r": 255,
  3309. "g": 255,
  3310. "b": 255,
  3311. "a": 255
  3312. },
  3313. "_contentSize": {
  3314. "__type__": "cc.Size",
  3315. "width": 300,
  3316. "height": 120
  3317. },
  3318. "_anchorPoint": {
  3319. "__type__": "cc.Vec2",
  3320. "x": 1,
  3321. "y": 0
  3322. },
  3323. "_trs": {
  3324. "__type__": "TypedArray",
  3325. "ctor": "Float64Array",
  3326. "array": [
  3327. 0,
  3328. 0,
  3329. 0,
  3330. 0,
  3331. 0,
  3332. 0,
  3333. 1,
  3334. 1,
  3335. 1,
  3336. 1
  3337. ]
  3338. },
  3339. "_eulerAngles": {
  3340. "__type__": "cc.Vec3",
  3341. "x": 0,
  3342. "y": 0,
  3343. "z": 0
  3344. },
  3345. "_skewX": 0,
  3346. "_skewY": 0,
  3347. "_is3DNode": false,
  3348. "_groupIndex": 0,
  3349. "groupIndex": 0,
  3350. "_id": ""
  3351. },
  3352. {
  3353. "__type__": "cc.Node",
  3354. "_name": "anim",
  3355. "_objFlags": 0,
  3356. "_parent": {
  3357. "__id__": 85
  3358. },
  3359. "_children": [],
  3360. "_active": true,
  3361. "_components": [
  3362. {
  3363. "__id__": 87
  3364. }
  3365. ],
  3366. "_prefab": {
  3367. "__id__": 88
  3368. },
  3369. "_opacity": 255,
  3370. "_color": {
  3371. "__type__": "cc.Color",
  3372. "r": 255,
  3373. "g": 255,
  3374. "b": 255,
  3375. "a": 255
  3376. },
  3377. "_contentSize": {
  3378. "__type__": "cc.Size",
  3379. "width": 256,
  3380. "height": 256
  3381. },
  3382. "_anchorPoint": {
  3383. "__type__": "cc.Vec2",
  3384. "x": 0.5,
  3385. "y": 0.5
  3386. },
  3387. "_trs": {
  3388. "__type__": "TypedArray",
  3389. "ctor": "Float64Array",
  3390. "array": [
  3391. -162,
  3392. 54,
  3393. 0,
  3394. 0,
  3395. 0,
  3396. 0,
  3397. 1,
  3398. 1,
  3399. 1,
  3400. 1
  3401. ]
  3402. },
  3403. "_eulerAngles": {
  3404. "__type__": "cc.Vec3",
  3405. "x": 0,
  3406. "y": 0,
  3407. "z": 0
  3408. },
  3409. "_skewX": 0,
  3410. "_skewY": 0,
  3411. "_is3DNode": false,
  3412. "_groupIndex": 0,
  3413. "groupIndex": 0,
  3414. "_id": ""
  3415. },
  3416. {
  3417. "__type__": "dragonBones.ArmatureDisplay",
  3418. "_name": "",
  3419. "_objFlags": 0,
  3420. "node": {
  3421. "__id__": 86
  3422. },
  3423. "_enabled": true,
  3424. "_materials": [
  3425. {
  3426. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3427. }
  3428. ],
  3429. "_armatureName": "texiao",
  3430. "_animationName": "newAnimation",
  3431. "_preCacheMode": 0,
  3432. "_cacheMode": 0,
  3433. "playTimes": 0,
  3434. "premultipliedAlpha": false,
  3435. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  3436. "_accTime": 0,
  3437. "_playCount": 0,
  3438. "_frameCache": null,
  3439. "_curFrame": null,
  3440. "_playing": false,
  3441. "_armatureCache": null,
  3442. "_N$dragonAsset": {
  3443. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  3444. },
  3445. "_N$dragonAtlasAsset": {
  3446. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  3447. },
  3448. "_N$_defaultArmatureIndex": 0,
  3449. "_N$_animationIndex": 1,
  3450. "_N$_defaultCacheMode": 0,
  3451. "_N$timeScale": 1,
  3452. "_N$debugBones": false,
  3453. "_N$enableBatch": false,
  3454. "_id": ""
  3455. },
  3456. {
  3457. "__type__": "cc.PrefabInfo",
  3458. "root": {
  3459. "__id__": 1
  3460. },
  3461. "asset": {
  3462. "__id__": 0
  3463. },
  3464. "fileId": "dcrHvxodZGeZjLemALKoD4",
  3465. "sync": false
  3466. },
  3467. {
  3468. "__type__": "cc.Node",
  3469. "_name": "haidi",
  3470. "_objFlags": 0,
  3471. "_parent": {
  3472. "__id__": 85
  3473. },
  3474. "_children": [],
  3475. "_active": true,
  3476. "_components": [
  3477. {
  3478. "__id__": 90
  3479. }
  3480. ],
  3481. "_prefab": {
  3482. "__id__": 91
  3483. },
  3484. "_opacity": 255,
  3485. "_color": {
  3486. "__type__": "cc.Color",
  3487. "r": 255,
  3488. "g": 255,
  3489. "b": 255,
  3490. "a": 255
  3491. },
  3492. "_contentSize": {
  3493. "__type__": "cc.Size",
  3494. "width": 112,
  3495. "height": 119
  3496. },
  3497. "_anchorPoint": {
  3498. "__type__": "cc.Vec2",
  3499. "x": 0.5,
  3500. "y": 0.5
  3501. },
  3502. "_trs": {
  3503. "__type__": "TypedArray",
  3504. "ctor": "Float64Array",
  3505. "array": [
  3506. -163,
  3507. 55,
  3508. 0,
  3509. 0,
  3510. 0,
  3511. 0,
  3512. 1,
  3513. 1,
  3514. 1,
  3515. 1
  3516. ]
  3517. },
  3518. "_eulerAngles": {
  3519. "__type__": "cc.Vec3",
  3520. "x": 0,
  3521. "y": 0,
  3522. "z": 0
  3523. },
  3524. "_skewX": 0,
  3525. "_skewY": 0,
  3526. "_is3DNode": false,
  3527. "_groupIndex": 0,
  3528. "groupIndex": 0,
  3529. "_id": ""
  3530. },
  3531. {
  3532. "__type__": "cc.Sprite",
  3533. "_name": "",
  3534. "_objFlags": 0,
  3535. "node": {
  3536. "__id__": 89
  3537. },
  3538. "_enabled": true,
  3539. "_materials": [
  3540. {
  3541. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3542. }
  3543. ],
  3544. "_srcBlendFactor": 770,
  3545. "_dstBlendFactor": 771,
  3546. "_spriteFrame": {
  3547. "__uuid__": "3232a2a0-9635-40d8-b562-a1127aeb1c03"
  3548. },
  3549. "_type": 0,
  3550. "_sizeMode": 1,
  3551. "_fillType": 0,
  3552. "_fillCenter": {
  3553. "__type__": "cc.Vec2",
  3554. "x": 0,
  3555. "y": 0
  3556. },
  3557. "_fillStart": 0,
  3558. "_fillRange": 0,
  3559. "_isTrimmedMode": true,
  3560. "_atlas": {
  3561. "__uuid__": "f472c153-0747-4a02-9a40-bff84ac4454c"
  3562. },
  3563. "_id": ""
  3564. },
  3565. {
  3566. "__type__": "cc.PrefabInfo",
  3567. "root": {
  3568. "__id__": 1
  3569. },
  3570. "asset": {
  3571. "__id__": 0
  3572. },
  3573. "fileId": "a9RDFGuYNKXr7b+tDFoQ+M",
  3574. "sync": false
  3575. },
  3576. {
  3577. "__type__": "cc.Sprite",
  3578. "_name": "",
  3579. "_objFlags": 0,
  3580. "node": {
  3581. "__id__": 85
  3582. },
  3583. "_enabled": false,
  3584. "_materials": [
  3585. {
  3586. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3587. }
  3588. ],
  3589. "_srcBlendFactor": 770,
  3590. "_dstBlendFactor": 771,
  3591. "_spriteFrame": {
  3592. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  3593. },
  3594. "_type": 1,
  3595. "_sizeMode": 0,
  3596. "_fillType": 0,
  3597. "_fillCenter": {
  3598. "__type__": "cc.Vec2",
  3599. "x": 0,
  3600. "y": 0
  3601. },
  3602. "_fillStart": 0,
  3603. "_fillRange": 0,
  3604. "_isTrimmedMode": true,
  3605. "_atlas": null,
  3606. "_id": ""
  3607. },
  3608. {
  3609. "__type__": "cc.Button",
  3610. "_name": "",
  3611. "_objFlags": 0,
  3612. "node": {
  3613. "__id__": 85
  3614. },
  3615. "_enabled": true,
  3616. "_normalMaterial": null,
  3617. "_grayMaterial": null,
  3618. "duration": 0.1,
  3619. "zoomScale": 1.1,
  3620. "clickEvents": [
  3621. {
  3622. "__id__": 94
  3623. }
  3624. ],
  3625. "_N$interactable": true,
  3626. "_N$enableAutoGrayEffect": false,
  3627. "_N$transition": 0,
  3628. "transition": 0,
  3629. "_N$normalColor": {
  3630. "__type__": "cc.Color",
  3631. "r": 255,
  3632. "g": 255,
  3633. "b": 255,
  3634. "a": 255
  3635. },
  3636. "_N$pressedColor": {
  3637. "__type__": "cc.Color",
  3638. "r": 255,
  3639. "g": 255,
  3640. "b": 255,
  3641. "a": 255
  3642. },
  3643. "pressedColor": {
  3644. "__type__": "cc.Color",
  3645. "r": 255,
  3646. "g": 255,
  3647. "b": 255,
  3648. "a": 255
  3649. },
  3650. "_N$hoverColor": {
  3651. "__type__": "cc.Color",
  3652. "r": 255,
  3653. "g": 255,
  3654. "b": 255,
  3655. "a": 255
  3656. },
  3657. "hoverColor": {
  3658. "__type__": "cc.Color",
  3659. "r": 255,
  3660. "g": 255,
  3661. "b": 255,
  3662. "a": 255
  3663. },
  3664. "_N$disabledColor": {
  3665. "__type__": "cc.Color",
  3666. "r": 255,
  3667. "g": 255,
  3668. "b": 255,
  3669. "a": 255
  3670. },
  3671. "_N$normalSprite": null,
  3672. "_N$pressedSprite": null,
  3673. "pressedSprite": null,
  3674. "_N$hoverSprite": null,
  3675. "hoverSprite": null,
  3676. "_N$disabledSprite": null,
  3677. "_N$target": {
  3678. "__id__": 85
  3679. },
  3680. "_id": ""
  3681. },
  3682. {
  3683. "__type__": "cc.ClickEvent",
  3684. "target": {
  3685. "__id__": 1
  3686. },
  3687. "component": "",
  3688. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  3689. "handler": "subClickBtn",
  3690. "customEventData": ""
  3691. },
  3692. {
  3693. "__type__": "cc.PrefabInfo",
  3694. "root": {
  3695. "__id__": 1
  3696. },
  3697. "asset": {
  3698. "__id__": 0
  3699. },
  3700. "fileId": "barWYY6s5Je4PmDN8lotC9",
  3701. "sync": false
  3702. },
  3703. {
  3704. "__type__": "cc.Node",
  3705. "_name": "gangBuBG",
  3706. "_objFlags": 0,
  3707. "_parent": {
  3708. "__id__": 1
  3709. },
  3710. "_children": [
  3711. {
  3712. "__id__": 97
  3713. },
  3714. {
  3715. "__id__": 100
  3716. }
  3717. ],
  3718. "_active": false,
  3719. "_components": [
  3720. {
  3721. "__id__": 106
  3722. },
  3723. {
  3724. "__id__": 107
  3725. }
  3726. ],
  3727. "_prefab": {
  3728. "__id__": 109
  3729. },
  3730. "_opacity": 255,
  3731. "_color": {
  3732. "__type__": "cc.Color",
  3733. "r": 255,
  3734. "g": 255,
  3735. "b": 255,
  3736. "a": 255
  3737. },
  3738. "_contentSize": {
  3739. "__type__": "cc.Size",
  3740. "width": 300,
  3741. "height": 120
  3742. },
  3743. "_anchorPoint": {
  3744. "__type__": "cc.Vec2",
  3745. "x": 1,
  3746. "y": 0
  3747. },
  3748. "_trs": {
  3749. "__type__": "TypedArray",
  3750. "ctor": "Float64Array",
  3751. "array": [
  3752. 0,
  3753. 0,
  3754. 0,
  3755. 0,
  3756. 0,
  3757. 0,
  3758. 1,
  3759. 1,
  3760. 1,
  3761. 1
  3762. ]
  3763. },
  3764. "_eulerAngles": {
  3765. "__type__": "cc.Vec3",
  3766. "x": 0,
  3767. "y": 0,
  3768. "z": 0
  3769. },
  3770. "_skewX": 0,
  3771. "_skewY": 0,
  3772. "_is3DNode": false,
  3773. "_groupIndex": 0,
  3774. "groupIndex": 0,
  3775. "_id": ""
  3776. },
  3777. {
  3778. "__type__": "cc.Node",
  3779. "_name": "anim",
  3780. "_objFlags": 0,
  3781. "_parent": {
  3782. "__id__": 96
  3783. },
  3784. "_children": [],
  3785. "_active": true,
  3786. "_components": [
  3787. {
  3788. "__id__": 98
  3789. }
  3790. ],
  3791. "_prefab": {
  3792. "__id__": 99
  3793. },
  3794. "_opacity": 255,
  3795. "_color": {
  3796. "__type__": "cc.Color",
  3797. "r": 255,
  3798. "g": 255,
  3799. "b": 255,
  3800. "a": 255
  3801. },
  3802. "_contentSize": {
  3803. "__type__": "cc.Size",
  3804. "width": 256,
  3805. "height": 256
  3806. },
  3807. "_anchorPoint": {
  3808. "__type__": "cc.Vec2",
  3809. "x": 0.5,
  3810. "y": 0.5
  3811. },
  3812. "_trs": {
  3813. "__type__": "TypedArray",
  3814. "ctor": "Float64Array",
  3815. "array": [
  3816. -52,
  3817. 54,
  3818. 0,
  3819. 0,
  3820. 0,
  3821. 0,
  3822. 1,
  3823. 1,
  3824. 1,
  3825. 1
  3826. ]
  3827. },
  3828. "_eulerAngles": {
  3829. "__type__": "cc.Vec3",
  3830. "x": 0,
  3831. "y": 0,
  3832. "z": 0
  3833. },
  3834. "_skewX": 0,
  3835. "_skewY": 0,
  3836. "_is3DNode": false,
  3837. "_groupIndex": 0,
  3838. "groupIndex": 0,
  3839. "_id": ""
  3840. },
  3841. {
  3842. "__type__": "dragonBones.ArmatureDisplay",
  3843. "_name": "",
  3844. "_objFlags": 0,
  3845. "node": {
  3846. "__id__": 97
  3847. },
  3848. "_enabled": true,
  3849. "_materials": [
  3850. {
  3851. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3852. }
  3853. ],
  3854. "_armatureName": "texiao",
  3855. "_animationName": "newAnimation",
  3856. "_preCacheMode": 0,
  3857. "_cacheMode": 0,
  3858. "playTimes": 0,
  3859. "premultipliedAlpha": false,
  3860. "_armatureKey": "03329d01-4f63-46e9-a7d3-82517583ada3#c6990fa9-d273-4662-b96f-0996d51d9bda",
  3861. "_accTime": 0,
  3862. "_playCount": 0,
  3863. "_frameCache": null,
  3864. "_curFrame": null,
  3865. "_playing": false,
  3866. "_armatureCache": null,
  3867. "_N$dragonAsset": {
  3868. "__uuid__": "03329d01-4f63-46e9-a7d3-82517583ada3"
  3869. },
  3870. "_N$dragonAtlasAsset": {
  3871. "__uuid__": "c6990fa9-d273-4662-b96f-0996d51d9bda"
  3872. },
  3873. "_N$_defaultArmatureIndex": 0,
  3874. "_N$_animationIndex": 1,
  3875. "_N$_defaultCacheMode": 0,
  3876. "_N$timeScale": 1,
  3877. "_N$debugBones": false,
  3878. "_N$enableBatch": false,
  3879. "_id": ""
  3880. },
  3881. {
  3882. "__type__": "cc.PrefabInfo",
  3883. "root": {
  3884. "__id__": 1
  3885. },
  3886. "asset": {
  3887. "__id__": 0
  3888. },
  3889. "fileId": "6eZpWEFLZPQ4MUfdyeWHkf",
  3890. "sync": false
  3891. },
  3892. {
  3893. "__type__": "cc.Node",
  3894. "_name": "gang",
  3895. "_objFlags": 0,
  3896. "_parent": {
  3897. "__id__": 96
  3898. },
  3899. "_children": [
  3900. {
  3901. "__id__": 101
  3902. }
  3903. ],
  3904. "_active": true,
  3905. "_components": [
  3906. {
  3907. "__id__": 104
  3908. }
  3909. ],
  3910. "_prefab": {
  3911. "__id__": 105
  3912. },
  3913. "_opacity": 255,
  3914. "_color": {
  3915. "__type__": "cc.Color",
  3916. "r": 255,
  3917. "g": 255,
  3918. "b": 255,
  3919. "a": 255
  3920. },
  3921. "_contentSize": {
  3922. "__type__": "cc.Size",
  3923. "width": 139,
  3924. "height": 142
  3925. },
  3926. "_anchorPoint": {
  3927. "__type__": "cc.Vec2",
  3928. "x": 0.5,
  3929. "y": 0.5
  3930. },
  3931. "_trs": {
  3932. "__type__": "TypedArray",
  3933. "ctor": "Float64Array",
  3934. "array": [
  3935. -54,
  3936. 55,
  3937. 0,
  3938. 0,
  3939. 0,
  3940. 0,
  3941. 1,
  3942. 0.8,
  3943. 0.8,
  3944. 1
  3945. ]
  3946. },
  3947. "_eulerAngles": {
  3948. "__type__": "cc.Vec3",
  3949. "x": 0,
  3950. "y": 0,
  3951. "z": 0
  3952. },
  3953. "_skewX": 0,
  3954. "_skewY": 0,
  3955. "_is3DNode": false,
  3956. "_groupIndex": 0,
  3957. "groupIndex": 0,
  3958. "_id": ""
  3959. },
  3960. {
  3961. "__type__": "cc.Node",
  3962. "_name": "New Node",
  3963. "_objFlags": 0,
  3964. "_parent": {
  3965. "__id__": 100
  3966. },
  3967. "_children": [],
  3968. "_active": true,
  3969. "_components": [
  3970. {
  3971. "__id__": 102
  3972. }
  3973. ],
  3974. "_prefab": {
  3975. "__id__": 103
  3976. },
  3977. "_opacity": 255,
  3978. "_color": {
  3979. "__type__": "cc.Color",
  3980. "r": 255,
  3981. "g": 255,
  3982. "b": 255,
  3983. "a": 255
  3984. },
  3985. "_contentSize": {
  3986. "__type__": "cc.Size",
  3987. "width": 80,
  3988. "height": 77
  3989. },
  3990. "_anchorPoint": {
  3991. "__type__": "cc.Vec2",
  3992. "x": 0.5,
  3993. "y": 0.5
  3994. },
  3995. "_trs": {
  3996. "__type__": "TypedArray",
  3997. "ctor": "Float64Array",
  3998. "array": [
  3999. 0,
  4000. 0,
  4001. 0,
  4002. 0,
  4003. 0,
  4004. 0,
  4005. 1,
  4006. 1,
  4007. 1,
  4008. 1
  4009. ]
  4010. },
  4011. "_eulerAngles": {
  4012. "__type__": "cc.Vec3",
  4013. "x": 0,
  4014. "y": 0,
  4015. "z": 0
  4016. },
  4017. "_skewX": 0,
  4018. "_skewY": 0,
  4019. "_is3DNode": false,
  4020. "_groupIndex": 0,
  4021. "groupIndex": 0,
  4022. "_id": ""
  4023. },
  4024. {
  4025. "__type__": "cc.Sprite",
  4026. "_name": "",
  4027. "_objFlags": 0,
  4028. "node": {
  4029. "__id__": 101
  4030. },
  4031. "_enabled": true,
  4032. "_materials": [
  4033. {
  4034. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4035. }
  4036. ],
  4037. "_srcBlendFactor": 770,
  4038. "_dstBlendFactor": 771,
  4039. "_spriteFrame": {
  4040. "__uuid__": "6018b25e-af86-43fd-bd77-24d21938c5d0"
  4041. },
  4042. "_type": 0,
  4043. "_sizeMode": 1,
  4044. "_fillType": 0,
  4045. "_fillCenter": {
  4046. "__type__": "cc.Vec2",
  4047. "x": 0,
  4048. "y": 0
  4049. },
  4050. "_fillStart": 0,
  4051. "_fillRange": 0,
  4052. "_isTrimmedMode": true,
  4053. "_atlas": null,
  4054. "_id": ""
  4055. },
  4056. {
  4057. "__type__": "cc.PrefabInfo",
  4058. "root": {
  4059. "__id__": 1
  4060. },
  4061. "asset": {
  4062. "__id__": 0
  4063. },
  4064. "fileId": "1cvQ9/Iv1GLKibCGox6GKr",
  4065. "sync": false
  4066. },
  4067. {
  4068. "__type__": "cc.Sprite",
  4069. "_name": "",
  4070. "_objFlags": 0,
  4071. "node": {
  4072. "__id__": 100
  4073. },
  4074. "_enabled": true,
  4075. "_materials": [
  4076. {
  4077. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4078. }
  4079. ],
  4080. "_srcBlendFactor": 770,
  4081. "_dstBlendFactor": 771,
  4082. "_spriteFrame": {
  4083. "__uuid__": "8d0f3958-ba23-454c-b61b-bdf41e323df4"
  4084. },
  4085. "_type": 0,
  4086. "_sizeMode": 1,
  4087. "_fillType": 0,
  4088. "_fillCenter": {
  4089. "__type__": "cc.Vec2",
  4090. "x": 0,
  4091. "y": 0
  4092. },
  4093. "_fillStart": 0,
  4094. "_fillRange": 0,
  4095. "_isTrimmedMode": true,
  4096. "_atlas": null,
  4097. "_id": ""
  4098. },
  4099. {
  4100. "__type__": "cc.PrefabInfo",
  4101. "root": {
  4102. "__id__": 1
  4103. },
  4104. "asset": {
  4105. "__id__": 0
  4106. },
  4107. "fileId": "04Ru5SOHBM/bEUxWNPuD6R",
  4108. "sync": false
  4109. },
  4110. {
  4111. "__type__": "cc.Sprite",
  4112. "_name": "",
  4113. "_objFlags": 0,
  4114. "node": {
  4115. "__id__": 96
  4116. },
  4117. "_enabled": false,
  4118. "_materials": [
  4119. {
  4120. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4121. }
  4122. ],
  4123. "_srcBlendFactor": 770,
  4124. "_dstBlendFactor": 771,
  4125. "_spriteFrame": {
  4126. "__uuid__": "a38936e0-cf95-47e5-b69e-c7a13fff2acf"
  4127. },
  4128. "_type": 1,
  4129. "_sizeMode": 0,
  4130. "_fillType": 0,
  4131. "_fillCenter": {
  4132. "__type__": "cc.Vec2",
  4133. "x": 0,
  4134. "y": 0
  4135. },
  4136. "_fillStart": 0,
  4137. "_fillRange": 0,
  4138. "_isTrimmedMode": true,
  4139. "_atlas": null,
  4140. "_id": ""
  4141. },
  4142. {
  4143. "__type__": "cc.Button",
  4144. "_name": "",
  4145. "_objFlags": 0,
  4146. "node": {
  4147. "__id__": 96
  4148. },
  4149. "_enabled": true,
  4150. "_normalMaterial": null,
  4151. "_grayMaterial": null,
  4152. "duration": 0.1,
  4153. "zoomScale": 1.1,
  4154. "clickEvents": [
  4155. {
  4156. "__id__": 108
  4157. }
  4158. ],
  4159. "_N$interactable": true,
  4160. "_N$enableAutoGrayEffect": false,
  4161. "_N$transition": 0,
  4162. "transition": 0,
  4163. "_N$normalColor": {
  4164. "__type__": "cc.Color",
  4165. "r": 255,
  4166. "g": 255,
  4167. "b": 255,
  4168. "a": 255
  4169. },
  4170. "_N$pressedColor": {
  4171. "__type__": "cc.Color",
  4172. "r": 255,
  4173. "g": 255,
  4174. "b": 255,
  4175. "a": 255
  4176. },
  4177. "pressedColor": {
  4178. "__type__": "cc.Color",
  4179. "r": 255,
  4180. "g": 255,
  4181. "b": 255,
  4182. "a": 255
  4183. },
  4184. "_N$hoverColor": {
  4185. "__type__": "cc.Color",
  4186. "r": 255,
  4187. "g": 255,
  4188. "b": 255,
  4189. "a": 255
  4190. },
  4191. "hoverColor": {
  4192. "__type__": "cc.Color",
  4193. "r": 255,
  4194. "g": 255,
  4195. "b": 255,
  4196. "a": 255
  4197. },
  4198. "_N$disabledColor": {
  4199. "__type__": "cc.Color",
  4200. "r": 255,
  4201. "g": 255,
  4202. "b": 255,
  4203. "a": 255
  4204. },
  4205. "_N$normalSprite": null,
  4206. "_N$pressedSprite": null,
  4207. "pressedSprite": null,
  4208. "_N$hoverSprite": null,
  4209. "hoverSprite": null,
  4210. "_N$disabledSprite": null,
  4211. "_N$target": {
  4212. "__id__": 96
  4213. },
  4214. "_id": ""
  4215. },
  4216. {
  4217. "__type__": "cc.ClickEvent",
  4218. "target": {
  4219. "__id__": 1
  4220. },
  4221. "component": "",
  4222. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  4223. "handler": "subClickBtn",
  4224. "customEventData": ""
  4225. },
  4226. {
  4227. "__type__": "cc.PrefabInfo",
  4228. "root": {
  4229. "__id__": 1
  4230. },
  4231. "asset": {
  4232. "__id__": 0
  4233. },
  4234. "fileId": "a6TvfY09xLMqznHs4Tav1P",
  4235. "sync": false
  4236. },
  4237. {
  4238. "__type__": "cc.Node",
  4239. "_name": "guoBG",
  4240. "_objFlags": 0,
  4241. "_parent": {
  4242. "__id__": 1
  4243. },
  4244. "_children": [
  4245. {
  4246. "__id__": 111
  4247. }
  4248. ],
  4249. "_active": false,
  4250. "_components": [],
  4251. "_prefab": {
  4252. "__id__": 119
  4253. },
  4254. "_opacity": 255,
  4255. "_color": {
  4256. "__type__": "cc.Color",
  4257. "r": 255,
  4258. "g": 255,
  4259. "b": 255,
  4260. "a": 255
  4261. },
  4262. "_contentSize": {
  4263. "__type__": "cc.Size",
  4264. "width": 100,
  4265. "height": 120
  4266. },
  4267. "_anchorPoint": {
  4268. "__type__": "cc.Vec2",
  4269. "x": 1,
  4270. "y": 0
  4271. },
  4272. "_trs": {
  4273. "__type__": "TypedArray",
  4274. "ctor": "Float64Array",
  4275. "array": [
  4276. 0,
  4277. 0,
  4278. 0,
  4279. 0,
  4280. 0,
  4281. 0,
  4282. 1,
  4283. 1,
  4284. 1,
  4285. 1
  4286. ]
  4287. },
  4288. "_eulerAngles": {
  4289. "__type__": "cc.Vec3",
  4290. "x": 0,
  4291. "y": 0,
  4292. "z": 0
  4293. },
  4294. "_skewX": 0,
  4295. "_skewY": 0,
  4296. "_is3DNode": false,
  4297. "_groupIndex": 0,
  4298. "groupIndex": 0,
  4299. "_id": ""
  4300. },
  4301. {
  4302. "__type__": "cc.Node",
  4303. "_name": "guo",
  4304. "_objFlags": 0,
  4305. "_parent": {
  4306. "__id__": 110
  4307. },
  4308. "_children": [
  4309. {
  4310. "__id__": 112
  4311. }
  4312. ],
  4313. "_active": true,
  4314. "_components": [
  4315. {
  4316. "__id__": 115
  4317. },
  4318. {
  4319. "__id__": 116
  4320. }
  4321. ],
  4322. "_prefab": {
  4323. "__id__": 118
  4324. },
  4325. "_opacity": 255,
  4326. "_color": {
  4327. "__type__": "cc.Color",
  4328. "r": 255,
  4329. "g": 255,
  4330. "b": 255,
  4331. "a": 255
  4332. },
  4333. "_contentSize": {
  4334. "__type__": "cc.Size",
  4335. "width": 139,
  4336. "height": 142
  4337. },
  4338. "_anchorPoint": {
  4339. "__type__": "cc.Vec2",
  4340. "x": 1,
  4341. "y": 0.5
  4342. },
  4343. "_trs": {
  4344. "__type__": "TypedArray",
  4345. "ctor": "Float64Array",
  4346. "array": [
  4347. -13,
  4348. 55,
  4349. 0,
  4350. 0,
  4351. 0,
  4352. 0,
  4353. 1,
  4354. 0.6,
  4355. 0.6,
  4356. 1
  4357. ]
  4358. },
  4359. "_eulerAngles": {
  4360. "__type__": "cc.Vec3",
  4361. "x": 0,
  4362. "y": 0,
  4363. "z": 0
  4364. },
  4365. "_skewX": 0,
  4366. "_skewY": 0,
  4367. "_is3DNode": false,
  4368. "_groupIndex": 0,
  4369. "groupIndex": 0,
  4370. "_id": ""
  4371. },
  4372. {
  4373. "__type__": "cc.Node",
  4374. "_name": "New Node",
  4375. "_objFlags": 0,
  4376. "_parent": {
  4377. "__id__": 111
  4378. },
  4379. "_children": [],
  4380. "_active": true,
  4381. "_components": [
  4382. {
  4383. "__id__": 113
  4384. }
  4385. ],
  4386. "_prefab": {
  4387. "__id__": 114
  4388. },
  4389. "_opacity": 255,
  4390. "_color": {
  4391. "__type__": "cc.Color",
  4392. "r": 255,
  4393. "g": 255,
  4394. "b": 255,
  4395. "a": 255
  4396. },
  4397. "_contentSize": {
  4398. "__type__": "cc.Size",
  4399. "width": 77,
  4400. "height": 80
  4401. },
  4402. "_anchorPoint": {
  4403. "__type__": "cc.Vec2",
  4404. "x": 0.5,
  4405. "y": 0.5
  4406. },
  4407. "_trs": {
  4408. "__type__": "TypedArray",
  4409. "ctor": "Float64Array",
  4410. "array": [
  4411. -69,
  4412. 5,
  4413. 0,
  4414. 0,
  4415. 0,
  4416. 0,
  4417. 1,
  4418. 1,
  4419. 1,
  4420. 1
  4421. ]
  4422. },
  4423. "_eulerAngles": {
  4424. "__type__": "cc.Vec3",
  4425. "x": 0,
  4426. "y": 0,
  4427. "z": 0
  4428. },
  4429. "_skewX": 0,
  4430. "_skewY": 0,
  4431. "_is3DNode": false,
  4432. "_groupIndex": 0,
  4433. "groupIndex": 0,
  4434. "_id": ""
  4435. },
  4436. {
  4437. "__type__": "cc.Sprite",
  4438. "_name": "",
  4439. "_objFlags": 0,
  4440. "node": {
  4441. "__id__": 112
  4442. },
  4443. "_enabled": true,
  4444. "_materials": [
  4445. {
  4446. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4447. }
  4448. ],
  4449. "_srcBlendFactor": 770,
  4450. "_dstBlendFactor": 771,
  4451. "_spriteFrame": {
  4452. "__uuid__": "edeeca4d-d7cc-4c9c-84d1-8115095e1112"
  4453. },
  4454. "_type": 0,
  4455. "_sizeMode": 1,
  4456. "_fillType": 0,
  4457. "_fillCenter": {
  4458. "__type__": "cc.Vec2",
  4459. "x": 0,
  4460. "y": 0
  4461. },
  4462. "_fillStart": 0,
  4463. "_fillRange": 0,
  4464. "_isTrimmedMode": true,
  4465. "_atlas": null,
  4466. "_id": ""
  4467. },
  4468. {
  4469. "__type__": "cc.PrefabInfo",
  4470. "root": {
  4471. "__id__": 1
  4472. },
  4473. "asset": {
  4474. "__id__": 0
  4475. },
  4476. "fileId": "b6lERYbLxFN5BfBfqSiSa1",
  4477. "sync": false
  4478. },
  4479. {
  4480. "__type__": "cc.Sprite",
  4481. "_name": "",
  4482. "_objFlags": 0,
  4483. "node": {
  4484. "__id__": 111
  4485. },
  4486. "_enabled": true,
  4487. "_materials": [
  4488. {
  4489. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4490. }
  4491. ],
  4492. "_srcBlendFactor": 770,
  4493. "_dstBlendFactor": 771,
  4494. "_spriteFrame": {
  4495. "__uuid__": "aee91d3a-0cc1-44b1-8def-eeca9fd3a603"
  4496. },
  4497. "_type": 0,
  4498. "_sizeMode": 1,
  4499. "_fillType": 0,
  4500. "_fillCenter": {
  4501. "__type__": "cc.Vec2",
  4502. "x": 0,
  4503. "y": 0
  4504. },
  4505. "_fillStart": 0,
  4506. "_fillRange": 0,
  4507. "_isTrimmedMode": true,
  4508. "_atlas": null,
  4509. "_id": ""
  4510. },
  4511. {
  4512. "__type__": "cc.Button",
  4513. "_name": "",
  4514. "_objFlags": 0,
  4515. "node": {
  4516. "__id__": 111
  4517. },
  4518. "_enabled": true,
  4519. "_normalMaterial": null,
  4520. "_grayMaterial": null,
  4521. "duration": 0.1,
  4522. "zoomScale": 1.3,
  4523. "clickEvents": [
  4524. {
  4525. "__id__": 117
  4526. }
  4527. ],
  4528. "_N$interactable": true,
  4529. "_N$enableAutoGrayEffect": false,
  4530. "_N$transition": 0,
  4531. "transition": 0,
  4532. "_N$normalColor": {
  4533. "__type__": "cc.Color",
  4534. "r": 214,
  4535. "g": 214,
  4536. "b": 214,
  4537. "a": 255
  4538. },
  4539. "_N$pressedColor": {
  4540. "__type__": "cc.Color",
  4541. "r": 211,
  4542. "g": 211,
  4543. "b": 211,
  4544. "a": 255
  4545. },
  4546. "pressedColor": {
  4547. "__type__": "cc.Color",
  4548. "r": 211,
  4549. "g": 211,
  4550. "b": 211,
  4551. "a": 255
  4552. },
  4553. "_N$hoverColor": {
  4554. "__type__": "cc.Color",
  4555. "r": 255,
  4556. "g": 255,
  4557. "b": 255,
  4558. "a": 255
  4559. },
  4560. "hoverColor": {
  4561. "__type__": "cc.Color",
  4562. "r": 255,
  4563. "g": 255,
  4564. "b": 255,
  4565. "a": 255
  4566. },
  4567. "_N$disabledColor": {
  4568. "__type__": "cc.Color",
  4569. "r": 124,
  4570. "g": 124,
  4571. "b": 124,
  4572. "a": 255
  4573. },
  4574. "_N$normalSprite": null,
  4575. "_N$pressedSprite": null,
  4576. "pressedSprite": null,
  4577. "_N$hoverSprite": null,
  4578. "hoverSprite": null,
  4579. "_N$disabledSprite": null,
  4580. "_N$target": {
  4581. "__id__": 111
  4582. },
  4583. "_id": ""
  4584. },
  4585. {
  4586. "__type__": "cc.ClickEvent",
  4587. "target": {
  4588. "__id__": 1
  4589. },
  4590. "component": "",
  4591. "_componentId": "88e95dTRBJPjYMK2u9Jy9kM",
  4592. "handler": "subClickBtn",
  4593. "customEventData": ""
  4594. },
  4595. {
  4596. "__type__": "cc.PrefabInfo",
  4597. "root": {
  4598. "__id__": 1
  4599. },
  4600. "asset": {
  4601. "__id__": 0
  4602. },
  4603. "fileId": "e0NkW1aWdAxZ7qVw41rCrB",
  4604. "sync": false
  4605. },
  4606. {
  4607. "__type__": "cc.PrefabInfo",
  4608. "root": {
  4609. "__id__": 1
  4610. },
  4611. "asset": {
  4612. "__id__": 0
  4613. },
  4614. "fileId": "a7gvdaxZNGsZwfI7+Z8cKf",
  4615. "sync": false
  4616. },
  4617. {
  4618. "__type__": "cc.Node",
  4619. "_name": "bcWeavePrefab",
  4620. "_objFlags": 0,
  4621. "_parent": {
  4622. "__id__": 1
  4623. },
  4624. "_children": [
  4625. {
  4626. "__id__": 121
  4627. },
  4628. {
  4629. "__id__": 131
  4630. }
  4631. ],
  4632. "_active": true,
  4633. "_components": [
  4634. {
  4635. "__id__": 141
  4636. }
  4637. ],
  4638. "_prefab": {
  4639. "__id__": 142
  4640. },
  4641. "_opacity": 255,
  4642. "_color": {
  4643. "__type__": "cc.Color",
  4644. "r": 255,
  4645. "g": 255,
  4646. "b": 255,
  4647. "a": 255
  4648. },
  4649. "_contentSize": {
  4650. "__type__": "cc.Size",
  4651. "width": 0,
  4652. "height": 0
  4653. },
  4654. "_anchorPoint": {
  4655. "__type__": "cc.Vec2",
  4656. "x": 0,
  4657. "y": 0.5
  4658. },
  4659. "_trs": {
  4660. "__type__": "TypedArray",
  4661. "ctor": "Float64Array",
  4662. "array": [
  4663. -272,
  4664. 60,
  4665. 0,
  4666. 0,
  4667. 0,
  4668. 0,
  4669. 1,
  4670. 0.6,
  4671. 0.6,
  4672. 1
  4673. ]
  4674. },
  4675. "_eulerAngles": {
  4676. "__type__": "cc.Vec3",
  4677. "x": 0,
  4678. "y": 0,
  4679. "z": 0
  4680. },
  4681. "_skewX": 0,
  4682. "_skewY": 0,
  4683. "_is3DNode": false,
  4684. "_groupIndex": 0,
  4685. "groupIndex": 0,
  4686. "_id": ""
  4687. },
  4688. {
  4689. "__type__": "cc.Node",
  4690. "_name": "TopBottom",
  4691. "_objFlags": 0,
  4692. "_parent": {
  4693. "__id__": 120
  4694. },
  4695. "_children": [
  4696. {
  4697. "__id__": 122
  4698. },
  4699. {
  4700. "__id__": 124
  4701. },
  4702. {
  4703. "__id__": 126
  4704. },
  4705. {
  4706. "__id__": 128
  4707. }
  4708. ],
  4709. "_active": true,
  4710. "_components": [],
  4711. "_prefab": {
  4712. "__id__": 130
  4713. },
  4714. "_opacity": 255,
  4715. "_color": {
  4716. "__type__": "cc.Color",
  4717. "r": 255,
  4718. "g": 255,
  4719. "b": 255,
  4720. "a": 255
  4721. },
  4722. "_contentSize": {
  4723. "__type__": "cc.Size",
  4724. "width": 258,
  4725. "height": 0
  4726. },
  4727. "_anchorPoint": {
  4728. "__type__": "cc.Vec2",
  4729. "x": 0,
  4730. "y": 0.5
  4731. },
  4732. "_trs": {
  4733. "__type__": "TypedArray",
  4734. "ctor": "Float64Array",
  4735. "array": [
  4736. 0,
  4737. 0,
  4738. 0,
  4739. 0,
  4740. 0,
  4741. 0,
  4742. 1,
  4743. 1,
  4744. 1,
  4745. 1
  4746. ]
  4747. },
  4748. "_eulerAngles": {
  4749. "__type__": "cc.Vec3",
  4750. "x": 0,
  4751. "y": 0,
  4752. "z": 0
  4753. },
  4754. "_skewX": 0,
  4755. "_skewY": 0,
  4756. "_is3DNode": false,
  4757. "_groupIndex": 0,
  4758. "groupIndex": 0,
  4759. "_id": ""
  4760. },
  4761. {
  4762. "__type__": "cc.Node",
  4763. "_name": "item",
  4764. "_objFlags": 0,
  4765. "_parent": {
  4766. "__id__": 121
  4767. },
  4768. "_children": [],
  4769. "_active": true,
  4770. "_components": [],
  4771. "_prefab": {
  4772. "__id__": 123
  4773. },
  4774. "_opacity": 255,
  4775. "_color": {
  4776. "__type__": "cc.Color",
  4777. "r": 255,
  4778. "g": 255,
  4779. "b": 255,
  4780. "a": 255
  4781. },
  4782. "_contentSize": {
  4783. "__type__": "cc.Size",
  4784. "width": 86,
  4785. "height": 122
  4786. },
  4787. "_anchorPoint": {
  4788. "__type__": "cc.Vec2",
  4789. "x": 0.5,
  4790. "y": 0.5
  4791. },
  4792. "_trs": {
  4793. "__type__": "TypedArray",
  4794. "ctor": "Float64Array",
  4795. "array": [
  4796. 215,
  4797. 0,
  4798. 0,
  4799. 0,
  4800. 0,
  4801. 0,
  4802. 1,
  4803. 1,
  4804. 1,
  4805. 1
  4806. ]
  4807. },
  4808. "_eulerAngles": {
  4809. "__type__": "cc.Vec3",
  4810. "x": 0,
  4811. "y": 0,
  4812. "z": 0
  4813. },
  4814. "_skewX": 0,
  4815. "_skewY": 0,
  4816. "_is3DNode": false,
  4817. "_groupIndex": 0,
  4818. "groupIndex": 0,
  4819. "_id": ""
  4820. },
  4821. {
  4822. "__type__": "cc.PrefabInfo",
  4823. "root": {
  4824. "__id__": 1
  4825. },
  4826. "asset": {
  4827. "__id__": 0
  4828. },
  4829. "fileId": "e32U+gM0hCWL1WG1wFioyb",
  4830. "sync": false
  4831. },
  4832. {
  4833. "__type__": "cc.Node",
  4834. "_name": "item",
  4835. "_objFlags": 0,
  4836. "_parent": {
  4837. "__id__": 121
  4838. },
  4839. "_children": [],
  4840. "_active": true,
  4841. "_components": [],
  4842. "_prefab": {
  4843. "__id__": 125
  4844. },
  4845. "_opacity": 255,
  4846. "_color": {
  4847. "__type__": "cc.Color",
  4848. "r": 255,
  4849. "g": 255,
  4850. "b": 255,
  4851. "a": 255
  4852. },
  4853. "_contentSize": {
  4854. "__type__": "cc.Size",
  4855. "width": 86,
  4856. "height": 122
  4857. },
  4858. "_anchorPoint": {
  4859. "__type__": "cc.Vec2",
  4860. "x": 0.5,
  4861. "y": 0.5
  4862. },
  4863. "_trs": {
  4864. "__type__": "TypedArray",
  4865. "ctor": "Float64Array",
  4866. "array": [
  4867. 129,
  4868. 0,
  4869. 0,
  4870. 0,
  4871. 0,
  4872. 0,
  4873. 1,
  4874. 1,
  4875. 1,
  4876. 1
  4877. ]
  4878. },
  4879. "_eulerAngles": {
  4880. "__type__": "cc.Vec3",
  4881. "x": 0,
  4882. "y": 0,
  4883. "z": 0
  4884. },
  4885. "_skewX": 0,
  4886. "_skewY": 0,
  4887. "_is3DNode": false,
  4888. "_groupIndex": 0,
  4889. "groupIndex": 0,
  4890. "_id": ""
  4891. },
  4892. {
  4893. "__type__": "cc.PrefabInfo",
  4894. "root": {
  4895. "__id__": 1
  4896. },
  4897. "asset": {
  4898. "__id__": 0
  4899. },
  4900. "fileId": "69aHRjqm1DrrcMBtK5XmRx",
  4901. "sync": false
  4902. },
  4903. {
  4904. "__type__": "cc.Node",
  4905. "_name": "item",
  4906. "_objFlags": 0,
  4907. "_parent": {
  4908. "__id__": 121
  4909. },
  4910. "_children": [],
  4911. "_active": true,
  4912. "_components": [],
  4913. "_prefab": {
  4914. "__id__": 127
  4915. },
  4916. "_opacity": 255,
  4917. "_color": {
  4918. "__type__": "cc.Color",
  4919. "r": 255,
  4920. "g": 255,
  4921. "b": 255,
  4922. "a": 255
  4923. },
  4924. "_contentSize": {
  4925. "__type__": "cc.Size",
  4926. "width": 86,
  4927. "height": 122
  4928. },
  4929. "_anchorPoint": {
  4930. "__type__": "cc.Vec2",
  4931. "x": 0.5,
  4932. "y": 0.5
  4933. },
  4934. "_trs": {
  4935. "__type__": "TypedArray",
  4936. "ctor": "Float64Array",
  4937. "array": [
  4938. 43,
  4939. 0,
  4940. 0,
  4941. 0,
  4942. 0,
  4943. 0,
  4944. 1,
  4945. 1,
  4946. 1,
  4947. 1
  4948. ]
  4949. },
  4950. "_eulerAngles": {
  4951. "__type__": "cc.Vec3",
  4952. "x": 0,
  4953. "y": 0,
  4954. "z": 0
  4955. },
  4956. "_skewX": 0,
  4957. "_skewY": 0,
  4958. "_is3DNode": false,
  4959. "_groupIndex": 0,
  4960. "groupIndex": 0,
  4961. "_id": ""
  4962. },
  4963. {
  4964. "__type__": "cc.PrefabInfo",
  4965. "root": {
  4966. "__id__": 1
  4967. },
  4968. "asset": {
  4969. "__id__": 0
  4970. },
  4971. "fileId": "42Sm4XX8pNbrdfNqu5Ak4s",
  4972. "sync": false
  4973. },
  4974. {
  4975. "__type__": "cc.Node",
  4976. "_name": "item",
  4977. "_objFlags": 0,
  4978. "_parent": {
  4979. "__id__": 121
  4980. },
  4981. "_children": [],
  4982. "_active": true,
  4983. "_components": [],
  4984. "_prefab": {
  4985. "__id__": 129
  4986. },
  4987. "_opacity": 255,
  4988. "_color": {
  4989. "__type__": "cc.Color",
  4990. "r": 255,
  4991. "g": 255,
  4992. "b": 255,
  4993. "a": 255
  4994. },
  4995. "_contentSize": {
  4996. "__type__": "cc.Size",
  4997. "width": 86,
  4998. "height": 122
  4999. },
  5000. "_anchorPoint": {
  5001. "__type__": "cc.Vec2",
  5002. "x": 0.5,
  5003. "y": 0.5
  5004. },
  5005. "_trs": {
  5006. "__type__": "TypedArray",
  5007. "ctor": "Float64Array",
  5008. "array": [
  5009. 129,
  5010. 31,
  5011. 0,
  5012. 0,
  5013. 0,
  5014. 0,
  5015. 1,
  5016. 1,
  5017. 1,
  5018. 1
  5019. ]
  5020. },
  5021. "_eulerAngles": {
  5022. "__type__": "cc.Vec3",
  5023. "x": 0,
  5024. "y": 0,
  5025. "z": 0
  5026. },
  5027. "_skewX": 0,
  5028. "_skewY": 0,
  5029. "_is3DNode": false,
  5030. "_groupIndex": 0,
  5031. "groupIndex": 0,
  5032. "_id": ""
  5033. },
  5034. {
  5035. "__type__": "cc.PrefabInfo",
  5036. "root": {
  5037. "__id__": 1
  5038. },
  5039. "asset": {
  5040. "__id__": 0
  5041. },
  5042. "fileId": "25ald6DIRKSp/TppamFu9+",
  5043. "sync": false
  5044. },
  5045. {
  5046. "__type__": "cc.PrefabInfo",
  5047. "root": {
  5048. "__id__": 1
  5049. },
  5050. "asset": {
  5051. "__id__": 0
  5052. },
  5053. "fileId": "74iPRALDJGXKPnUAiTuCzO",
  5054. "sync": false
  5055. },
  5056. {
  5057. "__type__": "cc.Node",
  5058. "_name": "LeftRight",
  5059. "_objFlags": 0,
  5060. "_parent": {
  5061. "__id__": 120
  5062. },
  5063. "_children": [
  5064. {
  5065. "__id__": 132
  5066. },
  5067. {
  5068. "__id__": 134
  5069. },
  5070. {
  5071. "__id__": 136
  5072. },
  5073. {
  5074. "__id__": 138
  5075. }
  5076. ],
  5077. "_active": true,
  5078. "_components": [],
  5079. "_prefab": {
  5080. "__id__": 140
  5081. },
  5082. "_opacity": 255,
  5083. "_color": {
  5084. "__type__": "cc.Color",
  5085. "r": 255,
  5086. "g": 255,
  5087. "b": 255,
  5088. "a": 255
  5089. },
  5090. "_contentSize": {
  5091. "__type__": "cc.Size",
  5092. "width": 0,
  5093. "height": 0
  5094. },
  5095. "_anchorPoint": {
  5096. "__type__": "cc.Vec2",
  5097. "x": 0.5,
  5098. "y": 0.5
  5099. },
  5100. "_trs": {
  5101. "__type__": "TypedArray",
  5102. "ctor": "Float64Array",
  5103. "array": [
  5104. 0,
  5105. 0,
  5106. 0,
  5107. 0,
  5108. 0,
  5109. 0,
  5110. 1,
  5111. 1,
  5112. 1,
  5113. 1
  5114. ]
  5115. },
  5116. "_eulerAngles": {
  5117. "__type__": "cc.Vec3",
  5118. "x": 0,
  5119. "y": 0,
  5120. "z": 0
  5121. },
  5122. "_skewX": 0,
  5123. "_skewY": 0,
  5124. "_is3DNode": false,
  5125. "_groupIndex": 0,
  5126. "groupIndex": 0,
  5127. "_id": ""
  5128. },
  5129. {
  5130. "__type__": "cc.Node",
  5131. "_name": "item",
  5132. "_objFlags": 0,
  5133. "_parent": {
  5134. "__id__": 131
  5135. },
  5136. "_children": [],
  5137. "_active": true,
  5138. "_components": [],
  5139. "_prefab": {
  5140. "__id__": 133
  5141. },
  5142. "_opacity": 255,
  5143. "_color": {
  5144. "__type__": "cc.Color",
  5145. "r": 255,
  5146. "g": 255,
  5147. "b": 255,
  5148. "a": 255
  5149. },
  5150. "_contentSize": {
  5151. "__type__": "cc.Size",
  5152. "width": 56,
  5153. "height": 32
  5154. },
  5155. "_anchorPoint": {
  5156. "__type__": "cc.Vec2",
  5157. "x": 0.5,
  5158. "y": 0.5
  5159. },
  5160. "_trs": {
  5161. "__type__": "TypedArray",
  5162. "ctor": "Float64Array",
  5163. "array": [
  5164. 0,
  5165. 0,
  5166. 0,
  5167. 0,
  5168. 0,
  5169. 0,
  5170. 1,
  5171. 1,
  5172. 1,
  5173. 1
  5174. ]
  5175. },
  5176. "_eulerAngles": {
  5177. "__type__": "cc.Vec3",
  5178. "x": 0,
  5179. "y": 0,
  5180. "z": 0
  5181. },
  5182. "_skewX": 0,
  5183. "_skewY": 0,
  5184. "_is3DNode": false,
  5185. "_groupIndex": 0,
  5186. "groupIndex": 0,
  5187. "_id": ""
  5188. },
  5189. {
  5190. "__type__": "cc.PrefabInfo",
  5191. "root": {
  5192. "__id__": 1
  5193. },
  5194. "asset": {
  5195. "__id__": 0
  5196. },
  5197. "fileId": "65lQ1wvP9MI4/pFSQVpMer",
  5198. "sync": false
  5199. },
  5200. {
  5201. "__type__": "cc.Node",
  5202. "_name": "item",
  5203. "_objFlags": 0,
  5204. "_parent": {
  5205. "__id__": 131
  5206. },
  5207. "_children": [],
  5208. "_active": true,
  5209. "_components": [],
  5210. "_prefab": {
  5211. "__id__": 135
  5212. },
  5213. "_opacity": 255,
  5214. "_color": {
  5215. "__type__": "cc.Color",
  5216. "r": 255,
  5217. "g": 255,
  5218. "b": 255,
  5219. "a": 255
  5220. },
  5221. "_contentSize": {
  5222. "__type__": "cc.Size",
  5223. "width": 56,
  5224. "height": 32
  5225. },
  5226. "_anchorPoint": {
  5227. "__type__": "cc.Vec2",
  5228. "x": 0.5,
  5229. "y": 0.5
  5230. },
  5231. "_trs": {
  5232. "__type__": "TypedArray",
  5233. "ctor": "Float64Array",
  5234. "array": [
  5235. 0,
  5236. -32,
  5237. 0,
  5238. 0,
  5239. 0,
  5240. 0,
  5241. 1,
  5242. 1,
  5243. 1,
  5244. 1
  5245. ]
  5246. },
  5247. "_eulerAngles": {
  5248. "__type__": "cc.Vec3",
  5249. "x": 0,
  5250. "y": 0,
  5251. "z": 0
  5252. },
  5253. "_skewX": 0,
  5254. "_skewY": 0,
  5255. "_is3DNode": false,
  5256. "_groupIndex": 0,
  5257. "groupIndex": 0,
  5258. "_id": ""
  5259. },
  5260. {
  5261. "__type__": "cc.PrefabInfo",
  5262. "root": {
  5263. "__id__": 1
  5264. },
  5265. "asset": {
  5266. "__id__": 0
  5267. },
  5268. "fileId": "e99grCQrdLPZxPEvLKYGMe",
  5269. "sync": false
  5270. },
  5271. {
  5272. "__type__": "cc.Node",
  5273. "_name": "item",
  5274. "_objFlags": 0,
  5275. "_parent": {
  5276. "__id__": 131
  5277. },
  5278. "_children": [],
  5279. "_active": true,
  5280. "_components": [],
  5281. "_prefab": {
  5282. "__id__": 137
  5283. },
  5284. "_opacity": 255,
  5285. "_color": {
  5286. "__type__": "cc.Color",
  5287. "r": 255,
  5288. "g": 255,
  5289. "b": 255,
  5290. "a": 255
  5291. },
  5292. "_contentSize": {
  5293. "__type__": "cc.Size",
  5294. "width": 56,
  5295. "height": 32
  5296. },
  5297. "_anchorPoint": {
  5298. "__type__": "cc.Vec2",
  5299. "x": 0.5,
  5300. "y": 0.5
  5301. },
  5302. "_trs": {
  5303. "__type__": "TypedArray",
  5304. "ctor": "Float64Array",
  5305. "array": [
  5306. 0,
  5307. -22,
  5308. 0,
  5309. 0,
  5310. 0,
  5311. 0,
  5312. 1,
  5313. 1,
  5314. 1,
  5315. 1
  5316. ]
  5317. },
  5318. "_eulerAngles": {
  5319. "__type__": "cc.Vec3",
  5320. "x": 0,
  5321. "y": 0,
  5322. "z": 0
  5323. },
  5324. "_skewX": 0,
  5325. "_skewY": 0,
  5326. "_is3DNode": false,
  5327. "_groupIndex": 0,
  5328. "groupIndex": 0,
  5329. "_id": ""
  5330. },
  5331. {
  5332. "__type__": "cc.PrefabInfo",
  5333. "root": {
  5334. "__id__": 1
  5335. },
  5336. "asset": {
  5337. "__id__": 0
  5338. },
  5339. "fileId": "919p73CYhMcaqIB6QrLmig",
  5340. "sync": false
  5341. },
  5342. {
  5343. "__type__": "cc.Node",
  5344. "_name": "item",
  5345. "_objFlags": 0,
  5346. "_parent": {
  5347. "__id__": 131
  5348. },
  5349. "_children": [],
  5350. "_active": true,
  5351. "_components": [],
  5352. "_prefab": {
  5353. "__id__": 139
  5354. },
  5355. "_opacity": 255,
  5356. "_color": {
  5357. "__type__": "cc.Color",
  5358. "r": 255,
  5359. "g": 255,
  5360. "b": 255,
  5361. "a": 255
  5362. },
  5363. "_contentSize": {
  5364. "__type__": "cc.Size",
  5365. "width": 56,
  5366. "height": 32
  5367. },
  5368. "_anchorPoint": {
  5369. "__type__": "cc.Vec2",
  5370. "x": 0.5,
  5371. "y": 0.5
  5372. },
  5373. "_trs": {
  5374. "__type__": "TypedArray",
  5375. "ctor": "Float64Array",
  5376. "array": [
  5377. 0,
  5378. -66.1,
  5379. 0,
  5380. 0,
  5381. 0,
  5382. 0,
  5383. 1,
  5384. 1,
  5385. 1,
  5386. 1
  5387. ]
  5388. },
  5389. "_eulerAngles": {
  5390. "__type__": "cc.Vec3",
  5391. "x": 0,
  5392. "y": 0,
  5393. "z": 0
  5394. },
  5395. "_skewX": 0,
  5396. "_skewY": 0,
  5397. "_is3DNode": false,
  5398. "_groupIndex": 0,
  5399. "groupIndex": 0,
  5400. "_id": ""
  5401. },
  5402. {
  5403. "__type__": "cc.PrefabInfo",
  5404. "root": {
  5405. "__id__": 1
  5406. },
  5407. "asset": {
  5408. "__id__": 0
  5409. },
  5410. "fileId": "77r3ekO8hA54vJydFdzNYJ",
  5411. "sync": false
  5412. },
  5413. {
  5414. "__type__": "cc.PrefabInfo",
  5415. "root": {
  5416. "__id__": 1
  5417. },
  5418. "asset": {
  5419. "__id__": 0
  5420. },
  5421. "fileId": "79NLeH/UZEiJBwVa3CvbgW",
  5422. "sync": false
  5423. },
  5424. {
  5425. "__type__": "d1226NENAJKzKAo/oMpwYdI",
  5426. "_name": "",
  5427. "_objFlags": 0,
  5428. "node": {
  5429. "__id__": 120
  5430. },
  5431. "_enabled": true,
  5432. "m_CardNodeTB": [
  5433. {
  5434. "__id__": 126
  5435. },
  5436. {
  5437. "__id__": 124
  5438. },
  5439. {
  5440. "__id__": 122
  5441. },
  5442. {
  5443. "__id__": 128
  5444. }
  5445. ],
  5446. "m_CardNodeLR": [
  5447. {
  5448. "__id__": 132
  5449. },
  5450. {
  5451. "__id__": 134
  5452. },
  5453. {
  5454. "__id__": 138
  5455. },
  5456. {
  5457. "__id__": 136
  5458. }
  5459. ],
  5460. "_id": ""
  5461. },
  5462. {
  5463. "__type__": "cc.PrefabInfo",
  5464. "root": {
  5465. "__id__": 1
  5466. },
  5467. "asset": {
  5468. "__id__": 0
  5469. },
  5470. "fileId": "29tgDubOJA87w72Ajr5vRX",
  5471. "sync": false
  5472. },
  5473. {
  5474. "__type__": "88e95dTRBJPjYMK2u9Jy9kM",
  5475. "_name": "",
  5476. "_objFlags": 0,
  5477. "node": {
  5478. "__id__": 1
  5479. },
  5480. "_enabled": true,
  5481. "m_tipChi": {
  5482. "__id__": 5
  5483. },
  5484. "m_tipPeng": {
  5485. "__id__": 71
  5486. },
  5487. "m_tipGang": {
  5488. "__id__": 57
  5489. },
  5490. "m_tipGangBu": {
  5491. "__id__": 96
  5492. },
  5493. "m_tipHaiDi": {
  5494. "__id__": 85
  5495. },
  5496. "m_tipHu": {
  5497. "__id__": 19
  5498. },
  5499. "m_tipMenHu": {
  5500. "__id__": 33
  5501. },
  5502. "m_tipTing": {
  5503. "__id__": 46
  5504. },
  5505. "m_tipGuo": {
  5506. "__id__": 110
  5507. },
  5508. "m_WeaveCardPrefab": {
  5509. "__id__": 120
  5510. },
  5511. "m_WeaveCardItem": {
  5512. "__uuid__": "b60839ba-8aad-4b4d-a8be-4372a7ea2488"
  5513. },
  5514. "m_bgChi": {
  5515. "__id__": 2
  5516. },
  5517. "_id": ""
  5518. },
  5519. {
  5520. "__type__": "cc.PrefabInfo",
  5521. "root": {
  5522. "__id__": 1
  5523. },
  5524. "asset": {
  5525. "__id__": 0
  5526. },
  5527. "fileId": "",
  5528. "sync": false
  5529. }
  5530. ]