GuildDemo_公会导航栏.rebolt 327 KB

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