GoodsStory_弹窗_关卡进入.rebolt 506 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138
  1. {
  2. "CustomFunc": {
  3. "关卡进入": [
  4. [
  5. "Name",
  6. "关卡进入",
  7. "uG09wvs8Nxyo",
  8. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  9. ]
  10. ],
  11. "刷新游戏前道具状态": [
  12. [
  13. "Name",
  14. "刷新游戏前道具状态",
  15. "mEcZXJhQDUhc",
  16. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  17. ]
  18. ],
  19. "刷新道具1状态": [
  20. [
  21. "Name",
  22. "刷新道具1状态",
  23. "6pssGBPIYlfR",
  24. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  25. ]
  26. ],
  27. "刷新道具2状态": [
  28. [
  29. "Name",
  30. "刷新道具2状态",
  31. "0ZEiJIdflP0e",
  32. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  33. ]
  34. ],
  35. "刷新道具3状态": [
  36. [
  37. "Name",
  38. "刷新道具3状态",
  39. "gi9EZPXJMOWZ",
  40. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  41. ]
  42. ],
  43. "循环标签图片设置": [
  44. [
  45. "Name",
  46. "循环标签图片设置",
  47. "uPD8h7H6MQ67",
  48. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  49. ]
  50. ],
  51. "按钮显示状态": [
  52. [
  53. "Name",
  54. "按钮显示状态",
  55. "sxbvWSzGGNQV",
  56. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  57. ]
  58. ],
  59. "连胜状态": [
  60. [
  61. "Name",
  62. "连胜状态",
  63. "JHGsccQ4tTTC",
  64. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  65. ]
  66. ]
  67. },
  68. "CustomList": {
  69. },
  70. "CustomMessage": {
  71. "Hello Red": 1
  72. },
  73. "CustomTestFunc": {
  74. "11": ""
  75. },
  76. "CustomVar": {
  77. "P-Plist路径": 0,
  78. "P-关卡数": 0,
  79. "P-开始游戏文本": 0,
  80. "P-游戏前道具1_图片名": 0,
  81. "P-游戏前道具1_解锁等级": 0,
  82. "P-游戏前道具1_道具数量": 0,
  83. "P-游戏前道具1_默认状态": 0,
  84. "P-游戏前道具2_图片名": 0,
  85. "P-游戏前道具2_解锁等级": 0,
  86. "P-游戏前道具2_道具数量": 0,
  87. "P-游戏前道具2_默认状态": 0,
  88. "P-游戏前道具3_图片名": 0,
  89. "P-游戏前道具3_解锁等级": 0,
  90. "P-游戏前道具3_道具数量": 0,
  91. "P-游戏前道具3_默认状态": 0,
  92. "P-连胜次数": 0,
  93. "P-道具解锁数": 0
  94. },
  95. "DisPlayName": "GoodsStory_弹窗_关卡进入",
  96. "RedFileList": {
  97. "4PE6ixWz3kxa": {
  98. "CustomFunc": {
  99. "游戏前道具初始化": [
  100. [
  101. "Name",
  102. "游戏前道具初始化",
  103. "q2hMIBClDBV2",
  104. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red"
  105. ],
  106. [
  107. "BTInputSlot",
  108. "道具默认状态"
  109. ],
  110. [
  111. "BTInputSlot",
  112. "解锁等级"
  113. ],
  114. [
  115. "BTInputSlot",
  116. "道具数量"
  117. ],
  118. [
  119. "BTInputSlot",
  120. "时效文本"
  121. ],
  122. [
  123. "BTInputSlot",
  124. "Plist路径"
  125. ],
  126. [
  127. "BTInputSlot",
  128. "道具图片名"
  129. ]
  130. ]
  131. },
  132. "CustomList": {
  133. },
  134. "CustomTestFunc": {
  135. },
  136. "CustomVar": {
  137. },
  138. "DisPlayName": "道具按钮2",
  139. "RedNoteInfo": {
  140. },
  141. "TreeList": {
  142. "Tree0": {
  143. "ExportTree": true,
  144. "ImageIndex": 2,
  145. "Name": {
  146. "Type": "STRING",
  147. "Value": "游戏前道具初始化",
  148. "displayName": ""
  149. },
  150. "Type": "BTCustomFuncHeadAction",
  151. "VarJson": {
  152. "boolJson": {
  153. },
  154. "numberJson": {
  155. "Plist路径": "Number",
  156. "时效文本": "Number",
  157. "解锁等级": "Number",
  158. "道具图片名": "Number",
  159. "道具数量": "Number",
  160. "道具默认状态": "Number"
  161. }
  162. },
  163. "isIllegal": false,
  164. "randomID": "q2hMIBClDBV2",
  165. "stepSlot": {
  166. "ContainerValue": {
  167. "Type": "BTNodeHiddenAction",
  168. "baseSelect": {
  169. "DisplayName": "增加道具模块",
  170. "Type": "Action",
  171. "Value": "Ozr3UVNj2Rx6"
  172. },
  173. "isIllegal": true,
  174. "randomID": "nvQFhkfUEv6C",
  175. "stepSlot": {
  176. "ContainerValue": {
  177. "Type": "BTNodeHiddenAction",
  178. "baseSelect": {
  179. "DisplayName": "红点模块",
  180. "Type": "Action",
  181. "Value": "tm0924bAwzde"
  182. },
  183. "isIllegal": true,
  184. "randomID": "J4R8LKRRHWrs",
  185. "stepSlot": {
  186. "ContainerValue": {
  187. "Type": "BTNodeHiddenAction",
  188. "baseSelect": {
  189. "DisplayName": "时段无限使用模块",
  190. "Type": "Action",
  191. "Value": "Cu97fOSuVXQT"
  192. },
  193. "isIllegal": true,
  194. "randomID": "i9HQlCF9OYgR",
  195. "stepSlot": {
  196. "ContainerValue": {
  197. "Type": "BTIFControlAction",
  198. "conditionA": {
  199. "ContainerValue": {
  200. "Type": "BTStringEqualOperatorAction",
  201. "conditionA": {
  202. "ContainerValue": {
  203. "Type": "BTFuncVariableAction",
  204. "colorName": "More",
  205. "currentStr": "道具默认状态",
  206. "fatherFuncID": "q2hMIBClDBV2",
  207. "isIllegal": true,
  208. "randomID": "dQsEjmGd1gFV",
  209. "titleLabel": {
  210. "Type": "STRING",
  211. "Value": "道具默认状态",
  212. "displayName": ""
  213. }
  214. },
  215. "StringValue": {
  216. "Type": "STRING",
  217. "Value": "Red"
  218. },
  219. "Type": "BTInputSlot"
  220. },
  221. "conditionB": {
  222. "ContainerValue": null,
  223. "StringValue": {
  224. "Type": "STRING",
  225. "Value": "道具未解锁"
  226. },
  227. "Type": "BTInputSlot"
  228. },
  229. "isIllegal": true,
  230. "randomID": "wOt4HIxqWCts"
  231. },
  232. "Type": "BTBoolSlot"
  233. },
  234. "isIllegal": true,
  235. "randomID": "6l0Z6pOM0iKK",
  236. "sectionA": {
  237. "ContainerValue": {
  238. "TitleInput": {
  239. "ContainerValue": {
  240. "Type": "BTStringLinkOperatorAction",
  241. "conditionA": {
  242. "ContainerValue": null,
  243. "StringValue": {
  244. "Type": "STRING",
  245. "Value": "Lv:"
  246. },
  247. "Type": "BTInputSlot"
  248. },
  249. "conditionB": {
  250. "ContainerValue": {
  251. "Type": "BTFuncVariableAction",
  252. "colorName": "More",
  253. "currentStr": "解锁等级",
  254. "fatherFuncID": "q2hMIBClDBV2",
  255. "isIllegal": true,
  256. "randomID": "5EXV69pjbjIJ",
  257. "titleLabel": {
  258. "Type": "STRING",
  259. "Value": "解锁等级",
  260. "displayName": ""
  261. }
  262. },
  263. "StringValue": {
  264. "Type": "STRING",
  265. "Value": "Banana"
  266. },
  267. "Type": "BTInputSlot"
  268. },
  269. "isIllegal": true,
  270. "randomID": "aSKxR5so6RVU"
  271. },
  272. "StringValue": {
  273. "Type": "STRING",
  274. "Value": "填写标题内容"
  275. },
  276. "Type": "BTInputSlot"
  277. },
  278. "Type": "BTLabelTitleAction",
  279. "baseSelect": {
  280. "DisplayName": "解锁等级",
  281. "Type": "Action",
  282. "Value": "XVuohG76KVk3"
  283. },
  284. "isIllegal": true,
  285. "randomID": "vXBhJe3oWzZf",
  286. "stepSlot": {
  287. "ContainerValue": {
  288. "Type": "BTRedShowAction",
  289. "baseSelect": {
  290. "DisplayName": "常态_未解锁",
  291. "Type": "Action",
  292. "Value": "6"
  293. },
  294. "isIllegal": true,
  295. "randomID": "HTr26QuoklFr",
  296. "stepSlot": {
  297. "ContainerValue": {
  298. "Type": "BTPlayTimeLineAction",
  299. "baseSelect": {
  300. "DisplayName": "常态_未解锁",
  301. "Type": "Action",
  302. "Value": "6"
  303. },
  304. "isIllegal": true,
  305. "randomID": "5nWzimx0j7Ho",
  306. "stepSlot": {
  307. "ContainerValue": null,
  308. "Type": "BTStepSlot"
  309. }
  310. },
  311. "Type": "BTStepSlot"
  312. }
  313. },
  314. "Type": "BTStepSlot"
  315. }
  316. },
  317. "Type": "BTSectionSlot"
  318. },
  319. "stepSlot": {
  320. "ContainerValue": {
  321. "Type": "BTIFControlAction",
  322. "conditionA": {
  323. "ContainerValue": {
  324. "Type": "BTStringEqualOperatorAction",
  325. "conditionA": {
  326. "ContainerValue": {
  327. "Type": "BTFuncVariableAction",
  328. "colorName": "More",
  329. "currentStr": "道具默认状态",
  330. "fatherFuncID": "q2hMIBClDBV2",
  331. "isIllegal": true,
  332. "randomID": "DsXJ4ar7etqZ",
  333. "titleLabel": {
  334. "Type": "STRING",
  335. "Value": "道具默认状态",
  336. "displayName": ""
  337. }
  338. },
  339. "StringValue": {
  340. "Type": "STRING",
  341. "Value": "Red"
  342. },
  343. "Type": "BTInputSlot"
  344. },
  345. "conditionB": {
  346. "ContainerValue": null,
  347. "StringValue": {
  348. "Type": "STRING",
  349. "Value": "道具已解锁未获得"
  350. },
  351. "Type": "BTInputSlot"
  352. },
  353. "isIllegal": true,
  354. "randomID": "E6NSsJgZs9in"
  355. },
  356. "Type": "BTBoolSlot"
  357. },
  358. "isIllegal": true,
  359. "randomID": "jjUOPqYQG3vB",
  360. "sectionA": {
  361. "ContainerValue": {
  362. "Type": "BTSpritePlistAction",
  363. "baseSelect": {
  364. "DisplayName": "未选中道具图片",
  365. "Type": "Action",
  366. "Value": "udPYPkvH0U3g"
  367. },
  368. "frameNameInput": {
  369. "ContainerValue": {
  370. "Type": "BTFuncVariableAction",
  371. "colorName": "More",
  372. "currentStr": "道具图片名",
  373. "fatherFuncID": "q2hMIBClDBV2",
  374. "isIllegal": true,
  375. "randomID": "9523KWm2K8c8",
  376. "titleLabel": {
  377. "Type": "STRING",
  378. "Value": "道具图片名",
  379. "displayName": ""
  380. }
  381. },
  382. "StringValue": {
  383. "Type": "STRING",
  384. "Value": "图片名"
  385. },
  386. "Type": "BTInputSlot"
  387. },
  388. "isIllegal": true,
  389. "pathInput": {
  390. "ContainerValue": {
  391. "Type": "BTFuncVariableAction",
  392. "colorName": "More",
  393. "currentStr": "Plist路径",
  394. "fatherFuncID": "q2hMIBClDBV2",
  395. "isIllegal": true,
  396. "randomID": "OiBY7CKNgzTB",
  397. "titleLabel": {
  398. "Type": "STRING",
  399. "Value": "Plist路径",
  400. "displayName": ""
  401. }
  402. },
  403. "StringValue": {
  404. "Type": "STRING",
  405. "Value": "Plist路径"
  406. },
  407. "Type": "BTInputSlot"
  408. },
  409. "randomID": "87UwN5mrQG5x",
  410. "stepSlot": {
  411. "ContainerValue": {
  412. "Type": "BTSpritePlistAction",
  413. "baseSelect": {
  414. "DisplayName": "已选中道具图片",
  415. "Type": "Action",
  416. "Value": "P0zZUc9sgGYz"
  417. },
  418. "frameNameInput": {
  419. "ContainerValue": {
  420. "Type": "BTFuncVariableAction",
  421. "colorName": "More",
  422. "currentStr": "道具图片名",
  423. "fatherFuncID": "q2hMIBClDBV2",
  424. "isIllegal": true,
  425. "randomID": "Sid4AARsbL7A",
  426. "titleLabel": {
  427. "Type": "STRING",
  428. "Value": "道具图片名",
  429. "displayName": ""
  430. }
  431. },
  432. "StringValue": {
  433. "Type": "STRING",
  434. "Value": "图片名"
  435. },
  436. "Type": "BTInputSlot"
  437. },
  438. "isIllegal": true,
  439. "pathInput": {
  440. "ContainerValue": {
  441. "Type": "BTFuncVariableAction",
  442. "colorName": "More",
  443. "currentStr": "Plist路径",
  444. "fatherFuncID": "q2hMIBClDBV2",
  445. "isIllegal": true,
  446. "randomID": "KKS3KQvTa0qG",
  447. "titleLabel": {
  448. "Type": "STRING",
  449. "Value": "Plist路径",
  450. "displayName": ""
  451. }
  452. },
  453. "StringValue": {
  454. "Type": "STRING",
  455. "Value": "Plist路径"
  456. },
  457. "Type": "BTInputSlot"
  458. },
  459. "randomID": "r9mymUEslak0",
  460. "stepSlot": {
  461. "ContainerValue": {
  462. "Type": "BTNodeShowAction",
  463. "baseSelect": {
  464. "DisplayName": "增加道具模块",
  465. "Type": "Action",
  466. "Value": "Ozr3UVNj2Rx6"
  467. },
  468. "isIllegal": true,
  469. "randomID": "6WIBwoW3YBRf",
  470. "stepSlot": {
  471. "ContainerValue": {
  472. "Type": "BTPlayTimeLineAction",
  473. "baseSelect": {
  474. "DisplayName": "常态_已解锁_未选中",
  475. "Type": "Action",
  476. "Value": "7"
  477. },
  478. "isIllegal": true,
  479. "randomID": "wcqcg4lZ8O4v",
  480. "stepSlot": {
  481. "ContainerValue": null,
  482. "Type": "BTStepSlot"
  483. }
  484. },
  485. "Type": "BTStepSlot"
  486. }
  487. },
  488. "Type": "BTStepSlot"
  489. }
  490. },
  491. "Type": "BTStepSlot"
  492. }
  493. },
  494. "Type": "BTSectionSlot"
  495. },
  496. "stepSlot": {
  497. "ContainerValue": {
  498. "Type": "BTIFControlAction",
  499. "conditionA": {
  500. "ContainerValue": {
  501. "Type": "BTStringEqualOperatorAction",
  502. "conditionA": {
  503. "ContainerValue": {
  504. "Type": "BTFuncVariableAction",
  505. "colorName": "More",
  506. "currentStr": "道具默认状态",
  507. "fatherFuncID": "q2hMIBClDBV2",
  508. "isIllegal": true,
  509. "randomID": "mc4s2tjKY3jh",
  510. "titleLabel": {
  511. "Type": "STRING",
  512. "Value": "道具默认状态",
  513. "displayName": ""
  514. }
  515. },
  516. "StringValue": {
  517. "Type": "STRING",
  518. "Value": "Red"
  519. },
  520. "Type": "BTInputSlot"
  521. },
  522. "conditionB": {
  523. "ContainerValue": null,
  524. "StringValue": {
  525. "Type": "STRING",
  526. "Value": "道具已解锁已获得"
  527. },
  528. "Type": "BTInputSlot"
  529. },
  530. "isIllegal": true,
  531. "randomID": "KqBKkZJe0k4n"
  532. },
  533. "Type": "BTBoolSlot"
  534. },
  535. "isIllegal": true,
  536. "randomID": "nHUZWbpx7ht1",
  537. "sectionA": {
  538. "ContainerValue": {
  539. "Type": "BTSpritePlistAction",
  540. "baseSelect": {
  541. "DisplayName": "未选中道具图片",
  542. "Type": "Action",
  543. "Value": "udPYPkvH0U3g"
  544. },
  545. "frameNameInput": {
  546. "ContainerValue": {
  547. "Type": "BTFuncVariableAction",
  548. "colorName": "More",
  549. "currentStr": "道具图片名",
  550. "fatherFuncID": "q2hMIBClDBV2",
  551. "isIllegal": true,
  552. "randomID": "2YeOZNQkmeUV",
  553. "titleLabel": {
  554. "Type": "STRING",
  555. "Value": "道具图片名",
  556. "displayName": ""
  557. }
  558. },
  559. "StringValue": {
  560. "Type": "STRING",
  561. "Value": "图片名"
  562. },
  563. "Type": "BTInputSlot"
  564. },
  565. "isIllegal": true,
  566. "pathInput": {
  567. "ContainerValue": {
  568. "Type": "BTFuncVariableAction",
  569. "colorName": "More",
  570. "currentStr": "Plist路径",
  571. "fatherFuncID": "q2hMIBClDBV2",
  572. "isIllegal": true,
  573. "randomID": "I8YqscSzoHeg",
  574. "titleLabel": {
  575. "Type": "STRING",
  576. "Value": "Plist路径",
  577. "displayName": ""
  578. }
  579. },
  580. "StringValue": {
  581. "Type": "STRING",
  582. "Value": "Plist路径"
  583. },
  584. "Type": "BTInputSlot"
  585. },
  586. "randomID": "Bm34Xz8FNdsb",
  587. "stepSlot": {
  588. "ContainerValue": {
  589. "Type": "BTSpritePlistAction",
  590. "baseSelect": {
  591. "DisplayName": "已选中道具图片",
  592. "Type": "Action",
  593. "Value": "P0zZUc9sgGYz"
  594. },
  595. "frameNameInput": {
  596. "ContainerValue": {
  597. "Type": "BTFuncVariableAction",
  598. "colorName": "More",
  599. "currentStr": "道具图片名",
  600. "fatherFuncID": "q2hMIBClDBV2",
  601. "isIllegal": true,
  602. "randomID": "Q4vJ7tH5MIM0",
  603. "titleLabel": {
  604. "Type": "STRING",
  605. "Value": "道具图片名",
  606. "displayName": ""
  607. }
  608. },
  609. "StringValue": {
  610. "Type": "STRING",
  611. "Value": "图片名"
  612. },
  613. "Type": "BTInputSlot"
  614. },
  615. "isIllegal": true,
  616. "pathInput": {
  617. "ContainerValue": {
  618. "Type": "BTFuncVariableAction",
  619. "colorName": "More",
  620. "currentStr": "Plist路径",
  621. "fatherFuncID": "q2hMIBClDBV2",
  622. "isIllegal": true,
  623. "randomID": "CB9aMazyCkfs",
  624. "titleLabel": {
  625. "Type": "STRING",
  626. "Value": "Plist路径",
  627. "displayName": ""
  628. }
  629. },
  630. "StringValue": {
  631. "Type": "STRING",
  632. "Value": "Plist路径"
  633. },
  634. "Type": "BTInputSlot"
  635. },
  636. "randomID": "zO97PWViWq7i",
  637. "stepSlot": {
  638. "ContainerValue": {
  639. "Type": "BTNodeShowAction",
  640. "baseSelect": {
  641. "DisplayName": "红点模块",
  642. "Type": "Action",
  643. "Value": "tm0924bAwzde"
  644. },
  645. "isIllegal": true,
  646. "randomID": "RWWYh7awW3Ap",
  647. "stepSlot": {
  648. "ContainerValue": {
  649. "TitleInput": {
  650. "ContainerValue": {
  651. "Type": "BTFuncVariableAction",
  652. "colorName": "More",
  653. "currentStr": "道具数量",
  654. "fatherFuncID": "q2hMIBClDBV2",
  655. "isIllegal": true,
  656. "randomID": "2RTIVjZxmtDd",
  657. "titleLabel": {
  658. "Type": "STRING",
  659. "Value": "道具数量",
  660. "displayName": ""
  661. }
  662. },
  663. "StringValue": {
  664. "Type": "STRING",
  665. "Value": "填写标题内容"
  666. },
  667. "Type": "BTInputSlot"
  668. },
  669. "Type": "BTLabelTitleAction",
  670. "baseSelect": {
  671. "DisplayName": "道具数量",
  672. "Type": "Action",
  673. "Value": "VgnvLbYfpABl"
  674. },
  675. "isIllegal": true,
  676. "randomID": "wvdleQBOfBCo",
  677. "stepSlot": {
  678. "ContainerValue": {
  679. "Type": "BTPlayTimeLineAction",
  680. "baseSelect": {
  681. "DisplayName": "常态_已解锁_未选中",
  682. "Type": "Action",
  683. "Value": "7"
  684. },
  685. "isIllegal": true,
  686. "randomID": "lNQKoVHXp3IL",
  687. "stepSlot": {
  688. "ContainerValue": null,
  689. "Type": "BTStepSlot"
  690. }
  691. },
  692. "Type": "BTStepSlot"
  693. }
  694. },
  695. "Type": "BTStepSlot"
  696. }
  697. },
  698. "Type": "BTStepSlot"
  699. }
  700. },
  701. "Type": "BTStepSlot"
  702. }
  703. },
  704. "Type": "BTSectionSlot"
  705. },
  706. "stepSlot": {
  707. "ContainerValue": {
  708. "Type": "BTIFControlAction",
  709. "conditionA": {
  710. "ContainerValue": {
  711. "Type": "BTStringEqualOperatorAction",
  712. "conditionA": {
  713. "ContainerValue": {
  714. "Type": "BTFuncVariableAction",
  715. "colorName": "More",
  716. "currentStr": "道具默认状态",
  717. "fatherFuncID": "q2hMIBClDBV2",
  718. "isIllegal": true,
  719. "randomID": "fU1Y2StpVtdV",
  720. "titleLabel": {
  721. "Type": "STRING",
  722. "Value": "道具默认状态",
  723. "displayName": ""
  724. }
  725. },
  726. "StringValue": {
  727. "Type": "STRING",
  728. "Value": "Red"
  729. },
  730. "Type": "BTInputSlot"
  731. },
  732. "conditionB": {
  733. "ContainerValue": null,
  734. "StringValue": {
  735. "Type": "STRING",
  736. "Value": "道具已解锁已获得_时段"
  737. },
  738. "Type": "BTInputSlot"
  739. },
  740. "isIllegal": true,
  741. "randomID": "Btxu1wnm07UP"
  742. },
  743. "Type": "BTBoolSlot"
  744. },
  745. "isIllegal": true,
  746. "randomID": "1BpZ5Ho9QB0y",
  747. "sectionA": {
  748. "ContainerValue": {
  749. "Type": "BTSpritePlistAction",
  750. "baseSelect": {
  751. "DisplayName": "未选中道具图片",
  752. "Type": "Action",
  753. "Value": "udPYPkvH0U3g"
  754. },
  755. "frameNameInput": {
  756. "ContainerValue": {
  757. "Type": "BTFuncVariableAction",
  758. "colorName": "More",
  759. "currentStr": "道具图片名",
  760. "fatherFuncID": "q2hMIBClDBV2",
  761. "isIllegal": true,
  762. "randomID": "EJWGaiyz1VbL",
  763. "titleLabel": {
  764. "Type": "STRING",
  765. "Value": "道具图片名",
  766. "displayName": ""
  767. }
  768. },
  769. "StringValue": {
  770. "Type": "STRING",
  771. "Value": "图片名"
  772. },
  773. "Type": "BTInputSlot"
  774. },
  775. "isIllegal": true,
  776. "pathInput": {
  777. "ContainerValue": {
  778. "Type": "BTFuncVariableAction",
  779. "colorName": "More",
  780. "currentStr": "Plist路径",
  781. "fatherFuncID": "q2hMIBClDBV2",
  782. "isIllegal": true,
  783. "randomID": "KIL9vygqhsoS",
  784. "titleLabel": {
  785. "Type": "STRING",
  786. "Value": "Plist路径",
  787. "displayName": ""
  788. }
  789. },
  790. "StringValue": {
  791. "Type": "STRING",
  792. "Value": "Plist路径"
  793. },
  794. "Type": "BTInputSlot"
  795. },
  796. "randomID": "MBgh90lzZuVX",
  797. "stepSlot": {
  798. "ContainerValue": {
  799. "Type": "BTSpritePlistAction",
  800. "baseSelect": {
  801. "DisplayName": "已选中道具图片",
  802. "Type": "Action",
  803. "Value": "P0zZUc9sgGYz"
  804. },
  805. "frameNameInput": {
  806. "ContainerValue": {
  807. "Type": "BTFuncVariableAction",
  808. "colorName": "More",
  809. "currentStr": "道具图片名",
  810. "fatherFuncID": "q2hMIBClDBV2",
  811. "isIllegal": true,
  812. "randomID": "hoYxMgAfwIrI",
  813. "titleLabel": {
  814. "Type": "STRING",
  815. "Value": "道具图片名",
  816. "displayName": ""
  817. }
  818. },
  819. "StringValue": {
  820. "Type": "STRING",
  821. "Value": "图片名"
  822. },
  823. "Type": "BTInputSlot"
  824. },
  825. "isIllegal": true,
  826. "pathInput": {
  827. "ContainerValue": {
  828. "Type": "BTFuncVariableAction",
  829. "colorName": "More",
  830. "currentStr": "Plist路径",
  831. "fatherFuncID": "q2hMIBClDBV2",
  832. "isIllegal": true,
  833. "randomID": "G5S79Cgn7SdT",
  834. "titleLabel": {
  835. "Type": "STRING",
  836. "Value": "Plist路径",
  837. "displayName": ""
  838. }
  839. },
  840. "StringValue": {
  841. "Type": "STRING",
  842. "Value": "Plist路径"
  843. },
  844. "Type": "BTInputSlot"
  845. },
  846. "randomID": "BaaQB8lmkY6q",
  847. "stepSlot": {
  848. "ContainerValue": {
  849. "Type": "BTPlayTimeLineAction",
  850. "baseSelect": {
  851. "DisplayName": "常态_已解锁_已选中",
  852. "Type": "Action",
  853. "Value": "8"
  854. },
  855. "isIllegal": true,
  856. "randomID": "3KrfUxuoXzos",
  857. "stepSlot": {
  858. "ContainerValue": {
  859. "Type": "BTNodeShowAction",
  860. "baseSelect": {
  861. "DisplayName": "时段无限使用模块",
  862. "Type": "Action",
  863. "Value": "Cu97fOSuVXQT"
  864. },
  865. "isIllegal": true,
  866. "randomID": "IcnQL7zsuXgD",
  867. "stepSlot": {
  868. "ContainerValue": null,
  869. "Type": "BTStepSlot"
  870. }
  871. },
  872. "Type": "BTStepSlot"
  873. }
  874. },
  875. "Type": "BTStepSlot"
  876. }
  877. },
  878. "Type": "BTStepSlot"
  879. }
  880. },
  881. "Type": "BTSectionSlot"
  882. },
  883. "stepSlot": {
  884. "ContainerValue": null,
  885. "Type": "BTStepSlot"
  886. }
  887. },
  888. "Type": "BTStepSlot"
  889. }
  890. },
  891. "Type": "BTStepSlot"
  892. }
  893. },
  894. "Type": "BTStepSlot"
  895. }
  896. },
  897. "Type": "BTStepSlot"
  898. }
  899. },
  900. "Type": "BTStepSlot"
  901. }
  902. },
  903. "Type": "BTStepSlot"
  904. }
  905. },
  906. "Type": "BTStepSlot"
  907. },
  908. "x": 415.5,
  909. "y": -4
  910. }
  911. }
  912. },
  913. "67kz3oKetAfR": {
  914. "CustomFunc": {
  915. },
  916. "CustomList": {
  917. },
  918. "CustomTestFunc": {
  919. },
  920. "CustomVar": {
  921. },
  922. "DisPlayName": "道具循环标签",
  923. "RedNoteInfo": {
  924. },
  925. "TreeList": {
  926. }
  927. },
  928. "cLSg4NM1lL5B": {
  929. "CustomFunc": {
  930. },
  931. "CustomList": {
  932. },
  933. "CustomTestFunc": {
  934. },
  935. "CustomVar": {
  936. },
  937. "DisPlayName": "连胜任务栏",
  938. "RedNoteInfo": {
  939. },
  940. "TreeList": {
  941. }
  942. },
  943. "ePme3hpPnKaT": {
  944. "CustomFunc": {
  945. "游戏前道具初始化": [
  946. [
  947. "Name",
  948. "游戏前道具初始化",
  949. "q2hMIBClDBV2",
  950. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red"
  951. ],
  952. [
  953. "BTInputSlot",
  954. "道具默认状态"
  955. ],
  956. [
  957. "BTInputSlot",
  958. "解锁等级"
  959. ],
  960. [
  961. "BTInputSlot",
  962. "道具数量"
  963. ],
  964. [
  965. "BTInputSlot",
  966. "时效文本"
  967. ],
  968. [
  969. "BTInputSlot",
  970. "Plist路径"
  971. ],
  972. [
  973. "BTInputSlot",
  974. "道具图片名"
  975. ]
  976. ]
  977. },
  978. "CustomList": {
  979. },
  980. "CustomTestFunc": {
  981. },
  982. "CustomVar": {
  983. },
  984. "DisPlayName": "道具按钮3",
  985. "RedNoteInfo": {
  986. },
  987. "TreeList": {
  988. "Tree0": {
  989. "ExportTree": true,
  990. "ImageIndex": 2,
  991. "Name": {
  992. "Type": "STRING",
  993. "Value": "游戏前道具初始化",
  994. "displayName": ""
  995. },
  996. "Type": "BTCustomFuncHeadAction",
  997. "VarJson": {
  998. "boolJson": {
  999. },
  1000. "numberJson": {
  1001. "Plist路径": "Number",
  1002. "时效文本": "Number",
  1003. "解锁等级": "Number",
  1004. "道具图片名": "Number",
  1005. "道具数量": "Number",
  1006. "道具默认状态": "Number"
  1007. }
  1008. },
  1009. "isIllegal": false,
  1010. "randomID": "q2hMIBClDBV2",
  1011. "stepSlot": {
  1012. "ContainerValue": {
  1013. "Type": "BTNodeHiddenAction",
  1014. "baseSelect": {
  1015. "DisplayName": "增加道具模块",
  1016. "Type": "Action",
  1017. "Value": "Ozr3UVNj2Rx6"
  1018. },
  1019. "isIllegal": true,
  1020. "randomID": "nvQFhkfUEv6C",
  1021. "stepSlot": {
  1022. "ContainerValue": {
  1023. "Type": "BTNodeHiddenAction",
  1024. "baseSelect": {
  1025. "DisplayName": "红点模块",
  1026. "Type": "Action",
  1027. "Value": "tm0924bAwzde"
  1028. },
  1029. "isIllegal": true,
  1030. "randomID": "J4R8LKRRHWrs",
  1031. "stepSlot": {
  1032. "ContainerValue": {
  1033. "Type": "BTNodeHiddenAction",
  1034. "baseSelect": {
  1035. "DisplayName": "时段无限使用模块",
  1036. "Type": "Action",
  1037. "Value": "Cu97fOSuVXQT"
  1038. },
  1039. "isIllegal": true,
  1040. "randomID": "i9HQlCF9OYgR",
  1041. "stepSlot": {
  1042. "ContainerValue": {
  1043. "Type": "BTIFControlAction",
  1044. "conditionA": {
  1045. "ContainerValue": {
  1046. "Type": "BTStringEqualOperatorAction",
  1047. "conditionA": {
  1048. "ContainerValue": {
  1049. "Type": "BTFuncVariableAction",
  1050. "colorName": "More",
  1051. "currentStr": "道具默认状态",
  1052. "fatherFuncID": "q2hMIBClDBV2",
  1053. "isIllegal": true,
  1054. "randomID": "dQsEjmGd1gFV",
  1055. "titleLabel": {
  1056. "Type": "STRING",
  1057. "Value": "道具默认状态",
  1058. "displayName": ""
  1059. }
  1060. },
  1061. "StringValue": {
  1062. "Type": "STRING",
  1063. "Value": "Red"
  1064. },
  1065. "Type": "BTInputSlot"
  1066. },
  1067. "conditionB": {
  1068. "ContainerValue": null,
  1069. "StringValue": {
  1070. "Type": "STRING",
  1071. "Value": "道具未解锁"
  1072. },
  1073. "Type": "BTInputSlot"
  1074. },
  1075. "isIllegal": true,
  1076. "randomID": "wOt4HIxqWCts"
  1077. },
  1078. "Type": "BTBoolSlot"
  1079. },
  1080. "isIllegal": true,
  1081. "randomID": "6l0Z6pOM0iKK",
  1082. "sectionA": {
  1083. "ContainerValue": {
  1084. "TitleInput": {
  1085. "ContainerValue": {
  1086. "Type": "BTStringLinkOperatorAction",
  1087. "conditionA": {
  1088. "ContainerValue": null,
  1089. "StringValue": {
  1090. "Type": "STRING",
  1091. "Value": "Lv:"
  1092. },
  1093. "Type": "BTInputSlot"
  1094. },
  1095. "conditionB": {
  1096. "ContainerValue": {
  1097. "Type": "BTFuncVariableAction",
  1098. "colorName": "More",
  1099. "currentStr": "解锁等级",
  1100. "fatherFuncID": "q2hMIBClDBV2",
  1101. "isIllegal": true,
  1102. "randomID": "5EXV69pjbjIJ",
  1103. "titleLabel": {
  1104. "Type": "STRING",
  1105. "Value": "解锁等级",
  1106. "displayName": ""
  1107. }
  1108. },
  1109. "StringValue": {
  1110. "Type": "STRING",
  1111. "Value": "Banana"
  1112. },
  1113. "Type": "BTInputSlot"
  1114. },
  1115. "isIllegal": true,
  1116. "randomID": "aSKxR5so6RVU"
  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": "XVuohG76KVk3"
  1129. },
  1130. "isIllegal": true,
  1131. "randomID": "vXBhJe3oWzZf",
  1132. "stepSlot": {
  1133. "ContainerValue": {
  1134. "Type": "BTRedShowAction",
  1135. "baseSelect": {
  1136. "DisplayName": "常态_未解锁",
  1137. "Type": "Action",
  1138. "Value": "6"
  1139. },
  1140. "isIllegal": true,
  1141. "randomID": "HTr26QuoklFr",
  1142. "stepSlot": {
  1143. "ContainerValue": {
  1144. "Type": "BTPlayTimeLineAction",
  1145. "baseSelect": {
  1146. "DisplayName": "常态_未解锁",
  1147. "Type": "Action",
  1148. "Value": "6"
  1149. },
  1150. "isIllegal": true,
  1151. "randomID": "5nWzimx0j7Ho",
  1152. "stepSlot": {
  1153. "ContainerValue": null,
  1154. "Type": "BTStepSlot"
  1155. }
  1156. },
  1157. "Type": "BTStepSlot"
  1158. }
  1159. },
  1160. "Type": "BTStepSlot"
  1161. }
  1162. },
  1163. "Type": "BTSectionSlot"
  1164. },
  1165. "stepSlot": {
  1166. "ContainerValue": {
  1167. "Type": "BTIFControlAction",
  1168. "conditionA": {
  1169. "ContainerValue": {
  1170. "Type": "BTStringEqualOperatorAction",
  1171. "conditionA": {
  1172. "ContainerValue": {
  1173. "Type": "BTFuncVariableAction",
  1174. "colorName": "More",
  1175. "currentStr": "道具默认状态",
  1176. "fatherFuncID": "q2hMIBClDBV2",
  1177. "isIllegal": true,
  1178. "randomID": "DsXJ4ar7etqZ",
  1179. "titleLabel": {
  1180. "Type": "STRING",
  1181. "Value": "道具默认状态",
  1182. "displayName": ""
  1183. }
  1184. },
  1185. "StringValue": {
  1186. "Type": "STRING",
  1187. "Value": "Red"
  1188. },
  1189. "Type": "BTInputSlot"
  1190. },
  1191. "conditionB": {
  1192. "ContainerValue": null,
  1193. "StringValue": {
  1194. "Type": "STRING",
  1195. "Value": "道具已解锁未获得"
  1196. },
  1197. "Type": "BTInputSlot"
  1198. },
  1199. "isIllegal": true,
  1200. "randomID": "E6NSsJgZs9in"
  1201. },
  1202. "Type": "BTBoolSlot"
  1203. },
  1204. "isIllegal": true,
  1205. "randomID": "jjUOPqYQG3vB",
  1206. "sectionA": {
  1207. "ContainerValue": {
  1208. "Type": "BTSpritePlistAction",
  1209. "baseSelect": {
  1210. "DisplayName": "未选中道具图片",
  1211. "Type": "Action",
  1212. "Value": "udPYPkvH0U3g"
  1213. },
  1214. "frameNameInput": {
  1215. "ContainerValue": {
  1216. "Type": "BTFuncVariableAction",
  1217. "colorName": "More",
  1218. "currentStr": "道具图片名",
  1219. "fatherFuncID": "q2hMIBClDBV2",
  1220. "isIllegal": true,
  1221. "randomID": "9523KWm2K8c8",
  1222. "titleLabel": {
  1223. "Type": "STRING",
  1224. "Value": "道具图片名",
  1225. "displayName": ""
  1226. }
  1227. },
  1228. "StringValue": {
  1229. "Type": "STRING",
  1230. "Value": "图片名"
  1231. },
  1232. "Type": "BTInputSlot"
  1233. },
  1234. "isIllegal": true,
  1235. "pathInput": {
  1236. "ContainerValue": {
  1237. "Type": "BTFuncVariableAction",
  1238. "colorName": "More",
  1239. "currentStr": "Plist路径",
  1240. "fatherFuncID": "q2hMIBClDBV2",
  1241. "isIllegal": true,
  1242. "randomID": "OiBY7CKNgzTB",
  1243. "titleLabel": {
  1244. "Type": "STRING",
  1245. "Value": "Plist路径",
  1246. "displayName": ""
  1247. }
  1248. },
  1249. "StringValue": {
  1250. "Type": "STRING",
  1251. "Value": "Plist路径"
  1252. },
  1253. "Type": "BTInputSlot"
  1254. },
  1255. "randomID": "87UwN5mrQG5x",
  1256. "stepSlot": {
  1257. "ContainerValue": {
  1258. "Type": "BTSpritePlistAction",
  1259. "baseSelect": {
  1260. "DisplayName": "已选中道具图片",
  1261. "Type": "Action",
  1262. "Value": "P0zZUc9sgGYz"
  1263. },
  1264. "frameNameInput": {
  1265. "ContainerValue": {
  1266. "Type": "BTFuncVariableAction",
  1267. "colorName": "More",
  1268. "currentStr": "道具图片名",
  1269. "fatherFuncID": "q2hMIBClDBV2",
  1270. "isIllegal": true,
  1271. "randomID": "Sid4AARsbL7A",
  1272. "titleLabel": {
  1273. "Type": "STRING",
  1274. "Value": "道具图片名",
  1275. "displayName": ""
  1276. }
  1277. },
  1278. "StringValue": {
  1279. "Type": "STRING",
  1280. "Value": "图片名"
  1281. },
  1282. "Type": "BTInputSlot"
  1283. },
  1284. "isIllegal": true,
  1285. "pathInput": {
  1286. "ContainerValue": {
  1287. "Type": "BTFuncVariableAction",
  1288. "colorName": "More",
  1289. "currentStr": "Plist路径",
  1290. "fatherFuncID": "q2hMIBClDBV2",
  1291. "isIllegal": true,
  1292. "randomID": "KKS3KQvTa0qG",
  1293. "titleLabel": {
  1294. "Type": "STRING",
  1295. "Value": "Plist路径",
  1296. "displayName": ""
  1297. }
  1298. },
  1299. "StringValue": {
  1300. "Type": "STRING",
  1301. "Value": "Plist路径"
  1302. },
  1303. "Type": "BTInputSlot"
  1304. },
  1305. "randomID": "r9mymUEslak0",
  1306. "stepSlot": {
  1307. "ContainerValue": {
  1308. "Type": "BTNodeShowAction",
  1309. "baseSelect": {
  1310. "DisplayName": "增加道具模块",
  1311. "Type": "Action",
  1312. "Value": "Ozr3UVNj2Rx6"
  1313. },
  1314. "isIllegal": true,
  1315. "randomID": "6WIBwoW3YBRf",
  1316. "stepSlot": {
  1317. "ContainerValue": {
  1318. "Type": "BTPlayTimeLineAction",
  1319. "baseSelect": {
  1320. "DisplayName": "常态_已解锁_未选中",
  1321. "Type": "Action",
  1322. "Value": "7"
  1323. },
  1324. "isIllegal": true,
  1325. "randomID": "wcqcg4lZ8O4v",
  1326. "stepSlot": {
  1327. "ContainerValue": null,
  1328. "Type": "BTStepSlot"
  1329. }
  1330. },
  1331. "Type": "BTStepSlot"
  1332. }
  1333. },
  1334. "Type": "BTStepSlot"
  1335. }
  1336. },
  1337. "Type": "BTStepSlot"
  1338. }
  1339. },
  1340. "Type": "BTSectionSlot"
  1341. },
  1342. "stepSlot": {
  1343. "ContainerValue": {
  1344. "Type": "BTIFControlAction",
  1345. "conditionA": {
  1346. "ContainerValue": {
  1347. "Type": "BTStringEqualOperatorAction",
  1348. "conditionA": {
  1349. "ContainerValue": {
  1350. "Type": "BTFuncVariableAction",
  1351. "colorName": "More",
  1352. "currentStr": "道具默认状态",
  1353. "fatherFuncID": "q2hMIBClDBV2",
  1354. "isIllegal": true,
  1355. "randomID": "mc4s2tjKY3jh",
  1356. "titleLabel": {
  1357. "Type": "STRING",
  1358. "Value": "道具默认状态",
  1359. "displayName": ""
  1360. }
  1361. },
  1362. "StringValue": {
  1363. "Type": "STRING",
  1364. "Value": "Red"
  1365. },
  1366. "Type": "BTInputSlot"
  1367. },
  1368. "conditionB": {
  1369. "ContainerValue": null,
  1370. "StringValue": {
  1371. "Type": "STRING",
  1372. "Value": "道具已解锁已获得"
  1373. },
  1374. "Type": "BTInputSlot"
  1375. },
  1376. "isIllegal": true,
  1377. "randomID": "KqBKkZJe0k4n"
  1378. },
  1379. "Type": "BTBoolSlot"
  1380. },
  1381. "isIllegal": true,
  1382. "randomID": "nHUZWbpx7ht1",
  1383. "sectionA": {
  1384. "ContainerValue": {
  1385. "Type": "BTSpritePlistAction",
  1386. "baseSelect": {
  1387. "DisplayName": "未选中道具图片",
  1388. "Type": "Action",
  1389. "Value": "udPYPkvH0U3g"
  1390. },
  1391. "frameNameInput": {
  1392. "ContainerValue": {
  1393. "Type": "BTFuncVariableAction",
  1394. "colorName": "More",
  1395. "currentStr": "道具图片名",
  1396. "fatherFuncID": "q2hMIBClDBV2",
  1397. "isIllegal": true,
  1398. "randomID": "2YeOZNQkmeUV",
  1399. "titleLabel": {
  1400. "Type": "STRING",
  1401. "Value": "道具图片名",
  1402. "displayName": ""
  1403. }
  1404. },
  1405. "StringValue": {
  1406. "Type": "STRING",
  1407. "Value": "图片名"
  1408. },
  1409. "Type": "BTInputSlot"
  1410. },
  1411. "isIllegal": true,
  1412. "pathInput": {
  1413. "ContainerValue": {
  1414. "Type": "BTFuncVariableAction",
  1415. "colorName": "More",
  1416. "currentStr": "Plist路径",
  1417. "fatherFuncID": "q2hMIBClDBV2",
  1418. "isIllegal": true,
  1419. "randomID": "I8YqscSzoHeg",
  1420. "titleLabel": {
  1421. "Type": "STRING",
  1422. "Value": "Plist路径",
  1423. "displayName": ""
  1424. }
  1425. },
  1426. "StringValue": {
  1427. "Type": "STRING",
  1428. "Value": "Plist路径"
  1429. },
  1430. "Type": "BTInputSlot"
  1431. },
  1432. "randomID": "Bm34Xz8FNdsb",
  1433. "stepSlot": {
  1434. "ContainerValue": {
  1435. "Type": "BTSpritePlistAction",
  1436. "baseSelect": {
  1437. "DisplayName": "已选中道具图片",
  1438. "Type": "Action",
  1439. "Value": "P0zZUc9sgGYz"
  1440. },
  1441. "frameNameInput": {
  1442. "ContainerValue": {
  1443. "Type": "BTFuncVariableAction",
  1444. "colorName": "More",
  1445. "currentStr": "道具图片名",
  1446. "fatherFuncID": "q2hMIBClDBV2",
  1447. "isIllegal": true,
  1448. "randomID": "Q4vJ7tH5MIM0",
  1449. "titleLabel": {
  1450. "Type": "STRING",
  1451. "Value": "道具图片名",
  1452. "displayName": ""
  1453. }
  1454. },
  1455. "StringValue": {
  1456. "Type": "STRING",
  1457. "Value": "图片名"
  1458. },
  1459. "Type": "BTInputSlot"
  1460. },
  1461. "isIllegal": true,
  1462. "pathInput": {
  1463. "ContainerValue": {
  1464. "Type": "BTFuncVariableAction",
  1465. "colorName": "More",
  1466. "currentStr": "Plist路径",
  1467. "fatherFuncID": "q2hMIBClDBV2",
  1468. "isIllegal": true,
  1469. "randomID": "CB9aMazyCkfs",
  1470. "titleLabel": {
  1471. "Type": "STRING",
  1472. "Value": "Plist路径",
  1473. "displayName": ""
  1474. }
  1475. },
  1476. "StringValue": {
  1477. "Type": "STRING",
  1478. "Value": "Plist路径"
  1479. },
  1480. "Type": "BTInputSlot"
  1481. },
  1482. "randomID": "zO97PWViWq7i",
  1483. "stepSlot": {
  1484. "ContainerValue": {
  1485. "Type": "BTNodeShowAction",
  1486. "baseSelect": {
  1487. "DisplayName": "红点模块",
  1488. "Type": "Action",
  1489. "Value": "tm0924bAwzde"
  1490. },
  1491. "isIllegal": true,
  1492. "randomID": "RWWYh7awW3Ap",
  1493. "stepSlot": {
  1494. "ContainerValue": {
  1495. "TitleInput": {
  1496. "ContainerValue": {
  1497. "Type": "BTFuncVariableAction",
  1498. "colorName": "More",
  1499. "currentStr": "道具数量",
  1500. "fatherFuncID": "q2hMIBClDBV2",
  1501. "isIllegal": true,
  1502. "randomID": "2RTIVjZxmtDd",
  1503. "titleLabel": {
  1504. "Type": "STRING",
  1505. "Value": "道具数量",
  1506. "displayName": ""
  1507. }
  1508. },
  1509. "StringValue": {
  1510. "Type": "STRING",
  1511. "Value": "填写标题内容"
  1512. },
  1513. "Type": "BTInputSlot"
  1514. },
  1515. "Type": "BTLabelTitleAction",
  1516. "baseSelect": {
  1517. "DisplayName": "道具数量",
  1518. "Type": "Action",
  1519. "Value": "VgnvLbYfpABl"
  1520. },
  1521. "isIllegal": true,
  1522. "randomID": "wvdleQBOfBCo",
  1523. "stepSlot": {
  1524. "ContainerValue": {
  1525. "Type": "BTPlayTimeLineAction",
  1526. "baseSelect": {
  1527. "DisplayName": "常态_已解锁_未选中",
  1528. "Type": "Action",
  1529. "Value": "7"
  1530. },
  1531. "isIllegal": true,
  1532. "randomID": "lNQKoVHXp3IL",
  1533. "stepSlot": {
  1534. "ContainerValue": null,
  1535. "Type": "BTStepSlot"
  1536. }
  1537. },
  1538. "Type": "BTStepSlot"
  1539. }
  1540. },
  1541. "Type": "BTStepSlot"
  1542. }
  1543. },
  1544. "Type": "BTStepSlot"
  1545. }
  1546. },
  1547. "Type": "BTStepSlot"
  1548. }
  1549. },
  1550. "Type": "BTSectionSlot"
  1551. },
  1552. "stepSlot": {
  1553. "ContainerValue": {
  1554. "Type": "BTIFControlAction",
  1555. "conditionA": {
  1556. "ContainerValue": {
  1557. "Type": "BTStringEqualOperatorAction",
  1558. "conditionA": {
  1559. "ContainerValue": {
  1560. "Type": "BTFuncVariableAction",
  1561. "colorName": "More",
  1562. "currentStr": "道具默认状态",
  1563. "fatherFuncID": "q2hMIBClDBV2",
  1564. "isIllegal": true,
  1565. "randomID": "fU1Y2StpVtdV",
  1566. "titleLabel": {
  1567. "Type": "STRING",
  1568. "Value": "道具默认状态",
  1569. "displayName": ""
  1570. }
  1571. },
  1572. "StringValue": {
  1573. "Type": "STRING",
  1574. "Value": "Red"
  1575. },
  1576. "Type": "BTInputSlot"
  1577. },
  1578. "conditionB": {
  1579. "ContainerValue": null,
  1580. "StringValue": {
  1581. "Type": "STRING",
  1582. "Value": "道具已解锁已获得_时段"
  1583. },
  1584. "Type": "BTInputSlot"
  1585. },
  1586. "isIllegal": true,
  1587. "randomID": "Btxu1wnm07UP"
  1588. },
  1589. "Type": "BTBoolSlot"
  1590. },
  1591. "isIllegal": true,
  1592. "randomID": "1BpZ5Ho9QB0y",
  1593. "sectionA": {
  1594. "ContainerValue": {
  1595. "Type": "BTSpritePlistAction",
  1596. "baseSelect": {
  1597. "DisplayName": "未选中道具图片",
  1598. "Type": "Action",
  1599. "Value": "udPYPkvH0U3g"
  1600. },
  1601. "frameNameInput": {
  1602. "ContainerValue": {
  1603. "Type": "BTFuncVariableAction",
  1604. "colorName": "More",
  1605. "currentStr": "道具图片名",
  1606. "fatherFuncID": "q2hMIBClDBV2",
  1607. "isIllegal": true,
  1608. "randomID": "EJWGaiyz1VbL",
  1609. "titleLabel": {
  1610. "Type": "STRING",
  1611. "Value": "道具图片名",
  1612. "displayName": ""
  1613. }
  1614. },
  1615. "StringValue": {
  1616. "Type": "STRING",
  1617. "Value": "图片名"
  1618. },
  1619. "Type": "BTInputSlot"
  1620. },
  1621. "isIllegal": true,
  1622. "pathInput": {
  1623. "ContainerValue": {
  1624. "Type": "BTFuncVariableAction",
  1625. "colorName": "More",
  1626. "currentStr": "Plist路径",
  1627. "fatherFuncID": "q2hMIBClDBV2",
  1628. "isIllegal": true,
  1629. "randomID": "KIL9vygqhsoS",
  1630. "titleLabel": {
  1631. "Type": "STRING",
  1632. "Value": "Plist路径",
  1633. "displayName": ""
  1634. }
  1635. },
  1636. "StringValue": {
  1637. "Type": "STRING",
  1638. "Value": "Plist路径"
  1639. },
  1640. "Type": "BTInputSlot"
  1641. },
  1642. "randomID": "MBgh90lzZuVX",
  1643. "stepSlot": {
  1644. "ContainerValue": {
  1645. "Type": "BTSpritePlistAction",
  1646. "baseSelect": {
  1647. "DisplayName": "已选中道具图片",
  1648. "Type": "Action",
  1649. "Value": "P0zZUc9sgGYz"
  1650. },
  1651. "frameNameInput": {
  1652. "ContainerValue": {
  1653. "Type": "BTFuncVariableAction",
  1654. "colorName": "More",
  1655. "currentStr": "道具图片名",
  1656. "fatherFuncID": "q2hMIBClDBV2",
  1657. "isIllegal": true,
  1658. "randomID": "hoYxMgAfwIrI",
  1659. "titleLabel": {
  1660. "Type": "STRING",
  1661. "Value": "道具图片名",
  1662. "displayName": ""
  1663. }
  1664. },
  1665. "StringValue": {
  1666. "Type": "STRING",
  1667. "Value": "图片名"
  1668. },
  1669. "Type": "BTInputSlot"
  1670. },
  1671. "isIllegal": true,
  1672. "pathInput": {
  1673. "ContainerValue": {
  1674. "Type": "BTFuncVariableAction",
  1675. "colorName": "More",
  1676. "currentStr": "Plist路径",
  1677. "fatherFuncID": "q2hMIBClDBV2",
  1678. "isIllegal": true,
  1679. "randomID": "G5S79Cgn7SdT",
  1680. "titleLabel": {
  1681. "Type": "STRING",
  1682. "Value": "Plist路径",
  1683. "displayName": ""
  1684. }
  1685. },
  1686. "StringValue": {
  1687. "Type": "STRING",
  1688. "Value": "Plist路径"
  1689. },
  1690. "Type": "BTInputSlot"
  1691. },
  1692. "randomID": "BaaQB8lmkY6q",
  1693. "stepSlot": {
  1694. "ContainerValue": {
  1695. "Type": "BTPlayTimeLineAction",
  1696. "baseSelect": {
  1697. "DisplayName": "常态_已解锁_已选中",
  1698. "Type": "Action",
  1699. "Value": "8"
  1700. },
  1701. "isIllegal": true,
  1702. "randomID": "3KrfUxuoXzos",
  1703. "stepSlot": {
  1704. "ContainerValue": {
  1705. "Type": "BTNodeShowAction",
  1706. "baseSelect": {
  1707. "DisplayName": "时段无限使用模块",
  1708. "Type": "Action",
  1709. "Value": "Cu97fOSuVXQT"
  1710. },
  1711. "isIllegal": true,
  1712. "randomID": "IcnQL7zsuXgD",
  1713. "stepSlot": {
  1714. "ContainerValue": null,
  1715. "Type": "BTStepSlot"
  1716. }
  1717. },
  1718. "Type": "BTStepSlot"
  1719. }
  1720. },
  1721. "Type": "BTStepSlot"
  1722. }
  1723. },
  1724. "Type": "BTStepSlot"
  1725. }
  1726. },
  1727. "Type": "BTSectionSlot"
  1728. },
  1729. "stepSlot": {
  1730. "ContainerValue": null,
  1731. "Type": "BTStepSlot"
  1732. }
  1733. },
  1734. "Type": "BTStepSlot"
  1735. }
  1736. },
  1737. "Type": "BTStepSlot"
  1738. }
  1739. },
  1740. "Type": "BTStepSlot"
  1741. }
  1742. },
  1743. "Type": "BTStepSlot"
  1744. }
  1745. },
  1746. "Type": "BTStepSlot"
  1747. }
  1748. },
  1749. "Type": "BTStepSlot"
  1750. }
  1751. },
  1752. "Type": "BTStepSlot"
  1753. },
  1754. "x": 415.5,
  1755. "y": -4
  1756. }
  1757. }
  1758. },
  1759. "uPZlJJAekSdf": {
  1760. "CustomFunc": {
  1761. "游戏前道具初始化": [
  1762. [
  1763. "Name",
  1764. "游戏前道具初始化",
  1765. "q2hMIBClDBV2",
  1766. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red"
  1767. ],
  1768. [
  1769. "BTInputSlot",
  1770. "道具默认状态"
  1771. ],
  1772. [
  1773. "BTInputSlot",
  1774. "解锁等级"
  1775. ],
  1776. [
  1777. "BTInputSlot",
  1778. "道具数量"
  1779. ],
  1780. [
  1781. "BTInputSlot",
  1782. "时效文本"
  1783. ],
  1784. [
  1785. "BTInputSlot",
  1786. "Plist路径"
  1787. ],
  1788. [
  1789. "BTInputSlot",
  1790. "道具图片名"
  1791. ]
  1792. ]
  1793. },
  1794. "CustomList": {
  1795. },
  1796. "CustomTestFunc": {
  1797. },
  1798. "CustomVar": {
  1799. },
  1800. "DisPlayName": "道具按钮1",
  1801. "RedNoteInfo": {
  1802. },
  1803. "TreeList": {
  1804. "Tree0": {
  1805. "ExportTree": true,
  1806. "ImageIndex": 2,
  1807. "Name": {
  1808. "Type": "STRING",
  1809. "Value": "游戏前道具初始化",
  1810. "displayName": ""
  1811. },
  1812. "Type": "BTCustomFuncHeadAction",
  1813. "VarJson": {
  1814. "boolJson": {
  1815. },
  1816. "numberJson": {
  1817. "Plist路径": "Number",
  1818. "时效文本": "Number",
  1819. "解锁等级": "Number",
  1820. "道具图片名": "Number",
  1821. "道具数量": "Number",
  1822. "道具默认状态": "Number"
  1823. }
  1824. },
  1825. "isIllegal": false,
  1826. "randomID": "q2hMIBClDBV2",
  1827. "stepSlot": {
  1828. "ContainerValue": {
  1829. "Type": "BTNodeHiddenAction",
  1830. "baseSelect": {
  1831. "DisplayName": "增加道具模块",
  1832. "Type": "Action",
  1833. "Value": "Ozr3UVNj2Rx6"
  1834. },
  1835. "isIllegal": true,
  1836. "randomID": "nvQFhkfUEv6C",
  1837. "stepSlot": {
  1838. "ContainerValue": {
  1839. "Type": "BTNodeHiddenAction",
  1840. "baseSelect": {
  1841. "DisplayName": "红点模块",
  1842. "Type": "Action",
  1843. "Value": "tm0924bAwzde"
  1844. },
  1845. "isIllegal": true,
  1846. "randomID": "J4R8LKRRHWrs",
  1847. "stepSlot": {
  1848. "ContainerValue": {
  1849. "Type": "BTNodeHiddenAction",
  1850. "baseSelect": {
  1851. "DisplayName": "时段无限使用模块",
  1852. "Type": "Action",
  1853. "Value": "Cu97fOSuVXQT"
  1854. },
  1855. "isIllegal": true,
  1856. "randomID": "i9HQlCF9OYgR",
  1857. "stepSlot": {
  1858. "ContainerValue": {
  1859. "Type": "BTIFControlAction",
  1860. "conditionA": {
  1861. "ContainerValue": {
  1862. "Type": "BTStringEqualOperatorAction",
  1863. "conditionA": {
  1864. "ContainerValue": {
  1865. "Type": "BTFuncVariableAction",
  1866. "colorName": "More",
  1867. "currentStr": "道具默认状态",
  1868. "fatherFuncID": "q2hMIBClDBV2",
  1869. "isIllegal": true,
  1870. "randomID": "dQsEjmGd1gFV",
  1871. "titleLabel": {
  1872. "Type": "STRING",
  1873. "Value": "道具默认状态",
  1874. "displayName": ""
  1875. }
  1876. },
  1877. "StringValue": {
  1878. "Type": "STRING",
  1879. "Value": "Red"
  1880. },
  1881. "Type": "BTInputSlot"
  1882. },
  1883. "conditionB": {
  1884. "ContainerValue": null,
  1885. "StringValue": {
  1886. "Type": "STRING",
  1887. "Value": "道具未解锁"
  1888. },
  1889. "Type": "BTInputSlot"
  1890. },
  1891. "isIllegal": true,
  1892. "randomID": "wOt4HIxqWCts"
  1893. },
  1894. "Type": "BTBoolSlot"
  1895. },
  1896. "isIllegal": true,
  1897. "randomID": "6l0Z6pOM0iKK",
  1898. "sectionA": {
  1899. "ContainerValue": {
  1900. "TitleInput": {
  1901. "ContainerValue": {
  1902. "Type": "BTStringLinkOperatorAction",
  1903. "conditionA": {
  1904. "ContainerValue": null,
  1905. "StringValue": {
  1906. "Type": "STRING",
  1907. "Value": "Lv:"
  1908. },
  1909. "Type": "BTInputSlot"
  1910. },
  1911. "conditionB": {
  1912. "ContainerValue": {
  1913. "Type": "BTFuncVariableAction",
  1914. "colorName": "More",
  1915. "currentStr": "解锁等级",
  1916. "fatherFuncID": "q2hMIBClDBV2",
  1917. "isIllegal": true,
  1918. "randomID": "5EXV69pjbjIJ",
  1919. "titleLabel": {
  1920. "Type": "STRING",
  1921. "Value": "解锁等级",
  1922. "displayName": ""
  1923. }
  1924. },
  1925. "StringValue": {
  1926. "Type": "STRING",
  1927. "Value": "Banana"
  1928. },
  1929. "Type": "BTInputSlot"
  1930. },
  1931. "isIllegal": true,
  1932. "randomID": "aSKxR5so6RVU"
  1933. },
  1934. "StringValue": {
  1935. "Type": "STRING",
  1936. "Value": "填写标题内容"
  1937. },
  1938. "Type": "BTInputSlot"
  1939. },
  1940. "Type": "BTLabelTitleAction",
  1941. "baseSelect": {
  1942. "DisplayName": "解锁等级",
  1943. "Type": "Action",
  1944. "Value": "XVuohG76KVk3"
  1945. },
  1946. "isIllegal": true,
  1947. "randomID": "vXBhJe3oWzZf",
  1948. "stepSlot": {
  1949. "ContainerValue": {
  1950. "Type": "BTRedShowAction",
  1951. "baseSelect": {
  1952. "DisplayName": "常态_未解锁",
  1953. "Type": "Action",
  1954. "Value": "6"
  1955. },
  1956. "isIllegal": true,
  1957. "randomID": "HTr26QuoklFr",
  1958. "stepSlot": {
  1959. "ContainerValue": {
  1960. "Type": "BTPlayTimeLineAction",
  1961. "baseSelect": {
  1962. "DisplayName": "常态_未解锁",
  1963. "Type": "Action",
  1964. "Value": "6"
  1965. },
  1966. "isIllegal": true,
  1967. "randomID": "5nWzimx0j7Ho",
  1968. "stepSlot": {
  1969. "ContainerValue": null,
  1970. "Type": "BTStepSlot"
  1971. }
  1972. },
  1973. "Type": "BTStepSlot"
  1974. }
  1975. },
  1976. "Type": "BTStepSlot"
  1977. }
  1978. },
  1979. "Type": "BTSectionSlot"
  1980. },
  1981. "stepSlot": {
  1982. "ContainerValue": {
  1983. "Type": "BTIFControlAction",
  1984. "conditionA": {
  1985. "ContainerValue": {
  1986. "Type": "BTStringEqualOperatorAction",
  1987. "conditionA": {
  1988. "ContainerValue": {
  1989. "Type": "BTFuncVariableAction",
  1990. "colorName": "More",
  1991. "currentStr": "道具默认状态",
  1992. "fatherFuncID": "q2hMIBClDBV2",
  1993. "isIllegal": true,
  1994. "randomID": "DsXJ4ar7etqZ",
  1995. "titleLabel": {
  1996. "Type": "STRING",
  1997. "Value": "道具默认状态",
  1998. "displayName": ""
  1999. }
  2000. },
  2001. "StringValue": {
  2002. "Type": "STRING",
  2003. "Value": "Red"
  2004. },
  2005. "Type": "BTInputSlot"
  2006. },
  2007. "conditionB": {
  2008. "ContainerValue": null,
  2009. "StringValue": {
  2010. "Type": "STRING",
  2011. "Value": "道具已解锁未获得"
  2012. },
  2013. "Type": "BTInputSlot"
  2014. },
  2015. "isIllegal": true,
  2016. "randomID": "E6NSsJgZs9in"
  2017. },
  2018. "Type": "BTBoolSlot"
  2019. },
  2020. "isIllegal": true,
  2021. "randomID": "jjUOPqYQG3vB",
  2022. "sectionA": {
  2023. "ContainerValue": {
  2024. "Type": "BTSpritePlistAction",
  2025. "baseSelect": {
  2026. "DisplayName": "未选中道具图片",
  2027. "Type": "Action",
  2028. "Value": "udPYPkvH0U3g"
  2029. },
  2030. "frameNameInput": {
  2031. "ContainerValue": {
  2032. "Type": "BTFuncVariableAction",
  2033. "colorName": "More",
  2034. "currentStr": "道具图片名",
  2035. "fatherFuncID": "q2hMIBClDBV2",
  2036. "isIllegal": true,
  2037. "randomID": "9523KWm2K8c8",
  2038. "titleLabel": {
  2039. "Type": "STRING",
  2040. "Value": "道具图片名",
  2041. "displayName": ""
  2042. }
  2043. },
  2044. "StringValue": {
  2045. "Type": "STRING",
  2046. "Value": "图片名"
  2047. },
  2048. "Type": "BTInputSlot"
  2049. },
  2050. "isIllegal": true,
  2051. "pathInput": {
  2052. "ContainerValue": {
  2053. "Type": "BTFuncVariableAction",
  2054. "colorName": "More",
  2055. "currentStr": "Plist路径",
  2056. "fatherFuncID": "q2hMIBClDBV2",
  2057. "isIllegal": true,
  2058. "randomID": "OiBY7CKNgzTB",
  2059. "titleLabel": {
  2060. "Type": "STRING",
  2061. "Value": "Plist路径",
  2062. "displayName": ""
  2063. }
  2064. },
  2065. "StringValue": {
  2066. "Type": "STRING",
  2067. "Value": "Plist路径"
  2068. },
  2069. "Type": "BTInputSlot"
  2070. },
  2071. "randomID": "87UwN5mrQG5x",
  2072. "stepSlot": {
  2073. "ContainerValue": {
  2074. "Type": "BTSpritePlistAction",
  2075. "baseSelect": {
  2076. "DisplayName": "已选中道具图片",
  2077. "Type": "Action",
  2078. "Value": "P0zZUc9sgGYz"
  2079. },
  2080. "frameNameInput": {
  2081. "ContainerValue": {
  2082. "Type": "BTFuncVariableAction",
  2083. "colorName": "More",
  2084. "currentStr": "道具图片名",
  2085. "fatherFuncID": "q2hMIBClDBV2",
  2086. "isIllegal": true,
  2087. "randomID": "Sid4AARsbL7A",
  2088. "titleLabel": {
  2089. "Type": "STRING",
  2090. "Value": "道具图片名",
  2091. "displayName": ""
  2092. }
  2093. },
  2094. "StringValue": {
  2095. "Type": "STRING",
  2096. "Value": "图片名"
  2097. },
  2098. "Type": "BTInputSlot"
  2099. },
  2100. "isIllegal": true,
  2101. "pathInput": {
  2102. "ContainerValue": {
  2103. "Type": "BTFuncVariableAction",
  2104. "colorName": "More",
  2105. "currentStr": "Plist路径",
  2106. "fatherFuncID": "q2hMIBClDBV2",
  2107. "isIllegal": true,
  2108. "randomID": "KKS3KQvTa0qG",
  2109. "titleLabel": {
  2110. "Type": "STRING",
  2111. "Value": "Plist路径",
  2112. "displayName": ""
  2113. }
  2114. },
  2115. "StringValue": {
  2116. "Type": "STRING",
  2117. "Value": "Plist路径"
  2118. },
  2119. "Type": "BTInputSlot"
  2120. },
  2121. "randomID": "r9mymUEslak0",
  2122. "stepSlot": {
  2123. "ContainerValue": {
  2124. "Type": "BTNodeShowAction",
  2125. "baseSelect": {
  2126. "DisplayName": "增加道具模块",
  2127. "Type": "Action",
  2128. "Value": "Ozr3UVNj2Rx6"
  2129. },
  2130. "isIllegal": true,
  2131. "randomID": "6WIBwoW3YBRf",
  2132. "stepSlot": {
  2133. "ContainerValue": {
  2134. "Type": "BTPlayTimeLineAction",
  2135. "baseSelect": {
  2136. "DisplayName": "常态_已解锁_未选中",
  2137. "Type": "Action",
  2138. "Value": "7"
  2139. },
  2140. "isIllegal": true,
  2141. "randomID": "wcqcg4lZ8O4v",
  2142. "stepSlot": {
  2143. "ContainerValue": null,
  2144. "Type": "BTStepSlot"
  2145. }
  2146. },
  2147. "Type": "BTStepSlot"
  2148. }
  2149. },
  2150. "Type": "BTStepSlot"
  2151. }
  2152. },
  2153. "Type": "BTStepSlot"
  2154. }
  2155. },
  2156. "Type": "BTSectionSlot"
  2157. },
  2158. "stepSlot": {
  2159. "ContainerValue": {
  2160. "Type": "BTIFControlAction",
  2161. "conditionA": {
  2162. "ContainerValue": {
  2163. "Type": "BTStringEqualOperatorAction",
  2164. "conditionA": {
  2165. "ContainerValue": {
  2166. "Type": "BTFuncVariableAction",
  2167. "colorName": "More",
  2168. "currentStr": "道具默认状态",
  2169. "fatherFuncID": "q2hMIBClDBV2",
  2170. "isIllegal": true,
  2171. "randomID": "mc4s2tjKY3jh",
  2172. "titleLabel": {
  2173. "Type": "STRING",
  2174. "Value": "道具默认状态",
  2175. "displayName": ""
  2176. }
  2177. },
  2178. "StringValue": {
  2179. "Type": "STRING",
  2180. "Value": "Red"
  2181. },
  2182. "Type": "BTInputSlot"
  2183. },
  2184. "conditionB": {
  2185. "ContainerValue": null,
  2186. "StringValue": {
  2187. "Type": "STRING",
  2188. "Value": "道具已解锁已获得"
  2189. },
  2190. "Type": "BTInputSlot"
  2191. },
  2192. "isIllegal": true,
  2193. "randomID": "KqBKkZJe0k4n"
  2194. },
  2195. "Type": "BTBoolSlot"
  2196. },
  2197. "isIllegal": true,
  2198. "randomID": "nHUZWbpx7ht1",
  2199. "sectionA": {
  2200. "ContainerValue": {
  2201. "Type": "BTSpritePlistAction",
  2202. "baseSelect": {
  2203. "DisplayName": "未选中道具图片",
  2204. "Type": "Action",
  2205. "Value": "udPYPkvH0U3g"
  2206. },
  2207. "frameNameInput": {
  2208. "ContainerValue": {
  2209. "Type": "BTFuncVariableAction",
  2210. "colorName": "More",
  2211. "currentStr": "道具图片名",
  2212. "fatherFuncID": "q2hMIBClDBV2",
  2213. "isIllegal": true,
  2214. "randomID": "2YeOZNQkmeUV",
  2215. "titleLabel": {
  2216. "Type": "STRING",
  2217. "Value": "道具图片名",
  2218. "displayName": ""
  2219. }
  2220. },
  2221. "StringValue": {
  2222. "Type": "STRING",
  2223. "Value": "图片名"
  2224. },
  2225. "Type": "BTInputSlot"
  2226. },
  2227. "isIllegal": true,
  2228. "pathInput": {
  2229. "ContainerValue": {
  2230. "Type": "BTFuncVariableAction",
  2231. "colorName": "More",
  2232. "currentStr": "Plist路径",
  2233. "fatherFuncID": "q2hMIBClDBV2",
  2234. "isIllegal": true,
  2235. "randomID": "I8YqscSzoHeg",
  2236. "titleLabel": {
  2237. "Type": "STRING",
  2238. "Value": "Plist路径",
  2239. "displayName": ""
  2240. }
  2241. },
  2242. "StringValue": {
  2243. "Type": "STRING",
  2244. "Value": "Plist路径"
  2245. },
  2246. "Type": "BTInputSlot"
  2247. },
  2248. "randomID": "Bm34Xz8FNdsb",
  2249. "stepSlot": {
  2250. "ContainerValue": {
  2251. "Type": "BTSpritePlistAction",
  2252. "baseSelect": {
  2253. "DisplayName": "已选中道具图片",
  2254. "Type": "Action",
  2255. "Value": "P0zZUc9sgGYz"
  2256. },
  2257. "frameNameInput": {
  2258. "ContainerValue": {
  2259. "Type": "BTFuncVariableAction",
  2260. "colorName": "More",
  2261. "currentStr": "道具图片名",
  2262. "fatherFuncID": "q2hMIBClDBV2",
  2263. "isIllegal": true,
  2264. "randomID": "Q4vJ7tH5MIM0",
  2265. "titleLabel": {
  2266. "Type": "STRING",
  2267. "Value": "道具图片名",
  2268. "displayName": ""
  2269. }
  2270. },
  2271. "StringValue": {
  2272. "Type": "STRING",
  2273. "Value": "图片名"
  2274. },
  2275. "Type": "BTInputSlot"
  2276. },
  2277. "isIllegal": true,
  2278. "pathInput": {
  2279. "ContainerValue": {
  2280. "Type": "BTFuncVariableAction",
  2281. "colorName": "More",
  2282. "currentStr": "Plist路径",
  2283. "fatherFuncID": "q2hMIBClDBV2",
  2284. "isIllegal": true,
  2285. "randomID": "CB9aMazyCkfs",
  2286. "titleLabel": {
  2287. "Type": "STRING",
  2288. "Value": "Plist路径",
  2289. "displayName": ""
  2290. }
  2291. },
  2292. "StringValue": {
  2293. "Type": "STRING",
  2294. "Value": "Plist路径"
  2295. },
  2296. "Type": "BTInputSlot"
  2297. },
  2298. "randomID": "zO97PWViWq7i",
  2299. "stepSlot": {
  2300. "ContainerValue": {
  2301. "Type": "BTNodeShowAction",
  2302. "baseSelect": {
  2303. "DisplayName": "红点模块",
  2304. "Type": "Action",
  2305. "Value": "tm0924bAwzde"
  2306. },
  2307. "isIllegal": true,
  2308. "randomID": "RWWYh7awW3Ap",
  2309. "stepSlot": {
  2310. "ContainerValue": {
  2311. "TitleInput": {
  2312. "ContainerValue": {
  2313. "Type": "BTFuncVariableAction",
  2314. "colorName": "More",
  2315. "currentStr": "道具数量",
  2316. "fatherFuncID": "q2hMIBClDBV2",
  2317. "isIllegal": true,
  2318. "randomID": "2RTIVjZxmtDd",
  2319. "titleLabel": {
  2320. "Type": "STRING",
  2321. "Value": "道具数量",
  2322. "displayName": ""
  2323. }
  2324. },
  2325. "StringValue": {
  2326. "Type": "STRING",
  2327. "Value": "填写标题内容"
  2328. },
  2329. "Type": "BTInputSlot"
  2330. },
  2331. "Type": "BTLabelTitleAction",
  2332. "baseSelect": {
  2333. "DisplayName": "道具数量",
  2334. "Type": "Action",
  2335. "Value": "VgnvLbYfpABl"
  2336. },
  2337. "isIllegal": true,
  2338. "randomID": "wvdleQBOfBCo",
  2339. "stepSlot": {
  2340. "ContainerValue": {
  2341. "Type": "BTPlayTimeLineAction",
  2342. "baseSelect": {
  2343. "DisplayName": "常态_已解锁_未选中",
  2344. "Type": "Action",
  2345. "Value": "7"
  2346. },
  2347. "isIllegal": true,
  2348. "randomID": "lNQKoVHXp3IL",
  2349. "stepSlot": {
  2350. "ContainerValue": null,
  2351. "Type": "BTStepSlot"
  2352. }
  2353. },
  2354. "Type": "BTStepSlot"
  2355. }
  2356. },
  2357. "Type": "BTStepSlot"
  2358. }
  2359. },
  2360. "Type": "BTStepSlot"
  2361. }
  2362. },
  2363. "Type": "BTStepSlot"
  2364. }
  2365. },
  2366. "Type": "BTSectionSlot"
  2367. },
  2368. "stepSlot": {
  2369. "ContainerValue": {
  2370. "Type": "BTIFControlAction",
  2371. "conditionA": {
  2372. "ContainerValue": {
  2373. "Type": "BTStringEqualOperatorAction",
  2374. "conditionA": {
  2375. "ContainerValue": {
  2376. "Type": "BTFuncVariableAction",
  2377. "colorName": "More",
  2378. "currentStr": "道具默认状态",
  2379. "fatherFuncID": "q2hMIBClDBV2",
  2380. "isIllegal": true,
  2381. "randomID": "fU1Y2StpVtdV",
  2382. "titleLabel": {
  2383. "Type": "STRING",
  2384. "Value": "道具默认状态",
  2385. "displayName": ""
  2386. }
  2387. },
  2388. "StringValue": {
  2389. "Type": "STRING",
  2390. "Value": "Red"
  2391. },
  2392. "Type": "BTInputSlot"
  2393. },
  2394. "conditionB": {
  2395. "ContainerValue": null,
  2396. "StringValue": {
  2397. "Type": "STRING",
  2398. "Value": "道具已解锁已获得_时段"
  2399. },
  2400. "Type": "BTInputSlot"
  2401. },
  2402. "isIllegal": true,
  2403. "randomID": "Btxu1wnm07UP"
  2404. },
  2405. "Type": "BTBoolSlot"
  2406. },
  2407. "isIllegal": true,
  2408. "randomID": "1BpZ5Ho9QB0y",
  2409. "sectionA": {
  2410. "ContainerValue": {
  2411. "Type": "BTSpritePlistAction",
  2412. "baseSelect": {
  2413. "DisplayName": "未选中道具图片",
  2414. "Type": "Action",
  2415. "Value": "udPYPkvH0U3g"
  2416. },
  2417. "frameNameInput": {
  2418. "ContainerValue": {
  2419. "Type": "BTFuncVariableAction",
  2420. "colorName": "More",
  2421. "currentStr": "道具图片名",
  2422. "fatherFuncID": "q2hMIBClDBV2",
  2423. "isIllegal": true,
  2424. "randomID": "EJWGaiyz1VbL",
  2425. "titleLabel": {
  2426. "Type": "STRING",
  2427. "Value": "道具图片名",
  2428. "displayName": ""
  2429. }
  2430. },
  2431. "StringValue": {
  2432. "Type": "STRING",
  2433. "Value": "图片名"
  2434. },
  2435. "Type": "BTInputSlot"
  2436. },
  2437. "isIllegal": true,
  2438. "pathInput": {
  2439. "ContainerValue": {
  2440. "Type": "BTFuncVariableAction",
  2441. "colorName": "More",
  2442. "currentStr": "Plist路径",
  2443. "fatherFuncID": "q2hMIBClDBV2",
  2444. "isIllegal": true,
  2445. "randomID": "KIL9vygqhsoS",
  2446. "titleLabel": {
  2447. "Type": "STRING",
  2448. "Value": "Plist路径",
  2449. "displayName": ""
  2450. }
  2451. },
  2452. "StringValue": {
  2453. "Type": "STRING",
  2454. "Value": "Plist路径"
  2455. },
  2456. "Type": "BTInputSlot"
  2457. },
  2458. "randomID": "MBgh90lzZuVX",
  2459. "stepSlot": {
  2460. "ContainerValue": {
  2461. "Type": "BTSpritePlistAction",
  2462. "baseSelect": {
  2463. "DisplayName": "已选中道具图片",
  2464. "Type": "Action",
  2465. "Value": "P0zZUc9sgGYz"
  2466. },
  2467. "frameNameInput": {
  2468. "ContainerValue": {
  2469. "Type": "BTFuncVariableAction",
  2470. "colorName": "More",
  2471. "currentStr": "道具图片名",
  2472. "fatherFuncID": "q2hMIBClDBV2",
  2473. "isIllegal": true,
  2474. "randomID": "hoYxMgAfwIrI",
  2475. "titleLabel": {
  2476. "Type": "STRING",
  2477. "Value": "道具图片名",
  2478. "displayName": ""
  2479. }
  2480. },
  2481. "StringValue": {
  2482. "Type": "STRING",
  2483. "Value": "图片名"
  2484. },
  2485. "Type": "BTInputSlot"
  2486. },
  2487. "isIllegal": true,
  2488. "pathInput": {
  2489. "ContainerValue": {
  2490. "Type": "BTFuncVariableAction",
  2491. "colorName": "More",
  2492. "currentStr": "Plist路径",
  2493. "fatherFuncID": "q2hMIBClDBV2",
  2494. "isIllegal": true,
  2495. "randomID": "G5S79Cgn7SdT",
  2496. "titleLabel": {
  2497. "Type": "STRING",
  2498. "Value": "Plist路径",
  2499. "displayName": ""
  2500. }
  2501. },
  2502. "StringValue": {
  2503. "Type": "STRING",
  2504. "Value": "Plist路径"
  2505. },
  2506. "Type": "BTInputSlot"
  2507. },
  2508. "randomID": "BaaQB8lmkY6q",
  2509. "stepSlot": {
  2510. "ContainerValue": {
  2511. "Type": "BTPlayTimeLineAction",
  2512. "baseSelect": {
  2513. "DisplayName": "常态_已解锁_已选中",
  2514. "Type": "Action",
  2515. "Value": "8"
  2516. },
  2517. "isIllegal": true,
  2518. "randomID": "3KrfUxuoXzos",
  2519. "stepSlot": {
  2520. "ContainerValue": {
  2521. "Type": "BTNodeShowAction",
  2522. "baseSelect": {
  2523. "DisplayName": "时段无限使用模块",
  2524. "Type": "Action",
  2525. "Value": "Cu97fOSuVXQT"
  2526. },
  2527. "isIllegal": true,
  2528. "randomID": "IcnQL7zsuXgD",
  2529. "stepSlot": {
  2530. "ContainerValue": null,
  2531. "Type": "BTStepSlot"
  2532. }
  2533. },
  2534. "Type": "BTStepSlot"
  2535. }
  2536. },
  2537. "Type": "BTStepSlot"
  2538. }
  2539. },
  2540. "Type": "BTStepSlot"
  2541. }
  2542. },
  2543. "Type": "BTSectionSlot"
  2544. },
  2545. "stepSlot": {
  2546. "ContainerValue": null,
  2547. "Type": "BTStepSlot"
  2548. }
  2549. },
  2550. "Type": "BTStepSlot"
  2551. }
  2552. },
  2553. "Type": "BTStepSlot"
  2554. }
  2555. },
  2556. "Type": "BTStepSlot"
  2557. }
  2558. },
  2559. "Type": "BTStepSlot"
  2560. }
  2561. },
  2562. "Type": "BTStepSlot"
  2563. }
  2564. },
  2565. "Type": "BTStepSlot"
  2566. }
  2567. },
  2568. "Type": "BTStepSlot"
  2569. },
  2570. "x": 415.5,
  2571. "y": -4
  2572. }
  2573. }
  2574. }
  2575. },
  2576. "RedNoteInfo": {
  2577. },
  2578. "TreeList": {
  2579. "Tree0": {
  2580. "ExportTree": true,
  2581. "ImageIndex": 2,
  2582. "Name": {
  2583. "Type": "STRING",
  2584. "Value": "关卡进入",
  2585. "displayName": ""
  2586. },
  2587. "Type": "BTCustomFuncHeadAction",
  2588. "VarJson": {
  2589. "boolJson": {
  2590. },
  2591. "numberJson": {
  2592. }
  2593. },
  2594. "isIllegal": false,
  2595. "randomID": "uG09wvs8Nxyo",
  2596. "stepSlot": {
  2597. "ContainerValue": {
  2598. "Type": "BTButtonEnableAction",
  2599. "baseSelect": {
  2600. "DisplayName": "全屏关闭按钮",
  2601. "Type": "Action",
  2602. "Value": "83P6DXqRKgSW"
  2603. },
  2604. "enableButton": {
  2605. "Type": "BTCheckBox",
  2606. "isEnable": true
  2607. },
  2608. "isIllegal": true,
  2609. "randomID": "XZDE1Qpf8FCE",
  2610. "stepSlot": {
  2611. "ContainerValue": {
  2612. "Type": "BTButtonEnableAction",
  2613. "baseSelect": {
  2614. "DisplayName": "游戏开始_道具未解锁",
  2615. "Type": "Action",
  2616. "Value": "elbCm2MXPqg3"
  2617. },
  2618. "enableButton": {
  2619. "Type": "BTCheckBox",
  2620. "isEnable": true
  2621. },
  2622. "isIllegal": true,
  2623. "randomID": "gz8hXSbsQfji",
  2624. "stepSlot": {
  2625. "ContainerValue": {
  2626. "Type": "BTButtonEnableAction",
  2627. "baseSelect": {
  2628. "DisplayName": "关闭按钮",
  2629. "Type": "Action",
  2630. "Value": "BUYW3LpsUO4p"
  2631. },
  2632. "enableButton": {
  2633. "Type": "BTCheckBox",
  2634. "isEnable": true
  2635. },
  2636. "isIllegal": true,
  2637. "randomID": "lGBEaQSntUun",
  2638. "stepSlot": {
  2639. "ContainerValue": {
  2640. "Type": "BTButtonEnableAction",
  2641. "baseSelect": {
  2642. "DisplayName": "全屏关闭按钮",
  2643. "Type": "Action",
  2644. "Value": "83P6DXqRKgSW"
  2645. },
  2646. "enableButton": {
  2647. "Type": "BTCheckBox",
  2648. "isEnable": true
  2649. },
  2650. "isIllegal": true,
  2651. "randomID": "0iKjOaIZ0s4g",
  2652. "stepSlot": {
  2653. "ContainerValue": {
  2654. "Type": "BTButtonEnableAction",
  2655. "baseSelect": {
  2656. "DisplayName": "道具已解锁_游戏开始按钮",
  2657. "Type": "Action",
  2658. "Value": "3cpPix6ippdg"
  2659. },
  2660. "enableButton": {
  2661. "Type": "BTCheckBox",
  2662. "isEnable": true
  2663. },
  2664. "isIllegal": true,
  2665. "randomID": "659pFPdraC0W",
  2666. "stepSlot": {
  2667. "ContainerValue": {
  2668. "Type": "BTNotifiSceneNodeToCoderAction",
  2669. "baseSelect": {
  2670. "DisplayName": "时效文本",
  2671. "Type": "Action",
  2672. "Value": "tscXYDElm19g"
  2673. },
  2674. "conditionA": {
  2675. "ContainerValue": null,
  2676. "StringValue": {
  2677. "Type": "STRING",
  2678. "Value": "游戏前道具1_时效文本"
  2679. },
  2680. "Type": "BTInputSlot"
  2681. },
  2682. "isIllegal": true,
  2683. "paramA": {
  2684. "ContainerValue": null,
  2685. "StringValue": {
  2686. "Type": "STRING",
  2687. "Value": "1"
  2688. },
  2689. "Type": "BTInputSlot"
  2690. },
  2691. "randomID": "GfsqYLHEtZ5U",
  2692. "redSelect": {
  2693. "DisplayName": "道具按钮1",
  2694. "Type": "OBJ",
  2695. "Value": "uPZlJJAekSdf"
  2696. },
  2697. "stepSlot": {
  2698. "ContainerValue": {
  2699. "Type": "BTNotifiSceneNodeToCoderAction",
  2700. "baseSelect": {
  2701. "DisplayName": "时效文本",
  2702. "Type": "Action",
  2703. "Value": "tscXYDElm19g"
  2704. },
  2705. "conditionA": {
  2706. "ContainerValue": null,
  2707. "StringValue": {
  2708. "Type": "STRING",
  2709. "Value": "游戏前道具2_时效文本"
  2710. },
  2711. "Type": "BTInputSlot"
  2712. },
  2713. "isIllegal": true,
  2714. "paramA": {
  2715. "ContainerValue": null,
  2716. "StringValue": {
  2717. "Type": "STRING",
  2718. "Value": "1"
  2719. },
  2720. "Type": "BTInputSlot"
  2721. },
  2722. "randomID": "LbLcegtph477",
  2723. "redSelect": {
  2724. "DisplayName": "道具按钮2",
  2725. "Type": "OBJ",
  2726. "Value": "4PE6ixWz3kxa"
  2727. },
  2728. "stepSlot": {
  2729. "ContainerValue": {
  2730. "Type": "BTNotifiSceneNodeToCoderAction",
  2731. "baseSelect": {
  2732. "DisplayName": "时效文本",
  2733. "Type": "Action",
  2734. "Value": "tscXYDElm19g"
  2735. },
  2736. "conditionA": {
  2737. "ContainerValue": null,
  2738. "StringValue": {
  2739. "Type": "STRING",
  2740. "Value": "游戏前道具3_时效文本"
  2741. },
  2742. "Type": "BTInputSlot"
  2743. },
  2744. "isIllegal": true,
  2745. "paramA": {
  2746. "ContainerValue": null,
  2747. "StringValue": {
  2748. "Type": "STRING",
  2749. "Value": "1"
  2750. },
  2751. "Type": "BTInputSlot"
  2752. },
  2753. "randomID": "StdcGJWv5kjX",
  2754. "redSelect": {
  2755. "DisplayName": "道具按钮3",
  2756. "Type": "OBJ",
  2757. "Value": "ePme3hpPnKaT"
  2758. },
  2759. "stepSlot": {
  2760. "ContainerValue": {
  2761. "Name": {
  2762. "Type": "STRING",
  2763. "Value": "刷新游戏前道具状态",
  2764. "displayName": ""
  2765. },
  2766. "Type": "BTCustomFuncBodyAction",
  2767. "funcHeadID": "mEcZXJhQDUhc",
  2768. "isIllegal": true,
  2769. "paramArr": [
  2770. ],
  2771. "randomID": "TIRlFbkMiq9L",
  2772. "stepSlot": {
  2773. "ContainerValue": {
  2774. "Name": {
  2775. "Type": "STRING",
  2776. "Value": "按钮显示状态",
  2777. "displayName": ""
  2778. },
  2779. "Type": "BTCustomFuncBodyAction",
  2780. "funcHeadID": "sxbvWSzGGNQV",
  2781. "isIllegal": true,
  2782. "paramArr": [
  2783. ],
  2784. "randomID": "PHV2N74Jub4U",
  2785. "stepSlot": {
  2786. "ContainerValue": {
  2787. "Name": {
  2788. "Type": "STRING",
  2789. "Value": "循环标签图片设置",
  2790. "displayName": ""
  2791. },
  2792. "Type": "BTCustomFuncBodyAction",
  2793. "funcHeadID": "uPD8h7H6MQ67",
  2794. "isIllegal": true,
  2795. "paramArr": [
  2796. ],
  2797. "randomID": "CN3lQlcLpYfq",
  2798. "stepSlot": {
  2799. "ContainerValue": {
  2800. "Type": "BTSceneNodeShowAction",
  2801. "baseSelect": {
  2802. "DisplayName": "紫色win文字",
  2803. "Type": "Action",
  2804. "Value": "iyOKSPHmLiz4"
  2805. },
  2806. "isIllegal": true,
  2807. "randomID": "kW4Key7zAyr8",
  2808. "redSelect": {
  2809. "DisplayName": "连胜任务栏",
  2810. "Type": "OBJ",
  2811. "Value": "cLSg4NM1lL5B"
  2812. },
  2813. "stepSlot": {
  2814. "ContainerValue": {
  2815. "Type": "BTSceneSpritePlistAction",
  2816. "baseSelect": {
  2817. "DisplayName": "时间信息框_底图",
  2818. "Type": "Action",
  2819. "Value": "ZrmJoG6vgwhq"
  2820. },
  2821. "frameNameInput": {
  2822. "ContainerValue": null,
  2823. "StringValue": {
  2824. "Type": "STRING",
  2825. "Value": "GoodsMerge_连胜任务_时间信息框_紫色.png"
  2826. },
  2827. "Type": "BTInputSlot"
  2828. },
  2829. "isIllegal": true,
  2830. "pathInput": {
  2831. "ContainerValue": null,
  2832. "StringValue": {
  2833. "Type": "STRING",
  2834. "Value": "GoodsMerge_游戏UI资源.plist"
  2835. },
  2836. "Type": "BTInputSlot"
  2837. },
  2838. "randomID": "xlkwL7JpJP9o",
  2839. "redSelect": {
  2840. "DisplayName": "连胜任务栏",
  2841. "Type": "OBJ",
  2842. "Value": "cLSg4NM1lL5B"
  2843. },
  2844. "stepSlot": {
  2845. "ContainerValue": {
  2846. "Type": "BTSceneSpritePlistAction",
  2847. "baseSelect": {
  2848. "DisplayName": "连胜任务详情按钮图标",
  2849. "Type": "Action",
  2850. "Value": "QlhwxjcAMBw7"
  2851. },
  2852. "frameNameInput": {
  2853. "ContainerValue": null,
  2854. "StringValue": {
  2855. "Type": "STRING",
  2856. "Value": "GoodsMerge_连胜任务_详情按钮.png"
  2857. },
  2858. "Type": "BTInputSlot"
  2859. },
  2860. "isIllegal": true,
  2861. "pathInput": {
  2862. "ContainerValue": null,
  2863. "StringValue": {
  2864. "Type": "STRING",
  2865. "Value": "GoodsMerge_游戏UI资源.plist"
  2866. },
  2867. "Type": "BTInputSlot"
  2868. },
  2869. "randomID": "dFWdXUWL5m0I",
  2870. "redSelect": {
  2871. "DisplayName": "连胜任务栏",
  2872. "Type": "OBJ",
  2873. "Value": "cLSg4NM1lL5B"
  2874. },
  2875. "stepSlot": {
  2876. "ContainerValue": {
  2877. "TitleInput": {
  2878. "ContainerValue": {
  2879. "Type": "BTStringLinkOperatorAction",
  2880. "conditionA": {
  2881. "ContainerValue": null,
  2882. "StringValue": {
  2883. "Type": "STRING",
  2884. "Value": "Level"
  2885. },
  2886. "Type": "BTInputSlot"
  2887. },
  2888. "conditionB": {
  2889. "ContainerValue": {
  2890. "Type": "BTCoderVariableAction",
  2891. "VarScope": "Scene",
  2892. "isIllegal": true,
  2893. "randomID": "LewVHwnq6HtL",
  2894. "titleLabel": {
  2895. "Type": "STRING",
  2896. "Value": "P-关卡数",
  2897. "displayName": ""
  2898. }
  2899. },
  2900. "StringValue": {
  2901. "Type": "STRING",
  2902. "Value": ""
  2903. },
  2904. "Type": "BTInputSlot"
  2905. },
  2906. "isIllegal": true,
  2907. "randomID": "t2FRj4slFJsl"
  2908. },
  2909. "StringValue": {
  2910. "Type": "STRING",
  2911. "Value": "填写标题内容"
  2912. },
  2913. "Type": "BTInputSlot"
  2914. },
  2915. "Type": "BTLabelTitleAction",
  2916. "baseSelect": {
  2917. "DisplayName": "关卡数",
  2918. "Type": "Action",
  2919. "Value": "mqPPKSK5hYN0"
  2920. },
  2921. "isIllegal": true,
  2922. "randomID": "MSZos6rXoLnA",
  2923. "stepSlot": {
  2924. "ContainerValue": {
  2925. "TitleInput": {
  2926. "ContainerValue": {
  2927. "Type": "BTCoderVariableAction",
  2928. "VarScope": "Scene",
  2929. "isIllegal": true,
  2930. "randomID": "DqP0OptWF9Ye",
  2931. "titleLabel": {
  2932. "Type": "STRING",
  2933. "Value": "P-开始游戏文本",
  2934. "displayName": ""
  2935. }
  2936. },
  2937. "StringValue": {
  2938. "Type": "STRING",
  2939. "Value": "填写标题内容"
  2940. },
  2941. "Type": "BTInputSlot"
  2942. },
  2943. "Type": "BTLabelTitleAction",
  2944. "baseSelect": {
  2945. "DisplayName": "开始游戏文本",
  2946. "Type": "Action",
  2947. "Value": "cGf3WSBlCxcp"
  2948. },
  2949. "isIllegal": true,
  2950. "randomID": "QJbZhhTNaMny",
  2951. "stepSlot": {
  2952. "ContainerValue": {
  2953. "TitleInput": {
  2954. "ContainerValue": {
  2955. "Type": "BTCoderVariableAction",
  2956. "VarScope": "Scene",
  2957. "isIllegal": true,
  2958. "randomID": "2nFSTvaX4CZy",
  2959. "titleLabel": {
  2960. "Type": "STRING",
  2961. "Value": "P-开始游戏文本",
  2962. "displayName": ""
  2963. }
  2964. },
  2965. "StringValue": {
  2966. "Type": "STRING",
  2967. "Value": "填写标题内容"
  2968. },
  2969. "Type": "BTInputSlot"
  2970. },
  2971. "Type": "BTLabelTitleAction",
  2972. "baseSelect": {
  2973. "DisplayName": "道具未解锁开始游戏文本",
  2974. "Type": "Action",
  2975. "Value": "D953tEVj4Op8"
  2976. },
  2977. "isIllegal": true,
  2978. "randomID": "aXTfXw0I7v3s",
  2979. "stepSlot": {
  2980. "ContainerValue": {
  2981. "Name": {
  2982. "Type": "STRING",
  2983. "Value": "连胜状态",
  2984. "displayName": ""
  2985. },
  2986. "Type": "BTCustomFuncBodyAction",
  2987. "funcHeadID": "JHGsccQ4tTTC",
  2988. "isIllegal": true,
  2989. "paramArr": [
  2990. ],
  2991. "randomID": "RlvQif45XNoR",
  2992. "stepSlot": {
  2993. "ContainerValue": {
  2994. "Type": "BTPlayTimeLineAction",
  2995. "baseSelect": {
  2996. "DisplayName": "进入动画",
  2997. "Type": "Action",
  2998. "Value": "0"
  2999. },
  3000. "isIllegal": true,
  3001. "randomID": "frW1DF9NOcJK",
  3002. "stepSlot": {
  3003. "ContainerValue": null,
  3004. "Type": "BTStepSlot"
  3005. }
  3006. },
  3007. "Type": "BTStepSlot"
  3008. }
  3009. },
  3010. "Type": "BTStepSlot"
  3011. }
  3012. },
  3013. "Type": "BTStepSlot"
  3014. }
  3015. },
  3016. "Type": "BTStepSlot"
  3017. }
  3018. },
  3019. "Type": "BTStepSlot"
  3020. }
  3021. },
  3022. "Type": "BTStepSlot"
  3023. }
  3024. },
  3025. "Type": "BTStepSlot"
  3026. }
  3027. },
  3028. "Type": "BTStepSlot"
  3029. }
  3030. },
  3031. "Type": "BTStepSlot"
  3032. }
  3033. },
  3034. "Type": "BTStepSlot"
  3035. }
  3036. },
  3037. "Type": "BTStepSlot"
  3038. }
  3039. },
  3040. "Type": "BTStepSlot"
  3041. }
  3042. },
  3043. "Type": "BTStepSlot"
  3044. }
  3045. },
  3046. "Type": "BTStepSlot"
  3047. }
  3048. },
  3049. "Type": "BTStepSlot"
  3050. }
  3051. },
  3052. "Type": "BTStepSlot"
  3053. }
  3054. },
  3055. "Type": "BTStepSlot"
  3056. }
  3057. },
  3058. "Type": "BTStepSlot"
  3059. }
  3060. },
  3061. "Type": "BTStepSlot"
  3062. },
  3063. "x": -309.1635982569055,
  3064. "y": -827.9805142967917
  3065. },
  3066. "Tree1": {
  3067. "ExportTree": true,
  3068. "ImageIndex": 1,
  3069. "Name": {
  3070. "Type": "STRING",
  3071. "Value": "连胜状态",
  3072. "displayName": ""
  3073. },
  3074. "Type": "BTCustomFuncHeadAction",
  3075. "VarJson": {
  3076. "boolJson": {
  3077. },
  3078. "numberJson": {
  3079. }
  3080. },
  3081. "isIllegal": false,
  3082. "randomID": "JHGsccQ4tTTC",
  3083. "stepSlot": {
  3084. "ContainerValue": {
  3085. "Type": "BTIFControlAction",
  3086. "conditionA": {
  3087. "ContainerValue": {
  3088. "Type": "BTEqualOperatorAction",
  3089. "conditionA": {
  3090. "ContainerValue": {
  3091. "Type": "BTCoderVariableAction",
  3092. "VarScope": "Scene",
  3093. "isIllegal": true,
  3094. "randomID": "enJr2f8CZ4dd",
  3095. "titleLabel": {
  3096. "Type": "STRING",
  3097. "Value": "P-连胜次数",
  3098. "displayName": ""
  3099. }
  3100. },
  3101. "StringValue": {
  3102. "Type": "FLOAT",
  3103. "Value": 0
  3104. },
  3105. "Type": "BTInputSlot"
  3106. },
  3107. "conditionB": {
  3108. "ContainerValue": null,
  3109. "StringValue": {
  3110. "Type": "FLOAT",
  3111. "Value": 0
  3112. },
  3113. "Type": "BTInputSlot"
  3114. },
  3115. "isIllegal": true,
  3116. "randomID": "DGNauRYOD988"
  3117. },
  3118. "Type": "BTBoolSlot"
  3119. },
  3120. "isIllegal": true,
  3121. "randomID": "D2EWcvl8GnUU",
  3122. "sectionA": {
  3123. "ContainerValue": {
  3124. "Type": "BTPlaySceneTimeLineAction",
  3125. "baseSelect": {
  3126. "DisplayName": "常态_进度阶段0",
  3127. "Type": "Action",
  3128. "Value": "0"
  3129. },
  3130. "isIllegal": true,
  3131. "randomID": "TXcLXx4DN8Kn",
  3132. "redSelect": {
  3133. "DisplayName": "连胜任务栏",
  3134. "Type": "OBJ",
  3135. "Value": "cLSg4NM1lL5B"
  3136. },
  3137. "stepSlot": {
  3138. "ContainerValue": null,
  3139. "Type": "BTStepSlot"
  3140. }
  3141. },
  3142. "Type": "BTSectionSlot"
  3143. },
  3144. "stepSlot": {
  3145. "ContainerValue": {
  3146. "Type": "BTIFControlAction",
  3147. "conditionA": {
  3148. "ContainerValue": {
  3149. "Type": "BTEqualOperatorAction",
  3150. "conditionA": {
  3151. "ContainerValue": {
  3152. "Type": "BTCoderVariableAction",
  3153. "VarScope": "Scene",
  3154. "isIllegal": true,
  3155. "randomID": "ccJMNbqO7wwu",
  3156. "titleLabel": {
  3157. "Type": "STRING",
  3158. "Value": "P-连胜次数",
  3159. "displayName": ""
  3160. }
  3161. },
  3162. "StringValue": {
  3163. "Type": "FLOAT",
  3164. "Value": 0
  3165. },
  3166. "Type": "BTInputSlot"
  3167. },
  3168. "conditionB": {
  3169. "ContainerValue": null,
  3170. "StringValue": {
  3171. "Type": "FLOAT",
  3172. "Value": 1
  3173. },
  3174. "Type": "BTInputSlot"
  3175. },
  3176. "isIllegal": true,
  3177. "randomID": "S9C4yKQUijUr"
  3178. },
  3179. "Type": "BTBoolSlot"
  3180. },
  3181. "isIllegal": true,
  3182. "randomID": "PQ5iy2gFFr3X",
  3183. "sectionA": {
  3184. "ContainerValue": {
  3185. "Type": "BTPlaySceneTimeLineAction",
  3186. "baseSelect": {
  3187. "DisplayName": "动画_阶段0到1",
  3188. "Type": "Action",
  3189. "Value": "7"
  3190. },
  3191. "isIllegal": true,
  3192. "randomID": "3DKXrSgPuGl6",
  3193. "redSelect": {
  3194. "DisplayName": "连胜任务栏",
  3195. "Type": "OBJ",
  3196. "Value": "cLSg4NM1lL5B"
  3197. },
  3198. "stepSlot": {
  3199. "ContainerValue": null,
  3200. "Type": "BTStepSlot"
  3201. }
  3202. },
  3203. "Type": "BTSectionSlot"
  3204. },
  3205. "stepSlot": {
  3206. "ContainerValue": {
  3207. "Type": "BTIFControlAction",
  3208. "conditionA": {
  3209. "ContainerValue": {
  3210. "Type": "BTEqualOperatorAction",
  3211. "conditionA": {
  3212. "ContainerValue": {
  3213. "Type": "BTCoderVariableAction",
  3214. "VarScope": "Scene",
  3215. "isIllegal": true,
  3216. "randomID": "4FFqfL8iiEDp",
  3217. "titleLabel": {
  3218. "Type": "STRING",
  3219. "Value": "P-连胜次数",
  3220. "displayName": ""
  3221. }
  3222. },
  3223. "StringValue": {
  3224. "Type": "FLOAT",
  3225. "Value": 0
  3226. },
  3227. "Type": "BTInputSlot"
  3228. },
  3229. "conditionB": {
  3230. "ContainerValue": null,
  3231. "StringValue": {
  3232. "Type": "FLOAT",
  3233. "Value": 2
  3234. },
  3235. "Type": "BTInputSlot"
  3236. },
  3237. "isIllegal": true,
  3238. "randomID": "Tb5LjBqvno10"
  3239. },
  3240. "Type": "BTBoolSlot"
  3241. },
  3242. "isIllegal": true,
  3243. "randomID": "WRq16XoPRbbe",
  3244. "sectionA": {
  3245. "ContainerValue": {
  3246. "Type": "BTPlaySceneTimeLineAction",
  3247. "baseSelect": {
  3248. "DisplayName": "动画_阶段1到2",
  3249. "Type": "Action",
  3250. "Value": "8"
  3251. },
  3252. "isIllegal": true,
  3253. "randomID": "R0sHpXatqXAH",
  3254. "redSelect": {
  3255. "DisplayName": "连胜任务栏",
  3256. "Type": "OBJ",
  3257. "Value": "cLSg4NM1lL5B"
  3258. },
  3259. "stepSlot": {
  3260. "ContainerValue": null,
  3261. "Type": "BTStepSlot"
  3262. }
  3263. },
  3264. "Type": "BTSectionSlot"
  3265. },
  3266. "stepSlot": {
  3267. "ContainerValue": {
  3268. "Type": "BTIFControlAction",
  3269. "conditionA": {
  3270. "ContainerValue": {
  3271. "Type": "BTEqualOperatorAction",
  3272. "conditionA": {
  3273. "ContainerValue": {
  3274. "Type": "BTCoderVariableAction",
  3275. "VarScope": "Scene",
  3276. "isIllegal": true,
  3277. "randomID": "B0KmiQcMyQ43",
  3278. "titleLabel": {
  3279. "Type": "STRING",
  3280. "Value": "P-连胜次数",
  3281. "displayName": ""
  3282. }
  3283. },
  3284. "StringValue": {
  3285. "Type": "FLOAT",
  3286. "Value": 0
  3287. },
  3288. "Type": "BTInputSlot"
  3289. },
  3290. "conditionB": {
  3291. "ContainerValue": null,
  3292. "StringValue": {
  3293. "Type": "FLOAT",
  3294. "Value": 3
  3295. },
  3296. "Type": "BTInputSlot"
  3297. },
  3298. "isIllegal": true,
  3299. "randomID": "SkApuqmGJl3v"
  3300. },
  3301. "Type": "BTBoolSlot"
  3302. },
  3303. "isIllegal": true,
  3304. "randomID": "L0m6KvIVtZPS",
  3305. "sectionA": {
  3306. "ContainerValue": {
  3307. "Type": "BTPlaySceneTimeLineAction",
  3308. "baseSelect": {
  3309. "DisplayName": "动画_阶段2到3",
  3310. "Type": "Action",
  3311. "Value": "9"
  3312. },
  3313. "isIllegal": true,
  3314. "randomID": "vmDjxJFwMjmY",
  3315. "redSelect": {
  3316. "DisplayName": "连胜任务栏",
  3317. "Type": "OBJ",
  3318. "Value": "cLSg4NM1lL5B"
  3319. },
  3320. "stepSlot": {
  3321. "ContainerValue": null,
  3322. "Type": "BTStepSlot"
  3323. }
  3324. },
  3325. "Type": "BTSectionSlot"
  3326. },
  3327. "stepSlot": {
  3328. "ContainerValue": {
  3329. "Type": "BTIFControlAction",
  3330. "conditionA": {
  3331. "ContainerValue": {
  3332. "Type": "BTSmallThanAction",
  3333. "conditionA": {
  3334. "ContainerValue": null,
  3335. "StringValue": {
  3336. "Type": "FLOAT",
  3337. "Value": 3
  3338. },
  3339. "Type": "BTInputSlot"
  3340. },
  3341. "conditionB": {
  3342. "ContainerValue": {
  3343. "Type": "BTCoderVariableAction",
  3344. "VarScope": "Scene",
  3345. "isIllegal": true,
  3346. "randomID": "H3r9oIWEw0fj",
  3347. "titleLabel": {
  3348. "Type": "STRING",
  3349. "Value": "P-连胜次数",
  3350. "displayName": ""
  3351. }
  3352. },
  3353. "StringValue": {
  3354. "Type": "FLOAT",
  3355. "Value": 0
  3356. },
  3357. "Type": "BTInputSlot"
  3358. },
  3359. "isIllegal": true,
  3360. "randomID": "7xm1rFSjv8aA"
  3361. },
  3362. "Type": "BTBoolSlot"
  3363. },
  3364. "isIllegal": true,
  3365. "randomID": "osQCdMif2u5b",
  3366. "sectionA": {
  3367. "ContainerValue": {
  3368. "Type": "BTPlaySceneTimeLineAction",
  3369. "baseSelect": {
  3370. "DisplayName": "常态_进度阶段3",
  3371. "Type": "Action",
  3372. "Value": "3"
  3373. },
  3374. "isIllegal": true,
  3375. "randomID": "lHF5kSgAyDQX",
  3376. "redSelect": {
  3377. "DisplayName": "连胜任务栏",
  3378. "Type": "OBJ",
  3379. "Value": "cLSg4NM1lL5B"
  3380. },
  3381. "stepSlot": {
  3382. "ContainerValue": null,
  3383. "Type": "BTStepSlot"
  3384. }
  3385. },
  3386. "Type": "BTSectionSlot"
  3387. },
  3388. "stepSlot": {
  3389. "ContainerValue": null,
  3390. "Type": "BTStepSlot"
  3391. }
  3392. },
  3393. "Type": "BTStepSlot"
  3394. }
  3395. },
  3396. "Type": "BTStepSlot"
  3397. }
  3398. },
  3399. "Type": "BTStepSlot"
  3400. }
  3401. },
  3402. "Type": "BTStepSlot"
  3403. }
  3404. },
  3405. "Type": "BTStepSlot"
  3406. },
  3407. "x": 1116,
  3408. "y": -201
  3409. },
  3410. "Tree10": {
  3411. "ExportTree": true,
  3412. "ImageIndex": -1,
  3413. "Type": "BTSceneBtnClickFuncAction",
  3414. "VarJson": {
  3415. "boolJson": {
  3416. },
  3417. "numberJson": {
  3418. }
  3419. },
  3420. "baseSelect": {
  3421. "DisplayName": "道具已选中按钮",
  3422. "Type": "Action",
  3423. "Value": "AmB61brSpzhe"
  3424. },
  3425. "isIllegal": false,
  3426. "randomID": "6r4GWkevVGq3",
  3427. "redSelect": {
  3428. "DisplayName": "道具按钮3",
  3429. "Type": "OBJ",
  3430. "Value": "ePme3hpPnKaT"
  3431. },
  3432. "stepSlot": {
  3433. "ContainerValue": {
  3434. "Type": "BTSceneButtonEnableAction",
  3435. "baseSelect": {
  3436. "DisplayName": "道具已选中按钮",
  3437. "Type": "Action",
  3438. "Value": "AmB61brSpzhe"
  3439. },
  3440. "enableButton": {
  3441. "Type": "BTCheckBox",
  3442. "isEnable": false
  3443. },
  3444. "isIllegal": true,
  3445. "randomID": "RIie7f6mhQih",
  3446. "redSelect": {
  3447. "DisplayName": "道具按钮3",
  3448. "Type": "OBJ",
  3449. "Value": "ePme3hpPnKaT"
  3450. },
  3451. "stepSlot": {
  3452. "ContainerValue": {
  3453. "Type": "BTNotificationToCoderWithParamAction",
  3454. "conditionA": {
  3455. "ContainerValue": null,
  3456. "StringValue": {
  3457. "Type": "STRING",
  3458. "Value": "游戏前道具取消使用按钮被点击"
  3459. },
  3460. "Type": "BTInputSlot"
  3461. },
  3462. "isIllegal": true,
  3463. "paramA": {
  3464. "ContainerValue": null,
  3465. "StringValue": {
  3466. "Type": "STRING",
  3467. "Value": "3"
  3468. },
  3469. "Type": "BTInputSlot"
  3470. },
  3471. "randomID": "7IcZjR1jcMAc",
  3472. "stepSlot": {
  3473. "ContainerValue": {
  3474. "Type": "BTSceneNodeHiddenAction",
  3475. "baseSelect": {
  3476. "DisplayName": "道具选中对勾",
  3477. "Type": "Action",
  3478. "Value": "gVXiqLq2wGkb"
  3479. },
  3480. "isIllegal": true,
  3481. "randomID": "IlkmqY3frPZU",
  3482. "redSelect": {
  3483. "DisplayName": "道具按钮3",
  3484. "Type": "OBJ",
  3485. "Value": "ePme3hpPnKaT"
  3486. },
  3487. "stepSlot": {
  3488. "ContainerValue": {
  3489. "Type": "BTPlaySceneTimeLineAction",
  3490. "baseSelect": {
  3491. "DisplayName": "常态_已解锁_未选中",
  3492. "Type": "Action",
  3493. "Value": "7"
  3494. },
  3495. "isIllegal": true,
  3496. "randomID": "b025HKBLzTBF",
  3497. "redSelect": {
  3498. "DisplayName": "道具按钮3",
  3499. "Type": "OBJ",
  3500. "Value": "ePme3hpPnKaT"
  3501. },
  3502. "stepSlot": {
  3503. "ContainerValue": {
  3504. "Type": "BTWaitTimeAction",
  3505. "conditionA": {
  3506. "ContainerValue": null,
  3507. "StringValue": {
  3508. "Type": "FLOAT",
  3509. "Value": 0.30000001192092896
  3510. },
  3511. "Type": "BTInputSlot"
  3512. },
  3513. "isIllegal": true,
  3514. "randomID": "Fu03tGkevYmw",
  3515. "stepSlot": {
  3516. "ContainerValue": {
  3517. "Type": "BTSceneButtonEnableAction",
  3518. "baseSelect": {
  3519. "DisplayName": "道具已选中按钮",
  3520. "Type": "Action",
  3521. "Value": "AmB61brSpzhe"
  3522. },
  3523. "enableButton": {
  3524. "Type": "BTCheckBox",
  3525. "isEnable": true
  3526. },
  3527. "isIllegal": true,
  3528. "randomID": "7FaiLuVLsNne",
  3529. "redSelect": {
  3530. "DisplayName": "道具按钮3",
  3531. "Type": "OBJ",
  3532. "Value": "ePme3hpPnKaT"
  3533. },
  3534. "stepSlot": {
  3535. "ContainerValue": null,
  3536. "Type": "BTStepSlot"
  3537. }
  3538. },
  3539. "Type": "BTStepSlot"
  3540. }
  3541. },
  3542. "Type": "BTStepSlot"
  3543. }
  3544. },
  3545. "Type": "BTStepSlot"
  3546. }
  3547. },
  3548. "Type": "BTStepSlot"
  3549. }
  3550. },
  3551. "Type": "BTStepSlot"
  3552. }
  3553. },
  3554. "Type": "BTStepSlot"
  3555. },
  3556. "x": 664,
  3557. "y": 1503
  3558. },
  3559. "Tree11": {
  3560. "ExportTree": true,
  3561. "ImageIndex": -1,
  3562. "Type": "BTSceneBtnClickFuncAction",
  3563. "VarJson": {
  3564. "boolJson": {
  3565. },
  3566. "numberJson": {
  3567. }
  3568. },
  3569. "baseSelect": {
  3570. "DisplayName": "道具购买按钮",
  3571. "Type": "Action",
  3572. "Value": "Z5gzZGIKZK6W"
  3573. },
  3574. "isIllegal": false,
  3575. "randomID": "WCYUiihjzTSO",
  3576. "redSelect": {
  3577. "DisplayName": "道具按钮2",
  3578. "Type": "OBJ",
  3579. "Value": "4PE6ixWz3kxa"
  3580. },
  3581. "stepSlot": {
  3582. "ContainerValue": {
  3583. "Type": "BTSceneButtonEnableAction",
  3584. "baseSelect": {
  3585. "DisplayName": "道具购买按钮",
  3586. "Type": "Action",
  3587. "Value": "Z5gzZGIKZK6W"
  3588. },
  3589. "enableButton": {
  3590. "Type": "BTCheckBox",
  3591. "isEnable": false
  3592. },
  3593. "isIllegal": true,
  3594. "randomID": "moDpoAfHECTl",
  3595. "redSelect": {
  3596. "DisplayName": "道具按钮2",
  3597. "Type": "OBJ",
  3598. "Value": "4PE6ixWz3kxa"
  3599. },
  3600. "stepSlot": {
  3601. "ContainerValue": {
  3602. "Type": "BTNotificationToCoderWithParamAction",
  3603. "conditionA": {
  3604. "ContainerValue": null,
  3605. "StringValue": {
  3606. "Type": "STRING",
  3607. "Value": "游戏前道具购买按钮被点击"
  3608. },
  3609. "Type": "BTInputSlot"
  3610. },
  3611. "isIllegal": true,
  3612. "paramA": {
  3613. "ContainerValue": null,
  3614. "StringValue": {
  3615. "Type": "STRING",
  3616. "Value": "2"
  3617. },
  3618. "Type": "BTInputSlot"
  3619. },
  3620. "randomID": "Nu5kG58nYRx1",
  3621. "stepSlot": {
  3622. "ContainerValue": {
  3623. "Type": "BTWaitTimeAction",
  3624. "conditionA": {
  3625. "ContainerValue": null,
  3626. "StringValue": {
  3627. "Type": "FLOAT",
  3628. "Value": 0.30000001192092896
  3629. },
  3630. "Type": "BTInputSlot"
  3631. },
  3632. "isIllegal": true,
  3633. "randomID": "26PgFhrXVETR",
  3634. "stepSlot": {
  3635. "ContainerValue": {
  3636. "Type": "BTSceneButtonEnableAction",
  3637. "baseSelect": {
  3638. "DisplayName": "道具购买按钮",
  3639. "Type": "Action",
  3640. "Value": "Z5gzZGIKZK6W"
  3641. },
  3642. "enableButton": {
  3643. "Type": "BTCheckBox",
  3644. "isEnable": true
  3645. },
  3646. "isIllegal": true,
  3647. "randomID": "SrJZGSyi0Art",
  3648. "redSelect": {
  3649. "DisplayName": "道具按钮2",
  3650. "Type": "OBJ",
  3651. "Value": "4PE6ixWz3kxa"
  3652. },
  3653. "stepSlot": {
  3654. "ContainerValue": null,
  3655. "Type": "BTStepSlot"
  3656. }
  3657. },
  3658. "Type": "BTStepSlot"
  3659. }
  3660. },
  3661. "Type": "BTStepSlot"
  3662. }
  3663. },
  3664. "Type": "BTStepSlot"
  3665. }
  3666. },
  3667. "Type": "BTStepSlot"
  3668. },
  3669. "x": 231,
  3670. "y": 1258
  3671. },
  3672. "Tree12": {
  3673. "ExportTree": true,
  3674. "ImageIndex": -1,
  3675. "Type": "BTSceneBtnClickFuncAction",
  3676. "VarJson": {
  3677. "boolJson": {
  3678. },
  3679. "numberJson": {
  3680. }
  3681. },
  3682. "baseSelect": {
  3683. "DisplayName": "道具未选择按钮",
  3684. "Type": "Action",
  3685. "Value": "lolJ5r4PeVDW"
  3686. },
  3687. "isIllegal": false,
  3688. "randomID": "hqDCFjTt2MDH",
  3689. "redSelect": {
  3690. "DisplayName": "道具按钮3",
  3691. "Type": "OBJ",
  3692. "Value": "ePme3hpPnKaT"
  3693. },
  3694. "stepSlot": {
  3695. "ContainerValue": {
  3696. "Type": "BTSceneButtonEnableAction",
  3697. "baseSelect": {
  3698. "DisplayName": "道具未选择按钮",
  3699. "Type": "Action",
  3700. "Value": "lolJ5r4PeVDW"
  3701. },
  3702. "enableButton": {
  3703. "Type": "BTCheckBox",
  3704. "isEnable": false
  3705. },
  3706. "isIllegal": true,
  3707. "randomID": "aU2yZ2pwU78N",
  3708. "redSelect": {
  3709. "DisplayName": "道具按钮3",
  3710. "Type": "OBJ",
  3711. "Value": "ePme3hpPnKaT"
  3712. },
  3713. "stepSlot": {
  3714. "ContainerValue": {
  3715. "Type": "BTNotificationToCoderWithParamAction",
  3716. "conditionA": {
  3717. "ContainerValue": null,
  3718. "StringValue": {
  3719. "Type": "STRING",
  3720. "Value": "游戏前道具使用按钮被点击"
  3721. },
  3722. "Type": "BTInputSlot"
  3723. },
  3724. "isIllegal": true,
  3725. "paramA": {
  3726. "ContainerValue": null,
  3727. "StringValue": {
  3728. "Type": "STRING",
  3729. "Value": "3"
  3730. },
  3731. "Type": "BTInputSlot"
  3732. },
  3733. "randomID": "OXQHKzAQPhDY",
  3734. "stepSlot": {
  3735. "ContainerValue": {
  3736. "Type": "BTSceneNodeShowAction",
  3737. "baseSelect": {
  3738. "DisplayName": "道具选中对勾",
  3739. "Type": "Action",
  3740. "Value": "gVXiqLq2wGkb"
  3741. },
  3742. "isIllegal": true,
  3743. "randomID": "adMbe3kYsojR",
  3744. "redSelect": {
  3745. "DisplayName": "道具按钮3",
  3746. "Type": "OBJ",
  3747. "Value": "ePme3hpPnKaT"
  3748. },
  3749. "stepSlot": {
  3750. "ContainerValue": {
  3751. "Type": "BTPlaySceneTimeLineAction",
  3752. "baseSelect": {
  3753. "DisplayName": "常态_已解锁_已选中",
  3754. "Type": "Action",
  3755. "Value": "8"
  3756. },
  3757. "isIllegal": true,
  3758. "randomID": "rbymVDzp3eZz",
  3759. "redSelect": {
  3760. "DisplayName": "道具按钮3",
  3761. "Type": "OBJ",
  3762. "Value": "ePme3hpPnKaT"
  3763. },
  3764. "stepSlot": {
  3765. "ContainerValue": {
  3766. "Type": "BTWaitTimeAction",
  3767. "conditionA": {
  3768. "ContainerValue": null,
  3769. "StringValue": {
  3770. "Type": "FLOAT",
  3771. "Value": 0.30000001192092896
  3772. },
  3773. "Type": "BTInputSlot"
  3774. },
  3775. "isIllegal": true,
  3776. "randomID": "5tmkknuZvn0W",
  3777. "stepSlot": {
  3778. "ContainerValue": {
  3779. "Type": "BTSceneButtonEnableAction",
  3780. "baseSelect": {
  3781. "DisplayName": "道具未选择按钮",
  3782. "Type": "Action",
  3783. "Value": "lolJ5r4PeVDW"
  3784. },
  3785. "enableButton": {
  3786. "Type": "BTCheckBox",
  3787. "isEnable": true
  3788. },
  3789. "isIllegal": true,
  3790. "randomID": "deMTlsIlTR81",
  3791. "redSelect": {
  3792. "DisplayName": "道具按钮3",
  3793. "Type": "OBJ",
  3794. "Value": "ePme3hpPnKaT"
  3795. },
  3796. "stepSlot": {
  3797. "ContainerValue": null,
  3798. "Type": "BTStepSlot"
  3799. }
  3800. },
  3801. "Type": "BTStepSlot"
  3802. }
  3803. },
  3804. "Type": "BTStepSlot"
  3805. }
  3806. },
  3807. "Type": "BTStepSlot"
  3808. }
  3809. },
  3810. "Type": "BTStepSlot"
  3811. }
  3812. },
  3813. "Type": "BTStepSlot"
  3814. }
  3815. },
  3816. "Type": "BTStepSlot"
  3817. },
  3818. "x": 229,
  3819. "y": 1498
  3820. },
  3821. "Tree13": {
  3822. "ExportTree": true,
  3823. "ImageIndex": -1,
  3824. "Type": "BTSceneBtnClickFuncAction",
  3825. "VarJson": {
  3826. "boolJson": {
  3827. },
  3828. "numberJson": {
  3829. }
  3830. },
  3831. "baseSelect": {
  3832. "DisplayName": "道具购买按钮",
  3833. "Type": "Action",
  3834. "Value": "Z5gzZGIKZK6W"
  3835. },
  3836. "isIllegal": false,
  3837. "randomID": "mctEUtaGS9ED",
  3838. "redSelect": {
  3839. "DisplayName": "道具按钮3",
  3840. "Type": "OBJ",
  3841. "Value": "ePme3hpPnKaT"
  3842. },
  3843. "stepSlot": {
  3844. "ContainerValue": {
  3845. "Type": "BTSceneButtonEnableAction",
  3846. "baseSelect": {
  3847. "DisplayName": "道具购买按钮",
  3848. "Type": "Action",
  3849. "Value": "Z5gzZGIKZK6W"
  3850. },
  3851. "enableButton": {
  3852. "Type": "BTCheckBox",
  3853. "isEnable": false
  3854. },
  3855. "isIllegal": true,
  3856. "randomID": "5LrxK30bHldI",
  3857. "redSelect": {
  3858. "DisplayName": "道具按钮3",
  3859. "Type": "OBJ",
  3860. "Value": "ePme3hpPnKaT"
  3861. },
  3862. "stepSlot": {
  3863. "ContainerValue": {
  3864. "Type": "BTNotificationToCoderWithParamAction",
  3865. "conditionA": {
  3866. "ContainerValue": null,
  3867. "StringValue": {
  3868. "Type": "STRING",
  3869. "Value": "游戏前道具购买按钮被点击"
  3870. },
  3871. "Type": "BTInputSlot"
  3872. },
  3873. "isIllegal": true,
  3874. "paramA": {
  3875. "ContainerValue": null,
  3876. "StringValue": {
  3877. "Type": "STRING",
  3878. "Value": "3"
  3879. },
  3880. "Type": "BTInputSlot"
  3881. },
  3882. "randomID": "6ItUuV9UQA1J",
  3883. "stepSlot": {
  3884. "ContainerValue": {
  3885. "Type": "BTWaitTimeAction",
  3886. "conditionA": {
  3887. "ContainerValue": null,
  3888. "StringValue": {
  3889. "Type": "FLOAT",
  3890. "Value": 0.30000001192092896
  3891. },
  3892. "Type": "BTInputSlot"
  3893. },
  3894. "isIllegal": true,
  3895. "randomID": "T1jJOCUwDZ0a",
  3896. "stepSlot": {
  3897. "ContainerValue": {
  3898. "Type": "BTSceneButtonEnableAction",
  3899. "baseSelect": {
  3900. "DisplayName": "道具购买按钮",
  3901. "Type": "Action",
  3902. "Value": "Z5gzZGIKZK6W"
  3903. },
  3904. "enableButton": {
  3905. "Type": "BTCheckBox",
  3906. "isEnable": true
  3907. },
  3908. "isIllegal": true,
  3909. "randomID": "752xO7XRy2Fz",
  3910. "redSelect": {
  3911. "DisplayName": "道具按钮3",
  3912. "Type": "OBJ",
  3913. "Value": "ePme3hpPnKaT"
  3914. },
  3915. "stepSlot": {
  3916. "ContainerValue": null,
  3917. "Type": "BTStepSlot"
  3918. }
  3919. },
  3920. "Type": "BTStepSlot"
  3921. }
  3922. },
  3923. "Type": "BTStepSlot"
  3924. }
  3925. },
  3926. "Type": "BTStepSlot"
  3927. }
  3928. },
  3929. "Type": "BTStepSlot"
  3930. },
  3931. "x": 215,
  3932. "y": 1810
  3933. },
  3934. "Tree14": {
  3935. "ExportTree": true,
  3936. "ImageIndex": 6,
  3937. "Name": {
  3938. "Type": "STRING",
  3939. "Value": "刷新游戏前道具状态",
  3940. "displayName": ""
  3941. },
  3942. "Type": "BTCustomFuncHeadAction",
  3943. "VarJson": {
  3944. "boolJson": {
  3945. },
  3946. "numberJson": {
  3947. }
  3948. },
  3949. "isIllegal": false,
  3950. "randomID": "mEcZXJhQDUhc",
  3951. "stepSlot": {
  3952. "ContainerValue": {
  3953. "BTInputSlot1": {
  3954. "ContainerValue": {
  3955. "Type": "BTCoderVariableAction",
  3956. "VarScope": "Scene",
  3957. "isIllegal": true,
  3958. "randomID": "97nIDEmHevrl",
  3959. "titleLabel": {
  3960. "Type": "STRING",
  3961. "Value": "P-游戏前道具1_默认状态",
  3962. "displayName": ""
  3963. }
  3964. },
  3965. "StringValue": {
  3966. "Type": "STRING",
  3967. "Value": "道具默认状态"
  3968. },
  3969. "Type": "BTInputSlot"
  3970. },
  3971. "BTInputSlot2": {
  3972. "ContainerValue": {
  3973. "Type": "BTCoderVariableAction",
  3974. "VarScope": "Scene",
  3975. "isIllegal": true,
  3976. "randomID": "GDGfCkKP95uh",
  3977. "titleLabel": {
  3978. "Type": "STRING",
  3979. "Value": "P-游戏前道具1_解锁等级",
  3980. "displayName": ""
  3981. }
  3982. },
  3983. "StringValue": {
  3984. "Type": "STRING",
  3985. "Value": "解锁等级"
  3986. },
  3987. "Type": "BTInputSlot"
  3988. },
  3989. "BTInputSlot3": {
  3990. "ContainerValue": {
  3991. "Type": "BTCoderVariableAction",
  3992. "VarScope": "Scene",
  3993. "isIllegal": true,
  3994. "randomID": "ulYTdRUeP530",
  3995. "titleLabel": {
  3996. "Type": "STRING",
  3997. "Value": "P-游戏前道具1_道具数量",
  3998. "displayName": ""
  3999. }
  4000. },
  4001. "StringValue": {
  4002. "Type": "STRING",
  4003. "Value": "道具数量"
  4004. },
  4005. "Type": "BTInputSlot"
  4006. },
  4007. "BTInputSlot4": {
  4008. "ContainerValue": null,
  4009. "StringValue": {
  4010. "Type": "STRING",
  4011. "Value": "时效文本"
  4012. },
  4013. "Type": "BTInputSlot"
  4014. },
  4015. "BTInputSlot5": {
  4016. "ContainerValue": {
  4017. "Type": "BTCoderVariableAction",
  4018. "VarScope": "Scene",
  4019. "isIllegal": true,
  4020. "randomID": "SZMYn4gL2saI",
  4021. "titleLabel": {
  4022. "Type": "STRING",
  4023. "Value": "P-Plist路径",
  4024. "displayName": ""
  4025. }
  4026. },
  4027. "StringValue": {
  4028. "Type": "STRING",
  4029. "Value": "Plist路径"
  4030. },
  4031. "Type": "BTInputSlot"
  4032. },
  4033. "BTInputSlot6": {
  4034. "ContainerValue": {
  4035. "Type": "BTCoderVariableAction",
  4036. "VarScope": "Scene",
  4037. "isIllegal": true,
  4038. "randomID": "ucGviVZ8Gmxd",
  4039. "titleLabel": {
  4040. "Type": "STRING",
  4041. "Value": "P-游戏前道具1_图片名",
  4042. "displayName": ""
  4043. }
  4044. },
  4045. "StringValue": {
  4046. "Type": "STRING",
  4047. "Value": "道具图片名"
  4048. },
  4049. "Type": "BTInputSlot"
  4050. },
  4051. "Type": "BTCallRedCustomFuncBodyAction",
  4052. "baseSelect": {
  4053. "DisplayName": "游戏前道具初始化",
  4054. "Type": "Action",
  4055. "Value": "游戏前道具初始化"
  4056. },
  4057. "funcHeadID": "q2hMIBClDBV2",
  4058. "isIllegal": true,
  4059. "paramArr": [
  4060. [
  4061. "BTInputSlot1",
  4062. "道具默认状态"
  4063. ],
  4064. [
  4065. "BTInputSlot2",
  4066. "解锁等级"
  4067. ],
  4068. [
  4069. "BTInputSlot3",
  4070. "道具数量"
  4071. ],
  4072. [
  4073. "BTInputSlot4",
  4074. "时效文本"
  4075. ],
  4076. [
  4077. "BTInputSlot5",
  4078. "Plist路径"
  4079. ],
  4080. [
  4081. "BTInputSlot6",
  4082. "道具图片名"
  4083. ]
  4084. ],
  4085. "randomID": "nPMpTWes9CUU",
  4086. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  4087. "redSelect": {
  4088. "DisplayName": "道具按钮1",
  4089. "Type": "OBJ",
  4090. "Value": "uPZlJJAekSdf"
  4091. },
  4092. "stepSlot": {
  4093. "ContainerValue": {
  4094. "BTInputSlot1": {
  4095. "ContainerValue": {
  4096. "Type": "BTCoderVariableAction",
  4097. "VarScope": "Scene",
  4098. "isIllegal": true,
  4099. "randomID": "LcT8KllQ4CVi",
  4100. "titleLabel": {
  4101. "Type": "STRING",
  4102. "Value": "P-游戏前道具2_默认状态",
  4103. "displayName": ""
  4104. }
  4105. },
  4106. "StringValue": {
  4107. "Type": "STRING",
  4108. "Value": "道具默认状态"
  4109. },
  4110. "Type": "BTInputSlot"
  4111. },
  4112. "BTInputSlot2": {
  4113. "ContainerValue": {
  4114. "Type": "BTCoderVariableAction",
  4115. "VarScope": "Scene",
  4116. "isIllegal": true,
  4117. "randomID": "z7OQbkCmEcAw",
  4118. "titleLabel": {
  4119. "Type": "STRING",
  4120. "Value": "P-游戏前道具2_解锁等级",
  4121. "displayName": ""
  4122. }
  4123. },
  4124. "StringValue": {
  4125. "Type": "STRING",
  4126. "Value": "解锁等级"
  4127. },
  4128. "Type": "BTInputSlot"
  4129. },
  4130. "BTInputSlot3": {
  4131. "ContainerValue": {
  4132. "Type": "BTCoderVariableAction",
  4133. "VarScope": "Scene",
  4134. "isIllegal": true,
  4135. "randomID": "HDAMCKVT3jna",
  4136. "titleLabel": {
  4137. "Type": "STRING",
  4138. "Value": "P-游戏前道具2_道具数量",
  4139. "displayName": ""
  4140. }
  4141. },
  4142. "StringValue": {
  4143. "Type": "STRING",
  4144. "Value": "道具数量"
  4145. },
  4146. "Type": "BTInputSlot"
  4147. },
  4148. "BTInputSlot4": {
  4149. "ContainerValue": null,
  4150. "StringValue": {
  4151. "Type": "STRING",
  4152. "Value": "时效文本"
  4153. },
  4154. "Type": "BTInputSlot"
  4155. },
  4156. "BTInputSlot5": {
  4157. "ContainerValue": {
  4158. "Type": "BTCoderVariableAction",
  4159. "VarScope": "Scene",
  4160. "isIllegal": true,
  4161. "randomID": "nrPjb48HOjXq",
  4162. "titleLabel": {
  4163. "Type": "STRING",
  4164. "Value": "P-Plist路径",
  4165. "displayName": ""
  4166. }
  4167. },
  4168. "StringValue": {
  4169. "Type": "STRING",
  4170. "Value": "Plist路径"
  4171. },
  4172. "Type": "BTInputSlot"
  4173. },
  4174. "BTInputSlot6": {
  4175. "ContainerValue": {
  4176. "Type": "BTCoderVariableAction",
  4177. "VarScope": "Scene",
  4178. "isIllegal": true,
  4179. "randomID": "HOVMqtbS0Vur",
  4180. "titleLabel": {
  4181. "Type": "STRING",
  4182. "Value": "P-游戏前道具2_图片名",
  4183. "displayName": ""
  4184. }
  4185. },
  4186. "StringValue": {
  4187. "Type": "STRING",
  4188. "Value": "道具图片名"
  4189. },
  4190. "Type": "BTInputSlot"
  4191. },
  4192. "Type": "BTCallRedCustomFuncBodyAction",
  4193. "baseSelect": {
  4194. "DisplayName": "游戏前道具初始化",
  4195. "Type": "Action",
  4196. "Value": "游戏前道具初始化"
  4197. },
  4198. "funcHeadID": "q2hMIBClDBV2",
  4199. "isIllegal": true,
  4200. "paramArr": [
  4201. [
  4202. "BTInputSlot1",
  4203. "道具默认状态"
  4204. ],
  4205. [
  4206. "BTInputSlot2",
  4207. "解锁等级"
  4208. ],
  4209. [
  4210. "BTInputSlot3",
  4211. "道具数量"
  4212. ],
  4213. [
  4214. "BTInputSlot4",
  4215. "时效文本"
  4216. ],
  4217. [
  4218. "BTInputSlot5",
  4219. "Plist路径"
  4220. ],
  4221. [
  4222. "BTInputSlot6",
  4223. "道具图片名"
  4224. ]
  4225. ],
  4226. "randomID": "BSDzc7xyb2An",
  4227. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  4228. "redSelect": {
  4229. "DisplayName": "道具按钮2",
  4230. "Type": "OBJ",
  4231. "Value": "4PE6ixWz3kxa"
  4232. },
  4233. "stepSlot": {
  4234. "ContainerValue": {
  4235. "BTInputSlot1": {
  4236. "ContainerValue": {
  4237. "Type": "BTCoderVariableAction",
  4238. "VarScope": "Scene",
  4239. "isIllegal": true,
  4240. "randomID": "Ym24VE8r1vdO",
  4241. "titleLabel": {
  4242. "Type": "STRING",
  4243. "Value": "P-游戏前道具3_默认状态",
  4244. "displayName": ""
  4245. }
  4246. },
  4247. "StringValue": {
  4248. "Type": "STRING",
  4249. "Value": "道具默认状态"
  4250. },
  4251. "Type": "BTInputSlot"
  4252. },
  4253. "BTInputSlot2": {
  4254. "ContainerValue": {
  4255. "Type": "BTCoderVariableAction",
  4256. "VarScope": "Scene",
  4257. "isIllegal": true,
  4258. "randomID": "7ZUvahtrOSrm",
  4259. "titleLabel": {
  4260. "Type": "STRING",
  4261. "Value": "P-游戏前道具3_解锁等级",
  4262. "displayName": ""
  4263. }
  4264. },
  4265. "StringValue": {
  4266. "Type": "STRING",
  4267. "Value": "解锁等级"
  4268. },
  4269. "Type": "BTInputSlot"
  4270. },
  4271. "BTInputSlot3": {
  4272. "ContainerValue": {
  4273. "Type": "BTCoderVariableAction",
  4274. "VarScope": "Scene",
  4275. "isIllegal": true,
  4276. "randomID": "k3HhlbBKxOWw",
  4277. "titleLabel": {
  4278. "Type": "STRING",
  4279. "Value": "P-游戏前道具3_道具数量",
  4280. "displayName": ""
  4281. }
  4282. },
  4283. "StringValue": {
  4284. "Type": "STRING",
  4285. "Value": "道具数量"
  4286. },
  4287. "Type": "BTInputSlot"
  4288. },
  4289. "BTInputSlot4": {
  4290. "ContainerValue": null,
  4291. "StringValue": {
  4292. "Type": "STRING",
  4293. "Value": "时效文本"
  4294. },
  4295. "Type": "BTInputSlot"
  4296. },
  4297. "BTInputSlot5": {
  4298. "ContainerValue": {
  4299. "Type": "BTCoderVariableAction",
  4300. "VarScope": "Scene",
  4301. "isIllegal": true,
  4302. "randomID": "yyMKCGDGCIlJ",
  4303. "titleLabel": {
  4304. "Type": "STRING",
  4305. "Value": "P-Plist路径",
  4306. "displayName": ""
  4307. }
  4308. },
  4309. "StringValue": {
  4310. "Type": "STRING",
  4311. "Value": "Plist路径"
  4312. },
  4313. "Type": "BTInputSlot"
  4314. },
  4315. "BTInputSlot6": {
  4316. "ContainerValue": {
  4317. "Type": "BTCoderVariableAction",
  4318. "VarScope": "Scene",
  4319. "isIllegal": true,
  4320. "randomID": "H1j2DpH3khtw",
  4321. "titleLabel": {
  4322. "Type": "STRING",
  4323. "Value": "P-游戏前道具3_图片名",
  4324. "displayName": ""
  4325. }
  4326. },
  4327. "StringValue": {
  4328. "Type": "STRING",
  4329. "Value": "道具图片名"
  4330. },
  4331. "Type": "BTInputSlot"
  4332. },
  4333. "Type": "BTCallRedCustomFuncBodyAction",
  4334. "baseSelect": {
  4335. "DisplayName": "游戏前道具初始化",
  4336. "Type": "Action",
  4337. "Value": "游戏前道具初始化"
  4338. },
  4339. "funcHeadID": "q2hMIBClDBV2",
  4340. "isIllegal": true,
  4341. "paramArr": [
  4342. [
  4343. "BTInputSlot1",
  4344. "道具默认状态"
  4345. ],
  4346. [
  4347. "BTInputSlot2",
  4348. "解锁等级"
  4349. ],
  4350. [
  4351. "BTInputSlot3",
  4352. "道具数量"
  4353. ],
  4354. [
  4355. "BTInputSlot4",
  4356. "时效文本"
  4357. ],
  4358. [
  4359. "BTInputSlot5",
  4360. "Plist路径"
  4361. ],
  4362. [
  4363. "BTInputSlot6",
  4364. "道具图片名"
  4365. ]
  4366. ],
  4367. "randomID": "XkQh9aEBmabg",
  4368. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  4369. "redSelect": {
  4370. "DisplayName": "道具按钮3",
  4371. "Type": "OBJ",
  4372. "Value": "ePme3hpPnKaT"
  4373. },
  4374. "stepSlot": {
  4375. "ContainerValue": null,
  4376. "Type": "BTStepSlot"
  4377. }
  4378. },
  4379. "Type": "BTStepSlot"
  4380. }
  4381. },
  4382. "Type": "BTStepSlot"
  4383. }
  4384. },
  4385. "Type": "BTStepSlot"
  4386. },
  4387. "x": -1257,
  4388. "y": 186
  4389. },
  4390. "Tree15": {
  4391. "ExportTree": true,
  4392. "ImageIndex": -1,
  4393. "Type": "BTButtonClickFuncAction",
  4394. "VarJson": {
  4395. "boolJson": {
  4396. },
  4397. "numberJson": {
  4398. }
  4399. },
  4400. "isIllegal": false,
  4401. "mathSelector": {
  4402. "DisplayName": "游戏开始_道具未解锁",
  4403. "Type": "OBJ",
  4404. "Value": "elbCm2MXPqg3"
  4405. },
  4406. "randomID": "RIWI4HVuU7IH",
  4407. "stepSlot": {
  4408. "ContainerValue": {
  4409. "Type": "BTButtonEnableAction",
  4410. "baseSelect": {
  4411. "DisplayName": "游戏开始_道具未解锁",
  4412. "Type": "Action",
  4413. "Value": "elbCm2MXPqg3"
  4414. },
  4415. "enableButton": {
  4416. "Type": "BTCheckBox",
  4417. "isEnable": false
  4418. },
  4419. "isIllegal": true,
  4420. "randomID": "aYkyp6VqDJ7R",
  4421. "stepSlot": {
  4422. "ContainerValue": {
  4423. "Type": "BTNotificationToCoderAction",
  4424. "conditionA": {
  4425. "ContainerValue": null,
  4426. "StringValue": {
  4427. "Type": "STRING",
  4428. "Value": "游戏进入弹窗_游戏进入"
  4429. },
  4430. "Type": "BTInputSlot"
  4431. },
  4432. "isIllegal": true,
  4433. "randomID": "LK3ejOhhCvQp",
  4434. "stepSlot": {
  4435. "ContainerValue": null,
  4436. "Type": "BTStepSlot"
  4437. }
  4438. },
  4439. "Type": "BTStepSlot"
  4440. }
  4441. },
  4442. "Type": "BTStepSlot"
  4443. },
  4444. "x": -173.78168291617322,
  4445. "y": 1071.8274756257401
  4446. },
  4447. "Tree16": {
  4448. "ExportTree": true,
  4449. "ImageIndex": -1,
  4450. "Type": "BTButtonClickFuncAction",
  4451. "VarJson": {
  4452. "boolJson": {
  4453. },
  4454. "numberJson": {
  4455. }
  4456. },
  4457. "isIllegal": false,
  4458. "mathSelector": {
  4459. "DisplayName": "关闭按钮",
  4460. "Type": "OBJ",
  4461. "Value": "BUYW3LpsUO4p"
  4462. },
  4463. "randomID": "OLs4vpe8hIUU",
  4464. "stepSlot": {
  4465. "ContainerValue": {
  4466. "Type": "BTButtonEnableAction",
  4467. "baseSelect": {
  4468. "DisplayName": "关闭按钮",
  4469. "Type": "Action",
  4470. "Value": "BUYW3LpsUO4p"
  4471. },
  4472. "enableButton": {
  4473. "Type": "BTCheckBox",
  4474. "isEnable": false
  4475. },
  4476. "isIllegal": true,
  4477. "randomID": "qr0UsGWSWSU8",
  4478. "stepSlot": {
  4479. "ContainerValue": {
  4480. "Type": "BTPlayTimeLineAction",
  4481. "baseSelect": {
  4482. "DisplayName": "退出动画",
  4483. "Type": "Action",
  4484. "Value": "1"
  4485. },
  4486. "isIllegal": true,
  4487. "randomID": "48fSnNNx0IHx",
  4488. "stepSlot": {
  4489. "ContainerValue": {
  4490. "Type": "BTRedHiddenAction",
  4491. "baseSelect": {
  4492. "DisplayName": "进入动画",
  4493. "Type": "Action",
  4494. "Value": "0"
  4495. },
  4496. "isIllegal": true,
  4497. "randomID": "uMhPWTDcCgo8",
  4498. "stepSlot": {
  4499. "ContainerValue": {
  4500. "Type": "BTWaitTimeAction",
  4501. "conditionA": {
  4502. "ContainerValue": null,
  4503. "StringValue": {
  4504. "Type": "FLOAT",
  4505. "Value": 0.10000000149011612
  4506. },
  4507. "Type": "BTInputSlot"
  4508. },
  4509. "isIllegal": true,
  4510. "randomID": "1c2gsjNuMhxZ",
  4511. "stepSlot": {
  4512. "ContainerValue": {
  4513. "Type": "BTButtonEnableAction",
  4514. "baseSelect": {
  4515. "DisplayName": "关闭按钮",
  4516. "Type": "Action",
  4517. "Value": "BUYW3LpsUO4p"
  4518. },
  4519. "enableButton": {
  4520. "Type": "BTCheckBox",
  4521. "isEnable": true
  4522. },
  4523. "isIllegal": true,
  4524. "randomID": "PP995TtRotAM",
  4525. "stepSlot": {
  4526. "ContainerValue": {
  4527. "Type": "BTNotificationToCoderAction",
  4528. "conditionA": {
  4529. "ContainerValue": null,
  4530. "StringValue": {
  4531. "Type": "STRING",
  4532. "Value": "关闭游戏进入弹窗"
  4533. },
  4534. "Type": "BTInputSlot"
  4535. },
  4536. "isIllegal": true,
  4537. "randomID": "ByuZIaSt2nic",
  4538. "stepSlot": {
  4539. "ContainerValue": null,
  4540. "Type": "BTStepSlot"
  4541. }
  4542. },
  4543. "Type": "BTStepSlot"
  4544. }
  4545. },
  4546. "Type": "BTStepSlot"
  4547. }
  4548. },
  4549. "Type": "BTStepSlot"
  4550. }
  4551. },
  4552. "Type": "BTStepSlot"
  4553. }
  4554. },
  4555. "Type": "BTStepSlot"
  4556. }
  4557. },
  4558. "Type": "BTStepSlot"
  4559. },
  4560. "x": -214,
  4561. "y": 795
  4562. },
  4563. "Tree17": {
  4564. "ExportTree": true,
  4565. "ImageIndex": -1,
  4566. "Type": "BTButtonClickFuncAction",
  4567. "VarJson": {
  4568. "boolJson": {
  4569. },
  4570. "numberJson": {
  4571. }
  4572. },
  4573. "isIllegal": false,
  4574. "mathSelector": {
  4575. "DisplayName": "道具已解锁_游戏开始按钮",
  4576. "Type": "OBJ",
  4577. "Value": "3cpPix6ippdg"
  4578. },
  4579. "randomID": "ZB5wv0z8fqKS",
  4580. "stepSlot": {
  4581. "ContainerValue": {
  4582. "Type": "BTButtonEnableAction",
  4583. "baseSelect": {
  4584. "DisplayName": "道具已解锁_游戏开始按钮",
  4585. "Type": "Action",
  4586. "Value": "3cpPix6ippdg"
  4587. },
  4588. "enableButton": {
  4589. "Type": "BTCheckBox",
  4590. "isEnable": false
  4591. },
  4592. "isIllegal": true,
  4593. "randomID": "fp79qJupRsf0",
  4594. "stepSlot": {
  4595. "ContainerValue": {
  4596. "Type": "BTNotificationToCoderAction",
  4597. "conditionA": {
  4598. "ContainerValue": null,
  4599. "StringValue": {
  4600. "Type": "STRING",
  4601. "Value": "游戏进入弹窗_游戏进入"
  4602. },
  4603. "Type": "BTInputSlot"
  4604. },
  4605. "isIllegal": true,
  4606. "randomID": "E9MbkhmEkDZ6",
  4607. "stepSlot": {
  4608. "ContainerValue": null,
  4609. "Type": "BTStepSlot"
  4610. }
  4611. },
  4612. "Type": "BTStepSlot"
  4613. }
  4614. },
  4615. "Type": "BTStepSlot"
  4616. },
  4617. "x": -163.73943902794224,
  4618. "y": 1233.5633658323463
  4619. },
  4620. "Tree18": {
  4621. "ExportTree": true,
  4622. "ImageIndex": 3,
  4623. "Name": {
  4624. "Type": "STRING",
  4625. "Value": "按钮显示状态",
  4626. "displayName": ""
  4627. },
  4628. "Type": "BTCustomFuncHeadAction",
  4629. "VarJson": {
  4630. "boolJson": {
  4631. },
  4632. "numberJson": {
  4633. }
  4634. },
  4635. "isIllegal": false,
  4636. "randomID": "sxbvWSzGGNQV",
  4637. "stepSlot": {
  4638. "ContainerValue": {
  4639. "Type": "BTNodeHiddenAction",
  4640. "baseSelect": {
  4641. "DisplayName": "道具未解锁按钮模块",
  4642. "Type": "Action",
  4643. "Value": "aYRUKHU3f7N0"
  4644. },
  4645. "isIllegal": true,
  4646. "randomID": "XySux8lwl51K",
  4647. "stepSlot": {
  4648. "ContainerValue": {
  4649. "Type": "BTNodeHiddenAction",
  4650. "baseSelect": {
  4651. "DisplayName": "道具已解锁_游戏开始模块",
  4652. "Type": "Action",
  4653. "Value": "jiQhbGxOAf2L"
  4654. },
  4655. "isIllegal": true,
  4656. "randomID": "bz6O4F7T3brK",
  4657. "stepSlot": {
  4658. "ContainerValue": {
  4659. "Type": "BTNodeHiddenAction",
  4660. "baseSelect": {
  4661. "DisplayName": "广告获取道具模块",
  4662. "Type": "Action",
  4663. "Value": "Luron9kbq9Gb"
  4664. },
  4665. "isIllegal": true,
  4666. "randomID": "JNxazAGwHgKG",
  4667. "stepSlot": {
  4668. "ContainerValue": {
  4669. "Type": "BTIFControlAction",
  4670. "conditionA": {
  4671. "ContainerValue": {
  4672. "Type": "BTEqualOperatorAction",
  4673. "conditionA": {
  4674. "ContainerValue": {
  4675. "Type": "BTCoderVariableAction",
  4676. "VarScope": "Scene",
  4677. "isIllegal": true,
  4678. "randomID": "VnFLRw4ix5Y0",
  4679. "titleLabel": {
  4680. "Type": "STRING",
  4681. "Value": "P-道具解锁数",
  4682. "displayName": ""
  4683. }
  4684. },
  4685. "StringValue": {
  4686. "Type": "FLOAT",
  4687. "Value": 0
  4688. },
  4689. "Type": "BTInputSlot"
  4690. },
  4691. "conditionB": {
  4692. "ContainerValue": null,
  4693. "StringValue": {
  4694. "Type": "FLOAT",
  4695. "Value": 0
  4696. },
  4697. "Type": "BTInputSlot"
  4698. },
  4699. "isIllegal": true,
  4700. "randomID": "dtkZPysr1ZKr"
  4701. },
  4702. "Type": "BTBoolSlot"
  4703. },
  4704. "isIllegal": true,
  4705. "randomID": "KdBh3H4a8fxY",
  4706. "sectionA": {
  4707. "ContainerValue": {
  4708. "Type": "BTNodeShowAction",
  4709. "baseSelect": {
  4710. "DisplayName": "道具未解锁按钮模块",
  4711. "Type": "Action",
  4712. "Value": "aYRUKHU3f7N0"
  4713. },
  4714. "isIllegal": true,
  4715. "randomID": "zcOhr0LcYPVc",
  4716. "stepSlot": {
  4717. "ContainerValue": null,
  4718. "Type": "BTStepSlot"
  4719. }
  4720. },
  4721. "Type": "BTSectionSlot"
  4722. },
  4723. "stepSlot": {
  4724. "ContainerValue": {
  4725. "Type": "BTIFControlAction",
  4726. "conditionA": {
  4727. "ContainerValue": {
  4728. "Type": "BTBoolOrAction",
  4729. "conditionA": {
  4730. "ContainerValue": {
  4731. "Type": "BTEqualOperatorAction",
  4732. "conditionA": {
  4733. "ContainerValue": null,
  4734. "StringValue": {
  4735. "Type": "FLOAT",
  4736. "Value": 1
  4737. },
  4738. "Type": "BTInputSlot"
  4739. },
  4740. "conditionB": {
  4741. "ContainerValue": {
  4742. "Type": "BTCoderVariableAction",
  4743. "VarScope": "Scene",
  4744. "isIllegal": true,
  4745. "randomID": "vb72ZDklOwff",
  4746. "titleLabel": {
  4747. "Type": "STRING",
  4748. "Value": "P-道具解锁数",
  4749. "displayName": ""
  4750. }
  4751. },
  4752. "StringValue": {
  4753. "Type": "FLOAT",
  4754. "Value": 0
  4755. },
  4756. "Type": "BTInputSlot"
  4757. },
  4758. "isIllegal": true,
  4759. "randomID": "pyAO9AGOK0kZ"
  4760. },
  4761. "Type": "BTBoolSlot"
  4762. },
  4763. "conditionB": {
  4764. "ContainerValue": {
  4765. "Type": "BTBiggerThanAction",
  4766. "conditionA": {
  4767. "ContainerValue": {
  4768. "Type": "BTCoderVariableAction",
  4769. "VarScope": "Scene",
  4770. "isIllegal": true,
  4771. "randomID": "OYKILGiF24yM",
  4772. "titleLabel": {
  4773. "Type": "STRING",
  4774. "Value": "P-道具解锁数",
  4775. "displayName": ""
  4776. }
  4777. },
  4778. "StringValue": {
  4779. "Type": "FLOAT",
  4780. "Value": 0
  4781. },
  4782. "Type": "BTInputSlot"
  4783. },
  4784. "conditionB": {
  4785. "ContainerValue": null,
  4786. "StringValue": {
  4787. "Type": "FLOAT",
  4788. "Value": 1
  4789. },
  4790. "Type": "BTInputSlot"
  4791. },
  4792. "isIllegal": true,
  4793. "randomID": "9cRt2DRpkFj0"
  4794. },
  4795. "Type": "BTBoolSlot"
  4796. },
  4797. "isIllegal": true,
  4798. "randomID": "sqwL9mmpHs69"
  4799. },
  4800. "Type": "BTBoolSlot"
  4801. },
  4802. "isIllegal": true,
  4803. "randomID": "pWNWMkiFhc3r",
  4804. "sectionA": {
  4805. "ContainerValue": {
  4806. "Type": "BTNodeShowAction",
  4807. "baseSelect": {
  4808. "DisplayName": "广告获取道具模块",
  4809. "Type": "Action",
  4810. "Value": "Luron9kbq9Gb"
  4811. },
  4812. "isIllegal": true,
  4813. "randomID": "KWKXNBBfH9st",
  4814. "stepSlot": {
  4815. "ContainerValue": {
  4816. "Type": "BTNodeShowAction",
  4817. "baseSelect": {
  4818. "DisplayName": "道具已解锁_游戏开始模块",
  4819. "Type": "Action",
  4820. "Value": "jiQhbGxOAf2L"
  4821. },
  4822. "isIllegal": true,
  4823. "randomID": "cZsamTOoyyV9",
  4824. "stepSlot": {
  4825. "ContainerValue": null,
  4826. "Type": "BTStepSlot"
  4827. }
  4828. },
  4829. "Type": "BTStepSlot"
  4830. }
  4831. },
  4832. "Type": "BTSectionSlot"
  4833. },
  4834. "stepSlot": {
  4835. "ContainerValue": {
  4836. "Type": "BTIFControlAction",
  4837. "conditionA": {
  4838. "ContainerValue": {
  4839. "Type": "BTEqualOperatorAction",
  4840. "conditionA": {
  4841. "ContainerValue": null,
  4842. "StringValue": {
  4843. "Type": "FLOAT",
  4844. "Value": 1
  4845. },
  4846. "Type": "BTInputSlot"
  4847. },
  4848. "conditionB": {
  4849. "ContainerValue": {
  4850. "Type": "BTCoderVariableAction",
  4851. "VarScope": "Scene",
  4852. "isIllegal": true,
  4853. "randomID": "N3DYwR5ibqfR",
  4854. "titleLabel": {
  4855. "Type": "STRING",
  4856. "Value": "P-道具解锁数",
  4857. "displayName": ""
  4858. }
  4859. },
  4860. "StringValue": {
  4861. "Type": "FLOAT",
  4862. "Value": 0
  4863. },
  4864. "Type": "BTInputSlot"
  4865. },
  4866. "isIllegal": true,
  4867. "randomID": "sj3ovKNU4Av6"
  4868. },
  4869. "Type": "BTBoolSlot"
  4870. },
  4871. "isIllegal": true,
  4872. "randomID": "yRz8kICS0f7f",
  4873. "sectionA": {
  4874. "ContainerValue": {
  4875. "Type": "BTPlaySceneTimeLineAction",
  4876. "baseSelect": {
  4877. "DisplayName": "循环动画1",
  4878. "Type": "Action",
  4879. "Value": "0"
  4880. },
  4881. "isIllegal": true,
  4882. "randomID": "5X8UedW1is0j",
  4883. "redSelect": {
  4884. "DisplayName": "道具循环标签",
  4885. "Type": "OBJ",
  4886. "Value": "67kz3oKetAfR"
  4887. },
  4888. "stepSlot": {
  4889. "ContainerValue": null,
  4890. "Type": "BTStepSlot"
  4891. }
  4892. },
  4893. "Type": "BTSectionSlot"
  4894. },
  4895. "stepSlot": {
  4896. "ContainerValue": {
  4897. "Type": "BTIFControlAction",
  4898. "conditionA": {
  4899. "ContainerValue": {
  4900. "Type": "BTEqualOperatorAction",
  4901. "conditionA": {
  4902. "ContainerValue": null,
  4903. "StringValue": {
  4904. "Type": "FLOAT",
  4905. "Value": 2
  4906. },
  4907. "Type": "BTInputSlot"
  4908. },
  4909. "conditionB": {
  4910. "ContainerValue": {
  4911. "Type": "BTCoderVariableAction",
  4912. "VarScope": "Scene",
  4913. "isIllegal": true,
  4914. "randomID": "KjvQgkmKd0yA",
  4915. "titleLabel": {
  4916. "Type": "STRING",
  4917. "Value": "P-道具解锁数",
  4918. "displayName": ""
  4919. }
  4920. },
  4921. "StringValue": {
  4922. "Type": "FLOAT",
  4923. "Value": 0
  4924. },
  4925. "Type": "BTInputSlot"
  4926. },
  4927. "isIllegal": true,
  4928. "randomID": "dBNnMmAII8OO"
  4929. },
  4930. "Type": "BTBoolSlot"
  4931. },
  4932. "isIllegal": true,
  4933. "randomID": "iQOCKZ3mneEy",
  4934. "sectionA": {
  4935. "ContainerValue": {
  4936. "Type": "BTPlaySceneTimeLineAction",
  4937. "baseSelect": {
  4938. "DisplayName": "循环动画2",
  4939. "Type": "Action",
  4940. "Value": "1"
  4941. },
  4942. "isIllegal": true,
  4943. "randomID": "leqnPJBSQ5ZF",
  4944. "redSelect": {
  4945. "DisplayName": "道具循环标签",
  4946. "Type": "OBJ",
  4947. "Value": "67kz3oKetAfR"
  4948. },
  4949. "stepSlot": {
  4950. "ContainerValue": null,
  4951. "Type": "BTStepSlot"
  4952. }
  4953. },
  4954. "Type": "BTSectionSlot"
  4955. },
  4956. "stepSlot": {
  4957. "ContainerValue": {
  4958. "Type": "BTIFControlAction",
  4959. "conditionA": {
  4960. "ContainerValue": {
  4961. "Type": "BTEqualOperatorAction",
  4962. "conditionA": {
  4963. "ContainerValue": null,
  4964. "StringValue": {
  4965. "Type": "FLOAT",
  4966. "Value": 3
  4967. },
  4968. "Type": "BTInputSlot"
  4969. },
  4970. "conditionB": {
  4971. "ContainerValue": {
  4972. "Type": "BTCoderVariableAction",
  4973. "VarScope": "Scene",
  4974. "isIllegal": true,
  4975. "randomID": "ewbs2VFHm0tc",
  4976. "titleLabel": {
  4977. "Type": "STRING",
  4978. "Value": "P-道具解锁数",
  4979. "displayName": ""
  4980. }
  4981. },
  4982. "StringValue": {
  4983. "Type": "FLOAT",
  4984. "Value": 0
  4985. },
  4986. "Type": "BTInputSlot"
  4987. },
  4988. "isIllegal": true,
  4989. "randomID": "ouroMdf9VBty"
  4990. },
  4991. "Type": "BTBoolSlot"
  4992. },
  4993. "isIllegal": true,
  4994. "randomID": "PsvW6wGw5e0Y",
  4995. "sectionA": {
  4996. "ContainerValue": {
  4997. "Type": "BTPlaySceneTimeLineAction",
  4998. "baseSelect": {
  4999. "DisplayName": "循环动画3",
  5000. "Type": "Action",
  5001. "Value": "2"
  5002. },
  5003. "isIllegal": true,
  5004. "randomID": "mJdnQhxEnNiO",
  5005. "redSelect": {
  5006. "DisplayName": "道具循环标签",
  5007. "Type": "OBJ",
  5008. "Value": "67kz3oKetAfR"
  5009. },
  5010. "stepSlot": {
  5011. "ContainerValue": null,
  5012. "Type": "BTStepSlot"
  5013. }
  5014. },
  5015. "Type": "BTSectionSlot"
  5016. },
  5017. "stepSlot": {
  5018. "ContainerValue": null,
  5019. "Type": "BTStepSlot"
  5020. }
  5021. },
  5022. "Type": "BTStepSlot"
  5023. }
  5024. },
  5025. "Type": "BTStepSlot"
  5026. }
  5027. },
  5028. "Type": "BTStepSlot"
  5029. }
  5030. },
  5031. "Type": "BTStepSlot"
  5032. }
  5033. },
  5034. "Type": "BTStepSlot"
  5035. }
  5036. },
  5037. "Type": "BTStepSlot"
  5038. }
  5039. },
  5040. "Type": "BTStepSlot"
  5041. }
  5042. },
  5043. "Type": "BTStepSlot"
  5044. },
  5045. "x": 1123.7482979472218,
  5046. "y": 412.24612021070453
  5047. },
  5048. "Tree19": {
  5049. "ExportTree": true,
  5050. "ImageIndex": -1,
  5051. "Type": "BTButtonClickFuncAction",
  5052. "VarJson": {
  5053. "boolJson": {
  5054. },
  5055. "numberJson": {
  5056. }
  5057. },
  5058. "isIllegal": false,
  5059. "mathSelector": {
  5060. "DisplayName": "广告进入游戏按钮",
  5061. "Type": "OBJ",
  5062. "Value": "dnnxvK2tuHMa"
  5063. },
  5064. "randomID": "FaiQ9vIp4kMu",
  5065. "stepSlot": {
  5066. "ContainerValue": {
  5067. "Type": "BTButtonEnableAction",
  5068. "baseSelect": {
  5069. "DisplayName": "广告进入游戏按钮",
  5070. "Type": "Action",
  5071. "Value": "dnnxvK2tuHMa"
  5072. },
  5073. "enableButton": {
  5074. "Type": "BTCheckBox",
  5075. "isEnable": false
  5076. },
  5077. "isIllegal": true,
  5078. "randomID": "q5LUqI5diVBt",
  5079. "stepSlot": {
  5080. "ContainerValue": {
  5081. "Type": "BTNotificationToCoderAction",
  5082. "conditionA": {
  5083. "ContainerValue": null,
  5084. "StringValue": {
  5085. "Type": "STRING",
  5086. "Value": "游戏进入弹窗_广告_游戏进入"
  5087. },
  5088. "Type": "BTInputSlot"
  5089. },
  5090. "isIllegal": true,
  5091. "randomID": "fwF14iiFMZCz",
  5092. "stepSlot": {
  5093. "ContainerValue": {
  5094. "Type": "BTWaitTimeAction",
  5095. "conditionA": {
  5096. "ContainerValue": null,
  5097. "StringValue": {
  5098. "Type": "FLOAT",
  5099. "Value": 0.10000000149011612
  5100. },
  5101. "Type": "BTInputSlot"
  5102. },
  5103. "isIllegal": true,
  5104. "randomID": "D34Qwv3kPI9M",
  5105. "stepSlot": {
  5106. "ContainerValue": {
  5107. "Type": "BTButtonEnableAction",
  5108. "baseSelect": {
  5109. "DisplayName": "广告进入游戏按钮",
  5110. "Type": "Action",
  5111. "Value": "dnnxvK2tuHMa"
  5112. },
  5113. "enableButton": {
  5114. "Type": "BTCheckBox",
  5115. "isEnable": true
  5116. },
  5117. "isIllegal": true,
  5118. "randomID": "lwlL5yL4601o",
  5119. "stepSlot": {
  5120. "ContainerValue": null,
  5121. "Type": "BTStepSlot"
  5122. }
  5123. },
  5124. "Type": "BTStepSlot"
  5125. }
  5126. },
  5127. "Type": "BTStepSlot"
  5128. }
  5129. },
  5130. "Type": "BTStepSlot"
  5131. }
  5132. },
  5133. "Type": "BTStepSlot"
  5134. },
  5135. "x": -186,
  5136. "y": 1413
  5137. },
  5138. "Tree2": {
  5139. "ExportTree": true,
  5140. "ImageIndex": -1,
  5141. "Type": "BTSceneBtnClickFuncAction",
  5142. "VarJson": {
  5143. "boolJson": {
  5144. },
  5145. "numberJson": {
  5146. }
  5147. },
  5148. "baseSelect": {
  5149. "DisplayName": "连胜详情按钮",
  5150. "Type": "Action",
  5151. "Value": "H5DImnaBgB4Q"
  5152. },
  5153. "isIllegal": false,
  5154. "randomID": "qefVqIrlX1gA",
  5155. "redSelect": {
  5156. "DisplayName": "连胜任务栏",
  5157. "Type": "OBJ",
  5158. "Value": "cLSg4NM1lL5B"
  5159. },
  5160. "stepSlot": {
  5161. "ContainerValue": {
  5162. "Type": "BTSceneButtonEnableAction",
  5163. "baseSelect": {
  5164. "DisplayName": "连胜详情按钮",
  5165. "Type": "Action",
  5166. "Value": "H5DImnaBgB4Q"
  5167. },
  5168. "enableButton": {
  5169. "Type": "BTCheckBox",
  5170. "isEnable": false
  5171. },
  5172. "isIllegal": true,
  5173. "randomID": "efDAS7AfVf5K",
  5174. "redSelect": {
  5175. "DisplayName": "连胜任务栏",
  5176. "Type": "OBJ",
  5177. "Value": "cLSg4NM1lL5B"
  5178. },
  5179. "stepSlot": {
  5180. "ContainerValue": {
  5181. "Type": "BTNotificationToCoderAction",
  5182. "conditionA": {
  5183. "ContainerValue": null,
  5184. "StringValue": {
  5185. "Type": "STRING",
  5186. "Value": "连胜任务详情按钮被点击"
  5187. },
  5188. "Type": "BTInputSlot"
  5189. },
  5190. "isIllegal": true,
  5191. "randomID": "qTXoxQX21s8Z",
  5192. "stepSlot": {
  5193. "ContainerValue": {
  5194. "Type": "BTWaitTimeAction",
  5195. "conditionA": {
  5196. "ContainerValue": null,
  5197. "StringValue": {
  5198. "Type": "FLOAT",
  5199. "Value": 0.30000001192092896
  5200. },
  5201. "Type": "BTInputSlot"
  5202. },
  5203. "isIllegal": true,
  5204. "randomID": "cPEYdzkukq6l",
  5205. "stepSlot": {
  5206. "ContainerValue": {
  5207. "Type": "BTSceneButtonEnableAction",
  5208. "baseSelect": {
  5209. "DisplayName": "连胜详情按钮",
  5210. "Type": "Action",
  5211. "Value": "H5DImnaBgB4Q"
  5212. },
  5213. "enableButton": {
  5214. "Type": "BTCheckBox",
  5215. "isEnable": true
  5216. },
  5217. "isIllegal": true,
  5218. "randomID": "f1yEiuV5lX07",
  5219. "redSelect": {
  5220. "DisplayName": "连胜任务栏",
  5221. "Type": "OBJ",
  5222. "Value": "cLSg4NM1lL5B"
  5223. },
  5224. "stepSlot": {
  5225. "ContainerValue": null,
  5226. "Type": "BTStepSlot"
  5227. }
  5228. },
  5229. "Type": "BTStepSlot"
  5230. }
  5231. },
  5232. "Type": "BTStepSlot"
  5233. }
  5234. },
  5235. "Type": "BTStepSlot"
  5236. }
  5237. },
  5238. "Type": "BTStepSlot"
  5239. },
  5240. "x": -160,
  5241. "y": 563
  5242. },
  5243. "Tree20": {
  5244. "ExportTree": true,
  5245. "ImageIndex": 7,
  5246. "Name": {
  5247. "Type": "STRING",
  5248. "Value": "刷新道具1状态",
  5249. "displayName": ""
  5250. },
  5251. "Type": "BTCustomFuncHeadAction",
  5252. "VarJson": {
  5253. "boolJson": {
  5254. },
  5255. "numberJson": {
  5256. }
  5257. },
  5258. "isIllegal": false,
  5259. "randomID": "6pssGBPIYlfR",
  5260. "stepSlot": {
  5261. "ContainerValue": {
  5262. "BTInputSlot1": {
  5263. "ContainerValue": {
  5264. "Type": "BTCoderVariableAction",
  5265. "VarScope": "Scene",
  5266. "isIllegal": true,
  5267. "randomID": "mNEbpFFEFwG1",
  5268. "titleLabel": {
  5269. "Type": "STRING",
  5270. "Value": "P-游戏前道具1_默认状态",
  5271. "displayName": ""
  5272. }
  5273. },
  5274. "StringValue": {
  5275. "Type": "STRING",
  5276. "Value": "道具默认状态"
  5277. },
  5278. "Type": "BTInputSlot"
  5279. },
  5280. "BTInputSlot2": {
  5281. "ContainerValue": {
  5282. "Type": "BTCoderVariableAction",
  5283. "VarScope": "Scene",
  5284. "isIllegal": true,
  5285. "randomID": "74XMzG5xcj9s",
  5286. "titleLabel": {
  5287. "Type": "STRING",
  5288. "Value": "P-游戏前道具1_解锁等级",
  5289. "displayName": ""
  5290. }
  5291. },
  5292. "StringValue": {
  5293. "Type": "STRING",
  5294. "Value": "解锁等级"
  5295. },
  5296. "Type": "BTInputSlot"
  5297. },
  5298. "BTInputSlot3": {
  5299. "ContainerValue": {
  5300. "Type": "BTCoderVariableAction",
  5301. "VarScope": "Scene",
  5302. "isIllegal": true,
  5303. "randomID": "lK9PZTMnaUAA",
  5304. "titleLabel": {
  5305. "Type": "STRING",
  5306. "Value": "P-游戏前道具1_道具数量",
  5307. "displayName": ""
  5308. }
  5309. },
  5310. "StringValue": {
  5311. "Type": "STRING",
  5312. "Value": "道具数量"
  5313. },
  5314. "Type": "BTInputSlot"
  5315. },
  5316. "BTInputSlot4": {
  5317. "ContainerValue": null,
  5318. "StringValue": {
  5319. "Type": "STRING",
  5320. "Value": "时效文本"
  5321. },
  5322. "Type": "BTInputSlot"
  5323. },
  5324. "BTInputSlot5": {
  5325. "ContainerValue": {
  5326. "Type": "BTCoderVariableAction",
  5327. "VarScope": "Scene",
  5328. "isIllegal": true,
  5329. "randomID": "dGJbAoSA3GbC",
  5330. "titleLabel": {
  5331. "Type": "STRING",
  5332. "Value": "P-Plist路径",
  5333. "displayName": ""
  5334. }
  5335. },
  5336. "StringValue": {
  5337. "Type": "STRING",
  5338. "Value": "Plist路径"
  5339. },
  5340. "Type": "BTInputSlot"
  5341. },
  5342. "BTInputSlot6": {
  5343. "ContainerValue": {
  5344. "Type": "BTCoderVariableAction",
  5345. "VarScope": "Scene",
  5346. "isIllegal": true,
  5347. "randomID": "crEEJjAn7J5c",
  5348. "titleLabel": {
  5349. "Type": "STRING",
  5350. "Value": "P-游戏前道具1_图片名",
  5351. "displayName": ""
  5352. }
  5353. },
  5354. "StringValue": {
  5355. "Type": "STRING",
  5356. "Value": "道具图片名"
  5357. },
  5358. "Type": "BTInputSlot"
  5359. },
  5360. "Type": "BTCallRedCustomFuncBodyAction",
  5361. "baseSelect": {
  5362. "DisplayName": "游戏前道具初始化",
  5363. "Type": "Action",
  5364. "Value": "游戏前道具初始化"
  5365. },
  5366. "funcHeadID": "q2hMIBClDBV2",
  5367. "isIllegal": true,
  5368. "paramArr": [
  5369. [
  5370. "BTInputSlot1",
  5371. "道具默认状态"
  5372. ],
  5373. [
  5374. "BTInputSlot2",
  5375. "解锁等级"
  5376. ],
  5377. [
  5378. "BTInputSlot3",
  5379. "道具数量"
  5380. ],
  5381. [
  5382. "BTInputSlot4",
  5383. "时效文本"
  5384. ],
  5385. [
  5386. "BTInputSlot5",
  5387. "Plist路径"
  5388. ],
  5389. [
  5390. "BTInputSlot6",
  5391. "道具图片名"
  5392. ]
  5393. ],
  5394. "randomID": "NCuV32mvKA86",
  5395. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  5396. "redSelect": {
  5397. "DisplayName": "道具按钮1",
  5398. "Type": "OBJ",
  5399. "Value": "uPZlJJAekSdf"
  5400. },
  5401. "stepSlot": {
  5402. "ContainerValue": {
  5403. "Type": "BTNotifiSceneNodeToCoderAction",
  5404. "baseSelect": {
  5405. "DisplayName": "时效文本",
  5406. "Type": "Action",
  5407. "Value": "tscXYDElm19g"
  5408. },
  5409. "conditionA": {
  5410. "ContainerValue": null,
  5411. "StringValue": {
  5412. "Type": "STRING",
  5413. "Value": "游戏前道具1_时效文本"
  5414. },
  5415. "Type": "BTInputSlot"
  5416. },
  5417. "isIllegal": true,
  5418. "paramA": {
  5419. "ContainerValue": null,
  5420. "StringValue": {
  5421. "Type": "STRING",
  5422. "Value": "1"
  5423. },
  5424. "Type": "BTInputSlot"
  5425. },
  5426. "randomID": "e7rUFCqdLCDP",
  5427. "redSelect": {
  5428. "DisplayName": "道具按钮1",
  5429. "Type": "OBJ",
  5430. "Value": "uPZlJJAekSdf"
  5431. },
  5432. "stepSlot": {
  5433. "ContainerValue": null,
  5434. "Type": "BTStepSlot"
  5435. }
  5436. },
  5437. "Type": "BTStepSlot"
  5438. }
  5439. },
  5440. "Type": "BTStepSlot"
  5441. },
  5442. "x": -1411.5,
  5443. "y": 406
  5444. },
  5445. "Tree21": {
  5446. "ExportTree": true,
  5447. "ImageIndex": 4,
  5448. "Name": {
  5449. "Type": "STRING",
  5450. "Value": "循环标签图片设置",
  5451. "displayName": ""
  5452. },
  5453. "Type": "BTCustomFuncHeadAction",
  5454. "VarJson": {
  5455. "boolJson": {
  5456. },
  5457. "numberJson": {
  5458. }
  5459. },
  5460. "isIllegal": false,
  5461. "randomID": "uPD8h7H6MQ67",
  5462. "stepSlot": {
  5463. "ContainerValue": {
  5464. "Type": "BTSceneSpritePlistAction",
  5465. "baseSelect": {
  5466. "DisplayName": "道具1",
  5467. "Type": "Action",
  5468. "Value": "oo4LS2HcEoi5"
  5469. },
  5470. "frameNameInput": {
  5471. "ContainerValue": {
  5472. "Type": "BTCoderVariableAction",
  5473. "VarScope": "Scene",
  5474. "isIllegal": true,
  5475. "randomID": "QfFymUU3HRnb",
  5476. "titleLabel": {
  5477. "Type": "STRING",
  5478. "Value": "P-游戏前道具1_图片名",
  5479. "displayName": ""
  5480. }
  5481. },
  5482. "StringValue": {
  5483. "Type": "STRING",
  5484. "Value": "图片名"
  5485. },
  5486. "Type": "BTInputSlot"
  5487. },
  5488. "isIllegal": true,
  5489. "pathInput": {
  5490. "ContainerValue": {
  5491. "Type": "BTCoderVariableAction",
  5492. "VarScope": "Scene",
  5493. "isIllegal": true,
  5494. "randomID": "px7EnbT5TI41",
  5495. "titleLabel": {
  5496. "Type": "STRING",
  5497. "Value": "P-Plist路径",
  5498. "displayName": ""
  5499. }
  5500. },
  5501. "StringValue": {
  5502. "Type": "STRING",
  5503. "Value": "Plist路径"
  5504. },
  5505. "Type": "BTInputSlot"
  5506. },
  5507. "randomID": "4J13xfp3ygW1",
  5508. "redSelect": {
  5509. "DisplayName": "道具循环标签",
  5510. "Type": "OBJ",
  5511. "Value": "67kz3oKetAfR"
  5512. },
  5513. "stepSlot": {
  5514. "ContainerValue": {
  5515. "Type": "BTSceneSpritePlistAction",
  5516. "baseSelect": {
  5517. "DisplayName": "道具2",
  5518. "Type": "Action",
  5519. "Value": "yqH9MOpP5QxK"
  5520. },
  5521. "frameNameInput": {
  5522. "ContainerValue": {
  5523. "Type": "BTCoderVariableAction",
  5524. "VarScope": "Scene",
  5525. "isIllegal": true,
  5526. "randomID": "9mdLHEcLB9r5",
  5527. "titleLabel": {
  5528. "Type": "STRING",
  5529. "Value": "P-游戏前道具2_图片名",
  5530. "displayName": ""
  5531. }
  5532. },
  5533. "StringValue": {
  5534. "Type": "STRING",
  5535. "Value": "图片名"
  5536. },
  5537. "Type": "BTInputSlot"
  5538. },
  5539. "isIllegal": true,
  5540. "pathInput": {
  5541. "ContainerValue": {
  5542. "Type": "BTCoderVariableAction",
  5543. "VarScope": "Scene",
  5544. "isIllegal": true,
  5545. "randomID": "4glQ0bafq5BA",
  5546. "titleLabel": {
  5547. "Type": "STRING",
  5548. "Value": "P-Plist路径",
  5549. "displayName": ""
  5550. }
  5551. },
  5552. "StringValue": {
  5553. "Type": "STRING",
  5554. "Value": "Plist路径"
  5555. },
  5556. "Type": "BTInputSlot"
  5557. },
  5558. "randomID": "XBgUxacGWgel",
  5559. "redSelect": {
  5560. "DisplayName": "道具循环标签",
  5561. "Type": "OBJ",
  5562. "Value": "67kz3oKetAfR"
  5563. },
  5564. "stepSlot": {
  5565. "ContainerValue": {
  5566. "Type": "BTSceneSpritePlistAction",
  5567. "baseSelect": {
  5568. "DisplayName": "道具3",
  5569. "Type": "Action",
  5570. "Value": "LzfBvebdr0HR"
  5571. },
  5572. "frameNameInput": {
  5573. "ContainerValue": {
  5574. "Type": "BTCoderVariableAction",
  5575. "VarScope": "Scene",
  5576. "isIllegal": true,
  5577. "randomID": "YlNyst5ljPmT",
  5578. "titleLabel": {
  5579. "Type": "STRING",
  5580. "Value": "P-游戏前道具3_图片名",
  5581. "displayName": ""
  5582. }
  5583. },
  5584. "StringValue": {
  5585. "Type": "STRING",
  5586. "Value": "图片名"
  5587. },
  5588. "Type": "BTInputSlot"
  5589. },
  5590. "isIllegal": true,
  5591. "pathInput": {
  5592. "ContainerValue": {
  5593. "Type": "BTCoderVariableAction",
  5594. "VarScope": "Scene",
  5595. "isIllegal": true,
  5596. "randomID": "GsvzgRDQulrz",
  5597. "titleLabel": {
  5598. "Type": "STRING",
  5599. "Value": "P-Plist路径",
  5600. "displayName": ""
  5601. }
  5602. },
  5603. "StringValue": {
  5604. "Type": "STRING",
  5605. "Value": "Plist路径"
  5606. },
  5607. "Type": "BTInputSlot"
  5608. },
  5609. "randomID": "HEgLfv2UIbMf",
  5610. "redSelect": {
  5611. "DisplayName": "道具循环标签",
  5612. "Type": "OBJ",
  5613. "Value": "67kz3oKetAfR"
  5614. },
  5615. "stepSlot": {
  5616. "ContainerValue": null,
  5617. "Type": "BTStepSlot"
  5618. }
  5619. },
  5620. "Type": "BTStepSlot"
  5621. }
  5622. },
  5623. "Type": "BTStepSlot"
  5624. }
  5625. },
  5626. "Type": "BTStepSlot"
  5627. },
  5628. "x": -89.03158856800155,
  5629. "y": 71.41984761035877
  5630. },
  5631. "Tree22": {
  5632. "ExportTree": true,
  5633. "ImageIndex": 11,
  5634. "Name": {
  5635. "Type": "STRING",
  5636. "Value": "刷新道具3状态",
  5637. "displayName": ""
  5638. },
  5639. "Type": "BTCustomFuncHeadAction",
  5640. "VarJson": {
  5641. "boolJson": {
  5642. },
  5643. "numberJson": {
  5644. }
  5645. },
  5646. "isIllegal": false,
  5647. "randomID": "gi9EZPXJMOWZ",
  5648. "stepSlot": {
  5649. "ContainerValue": {
  5650. "BTInputSlot1": {
  5651. "ContainerValue": {
  5652. "Type": "BTCoderVariableAction",
  5653. "VarScope": "Scene",
  5654. "isIllegal": true,
  5655. "randomID": "ujo1jfsOYDPE",
  5656. "titleLabel": {
  5657. "Type": "STRING",
  5658. "Value": "P-游戏前道具3_默认状态",
  5659. "displayName": ""
  5660. }
  5661. },
  5662. "StringValue": {
  5663. "Type": "STRING",
  5664. "Value": "道具默认状态"
  5665. },
  5666. "Type": "BTInputSlot"
  5667. },
  5668. "BTInputSlot2": {
  5669. "ContainerValue": {
  5670. "Type": "BTCoderVariableAction",
  5671. "VarScope": "Scene",
  5672. "isIllegal": true,
  5673. "randomID": "JIC4UV3JQ1j8",
  5674. "titleLabel": {
  5675. "Type": "STRING",
  5676. "Value": "P-游戏前道具3_解锁等级",
  5677. "displayName": ""
  5678. }
  5679. },
  5680. "StringValue": {
  5681. "Type": "STRING",
  5682. "Value": "解锁等级"
  5683. },
  5684. "Type": "BTInputSlot"
  5685. },
  5686. "BTInputSlot3": {
  5687. "ContainerValue": {
  5688. "Type": "BTCoderVariableAction",
  5689. "VarScope": "Scene",
  5690. "isIllegal": true,
  5691. "randomID": "xQ0C7jeDR8re",
  5692. "titleLabel": {
  5693. "Type": "STRING",
  5694. "Value": "P-游戏前道具3_道具数量",
  5695. "displayName": ""
  5696. }
  5697. },
  5698. "StringValue": {
  5699. "Type": "STRING",
  5700. "Value": "道具数量"
  5701. },
  5702. "Type": "BTInputSlot"
  5703. },
  5704. "BTInputSlot4": {
  5705. "ContainerValue": null,
  5706. "StringValue": {
  5707. "Type": "STRING",
  5708. "Value": "时效文本"
  5709. },
  5710. "Type": "BTInputSlot"
  5711. },
  5712. "BTInputSlot5": {
  5713. "ContainerValue": {
  5714. "Type": "BTCoderVariableAction",
  5715. "VarScope": "Scene",
  5716. "isIllegal": true,
  5717. "randomID": "b4U4utWHbdnB",
  5718. "titleLabel": {
  5719. "Type": "STRING",
  5720. "Value": "P-Plist路径",
  5721. "displayName": ""
  5722. }
  5723. },
  5724. "StringValue": {
  5725. "Type": "STRING",
  5726. "Value": "Plist路径"
  5727. },
  5728. "Type": "BTInputSlot"
  5729. },
  5730. "BTInputSlot6": {
  5731. "ContainerValue": {
  5732. "Type": "BTCoderVariableAction",
  5733. "VarScope": "Scene",
  5734. "isIllegal": true,
  5735. "randomID": "iwC3b7MfXEbu",
  5736. "titleLabel": {
  5737. "Type": "STRING",
  5738. "Value": "P-游戏前道具3_图片名",
  5739. "displayName": ""
  5740. }
  5741. },
  5742. "StringValue": {
  5743. "Type": "STRING",
  5744. "Value": "道具图片名"
  5745. },
  5746. "Type": "BTInputSlot"
  5747. },
  5748. "Type": "BTCallRedCustomFuncBodyAction",
  5749. "baseSelect": {
  5750. "DisplayName": "游戏前道具初始化",
  5751. "Type": "Action",
  5752. "Value": "游戏前道具初始化"
  5753. },
  5754. "funcHeadID": "q2hMIBClDBV2",
  5755. "isIllegal": true,
  5756. "paramArr": [
  5757. [
  5758. "BTInputSlot1",
  5759. "道具默认状态"
  5760. ],
  5761. [
  5762. "BTInputSlot2",
  5763. "解锁等级"
  5764. ],
  5765. [
  5766. "BTInputSlot3",
  5767. "道具数量"
  5768. ],
  5769. [
  5770. "BTInputSlot4",
  5771. "时效文本"
  5772. ],
  5773. [
  5774. "BTInputSlot5",
  5775. "Plist路径"
  5776. ],
  5777. [
  5778. "BTInputSlot6",
  5779. "道具图片名"
  5780. ]
  5781. ],
  5782. "randomID": "r8ddZQfZgYQQ",
  5783. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  5784. "redSelect": {
  5785. "DisplayName": "道具按钮3",
  5786. "Type": "OBJ",
  5787. "Value": "ePme3hpPnKaT"
  5788. },
  5789. "stepSlot": {
  5790. "ContainerValue": {
  5791. "Type": "BTNotifiSceneNodeToCoderAction",
  5792. "baseSelect": {
  5793. "DisplayName": "时效文本",
  5794. "Type": "Action",
  5795. "Value": "tscXYDElm19g"
  5796. },
  5797. "conditionA": {
  5798. "ContainerValue": null,
  5799. "StringValue": {
  5800. "Type": "STRING",
  5801. "Value": "游戏前道具3_时效文本"
  5802. },
  5803. "Type": "BTInputSlot"
  5804. },
  5805. "isIllegal": true,
  5806. "paramA": {
  5807. "ContainerValue": null,
  5808. "StringValue": {
  5809. "Type": "STRING",
  5810. "Value": "1"
  5811. },
  5812. "Type": "BTInputSlot"
  5813. },
  5814. "randomID": "mEnzkSlnmWD9",
  5815. "redSelect": {
  5816. "DisplayName": "道具按钮3",
  5817. "Type": "OBJ",
  5818. "Value": "ePme3hpPnKaT"
  5819. },
  5820. "stepSlot": {
  5821. "ContainerValue": null,
  5822. "Type": "BTStepSlot"
  5823. }
  5824. },
  5825. "Type": "BTStepSlot"
  5826. }
  5827. },
  5828. "Type": "BTStepSlot"
  5829. },
  5830. "x": -1393.5,
  5831. "y": 807
  5832. },
  5833. "Tree3": {
  5834. "ExportTree": true,
  5835. "ImageIndex": 9,
  5836. "Name": {
  5837. "Type": "STRING",
  5838. "Value": "刷新道具2状态",
  5839. "displayName": ""
  5840. },
  5841. "Type": "BTCustomFuncHeadAction",
  5842. "VarJson": {
  5843. "boolJson": {
  5844. },
  5845. "numberJson": {
  5846. }
  5847. },
  5848. "isIllegal": false,
  5849. "randomID": "0ZEiJIdflP0e",
  5850. "stepSlot": {
  5851. "ContainerValue": {
  5852. "BTInputSlot1": {
  5853. "ContainerValue": {
  5854. "Type": "BTCoderVariableAction",
  5855. "VarScope": "Scene",
  5856. "isIllegal": true,
  5857. "randomID": "5fd3oJNoYg8g",
  5858. "titleLabel": {
  5859. "Type": "STRING",
  5860. "Value": "P-游戏前道具2_默认状态",
  5861. "displayName": ""
  5862. }
  5863. },
  5864. "StringValue": {
  5865. "Type": "STRING",
  5866. "Value": "道具默认状态"
  5867. },
  5868. "Type": "BTInputSlot"
  5869. },
  5870. "BTInputSlot2": {
  5871. "ContainerValue": {
  5872. "Type": "BTCoderVariableAction",
  5873. "VarScope": "Scene",
  5874. "isIllegal": true,
  5875. "randomID": "yKPFcQdT2Zsv",
  5876. "titleLabel": {
  5877. "Type": "STRING",
  5878. "Value": "P-游戏前道具2_解锁等级",
  5879. "displayName": ""
  5880. }
  5881. },
  5882. "StringValue": {
  5883. "Type": "STRING",
  5884. "Value": "解锁等级"
  5885. },
  5886. "Type": "BTInputSlot"
  5887. },
  5888. "BTInputSlot3": {
  5889. "ContainerValue": {
  5890. "Type": "BTCoderVariableAction",
  5891. "VarScope": "Scene",
  5892. "isIllegal": true,
  5893. "randomID": "FkpPCH8qEquy",
  5894. "titleLabel": {
  5895. "Type": "STRING",
  5896. "Value": "P-游戏前道具2_道具数量",
  5897. "displayName": ""
  5898. }
  5899. },
  5900. "StringValue": {
  5901. "Type": "STRING",
  5902. "Value": "道具数量"
  5903. },
  5904. "Type": "BTInputSlot"
  5905. },
  5906. "BTInputSlot4": {
  5907. "ContainerValue": null,
  5908. "StringValue": {
  5909. "Type": "STRING",
  5910. "Value": "时效文本"
  5911. },
  5912. "Type": "BTInputSlot"
  5913. },
  5914. "BTInputSlot5": {
  5915. "ContainerValue": {
  5916. "Type": "BTCoderVariableAction",
  5917. "VarScope": "Scene",
  5918. "isIllegal": true,
  5919. "randomID": "J0FTzcc0BwAl",
  5920. "titleLabel": {
  5921. "Type": "STRING",
  5922. "Value": "P-Plist路径",
  5923. "displayName": ""
  5924. }
  5925. },
  5926. "StringValue": {
  5927. "Type": "STRING",
  5928. "Value": "Plist路径"
  5929. },
  5930. "Type": "BTInputSlot"
  5931. },
  5932. "BTInputSlot6": {
  5933. "ContainerValue": {
  5934. "Type": "BTCoderVariableAction",
  5935. "VarScope": "Scene",
  5936. "isIllegal": true,
  5937. "randomID": "sjMaKQ2e8dlW",
  5938. "titleLabel": {
  5939. "Type": "STRING",
  5940. "Value": "P-游戏前道具2_图片名",
  5941. "displayName": ""
  5942. }
  5943. },
  5944. "StringValue": {
  5945. "Type": "STRING",
  5946. "Value": "道具图片名"
  5947. },
  5948. "Type": "BTInputSlot"
  5949. },
  5950. "Type": "BTCallRedCustomFuncBodyAction",
  5951. "baseSelect": {
  5952. "DisplayName": "游戏前道具初始化",
  5953. "Type": "Action",
  5954. "Value": "游戏前道具初始化"
  5955. },
  5956. "funcHeadID": "q2hMIBClDBV2",
  5957. "isIllegal": true,
  5958. "paramArr": [
  5959. [
  5960. "BTInputSlot1",
  5961. "道具默认状态"
  5962. ],
  5963. [
  5964. "BTInputSlot2",
  5965. "解锁等级"
  5966. ],
  5967. [
  5968. "BTInputSlot3",
  5969. "道具数量"
  5970. ],
  5971. [
  5972. "BTInputSlot4",
  5973. "时效文本"
  5974. ],
  5975. [
  5976. "BTInputSlot5",
  5977. "Plist路径"
  5978. ],
  5979. [
  5980. "BTInputSlot6",
  5981. "道具图片名"
  5982. ]
  5983. ],
  5984. "randomID": "IrIacCmtc7Vg",
  5985. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  5986. "redSelect": {
  5987. "DisplayName": "道具按钮2",
  5988. "Type": "OBJ",
  5989. "Value": "4PE6ixWz3kxa"
  5990. },
  5991. "stepSlot": {
  5992. "ContainerValue": {
  5993. "Type": "BTNotifiSceneNodeToCoderAction",
  5994. "baseSelect": {
  5995. "DisplayName": "时效文本",
  5996. "Type": "Action",
  5997. "Value": "tscXYDElm19g"
  5998. },
  5999. "conditionA": {
  6000. "ContainerValue": null,
  6001. "StringValue": {
  6002. "Type": "STRING",
  6003. "Value": "游戏前道具2_时效文本"
  6004. },
  6005. "Type": "BTInputSlot"
  6006. },
  6007. "isIllegal": true,
  6008. "paramA": {
  6009. "ContainerValue": null,
  6010. "StringValue": {
  6011. "Type": "STRING",
  6012. "Value": "1"
  6013. },
  6014. "Type": "BTInputSlot"
  6015. },
  6016. "randomID": "N5bINzSdAxWH",
  6017. "redSelect": {
  6018. "DisplayName": "道具按钮2",
  6019. "Type": "OBJ",
  6020. "Value": "4PE6ixWz3kxa"
  6021. },
  6022. "stepSlot": {
  6023. "ContainerValue": null,
  6024. "Type": "BTStepSlot"
  6025. }
  6026. },
  6027. "Type": "BTStepSlot"
  6028. }
  6029. },
  6030. "Type": "BTStepSlot"
  6031. },
  6032. "x": -1404.5,
  6033. "y": 619
  6034. },
  6035. "Tree4": {
  6036. "ExportTree": true,
  6037. "ImageIndex": -1,
  6038. "Type": "BTSceneBtnClickFuncAction",
  6039. "VarJson": {
  6040. "boolJson": {
  6041. },
  6042. "numberJson": {
  6043. }
  6044. },
  6045. "baseSelect": {
  6046. "DisplayName": "道具未选择按钮",
  6047. "Type": "Action",
  6048. "Value": "lolJ5r4PeVDW"
  6049. },
  6050. "isIllegal": false,
  6051. "randomID": "GosygzgLc4Di",
  6052. "redSelect": {
  6053. "DisplayName": "道具按钮1",
  6054. "Type": "OBJ",
  6055. "Value": "uPZlJJAekSdf"
  6056. },
  6057. "stepSlot": {
  6058. "ContainerValue": {
  6059. "Type": "BTSceneButtonEnableAction",
  6060. "baseSelect": {
  6061. "DisplayName": "道具未选择按钮",
  6062. "Type": "Action",
  6063. "Value": "lolJ5r4PeVDW"
  6064. },
  6065. "enableButton": {
  6066. "Type": "BTCheckBox",
  6067. "isEnable": false
  6068. },
  6069. "isIllegal": true,
  6070. "randomID": "nSBYBBBXcDg5",
  6071. "redSelect": {
  6072. "DisplayName": "道具按钮1",
  6073. "Type": "OBJ",
  6074. "Value": "uPZlJJAekSdf"
  6075. },
  6076. "stepSlot": {
  6077. "ContainerValue": {
  6078. "Type": "BTNotificationToCoderWithParamAction",
  6079. "conditionA": {
  6080. "ContainerValue": null,
  6081. "StringValue": {
  6082. "Type": "STRING",
  6083. "Value": "游戏前道具使用按钮被点击"
  6084. },
  6085. "Type": "BTInputSlot"
  6086. },
  6087. "isIllegal": true,
  6088. "paramA": {
  6089. "ContainerValue": null,
  6090. "StringValue": {
  6091. "Type": "STRING",
  6092. "Value": "1"
  6093. },
  6094. "Type": "BTInputSlot"
  6095. },
  6096. "randomID": "JddG6DbNjEQ1",
  6097. "stepSlot": {
  6098. "ContainerValue": {
  6099. "Type": "BTSceneNodeShowAction",
  6100. "baseSelect": {
  6101. "DisplayName": "道具选中对勾",
  6102. "Type": "Action",
  6103. "Value": "gVXiqLq2wGkb"
  6104. },
  6105. "isIllegal": true,
  6106. "randomID": "J1wJfjwBbl5l",
  6107. "redSelect": {
  6108. "DisplayName": "道具按钮1",
  6109. "Type": "OBJ",
  6110. "Value": "uPZlJJAekSdf"
  6111. },
  6112. "stepSlot": {
  6113. "ContainerValue": {
  6114. "Type": "BTPlaySceneTimeLineAction",
  6115. "baseSelect": {
  6116. "DisplayName": "常态_已解锁_已选中",
  6117. "Type": "Action",
  6118. "Value": "8"
  6119. },
  6120. "isIllegal": true,
  6121. "randomID": "JEKRDyv7tt5S",
  6122. "redSelect": {
  6123. "DisplayName": "道具按钮1",
  6124. "Type": "OBJ",
  6125. "Value": "uPZlJJAekSdf"
  6126. },
  6127. "stepSlot": {
  6128. "ContainerValue": {
  6129. "Type": "BTWaitTimeAction",
  6130. "conditionA": {
  6131. "ContainerValue": null,
  6132. "StringValue": {
  6133. "Type": "FLOAT",
  6134. "Value": 0.30000001192092896
  6135. },
  6136. "Type": "BTInputSlot"
  6137. },
  6138. "isIllegal": true,
  6139. "randomID": "PM8z22EeOQDr",
  6140. "stepSlot": {
  6141. "ContainerValue": {
  6142. "Type": "BTSceneButtonEnableAction",
  6143. "baseSelect": {
  6144. "DisplayName": "道具未选择按钮",
  6145. "Type": "Action",
  6146. "Value": "lolJ5r4PeVDW"
  6147. },
  6148. "enableButton": {
  6149. "Type": "BTCheckBox",
  6150. "isEnable": true
  6151. },
  6152. "isIllegal": true,
  6153. "randomID": "Uxp9eSXImTFn",
  6154. "redSelect": {
  6155. "DisplayName": "道具按钮1",
  6156. "Type": "OBJ",
  6157. "Value": "uPZlJJAekSdf"
  6158. },
  6159. "stepSlot": {
  6160. "ContainerValue": null,
  6161. "Type": "BTStepSlot"
  6162. }
  6163. },
  6164. "Type": "BTStepSlot"
  6165. }
  6166. },
  6167. "Type": "BTStepSlot"
  6168. }
  6169. },
  6170. "Type": "BTStepSlot"
  6171. }
  6172. },
  6173. "Type": "BTStepSlot"
  6174. }
  6175. },
  6176. "Type": "BTStepSlot"
  6177. }
  6178. },
  6179. "Type": "BTStepSlot"
  6180. },
  6181. "x": 242,
  6182. "y": 382
  6183. },
  6184. "Tree5": {
  6185. "ExportTree": true,
  6186. "ImageIndex": -1,
  6187. "Type": "BTSceneBtnClickFuncAction",
  6188. "VarJson": {
  6189. "boolJson": {
  6190. },
  6191. "numberJson": {
  6192. }
  6193. },
  6194. "baseSelect": {
  6195. "DisplayName": "道具购买按钮",
  6196. "Type": "Action",
  6197. "Value": "Z5gzZGIKZK6W"
  6198. },
  6199. "isIllegal": false,
  6200. "randomID": "dzT3aZsEbUom",
  6201. "redSelect": {
  6202. "DisplayName": "道具按钮1",
  6203. "Type": "OBJ",
  6204. "Value": "uPZlJJAekSdf"
  6205. },
  6206. "stepSlot": {
  6207. "ContainerValue": {
  6208. "Type": "BTSceneButtonEnableAction",
  6209. "baseSelect": {
  6210. "DisplayName": "道具购买按钮",
  6211. "Type": "Action",
  6212. "Value": "Z5gzZGIKZK6W"
  6213. },
  6214. "enableButton": {
  6215. "Type": "BTCheckBox",
  6216. "isEnable": false
  6217. },
  6218. "isIllegal": true,
  6219. "randomID": "oJkThCMJ30ts",
  6220. "redSelect": {
  6221. "DisplayName": "道具按钮1",
  6222. "Type": "OBJ",
  6223. "Value": "uPZlJJAekSdf"
  6224. },
  6225. "stepSlot": {
  6226. "ContainerValue": {
  6227. "Type": "BTNotificationToCoderWithParamAction",
  6228. "conditionA": {
  6229. "ContainerValue": null,
  6230. "StringValue": {
  6231. "Type": "STRING",
  6232. "Value": "游戏前道具购买按钮被点击"
  6233. },
  6234. "Type": "BTInputSlot"
  6235. },
  6236. "isIllegal": true,
  6237. "paramA": {
  6238. "ContainerValue": null,
  6239. "StringValue": {
  6240. "Type": "STRING",
  6241. "Value": "1"
  6242. },
  6243. "Type": "BTInputSlot"
  6244. },
  6245. "randomID": "4gqQy1gqnueq",
  6246. "stepSlot": {
  6247. "ContainerValue": {
  6248. "Type": "BTWaitTimeAction",
  6249. "conditionA": {
  6250. "ContainerValue": null,
  6251. "StringValue": {
  6252. "Type": "FLOAT",
  6253. "Value": 0.30000001192092896
  6254. },
  6255. "Type": "BTInputSlot"
  6256. },
  6257. "isIllegal": true,
  6258. "randomID": "RIvBzKPdcelB",
  6259. "stepSlot": {
  6260. "ContainerValue": {
  6261. "Type": "BTSceneButtonEnableAction",
  6262. "baseSelect": {
  6263. "DisplayName": "道具购买按钮",
  6264. "Type": "Action",
  6265. "Value": "Z5gzZGIKZK6W"
  6266. },
  6267. "enableButton": {
  6268. "Type": "BTCheckBox",
  6269. "isEnable": true
  6270. },
  6271. "isIllegal": true,
  6272. "randomID": "2eHlmCoG5dTm",
  6273. "redSelect": {
  6274. "DisplayName": "道具按钮1",
  6275. "Type": "OBJ",
  6276. "Value": "uPZlJJAekSdf"
  6277. },
  6278. "stepSlot": {
  6279. "ContainerValue": null,
  6280. "Type": "BTStepSlot"
  6281. }
  6282. },
  6283. "Type": "BTStepSlot"
  6284. }
  6285. },
  6286. "Type": "BTStepSlot"
  6287. }
  6288. },
  6289. "Type": "BTStepSlot"
  6290. }
  6291. },
  6292. "Type": "BTStepSlot"
  6293. },
  6294. "x": 241,
  6295. "y": 673
  6296. },
  6297. "Tree6": {
  6298. "ExportTree": true,
  6299. "ImageIndex": -1,
  6300. "Type": "BTSceneBtnClickFuncAction",
  6301. "VarJson": {
  6302. "boolJson": {
  6303. },
  6304. "numberJson": {
  6305. }
  6306. },
  6307. "baseSelect": {
  6308. "DisplayName": "道具已选中按钮",
  6309. "Type": "Action",
  6310. "Value": "AmB61brSpzhe"
  6311. },
  6312. "isIllegal": false,
  6313. "randomID": "JewUUI2BdKyc",
  6314. "redSelect": {
  6315. "DisplayName": "道具按钮1",
  6316. "Type": "OBJ",
  6317. "Value": "uPZlJJAekSdf"
  6318. },
  6319. "stepSlot": {
  6320. "ContainerValue": {
  6321. "Type": "BTSceneButtonEnableAction",
  6322. "baseSelect": {
  6323. "DisplayName": "道具已选中按钮",
  6324. "Type": "Action",
  6325. "Value": "AmB61brSpzhe"
  6326. },
  6327. "enableButton": {
  6328. "Type": "BTCheckBox",
  6329. "isEnable": false
  6330. },
  6331. "isIllegal": true,
  6332. "randomID": "inl3deilLAKI",
  6333. "redSelect": {
  6334. "DisplayName": "道具按钮1",
  6335. "Type": "OBJ",
  6336. "Value": "uPZlJJAekSdf"
  6337. },
  6338. "stepSlot": {
  6339. "ContainerValue": {
  6340. "Type": "BTNotificationToCoderWithParamAction",
  6341. "conditionA": {
  6342. "ContainerValue": null,
  6343. "StringValue": {
  6344. "Type": "STRING",
  6345. "Value": "游戏前道具取消使用按钮被点击"
  6346. },
  6347. "Type": "BTInputSlot"
  6348. },
  6349. "isIllegal": true,
  6350. "paramA": {
  6351. "ContainerValue": null,
  6352. "StringValue": {
  6353. "Type": "STRING",
  6354. "Value": "1"
  6355. },
  6356. "Type": "BTInputSlot"
  6357. },
  6358. "randomID": "8daNUnKGPTDJ",
  6359. "stepSlot": {
  6360. "ContainerValue": {
  6361. "Type": "BTSceneNodeHiddenAction",
  6362. "baseSelect": {
  6363. "DisplayName": "道具选中对勾",
  6364. "Type": "Action",
  6365. "Value": "gVXiqLq2wGkb"
  6366. },
  6367. "isIllegal": true,
  6368. "randomID": "0GQM059RYPW1",
  6369. "redSelect": {
  6370. "DisplayName": "道具按钮1",
  6371. "Type": "OBJ",
  6372. "Value": "uPZlJJAekSdf"
  6373. },
  6374. "stepSlot": {
  6375. "ContainerValue": {
  6376. "Type": "BTPlaySceneTimeLineAction",
  6377. "baseSelect": {
  6378. "DisplayName": "常态_已解锁_未选中",
  6379. "Type": "Action",
  6380. "Value": "7"
  6381. },
  6382. "isIllegal": true,
  6383. "randomID": "ExMTOWAGgfvJ",
  6384. "redSelect": {
  6385. "DisplayName": "道具按钮1",
  6386. "Type": "OBJ",
  6387. "Value": "uPZlJJAekSdf"
  6388. },
  6389. "stepSlot": {
  6390. "ContainerValue": {
  6391. "Type": "BTWaitTimeAction",
  6392. "conditionA": {
  6393. "ContainerValue": null,
  6394. "StringValue": {
  6395. "Type": "FLOAT",
  6396. "Value": 0.30000001192092896
  6397. },
  6398. "Type": "BTInputSlot"
  6399. },
  6400. "isIllegal": true,
  6401. "randomID": "6gFFyC5YisTe",
  6402. "stepSlot": {
  6403. "ContainerValue": {
  6404. "Type": "BTSceneButtonEnableAction",
  6405. "baseSelect": {
  6406. "DisplayName": "道具已选中按钮",
  6407. "Type": "Action",
  6408. "Value": "AmB61brSpzhe"
  6409. },
  6410. "enableButton": {
  6411. "Type": "BTCheckBox",
  6412. "isEnable": true
  6413. },
  6414. "isIllegal": true,
  6415. "randomID": "xhijlGDisH3X",
  6416. "redSelect": {
  6417. "DisplayName": "道具按钮1",
  6418. "Type": "OBJ",
  6419. "Value": "uPZlJJAekSdf"
  6420. },
  6421. "stepSlot": {
  6422. "ContainerValue": null,
  6423. "Type": "BTStepSlot"
  6424. }
  6425. },
  6426. "Type": "BTStepSlot"
  6427. }
  6428. },
  6429. "Type": "BTStepSlot"
  6430. }
  6431. },
  6432. "Type": "BTStepSlot"
  6433. }
  6434. },
  6435. "Type": "BTStepSlot"
  6436. }
  6437. },
  6438. "Type": "BTStepSlot"
  6439. }
  6440. },
  6441. "Type": "BTStepSlot"
  6442. },
  6443. "x": 690.5,
  6444. "y": 380
  6445. },
  6446. "Tree7": {
  6447. "ExportTree": true,
  6448. "ImageIndex": -1,
  6449. "Type": "BTSceneBtnClickFuncAction",
  6450. "VarJson": {
  6451. "boolJson": {
  6452. },
  6453. "numberJson": {
  6454. }
  6455. },
  6456. "baseSelect": {
  6457. "DisplayName": "道具未选择按钮",
  6458. "Type": "Action",
  6459. "Value": "lolJ5r4PeVDW"
  6460. },
  6461. "isIllegal": false,
  6462. "randomID": "V6TMTNBcCmA0",
  6463. "redSelect": {
  6464. "DisplayName": "道具按钮2",
  6465. "Type": "OBJ",
  6466. "Value": "4PE6ixWz3kxa"
  6467. },
  6468. "stepSlot": {
  6469. "ContainerValue": {
  6470. "Type": "BTSceneButtonEnableAction",
  6471. "baseSelect": {
  6472. "DisplayName": "道具未选择按钮",
  6473. "Type": "Action",
  6474. "Value": "lolJ5r4PeVDW"
  6475. },
  6476. "enableButton": {
  6477. "Type": "BTCheckBox",
  6478. "isEnable": false
  6479. },
  6480. "isIllegal": true,
  6481. "randomID": "97Cn5UTt6f9C",
  6482. "redSelect": {
  6483. "DisplayName": "道具按钮2",
  6484. "Type": "OBJ",
  6485. "Value": "4PE6ixWz3kxa"
  6486. },
  6487. "stepSlot": {
  6488. "ContainerValue": {
  6489. "Type": "BTNotificationToCoderWithParamAction",
  6490. "conditionA": {
  6491. "ContainerValue": null,
  6492. "StringValue": {
  6493. "Type": "STRING",
  6494. "Value": "游戏前道具使用按钮被点击"
  6495. },
  6496. "Type": "BTInputSlot"
  6497. },
  6498. "isIllegal": true,
  6499. "paramA": {
  6500. "ContainerValue": null,
  6501. "StringValue": {
  6502. "Type": "STRING",
  6503. "Value": "2"
  6504. },
  6505. "Type": "BTInputSlot"
  6506. },
  6507. "randomID": "IF8VwfD4Egck",
  6508. "stepSlot": {
  6509. "ContainerValue": {
  6510. "Type": "BTSceneNodeShowAction",
  6511. "baseSelect": {
  6512. "DisplayName": "道具选中对勾",
  6513. "Type": "Action",
  6514. "Value": "gVXiqLq2wGkb"
  6515. },
  6516. "isIllegal": true,
  6517. "randomID": "VHmwpdE2E0wN",
  6518. "redSelect": {
  6519. "DisplayName": "道具按钮2",
  6520. "Type": "OBJ",
  6521. "Value": "4PE6ixWz3kxa"
  6522. },
  6523. "stepSlot": {
  6524. "ContainerValue": {
  6525. "Type": "BTPlaySceneTimeLineAction",
  6526. "baseSelect": {
  6527. "DisplayName": "常态_已解锁_已选中",
  6528. "Type": "Action",
  6529. "Value": "8"
  6530. },
  6531. "isIllegal": true,
  6532. "randomID": "XqWhJSSf4ccv",
  6533. "redSelect": {
  6534. "DisplayName": "道具按钮2",
  6535. "Type": "OBJ",
  6536. "Value": "4PE6ixWz3kxa"
  6537. },
  6538. "stepSlot": {
  6539. "ContainerValue": {
  6540. "Type": "BTWaitTimeAction",
  6541. "conditionA": {
  6542. "ContainerValue": null,
  6543. "StringValue": {
  6544. "Type": "FLOAT",
  6545. "Value": 0.30000001192092896
  6546. },
  6547. "Type": "BTInputSlot"
  6548. },
  6549. "isIllegal": true,
  6550. "randomID": "yAyg8GuQwcod",
  6551. "stepSlot": {
  6552. "ContainerValue": {
  6553. "Type": "BTSceneButtonEnableAction",
  6554. "baseSelect": {
  6555. "DisplayName": "道具未选择按钮",
  6556. "Type": "Action",
  6557. "Value": "lolJ5r4PeVDW"
  6558. },
  6559. "enableButton": {
  6560. "Type": "BTCheckBox",
  6561. "isEnable": true
  6562. },
  6563. "isIllegal": true,
  6564. "randomID": "bTzI0EVzoKX8",
  6565. "redSelect": {
  6566. "DisplayName": "道具按钮2",
  6567. "Type": "OBJ",
  6568. "Value": "4PE6ixWz3kxa"
  6569. },
  6570. "stepSlot": {
  6571. "ContainerValue": null,
  6572. "Type": "BTStepSlot"
  6573. }
  6574. },
  6575. "Type": "BTStepSlot"
  6576. }
  6577. },
  6578. "Type": "BTStepSlot"
  6579. }
  6580. },
  6581. "Type": "BTStepSlot"
  6582. }
  6583. },
  6584. "Type": "BTStepSlot"
  6585. }
  6586. },
  6587. "Type": "BTStepSlot"
  6588. }
  6589. },
  6590. "Type": "BTStepSlot"
  6591. },
  6592. "x": 228,
  6593. "y": 959
  6594. },
  6595. "Tree8": {
  6596. "ExportTree": false,
  6597. "ImageIndex": -1,
  6598. "Type": "BTTestFuncAction",
  6599. "VarJson": {
  6600. "boolJson": {
  6601. },
  6602. "numberJson": {
  6603. }
  6604. },
  6605. "VarScope": "Red",
  6606. "isIllegal": false,
  6607. "randomID": "ywi51j90na1L",
  6608. "stepSlot": {
  6609. "ContainerValue": {
  6610. "TitleInput": {
  6611. "ContainerValue": null,
  6612. "StringValue": {
  6613. "Type": "STRING",
  6614. "Value": "GoodsMerge_游戏UI资源.plist"
  6615. },
  6616. "Type": "BTInputSlot"
  6617. },
  6618. "Type": "BTDataCoderVarSetAction",
  6619. "VarScope": "Scene",
  6620. "baseSelect": {
  6621. "DisplayName": "P-Plist路径",
  6622. "Type": "Action",
  6623. "Value": "P-Plist路径"
  6624. },
  6625. "isIllegal": true,
  6626. "randomID": "EyvTgdz30E3A",
  6627. "stepSlot": {
  6628. "ContainerValue": {
  6629. "TitleInput": {
  6630. "ContainerValue": null,
  6631. "StringValue": {
  6632. "Type": "STRING",
  6633. "Value": "18"
  6634. },
  6635. "Type": "BTInputSlot"
  6636. },
  6637. "Type": "BTDataCoderVarSetAction",
  6638. "VarScope": "Scene",
  6639. "baseSelect": {
  6640. "DisplayName": "P-关卡数",
  6641. "Type": "Action",
  6642. "Value": "P-关卡数"
  6643. },
  6644. "isIllegal": true,
  6645. "randomID": "SNvpXotACYK0",
  6646. "stepSlot": {
  6647. "ContainerValue": {
  6648. "TitleInput": {
  6649. "ContainerValue": null,
  6650. "StringValue": {
  6651. "Type": "STRING",
  6652. "Value": "GoodsMerge_连胜任务_道具_魔棒.png"
  6653. },
  6654. "Type": "BTInputSlot"
  6655. },
  6656. "Type": "BTDataCoderVarSetAction",
  6657. "VarScope": "Scene",
  6658. "baseSelect": {
  6659. "DisplayName": "P-游戏前道具1_图片名",
  6660. "Type": "Action",
  6661. "Value": "P-游戏前道具1_图片名"
  6662. },
  6663. "isIllegal": true,
  6664. "randomID": "95IUtntkFp3h",
  6665. "stepSlot": {
  6666. "ContainerValue": {
  6667. "TitleInput": {
  6668. "ContainerValue": null,
  6669. "StringValue": {
  6670. "Type": "STRING",
  6671. "Value": "6"
  6672. },
  6673. "Type": "BTInputSlot"
  6674. },
  6675. "Type": "BTDataCoderVarSetAction",
  6676. "VarScope": "Scene",
  6677. "baseSelect": {
  6678. "DisplayName": "P-游戏前道具1_解锁等级",
  6679. "Type": "Action",
  6680. "Value": "P-游戏前道具1_解锁等级"
  6681. },
  6682. "isIllegal": true,
  6683. "randomID": "mzAHlkp4h3d7",
  6684. "stepSlot": {
  6685. "ContainerValue": {
  6686. "TitleInput": {
  6687. "ContainerValue": null,
  6688. "StringValue": {
  6689. "Type": "STRING",
  6690. "Value": "0"
  6691. },
  6692. "Type": "BTInputSlot"
  6693. },
  6694. "Type": "BTDataCoderVarSetAction",
  6695. "VarScope": "Scene",
  6696. "baseSelect": {
  6697. "DisplayName": "P-游戏前道具1_道具数量",
  6698. "Type": "Action",
  6699. "Value": "P-游戏前道具1_道具数量"
  6700. },
  6701. "isIllegal": true,
  6702. "randomID": "2ormxxZBYgut",
  6703. "stepSlot": {
  6704. "ContainerValue": {
  6705. "TitleInput": {
  6706. "ContainerValue": null,
  6707. "StringValue": {
  6708. "Type": "STRING",
  6709. "Value": "道具已解锁未获得"
  6710. },
  6711. "Type": "BTInputSlot"
  6712. },
  6713. "Type": "BTDataCoderVarSetAction",
  6714. "VarScope": "Scene",
  6715. "baseSelect": {
  6716. "DisplayName": "P-游戏前道具1_默认状态",
  6717. "Type": "Action",
  6718. "Value": "P-游戏前道具1_默认状态"
  6719. },
  6720. "isIllegal": true,
  6721. "randomID": "fnsO3RwRBBSn",
  6722. "stepSlot": {
  6723. "ContainerValue": {
  6724. "TitleInput": {
  6725. "ContainerValue": null,
  6726. "StringValue": {
  6727. "Type": "STRING",
  6728. "Value": "GoodsMerge_连胜任务_道具_时钟.png"
  6729. },
  6730. "Type": "BTInputSlot"
  6731. },
  6732. "Type": "BTDataCoderVarSetAction",
  6733. "VarScope": "Scene",
  6734. "baseSelect": {
  6735. "DisplayName": "P-游戏前道具2_图片名",
  6736. "Type": "Action",
  6737. "Value": "P-游戏前道具2_图片名"
  6738. },
  6739. "isIllegal": true,
  6740. "randomID": "ghDQmftKkHv9",
  6741. "stepSlot": {
  6742. "ContainerValue": {
  6743. "TitleInput": {
  6744. "ContainerValue": null,
  6745. "StringValue": {
  6746. "Type": "STRING",
  6747. "Value": "10"
  6748. },
  6749. "Type": "BTInputSlot"
  6750. },
  6751. "Type": "BTDataCoderVarSetAction",
  6752. "VarScope": "Scene",
  6753. "baseSelect": {
  6754. "DisplayName": "P-游戏前道具2_解锁等级",
  6755. "Type": "Action",
  6756. "Value": "P-游戏前道具2_解锁等级"
  6757. },
  6758. "isIllegal": true,
  6759. "randomID": "Dvc6pNXMLDxp",
  6760. "stepSlot": {
  6761. "ContainerValue": {
  6762. "TitleInput": {
  6763. "ContainerValue": null,
  6764. "StringValue": {
  6765. "Type": "STRING",
  6766. "Value": "2"
  6767. },
  6768. "Type": "BTInputSlot"
  6769. },
  6770. "Type": "BTDataCoderVarSetAction",
  6771. "VarScope": "Scene",
  6772. "baseSelect": {
  6773. "DisplayName": "P-游戏前道具2_道具数量",
  6774. "Type": "Action",
  6775. "Value": "P-游戏前道具2_道具数量"
  6776. },
  6777. "isIllegal": true,
  6778. "randomID": "36G245KHRetv",
  6779. "stepSlot": {
  6780. "ContainerValue": {
  6781. "TitleInput": {
  6782. "ContainerValue": null,
  6783. "StringValue": {
  6784. "Type": "STRING",
  6785. "Value": "道具已解锁已获得"
  6786. },
  6787. "Type": "BTInputSlot"
  6788. },
  6789. "Type": "BTDataCoderVarSetAction",
  6790. "VarScope": "Scene",
  6791. "baseSelect": {
  6792. "DisplayName": "P-游戏前道具2_默认状态",
  6793. "Type": "Action",
  6794. "Value": "P-游戏前道具2_默认状态"
  6795. },
  6796. "isIllegal": true,
  6797. "randomID": "amSZgtqsM9sW",
  6798. "stepSlot": {
  6799. "ContainerValue": {
  6800. "TitleInput": {
  6801. "ContainerValue": null,
  6802. "StringValue": {
  6803. "Type": "STRING",
  6804. "Value": "GoodsMerge_连胜任务_道具_箱子.png"
  6805. },
  6806. "Type": "BTInputSlot"
  6807. },
  6808. "Type": "BTDataCoderVarSetAction",
  6809. "VarScope": "Scene",
  6810. "baseSelect": {
  6811. "DisplayName": "P-游戏前道具3_图片名",
  6812. "Type": "Action",
  6813. "Value": "P-游戏前道具3_图片名"
  6814. },
  6815. "isIllegal": true,
  6816. "randomID": "d48UJK9Tlt7z",
  6817. "stepSlot": {
  6818. "ContainerValue": {
  6819. "TitleInput": {
  6820. "ContainerValue": null,
  6821. "StringValue": {
  6822. "Type": "STRING",
  6823. "Value": "25"
  6824. },
  6825. "Type": "BTInputSlot"
  6826. },
  6827. "Type": "BTDataCoderVarSetAction",
  6828. "VarScope": "Scene",
  6829. "baseSelect": {
  6830. "DisplayName": "P-游戏前道具3_解锁等级",
  6831. "Type": "Action",
  6832. "Value": "P-游戏前道具3_解锁等级"
  6833. },
  6834. "isIllegal": true,
  6835. "randomID": "jBLQ13qneb3n",
  6836. "stepSlot": {
  6837. "ContainerValue": {
  6838. "TitleInput": {
  6839. "ContainerValue": null,
  6840. "StringValue": {
  6841. "Type": "STRING",
  6842. "Value": "0"
  6843. },
  6844. "Type": "BTInputSlot"
  6845. },
  6846. "Type": "BTDataCoderVarSetAction",
  6847. "VarScope": "Scene",
  6848. "baseSelect": {
  6849. "DisplayName": "P-游戏前道具3_道具数量",
  6850. "Type": "Action",
  6851. "Value": "P-游戏前道具3_道具数量"
  6852. },
  6853. "isIllegal": true,
  6854. "randomID": "xvXeoRX3laFa",
  6855. "stepSlot": {
  6856. "ContainerValue": {
  6857. "TitleInput": {
  6858. "ContainerValue": null,
  6859. "StringValue": {
  6860. "Type": "STRING",
  6861. "Value": "道具已解锁已获得"
  6862. },
  6863. "Type": "BTInputSlot"
  6864. },
  6865. "Type": "BTDataCoderVarSetAction",
  6866. "VarScope": "Scene",
  6867. "baseSelect": {
  6868. "DisplayName": "P-游戏前道具3_默认状态",
  6869. "Type": "Action",
  6870. "Value": "P-游戏前道具3_默认状态"
  6871. },
  6872. "isIllegal": true,
  6873. "randomID": "XDjm08Yhedaq",
  6874. "stepSlot": {
  6875. "ContainerValue": {
  6876. "TitleInput": {
  6877. "ContainerValue": null,
  6878. "StringValue": {
  6879. "Type": "STRING",
  6880. "Value": "1"
  6881. },
  6882. "Type": "BTInputSlot"
  6883. },
  6884. "Type": "BTDataCoderVarSetAction",
  6885. "VarScope": "Scene",
  6886. "baseSelect": {
  6887. "DisplayName": "P-连胜次数",
  6888. "Type": "Action",
  6889. "Value": "P-连胜次数"
  6890. },
  6891. "isIllegal": true,
  6892. "randomID": "CaHnbRx0tWqm",
  6893. "stepSlot": {
  6894. "ContainerValue": {
  6895. "TitleInput": {
  6896. "ContainerValue": null,
  6897. "StringValue": {
  6898. "Type": "STRING",
  6899. "Value": "3"
  6900. },
  6901. "Type": "BTInputSlot"
  6902. },
  6903. "Type": "BTDataCoderVarSetAction",
  6904. "VarScope": "Scene",
  6905. "baseSelect": {
  6906. "DisplayName": "P-道具解锁数",
  6907. "Type": "Action",
  6908. "Value": "P-道具解锁数"
  6909. },
  6910. "isIllegal": true,
  6911. "randomID": "0I4hDSlgoM2i",
  6912. "stepSlot": {
  6913. "ContainerValue": {
  6914. "Name": {
  6915. "Type": "STRING",
  6916. "Value": "关卡进入",
  6917. "displayName": ""
  6918. },
  6919. "Type": "BTCustomFuncBodyAction",
  6920. "funcHeadID": "uG09wvs8Nxyo",
  6921. "isIllegal": true,
  6922. "paramArr": [
  6923. ],
  6924. "randomID": "Of6t98jtEHIB",
  6925. "stepSlot": {
  6926. "ContainerValue": null,
  6927. "Type": "BTStepSlot"
  6928. }
  6929. },
  6930. "Type": "BTStepSlot"
  6931. }
  6932. },
  6933. "Type": "BTStepSlot"
  6934. }
  6935. },
  6936. "Type": "BTStepSlot"
  6937. }
  6938. },
  6939. "Type": "BTStepSlot"
  6940. }
  6941. },
  6942. "Type": "BTStepSlot"
  6943. }
  6944. },
  6945. "Type": "BTStepSlot"
  6946. }
  6947. },
  6948. "Type": "BTStepSlot"
  6949. }
  6950. },
  6951. "Type": "BTStepSlot"
  6952. }
  6953. },
  6954. "Type": "BTStepSlot"
  6955. }
  6956. },
  6957. "Type": "BTStepSlot"
  6958. }
  6959. },
  6960. "Type": "BTStepSlot"
  6961. }
  6962. },
  6963. "Type": "BTStepSlot"
  6964. }
  6965. },
  6966. "Type": "BTStepSlot"
  6967. }
  6968. },
  6969. "Type": "BTStepSlot"
  6970. }
  6971. },
  6972. "Type": "BTStepSlot"
  6973. }
  6974. },
  6975. "Type": "BTStepSlot"
  6976. }
  6977. },
  6978. "Type": "BTStepSlot"
  6979. },
  6980. "titleLabel": {
  6981. "Type": "STRING",
  6982. "Value": "11",
  6983. "displayName": ""
  6984. },
  6985. "x": -1167.8163362552905,
  6986. "y": -624.9999627470985
  6987. },
  6988. "Tree9": {
  6989. "ExportTree": true,
  6990. "ImageIndex": -1,
  6991. "Type": "BTSceneBtnClickFuncAction",
  6992. "VarJson": {
  6993. "boolJson": {
  6994. },
  6995. "numberJson": {
  6996. }
  6997. },
  6998. "baseSelect": {
  6999. "DisplayName": "道具已选中按钮",
  7000. "Type": "Action",
  7001. "Value": "AmB61brSpzhe"
  7002. },
  7003. "isIllegal": false,
  7004. "randomID": "i1yfk1mpvW8W",
  7005. "redSelect": {
  7006. "DisplayName": "道具按钮2",
  7007. "Type": "OBJ",
  7008. "Value": "4PE6ixWz3kxa"
  7009. },
  7010. "stepSlot": {
  7011. "ContainerValue": {
  7012. "Type": "BTSceneButtonEnableAction",
  7013. "baseSelect": {
  7014. "DisplayName": "道具已选中按钮",
  7015. "Type": "Action",
  7016. "Value": "AmB61brSpzhe"
  7017. },
  7018. "enableButton": {
  7019. "Type": "BTCheckBox",
  7020. "isEnable": false
  7021. },
  7022. "isIllegal": true,
  7023. "randomID": "9ZKcdICxUJln",
  7024. "redSelect": {
  7025. "DisplayName": "道具按钮2",
  7026. "Type": "OBJ",
  7027. "Value": "4PE6ixWz3kxa"
  7028. },
  7029. "stepSlot": {
  7030. "ContainerValue": {
  7031. "Type": "BTNotificationToCoderWithParamAction",
  7032. "conditionA": {
  7033. "ContainerValue": null,
  7034. "StringValue": {
  7035. "Type": "STRING",
  7036. "Value": "游戏前道具取消使用按钮被点击"
  7037. },
  7038. "Type": "BTInputSlot"
  7039. },
  7040. "isIllegal": true,
  7041. "paramA": {
  7042. "ContainerValue": null,
  7043. "StringValue": {
  7044. "Type": "STRING",
  7045. "Value": "2"
  7046. },
  7047. "Type": "BTInputSlot"
  7048. },
  7049. "randomID": "sei5ApwEXC2t",
  7050. "stepSlot": {
  7051. "ContainerValue": {
  7052. "Type": "BTSceneNodeHiddenAction",
  7053. "baseSelect": {
  7054. "DisplayName": "道具选中对勾",
  7055. "Type": "Action",
  7056. "Value": "gVXiqLq2wGkb"
  7057. },
  7058. "isIllegal": true,
  7059. "randomID": "b38rhBJbjHtU",
  7060. "redSelect": {
  7061. "DisplayName": "道具按钮2",
  7062. "Type": "OBJ",
  7063. "Value": "4PE6ixWz3kxa"
  7064. },
  7065. "stepSlot": {
  7066. "ContainerValue": {
  7067. "Type": "BTPlaySceneTimeLineAction",
  7068. "baseSelect": {
  7069. "DisplayName": "常态_已解锁_未选中",
  7070. "Type": "Action",
  7071. "Value": "7"
  7072. },
  7073. "isIllegal": true,
  7074. "randomID": "3UhTU2SiyuV2",
  7075. "redSelect": {
  7076. "DisplayName": "道具按钮2",
  7077. "Type": "OBJ",
  7078. "Value": "4PE6ixWz3kxa"
  7079. },
  7080. "stepSlot": {
  7081. "ContainerValue": {
  7082. "Type": "BTWaitTimeAction",
  7083. "conditionA": {
  7084. "ContainerValue": null,
  7085. "StringValue": {
  7086. "Type": "FLOAT",
  7087. "Value": 0.30000001192092896
  7088. },
  7089. "Type": "BTInputSlot"
  7090. },
  7091. "isIllegal": true,
  7092. "randomID": "z7j5NjufpViy",
  7093. "stepSlot": {
  7094. "ContainerValue": {
  7095. "Type": "BTSceneButtonEnableAction",
  7096. "baseSelect": {
  7097. "DisplayName": "道具已选中按钮",
  7098. "Type": "Action",
  7099. "Value": "AmB61brSpzhe"
  7100. },
  7101. "enableButton": {
  7102. "Type": "BTCheckBox",
  7103. "isEnable": true
  7104. },
  7105. "isIllegal": true,
  7106. "randomID": "L2AEiBI8Vrou",
  7107. "redSelect": {
  7108. "DisplayName": "道具按钮2",
  7109. "Type": "OBJ",
  7110. "Value": "4PE6ixWz3kxa"
  7111. },
  7112. "stepSlot": {
  7113. "ContainerValue": null,
  7114. "Type": "BTStepSlot"
  7115. }
  7116. },
  7117. "Type": "BTStepSlot"
  7118. }
  7119. },
  7120. "Type": "BTStepSlot"
  7121. }
  7122. },
  7123. "Type": "BTStepSlot"
  7124. }
  7125. },
  7126. "Type": "BTStepSlot"
  7127. }
  7128. },
  7129. "Type": "BTStepSlot"
  7130. }
  7131. },
  7132. "Type": "BTStepSlot"
  7133. },
  7134. "x": 669,
  7135. "y": 1038
  7136. }
  7137. }
  7138. }