CardView.prefab 91 KB

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