GoodsStory_弹窗_关卡进入_困难.rebolt 758 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863
  1. {
  2. "CustomFunc": {
  3. "关卡进入": [
  4. [
  5. "Name",
  6. "关卡进入",
  7. "wF1wtWEJhOGm",
  8. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  9. ]
  10. ],
  11. "刷新游戏前道具状态": [
  12. [
  13. "Name",
  14. "刷新游戏前道具状态",
  15. "z4Kg8GWAc9je",
  16. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  17. ]
  18. ],
  19. "刷新道具1状态": [
  20. [
  21. "Name",
  22. "刷新道具1状态",
  23. "liYA4sCInEX7",
  24. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  25. ]
  26. ],
  27. "刷新道具2状态": [
  28. [
  29. "Name",
  30. "刷新道具2状态",
  31. "fvTjmezKXuPu",
  32. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  33. ]
  34. ],
  35. "刷新道具3状态": [
  36. [
  37. "Name",
  38. "刷新道具3状态",
  39. "MaN1Qak4Wd8d",
  40. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  41. ]
  42. ],
  43. "循环标签图片设置": [
  44. [
  45. "Name",
  46. "循环标签图片设置",
  47. "DN2tPz8aLvVp",
  48. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  49. ]
  50. ],
  51. "按钮显示状态": [
  52. [
  53. "Name",
  54. "按钮显示状态",
  55. "AVaxZpI23SGx",
  56. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  57. ]
  58. ],
  59. "文本提示框困难": [
  60. [
  61. "Name",
  62. "文本提示框困难",
  63. "YRafGq7HRO4L",
  64. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入_困难.red"
  65. ]
  66. ],
  67. "连胜状态": [
  68. [
  69. "Name",
  70. "连胜状态",
  71. "xIHMKDvCj4iV",
  72. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_关卡进入.red"
  73. ]
  74. ]
  75. },
  76. "CustomList": {
  77. },
  78. "CustomMessage": {
  79. "Hello Red": 1
  80. },
  81. "CustomTestFunc": {
  82. "11": ""
  83. },
  84. "CustomVar": {
  85. "P-Plist路径": 0,
  86. "P-关卡数": 0,
  87. "P-开始游戏文本": 0,
  88. "P-收集物位置1图片": 0,
  89. "P-收集物位置2图片": 0,
  90. "P-收集物位置3图片": 0,
  91. "P-收集物位置4图片": 0,
  92. "P-收集物位置5图片": 0,
  93. "P-收集物倍数": 0,
  94. "P-收集物种类": 0,
  95. "P-游戏前道具1_图片名": 0,
  96. "P-游戏前道具1_解锁等级": 0,
  97. "P-游戏前道具1_道具数量": 0,
  98. "P-游戏前道具1_默认状态": 0,
  99. "P-游戏前道具2_图片名": 0,
  100. "P-游戏前道具2_解锁等级": 0,
  101. "P-游戏前道具2_道具数量": 0,
  102. "P-游戏前道具2_默认状态": 0,
  103. "P-游戏前道具3_图片名": 0,
  104. "P-游戏前道具3_解锁等级": 0,
  105. "P-游戏前道具3_道具数量": 0,
  106. "P-游戏前道具3_默认状态": 0,
  107. "P-连胜次数": 0,
  108. "P-道具解锁数": 0
  109. },
  110. "DisPlayName": "GoodsStory_弹窗_关卡进入_困难",
  111. "RedFileList": {
  112. "M5e9fX6ZLhzf": {
  113. "CustomFunc": {
  114. },
  115. "CustomList": {
  116. },
  117. "CustomTestFunc": {
  118. },
  119. "CustomVar": {
  120. },
  121. "DisPlayName": "连胜任务栏",
  122. "RedNoteInfo": {
  123. },
  124. "TreeList": {
  125. }
  126. },
  127. "Xuuh1MncKir7": {
  128. "CustomFunc": {
  129. "游戏前道具初始化": [
  130. [
  131. "Name",
  132. "游戏前道具初始化",
  133. "q2hMIBClDBV2",
  134. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red"
  135. ],
  136. [
  137. "BTInputSlot",
  138. "道具默认状态"
  139. ],
  140. [
  141. "BTInputSlot",
  142. "解锁等级"
  143. ],
  144. [
  145. "BTInputSlot",
  146. "道具数量"
  147. ],
  148. [
  149. "BTInputSlot",
  150. "时效文本"
  151. ],
  152. [
  153. "BTInputSlot",
  154. "Plist路径"
  155. ],
  156. [
  157. "BTInputSlot",
  158. "道具图片名"
  159. ]
  160. ]
  161. },
  162. "CustomList": {
  163. },
  164. "CustomTestFunc": {
  165. },
  166. "CustomVar": {
  167. },
  168. "DisPlayName": "道具按钮3",
  169. "RedNoteInfo": {
  170. },
  171. "TreeList": {
  172. "Tree0": {
  173. "ExportTree": true,
  174. "ImageIndex": 2,
  175. "Name": {
  176. "Type": "STRING",
  177. "Value": "游戏前道具初始化",
  178. "displayName": ""
  179. },
  180. "Type": "BTCustomFuncHeadAction",
  181. "VarJson": {
  182. "boolJson": {
  183. },
  184. "numberJson": {
  185. "Plist路径": "Number",
  186. "时效文本": "Number",
  187. "解锁等级": "Number",
  188. "道具图片名": "Number",
  189. "道具数量": "Number",
  190. "道具默认状态": "Number"
  191. }
  192. },
  193. "isIllegal": false,
  194. "randomID": "q2hMIBClDBV2",
  195. "stepSlot": {
  196. "ContainerValue": {
  197. "Type": "BTNodeHiddenAction",
  198. "baseSelect": {
  199. "DisplayName": "增加道具模块",
  200. "Type": "Action",
  201. "Value": "Ozr3UVNj2Rx6"
  202. },
  203. "isIllegal": true,
  204. "randomID": "nvQFhkfUEv6C",
  205. "stepSlot": {
  206. "ContainerValue": {
  207. "Type": "BTNodeHiddenAction",
  208. "baseSelect": {
  209. "DisplayName": "红点模块",
  210. "Type": "Action",
  211. "Value": "tm0924bAwzde"
  212. },
  213. "isIllegal": true,
  214. "randomID": "J4R8LKRRHWrs",
  215. "stepSlot": {
  216. "ContainerValue": {
  217. "Type": "BTNodeHiddenAction",
  218. "baseSelect": {
  219. "DisplayName": "时段无限使用模块",
  220. "Type": "Action",
  221. "Value": "Cu97fOSuVXQT"
  222. },
  223. "isIllegal": true,
  224. "randomID": "i9HQlCF9OYgR",
  225. "stepSlot": {
  226. "ContainerValue": {
  227. "Type": "BTIFControlAction",
  228. "conditionA": {
  229. "ContainerValue": {
  230. "Type": "BTStringEqualOperatorAction",
  231. "conditionA": {
  232. "ContainerValue": {
  233. "Type": "BTFuncVariableAction",
  234. "colorName": "More",
  235. "currentStr": "道具默认状态",
  236. "fatherFuncID": "q2hMIBClDBV2",
  237. "isIllegal": true,
  238. "randomID": "dQsEjmGd1gFV",
  239. "titleLabel": {
  240. "Type": "STRING",
  241. "Value": "道具默认状态",
  242. "displayName": ""
  243. }
  244. },
  245. "StringValue": {
  246. "Type": "STRING",
  247. "Value": "Red"
  248. },
  249. "Type": "BTInputSlot"
  250. },
  251. "conditionB": {
  252. "ContainerValue": null,
  253. "StringValue": {
  254. "Type": "STRING",
  255. "Value": "道具未解锁"
  256. },
  257. "Type": "BTInputSlot"
  258. },
  259. "isIllegal": true,
  260. "randomID": "wOt4HIxqWCts"
  261. },
  262. "Type": "BTBoolSlot"
  263. },
  264. "isIllegal": true,
  265. "randomID": "6l0Z6pOM0iKK",
  266. "sectionA": {
  267. "ContainerValue": {
  268. "TitleInput": {
  269. "ContainerValue": {
  270. "Type": "BTStringLinkOperatorAction",
  271. "conditionA": {
  272. "ContainerValue": null,
  273. "StringValue": {
  274. "Type": "STRING",
  275. "Value": "Lv:"
  276. },
  277. "Type": "BTInputSlot"
  278. },
  279. "conditionB": {
  280. "ContainerValue": {
  281. "Type": "BTFuncVariableAction",
  282. "colorName": "More",
  283. "currentStr": "解锁等级",
  284. "fatherFuncID": "q2hMIBClDBV2",
  285. "isIllegal": true,
  286. "randomID": "5EXV69pjbjIJ",
  287. "titleLabel": {
  288. "Type": "STRING",
  289. "Value": "解锁等级",
  290. "displayName": ""
  291. }
  292. },
  293. "StringValue": {
  294. "Type": "STRING",
  295. "Value": "Banana"
  296. },
  297. "Type": "BTInputSlot"
  298. },
  299. "isIllegal": true,
  300. "randomID": "aSKxR5so6RVU"
  301. },
  302. "StringValue": {
  303. "Type": "STRING",
  304. "Value": "填写标题内容"
  305. },
  306. "Type": "BTInputSlot"
  307. },
  308. "Type": "BTLabelTitleAction",
  309. "baseSelect": {
  310. "DisplayName": "解锁等级",
  311. "Type": "Action",
  312. "Value": "XVuohG76KVk3"
  313. },
  314. "isIllegal": true,
  315. "randomID": "vXBhJe3oWzZf",
  316. "stepSlot": {
  317. "ContainerValue": {
  318. "Type": "BTRedShowAction",
  319. "baseSelect": {
  320. "DisplayName": "常态_未解锁",
  321. "Type": "Action",
  322. "Value": "6"
  323. },
  324. "isIllegal": true,
  325. "randomID": "HTr26QuoklFr",
  326. "stepSlot": {
  327. "ContainerValue": {
  328. "Type": "BTPlayTimeLineAction",
  329. "baseSelect": {
  330. "DisplayName": "常态_未解锁",
  331. "Type": "Action",
  332. "Value": "6"
  333. },
  334. "isIllegal": true,
  335. "randomID": "5nWzimx0j7Ho",
  336. "stepSlot": {
  337. "ContainerValue": null,
  338. "Type": "BTStepSlot"
  339. }
  340. },
  341. "Type": "BTStepSlot"
  342. }
  343. },
  344. "Type": "BTStepSlot"
  345. }
  346. },
  347. "Type": "BTSectionSlot"
  348. },
  349. "stepSlot": {
  350. "ContainerValue": {
  351. "Type": "BTIFControlAction",
  352. "conditionA": {
  353. "ContainerValue": {
  354. "Type": "BTStringEqualOperatorAction",
  355. "conditionA": {
  356. "ContainerValue": {
  357. "Type": "BTFuncVariableAction",
  358. "colorName": "More",
  359. "currentStr": "道具默认状态",
  360. "fatherFuncID": "q2hMIBClDBV2",
  361. "isIllegal": true,
  362. "randomID": "DsXJ4ar7etqZ",
  363. "titleLabel": {
  364. "Type": "STRING",
  365. "Value": "道具默认状态",
  366. "displayName": ""
  367. }
  368. },
  369. "StringValue": {
  370. "Type": "STRING",
  371. "Value": "Red"
  372. },
  373. "Type": "BTInputSlot"
  374. },
  375. "conditionB": {
  376. "ContainerValue": null,
  377. "StringValue": {
  378. "Type": "STRING",
  379. "Value": "道具已解锁未获得"
  380. },
  381. "Type": "BTInputSlot"
  382. },
  383. "isIllegal": true,
  384. "randomID": "E6NSsJgZs9in"
  385. },
  386. "Type": "BTBoolSlot"
  387. },
  388. "isIllegal": true,
  389. "randomID": "jjUOPqYQG3vB",
  390. "sectionA": {
  391. "ContainerValue": {
  392. "Type": "BTSpritePlistAction",
  393. "baseSelect": {
  394. "DisplayName": "未选中道具图片",
  395. "Type": "Action",
  396. "Value": "udPYPkvH0U3g"
  397. },
  398. "frameNameInput": {
  399. "ContainerValue": {
  400. "Type": "BTFuncVariableAction",
  401. "colorName": "More",
  402. "currentStr": "道具图片名",
  403. "fatherFuncID": "q2hMIBClDBV2",
  404. "isIllegal": true,
  405. "randomID": "9523KWm2K8c8",
  406. "titleLabel": {
  407. "Type": "STRING",
  408. "Value": "道具图片名",
  409. "displayName": ""
  410. }
  411. },
  412. "StringValue": {
  413. "Type": "STRING",
  414. "Value": "图片名"
  415. },
  416. "Type": "BTInputSlot"
  417. },
  418. "isIllegal": true,
  419. "pathInput": {
  420. "ContainerValue": {
  421. "Type": "BTFuncVariableAction",
  422. "colorName": "More",
  423. "currentStr": "Plist路径",
  424. "fatherFuncID": "q2hMIBClDBV2",
  425. "isIllegal": true,
  426. "randomID": "OiBY7CKNgzTB",
  427. "titleLabel": {
  428. "Type": "STRING",
  429. "Value": "Plist路径",
  430. "displayName": ""
  431. }
  432. },
  433. "StringValue": {
  434. "Type": "STRING",
  435. "Value": "Plist路径"
  436. },
  437. "Type": "BTInputSlot"
  438. },
  439. "randomID": "87UwN5mrQG5x",
  440. "stepSlot": {
  441. "ContainerValue": {
  442. "Type": "BTSpritePlistAction",
  443. "baseSelect": {
  444. "DisplayName": "已选中道具图片",
  445. "Type": "Action",
  446. "Value": "P0zZUc9sgGYz"
  447. },
  448. "frameNameInput": {
  449. "ContainerValue": {
  450. "Type": "BTFuncVariableAction",
  451. "colorName": "More",
  452. "currentStr": "道具图片名",
  453. "fatherFuncID": "q2hMIBClDBV2",
  454. "isIllegal": true,
  455. "randomID": "Sid4AARsbL7A",
  456. "titleLabel": {
  457. "Type": "STRING",
  458. "Value": "道具图片名",
  459. "displayName": ""
  460. }
  461. },
  462. "StringValue": {
  463. "Type": "STRING",
  464. "Value": "图片名"
  465. },
  466. "Type": "BTInputSlot"
  467. },
  468. "isIllegal": true,
  469. "pathInput": {
  470. "ContainerValue": {
  471. "Type": "BTFuncVariableAction",
  472. "colorName": "More",
  473. "currentStr": "Plist路径",
  474. "fatherFuncID": "q2hMIBClDBV2",
  475. "isIllegal": true,
  476. "randomID": "KKS3KQvTa0qG",
  477. "titleLabel": {
  478. "Type": "STRING",
  479. "Value": "Plist路径",
  480. "displayName": ""
  481. }
  482. },
  483. "StringValue": {
  484. "Type": "STRING",
  485. "Value": "Plist路径"
  486. },
  487. "Type": "BTInputSlot"
  488. },
  489. "randomID": "r9mymUEslak0",
  490. "stepSlot": {
  491. "ContainerValue": {
  492. "Type": "BTNodeShowAction",
  493. "baseSelect": {
  494. "DisplayName": "增加道具模块",
  495. "Type": "Action",
  496. "Value": "Ozr3UVNj2Rx6"
  497. },
  498. "isIllegal": true,
  499. "randomID": "6WIBwoW3YBRf",
  500. "stepSlot": {
  501. "ContainerValue": {
  502. "Type": "BTPlayTimeLineAction",
  503. "baseSelect": {
  504. "DisplayName": "常态_已解锁_未选中",
  505. "Type": "Action",
  506. "Value": "7"
  507. },
  508. "isIllegal": true,
  509. "randomID": "wcqcg4lZ8O4v",
  510. "stepSlot": {
  511. "ContainerValue": null,
  512. "Type": "BTStepSlot"
  513. }
  514. },
  515. "Type": "BTStepSlot"
  516. }
  517. },
  518. "Type": "BTStepSlot"
  519. }
  520. },
  521. "Type": "BTStepSlot"
  522. }
  523. },
  524. "Type": "BTSectionSlot"
  525. },
  526. "stepSlot": {
  527. "ContainerValue": {
  528. "Type": "BTIFControlAction",
  529. "conditionA": {
  530. "ContainerValue": {
  531. "Type": "BTStringEqualOperatorAction",
  532. "conditionA": {
  533. "ContainerValue": {
  534. "Type": "BTFuncVariableAction",
  535. "colorName": "More",
  536. "currentStr": "道具默认状态",
  537. "fatherFuncID": "q2hMIBClDBV2",
  538. "isIllegal": true,
  539. "randomID": "mc4s2tjKY3jh",
  540. "titleLabel": {
  541. "Type": "STRING",
  542. "Value": "道具默认状态",
  543. "displayName": ""
  544. }
  545. },
  546. "StringValue": {
  547. "Type": "STRING",
  548. "Value": "Red"
  549. },
  550. "Type": "BTInputSlot"
  551. },
  552. "conditionB": {
  553. "ContainerValue": null,
  554. "StringValue": {
  555. "Type": "STRING",
  556. "Value": "道具已解锁已获得"
  557. },
  558. "Type": "BTInputSlot"
  559. },
  560. "isIllegal": true,
  561. "randomID": "KqBKkZJe0k4n"
  562. },
  563. "Type": "BTBoolSlot"
  564. },
  565. "isIllegal": true,
  566. "randomID": "nHUZWbpx7ht1",
  567. "sectionA": {
  568. "ContainerValue": {
  569. "Type": "BTSpritePlistAction",
  570. "baseSelect": {
  571. "DisplayName": "未选中道具图片",
  572. "Type": "Action",
  573. "Value": "udPYPkvH0U3g"
  574. },
  575. "frameNameInput": {
  576. "ContainerValue": {
  577. "Type": "BTFuncVariableAction",
  578. "colorName": "More",
  579. "currentStr": "道具图片名",
  580. "fatherFuncID": "q2hMIBClDBV2",
  581. "isIllegal": true,
  582. "randomID": "2YeOZNQkmeUV",
  583. "titleLabel": {
  584. "Type": "STRING",
  585. "Value": "道具图片名",
  586. "displayName": ""
  587. }
  588. },
  589. "StringValue": {
  590. "Type": "STRING",
  591. "Value": "图片名"
  592. },
  593. "Type": "BTInputSlot"
  594. },
  595. "isIllegal": true,
  596. "pathInput": {
  597. "ContainerValue": {
  598. "Type": "BTFuncVariableAction",
  599. "colorName": "More",
  600. "currentStr": "Plist路径",
  601. "fatherFuncID": "q2hMIBClDBV2",
  602. "isIllegal": true,
  603. "randomID": "I8YqscSzoHeg",
  604. "titleLabel": {
  605. "Type": "STRING",
  606. "Value": "Plist路径",
  607. "displayName": ""
  608. }
  609. },
  610. "StringValue": {
  611. "Type": "STRING",
  612. "Value": "Plist路径"
  613. },
  614. "Type": "BTInputSlot"
  615. },
  616. "randomID": "Bm34Xz8FNdsb",
  617. "stepSlot": {
  618. "ContainerValue": {
  619. "Type": "BTSpritePlistAction",
  620. "baseSelect": {
  621. "DisplayName": "已选中道具图片",
  622. "Type": "Action",
  623. "Value": "P0zZUc9sgGYz"
  624. },
  625. "frameNameInput": {
  626. "ContainerValue": {
  627. "Type": "BTFuncVariableAction",
  628. "colorName": "More",
  629. "currentStr": "道具图片名",
  630. "fatherFuncID": "q2hMIBClDBV2",
  631. "isIllegal": true,
  632. "randomID": "Q4vJ7tH5MIM0",
  633. "titleLabel": {
  634. "Type": "STRING",
  635. "Value": "道具图片名",
  636. "displayName": ""
  637. }
  638. },
  639. "StringValue": {
  640. "Type": "STRING",
  641. "Value": "图片名"
  642. },
  643. "Type": "BTInputSlot"
  644. },
  645. "isIllegal": true,
  646. "pathInput": {
  647. "ContainerValue": {
  648. "Type": "BTFuncVariableAction",
  649. "colorName": "More",
  650. "currentStr": "Plist路径",
  651. "fatherFuncID": "q2hMIBClDBV2",
  652. "isIllegal": true,
  653. "randomID": "CB9aMazyCkfs",
  654. "titleLabel": {
  655. "Type": "STRING",
  656. "Value": "Plist路径",
  657. "displayName": ""
  658. }
  659. },
  660. "StringValue": {
  661. "Type": "STRING",
  662. "Value": "Plist路径"
  663. },
  664. "Type": "BTInputSlot"
  665. },
  666. "randomID": "zO97PWViWq7i",
  667. "stepSlot": {
  668. "ContainerValue": {
  669. "Type": "BTNodeShowAction",
  670. "baseSelect": {
  671. "DisplayName": "红点模块",
  672. "Type": "Action",
  673. "Value": "tm0924bAwzde"
  674. },
  675. "isIllegal": true,
  676. "randomID": "RWWYh7awW3Ap",
  677. "stepSlot": {
  678. "ContainerValue": {
  679. "TitleInput": {
  680. "ContainerValue": {
  681. "Type": "BTFuncVariableAction",
  682. "colorName": "More",
  683. "currentStr": "道具数量",
  684. "fatherFuncID": "q2hMIBClDBV2",
  685. "isIllegal": true,
  686. "randomID": "2RTIVjZxmtDd",
  687. "titleLabel": {
  688. "Type": "STRING",
  689. "Value": "道具数量",
  690. "displayName": ""
  691. }
  692. },
  693. "StringValue": {
  694. "Type": "STRING",
  695. "Value": "填写标题内容"
  696. },
  697. "Type": "BTInputSlot"
  698. },
  699. "Type": "BTLabelTitleAction",
  700. "baseSelect": {
  701. "DisplayName": "道具数量",
  702. "Type": "Action",
  703. "Value": "VgnvLbYfpABl"
  704. },
  705. "isIllegal": true,
  706. "randomID": "wvdleQBOfBCo",
  707. "stepSlot": {
  708. "ContainerValue": {
  709. "Type": "BTPlayTimeLineAction",
  710. "baseSelect": {
  711. "DisplayName": "常态_已解锁_未选中",
  712. "Type": "Action",
  713. "Value": "7"
  714. },
  715. "isIllegal": true,
  716. "randomID": "lNQKoVHXp3IL",
  717. "stepSlot": {
  718. "ContainerValue": null,
  719. "Type": "BTStepSlot"
  720. }
  721. },
  722. "Type": "BTStepSlot"
  723. }
  724. },
  725. "Type": "BTStepSlot"
  726. }
  727. },
  728. "Type": "BTStepSlot"
  729. }
  730. },
  731. "Type": "BTStepSlot"
  732. }
  733. },
  734. "Type": "BTSectionSlot"
  735. },
  736. "stepSlot": {
  737. "ContainerValue": {
  738. "Type": "BTIFControlAction",
  739. "conditionA": {
  740. "ContainerValue": {
  741. "Type": "BTStringEqualOperatorAction",
  742. "conditionA": {
  743. "ContainerValue": {
  744. "Type": "BTFuncVariableAction",
  745. "colorName": "More",
  746. "currentStr": "道具默认状态",
  747. "fatherFuncID": "q2hMIBClDBV2",
  748. "isIllegal": true,
  749. "randomID": "fU1Y2StpVtdV",
  750. "titleLabel": {
  751. "Type": "STRING",
  752. "Value": "道具默认状态",
  753. "displayName": ""
  754. }
  755. },
  756. "StringValue": {
  757. "Type": "STRING",
  758. "Value": "Red"
  759. },
  760. "Type": "BTInputSlot"
  761. },
  762. "conditionB": {
  763. "ContainerValue": null,
  764. "StringValue": {
  765. "Type": "STRING",
  766. "Value": "道具已解锁已获得_时段"
  767. },
  768. "Type": "BTInputSlot"
  769. },
  770. "isIllegal": true,
  771. "randomID": "Btxu1wnm07UP"
  772. },
  773. "Type": "BTBoolSlot"
  774. },
  775. "isIllegal": true,
  776. "randomID": "1BpZ5Ho9QB0y",
  777. "sectionA": {
  778. "ContainerValue": {
  779. "Type": "BTSpritePlistAction",
  780. "baseSelect": {
  781. "DisplayName": "未选中道具图片",
  782. "Type": "Action",
  783. "Value": "udPYPkvH0U3g"
  784. },
  785. "frameNameInput": {
  786. "ContainerValue": {
  787. "Type": "BTFuncVariableAction",
  788. "colorName": "More",
  789. "currentStr": "道具图片名",
  790. "fatherFuncID": "q2hMIBClDBV2",
  791. "isIllegal": true,
  792. "randomID": "EJWGaiyz1VbL",
  793. "titleLabel": {
  794. "Type": "STRING",
  795. "Value": "道具图片名",
  796. "displayName": ""
  797. }
  798. },
  799. "StringValue": {
  800. "Type": "STRING",
  801. "Value": "图片名"
  802. },
  803. "Type": "BTInputSlot"
  804. },
  805. "isIllegal": true,
  806. "pathInput": {
  807. "ContainerValue": {
  808. "Type": "BTFuncVariableAction",
  809. "colorName": "More",
  810. "currentStr": "Plist路径",
  811. "fatherFuncID": "q2hMIBClDBV2",
  812. "isIllegal": true,
  813. "randomID": "KIL9vygqhsoS",
  814. "titleLabel": {
  815. "Type": "STRING",
  816. "Value": "Plist路径",
  817. "displayName": ""
  818. }
  819. },
  820. "StringValue": {
  821. "Type": "STRING",
  822. "Value": "Plist路径"
  823. },
  824. "Type": "BTInputSlot"
  825. },
  826. "randomID": "MBgh90lzZuVX",
  827. "stepSlot": {
  828. "ContainerValue": {
  829. "Type": "BTSpritePlistAction",
  830. "baseSelect": {
  831. "DisplayName": "已选中道具图片",
  832. "Type": "Action",
  833. "Value": "P0zZUc9sgGYz"
  834. },
  835. "frameNameInput": {
  836. "ContainerValue": {
  837. "Type": "BTFuncVariableAction",
  838. "colorName": "More",
  839. "currentStr": "道具图片名",
  840. "fatherFuncID": "q2hMIBClDBV2",
  841. "isIllegal": true,
  842. "randomID": "hoYxMgAfwIrI",
  843. "titleLabel": {
  844. "Type": "STRING",
  845. "Value": "道具图片名",
  846. "displayName": ""
  847. }
  848. },
  849. "StringValue": {
  850. "Type": "STRING",
  851. "Value": "图片名"
  852. },
  853. "Type": "BTInputSlot"
  854. },
  855. "isIllegal": true,
  856. "pathInput": {
  857. "ContainerValue": {
  858. "Type": "BTFuncVariableAction",
  859. "colorName": "More",
  860. "currentStr": "Plist路径",
  861. "fatherFuncID": "q2hMIBClDBV2",
  862. "isIllegal": true,
  863. "randomID": "G5S79Cgn7SdT",
  864. "titleLabel": {
  865. "Type": "STRING",
  866. "Value": "Plist路径",
  867. "displayName": ""
  868. }
  869. },
  870. "StringValue": {
  871. "Type": "STRING",
  872. "Value": "Plist路径"
  873. },
  874. "Type": "BTInputSlot"
  875. },
  876. "randomID": "BaaQB8lmkY6q",
  877. "stepSlot": {
  878. "ContainerValue": {
  879. "Type": "BTPlayTimeLineAction",
  880. "baseSelect": {
  881. "DisplayName": "常态_已解锁_已选中",
  882. "Type": "Action",
  883. "Value": "8"
  884. },
  885. "isIllegal": true,
  886. "randomID": "3KrfUxuoXzos",
  887. "stepSlot": {
  888. "ContainerValue": {
  889. "Type": "BTNodeShowAction",
  890. "baseSelect": {
  891. "DisplayName": "时段无限使用模块",
  892. "Type": "Action",
  893. "Value": "Cu97fOSuVXQT"
  894. },
  895. "isIllegal": true,
  896. "randomID": "IcnQL7zsuXgD",
  897. "stepSlot": {
  898. "ContainerValue": null,
  899. "Type": "BTStepSlot"
  900. }
  901. },
  902. "Type": "BTStepSlot"
  903. }
  904. },
  905. "Type": "BTStepSlot"
  906. }
  907. },
  908. "Type": "BTStepSlot"
  909. }
  910. },
  911. "Type": "BTSectionSlot"
  912. },
  913. "stepSlot": {
  914. "ContainerValue": null,
  915. "Type": "BTStepSlot"
  916. }
  917. },
  918. "Type": "BTStepSlot"
  919. }
  920. },
  921. "Type": "BTStepSlot"
  922. }
  923. },
  924. "Type": "BTStepSlot"
  925. }
  926. },
  927. "Type": "BTStepSlot"
  928. }
  929. },
  930. "Type": "BTStepSlot"
  931. }
  932. },
  933. "Type": "BTStepSlot"
  934. }
  935. },
  936. "Type": "BTStepSlot"
  937. },
  938. "x": 415.5,
  939. "y": -4
  940. }
  941. }
  942. },
  943. "YmYHnGK7GDWr": {
  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": "道具按钮2",
  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. "kNrJkvZP4N1R": {
  1760. "CustomFunc": {
  1761. },
  1762. "CustomList": {
  1763. },
  1764. "CustomTestFunc": {
  1765. },
  1766. "CustomVar": {
  1767. },
  1768. "DisPlayName": "GoodsMerge_弹窗_难度标签",
  1769. "RedNoteInfo": {
  1770. },
  1771. "TreeList": {
  1772. }
  1773. },
  1774. "lVi0jiqV9Awz": {
  1775. "CustomFunc": {
  1776. "收集物倍数": [
  1777. [
  1778. "Name",
  1779. "收集物倍数",
  1780. "l6TSwx7SoCyn",
  1781. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_文本提示框.red"
  1782. ],
  1783. [
  1784. "BTInputSlot",
  1785. "倍数"
  1786. ]
  1787. ],
  1788. "文本提示框困难": [
  1789. [
  1790. "Name",
  1791. "文本提示框困难",
  1792. "KLquwt5FkbI7",
  1793. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_文本提示框.red"
  1794. ],
  1795. [
  1796. "BTInputSlot",
  1797. "Plist路径"
  1798. ],
  1799. [
  1800. "BTInputSlot",
  1801. "收集物位置1图片"
  1802. ],
  1803. [
  1804. "BTInputSlot",
  1805. "收集物位置2图片"
  1806. ],
  1807. [
  1808. "BTInputSlot",
  1809. "收集物位置3图片"
  1810. ],
  1811. [
  1812. "BTInputSlot",
  1813. "收集物位置4图片"
  1814. ],
  1815. [
  1816. "BTInputSlot",
  1817. "收集物位置5图片"
  1818. ],
  1819. [
  1820. "BTInputSlot",
  1821. "收集物种类"
  1822. ]
  1823. ],
  1824. "文本提示框超困难": [
  1825. [
  1826. "Name",
  1827. "文本提示框超困难",
  1828. "kQ4bOKYMhx8C",
  1829. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_文本提示框.red"
  1830. ],
  1831. [
  1832. "BTInputSlot",
  1833. "Plist路径"
  1834. ],
  1835. [
  1836. "BTInputSlot",
  1837. "收集物位置1图片"
  1838. ],
  1839. [
  1840. "BTInputSlot",
  1841. "收集物位置2图片"
  1842. ],
  1843. [
  1844. "BTInputSlot",
  1845. "收集物位置3图片"
  1846. ],
  1847. [
  1848. "BTInputSlot",
  1849. "收集物位置4图片"
  1850. ],
  1851. [
  1852. "BTInputSlot",
  1853. "收集物位置5图片"
  1854. ],
  1855. [
  1856. "BTInputSlot",
  1857. "收集物种类"
  1858. ]
  1859. ]
  1860. },
  1861. "CustomList": {
  1862. },
  1863. "CustomTestFunc": {
  1864. "111": ""
  1865. },
  1866. "CustomVar": {
  1867. "P-Plist路径": 0,
  1868. "P-收集物位置1图片": 0,
  1869. "P-收集物位置2图片": 0,
  1870. "P-收集物位置3图片": 0,
  1871. "P-收集物位置4图片": 0,
  1872. "P-收集物位置5图片": 0,
  1873. "P-收集物种类": 0,
  1874. "奖励倍数": 0
  1875. },
  1876. "DisPlayName": "GoodsMerge_弹窗_文本提示框",
  1877. "RedNoteInfo": {
  1878. },
  1879. "TreeList": {
  1880. "Tree0": {
  1881. "ExportTree": true,
  1882. "ImageIndex": -1,
  1883. "Type": "BTButtonClickFuncAction",
  1884. "VarJson": {
  1885. "boolJson": {
  1886. },
  1887. "numberJson": {
  1888. }
  1889. },
  1890. "isIllegal": false,
  1891. "mathSelector": {
  1892. "DisplayName": "文本关闭按钮",
  1893. "Type": "OBJ",
  1894. "Value": "Q238JVV07v0E"
  1895. },
  1896. "randomID": "V1LcpkcUZ9A0",
  1897. "stepSlot": {
  1898. "ContainerValue": {
  1899. "Type": "BTButtonEnableAction",
  1900. "baseSelect": {
  1901. "DisplayName": "文本关闭按钮",
  1902. "Type": "Action",
  1903. "Value": "Q238JVV07v0E"
  1904. },
  1905. "enableButton": {
  1906. "Type": "BTCheckBox",
  1907. "isEnable": false
  1908. },
  1909. "isIllegal": true,
  1910. "randomID": "vw5VWEboPUio",
  1911. "stepSlot": {
  1912. "ContainerValue": {
  1913. "Type": "BTPlayTimeLineAction",
  1914. "baseSelect": {
  1915. "DisplayName": "退出动画",
  1916. "Type": "Action",
  1917. "Value": "1"
  1918. },
  1919. "isIllegal": true,
  1920. "randomID": "WDXlcfWojntR",
  1921. "stepSlot": {
  1922. "ContainerValue": {
  1923. "Type": "BTRedHiddenAction",
  1924. "baseSelect": {
  1925. "DisplayName": "进入3倍动画",
  1926. "Type": "Action",
  1927. "Value": "0"
  1928. },
  1929. "isIllegal": true,
  1930. "randomID": "5fOlA3bC1kim",
  1931. "stepSlot": {
  1932. "ContainerValue": {
  1933. "Type": "BTWaitTimeAction",
  1934. "conditionA": {
  1935. "ContainerValue": null,
  1936. "StringValue": {
  1937. "Type": "FLOAT",
  1938. "Value": 0.10000000149011612
  1939. },
  1940. "Type": "BTInputSlot"
  1941. },
  1942. "isIllegal": true,
  1943. "randomID": "f6A3QiChTkGY",
  1944. "stepSlot": {
  1945. "ContainerValue": {
  1946. "Type": "BTButtonEnableAction",
  1947. "baseSelect": {
  1948. "DisplayName": "文本关闭按钮",
  1949. "Type": "Action",
  1950. "Value": "Q238JVV07v0E"
  1951. },
  1952. "enableButton": {
  1953. "Type": "BTCheckBox",
  1954. "isEnable": true
  1955. },
  1956. "isIllegal": true,
  1957. "randomID": "j25WxhiyKAVR",
  1958. "stepSlot": {
  1959. "ContainerValue": null,
  1960. "Type": "BTStepSlot"
  1961. }
  1962. },
  1963. "Type": "BTStepSlot"
  1964. }
  1965. },
  1966. "Type": "BTStepSlot"
  1967. }
  1968. },
  1969. "Type": "BTStepSlot"
  1970. }
  1971. },
  1972. "Type": "BTStepSlot"
  1973. }
  1974. },
  1975. "Type": "BTStepSlot"
  1976. },
  1977. "x": -611,
  1978. "y": 490
  1979. },
  1980. "Tree1": {
  1981. "ExportTree": false,
  1982. "ImageIndex": -1,
  1983. "Type": "BTTestFuncAction",
  1984. "VarJson": {
  1985. "boolJson": {
  1986. },
  1987. "numberJson": {
  1988. }
  1989. },
  1990. "VarScope": "Red",
  1991. "isIllegal": false,
  1992. "randomID": "WPMyDeV23So7",
  1993. "stepSlot": {
  1994. "ContainerValue": {
  1995. "TitleInput": {
  1996. "ContainerValue": null,
  1997. "StringValue": {
  1998. "Type": "STRING",
  1999. "Value": "GoodsMerge_游戏UI资源.plist"
  2000. },
  2001. "Type": "BTInputSlot"
  2002. },
  2003. "Type": "BTDataCoderVarSetAction",
  2004. "VarScope": "Scene",
  2005. "baseSelect": {
  2006. "DisplayName": "P-Plist路径",
  2007. "Type": "Action",
  2008. "Value": "P-Plist路径"
  2009. },
  2010. "isIllegal": true,
  2011. "randomID": "TQZRgtZnd3Ys",
  2012. "stepSlot": {
  2013. "ContainerValue": null,
  2014. "Type": "BTStepSlot"
  2015. }
  2016. },
  2017. "Type": "BTStepSlot"
  2018. },
  2019. "titleLabel": {
  2020. "Type": "STRING",
  2021. "Value": "111",
  2022. "displayName": ""
  2023. },
  2024. "x": -777.5,
  2025. "y": -926
  2026. },
  2027. "Tree2": {
  2028. "ExportTree": true,
  2029. "ImageIndex": 1,
  2030. "Name": {
  2031. "Type": "STRING",
  2032. "Value": "文本提示框困难",
  2033. "displayName": ""
  2034. },
  2035. "Type": "BTCustomFuncHeadAction",
  2036. "VarJson": {
  2037. "boolJson": {
  2038. },
  2039. "numberJson": {
  2040. "Plist路径": "Number",
  2041. "收集物位置1图片": "Number",
  2042. "收集物位置2图片": "Number",
  2043. "收集物位置3图片": "Number",
  2044. "收集物位置4图片": "Number",
  2045. "收集物位置5图片": "Number",
  2046. "收集物种类": "Number"
  2047. }
  2048. },
  2049. "isIllegal": false,
  2050. "randomID": "KLquwt5FkbI7",
  2051. "stepSlot": {
  2052. "ContainerValue": {
  2053. "TitleInput": {
  2054. "ContainerValue": {
  2055. "Type": "BTStringLinkOperatorAction",
  2056. "conditionA": {
  2057. "ContainerValue": null,
  2058. "StringValue": {
  2059. "Type": "STRING",
  2060. "Value": "x "
  2061. },
  2062. "Type": "BTInputSlot"
  2063. },
  2064. "conditionB": {
  2065. "ContainerValue": {
  2066. "Type": "BTVariableAction",
  2067. "VarScope": "Scene",
  2068. "isIllegal": true,
  2069. "randomID": "VPbzbYLaecvD",
  2070. "titleLabel": {
  2071. "Type": "STRING",
  2072. "Value": "奖励倍数",
  2073. "displayName": ""
  2074. }
  2075. },
  2076. "StringValue": {
  2077. "Type": "STRING",
  2078. "Value": "Banana"
  2079. },
  2080. "Type": "BTInputSlot"
  2081. },
  2082. "isIllegal": true,
  2083. "randomID": "p2dfzHBWtghd"
  2084. },
  2085. "StringValue": {
  2086. "Type": "STRING",
  2087. "Value": "x3"
  2088. },
  2089. "Type": "BTInputSlot"
  2090. },
  2091. "Type": "BTSceneLabelTitleAction",
  2092. "baseSelect": {
  2093. "DisplayName": "收集物1数量",
  2094. "Type": "Action",
  2095. "Value": "ZbQLr3vF9QeZ"
  2096. },
  2097. "isIllegal": true,
  2098. "randomID": "9cIJHjk3cZtf",
  2099. "redSelect": {
  2100. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2101. "Type": "OBJ",
  2102. "Value": "YCpAoGrLNtxI"
  2103. },
  2104. "stepSlot": {
  2105. "ContainerValue": {
  2106. "TitleInput": {
  2107. "ContainerValue": {
  2108. "Type": "BTStringLinkOperatorAction",
  2109. "conditionA": {
  2110. "ContainerValue": null,
  2111. "StringValue": {
  2112. "Type": "STRING",
  2113. "Value": "x "
  2114. },
  2115. "Type": "BTInputSlot"
  2116. },
  2117. "conditionB": {
  2118. "ContainerValue": {
  2119. "Type": "BTVariableAction",
  2120. "VarScope": "Scene",
  2121. "isIllegal": true,
  2122. "randomID": "rC4eeuEeNQWM",
  2123. "titleLabel": {
  2124. "Type": "STRING",
  2125. "Value": "奖励倍数",
  2126. "displayName": ""
  2127. }
  2128. },
  2129. "StringValue": {
  2130. "Type": "STRING",
  2131. "Value": "Banana"
  2132. },
  2133. "Type": "BTInputSlot"
  2134. },
  2135. "isIllegal": true,
  2136. "randomID": "rIXfiwLtbOoc"
  2137. },
  2138. "StringValue": {
  2139. "Type": "STRING",
  2140. "Value": "x3"
  2141. },
  2142. "Type": "BTInputSlot"
  2143. },
  2144. "Type": "BTSceneLabelTitleAction",
  2145. "baseSelect": {
  2146. "DisplayName": "收集物3数量",
  2147. "Type": "Action",
  2148. "Value": "v7qauAUIRw6p"
  2149. },
  2150. "isIllegal": true,
  2151. "randomID": "At2X167ttwqb",
  2152. "redSelect": {
  2153. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2154. "Type": "OBJ",
  2155. "Value": "YCpAoGrLNtxI"
  2156. },
  2157. "stepSlot": {
  2158. "ContainerValue": {
  2159. "TitleInput": {
  2160. "ContainerValue": {
  2161. "Type": "BTStringLinkOperatorAction",
  2162. "conditionA": {
  2163. "ContainerValue": null,
  2164. "StringValue": {
  2165. "Type": "STRING",
  2166. "Value": "x "
  2167. },
  2168. "Type": "BTInputSlot"
  2169. },
  2170. "conditionB": {
  2171. "ContainerValue": {
  2172. "Type": "BTVariableAction",
  2173. "VarScope": "Scene",
  2174. "isIllegal": true,
  2175. "randomID": "AHkyHz2W5Soy",
  2176. "titleLabel": {
  2177. "Type": "STRING",
  2178. "Value": "奖励倍数",
  2179. "displayName": ""
  2180. }
  2181. },
  2182. "StringValue": {
  2183. "Type": "STRING",
  2184. "Value": "Banana"
  2185. },
  2186. "Type": "BTInputSlot"
  2187. },
  2188. "isIllegal": true,
  2189. "randomID": "AFeJbXaMbnyM"
  2190. },
  2191. "StringValue": {
  2192. "Type": "STRING",
  2193. "Value": "x3"
  2194. },
  2195. "Type": "BTInputSlot"
  2196. },
  2197. "Type": "BTSceneLabelTitleAction",
  2198. "baseSelect": {
  2199. "DisplayName": "收集物4数量",
  2200. "Type": "Action",
  2201. "Value": "hiu7r45SR9Gk"
  2202. },
  2203. "isIllegal": true,
  2204. "randomID": "k5rhQuHkYI7J",
  2205. "redSelect": {
  2206. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2207. "Type": "OBJ",
  2208. "Value": "YCpAoGrLNtxI"
  2209. },
  2210. "stepSlot": {
  2211. "ContainerValue": {
  2212. "TitleInput": {
  2213. "ContainerValue": {
  2214. "Type": "BTStringLinkOperatorAction",
  2215. "conditionA": {
  2216. "ContainerValue": null,
  2217. "StringValue": {
  2218. "Type": "STRING",
  2219. "Value": "x "
  2220. },
  2221. "Type": "BTInputSlot"
  2222. },
  2223. "conditionB": {
  2224. "ContainerValue": {
  2225. "Type": "BTVariableAction",
  2226. "VarScope": "Scene",
  2227. "isIllegal": true,
  2228. "randomID": "N7F4PpEAkWPo",
  2229. "titleLabel": {
  2230. "Type": "STRING",
  2231. "Value": "奖励倍数",
  2232. "displayName": ""
  2233. }
  2234. },
  2235. "StringValue": {
  2236. "Type": "STRING",
  2237. "Value": "Banana"
  2238. },
  2239. "Type": "BTInputSlot"
  2240. },
  2241. "isIllegal": true,
  2242. "randomID": "DmWHHCJ5feEX"
  2243. },
  2244. "StringValue": {
  2245. "Type": "STRING",
  2246. "Value": "x3"
  2247. },
  2248. "Type": "BTInputSlot"
  2249. },
  2250. "Type": "BTSceneLabelTitleAction",
  2251. "baseSelect": {
  2252. "DisplayName": "收集物5数量",
  2253. "Type": "Action",
  2254. "Value": "TS6xIh8L3Pzm"
  2255. },
  2256. "isIllegal": true,
  2257. "randomID": "hg2cG2ulaOSO",
  2258. "redSelect": {
  2259. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2260. "Type": "OBJ",
  2261. "Value": "YCpAoGrLNtxI"
  2262. },
  2263. "stepSlot": {
  2264. "ContainerValue": {
  2265. "TitleInput": {
  2266. "ContainerValue": {
  2267. "Type": "BTStringLinkOperatorAction",
  2268. "conditionA": {
  2269. "ContainerValue": null,
  2270. "StringValue": {
  2271. "Type": "STRING",
  2272. "Value": "x "
  2273. },
  2274. "Type": "BTInputSlot"
  2275. },
  2276. "conditionB": {
  2277. "ContainerValue": {
  2278. "Type": "BTVariableAction",
  2279. "VarScope": "Scene",
  2280. "isIllegal": true,
  2281. "randomID": "5uzOpN2fTl34",
  2282. "titleLabel": {
  2283. "Type": "STRING",
  2284. "Value": "奖励倍数",
  2285. "displayName": ""
  2286. }
  2287. },
  2288. "StringValue": {
  2289. "Type": "STRING",
  2290. "Value": "Banana"
  2291. },
  2292. "Type": "BTInputSlot"
  2293. },
  2294. "isIllegal": true,
  2295. "randomID": "P3o6jGiidlAY"
  2296. },
  2297. "StringValue": {
  2298. "Type": "STRING",
  2299. "Value": "x3"
  2300. },
  2301. "Type": "BTInputSlot"
  2302. },
  2303. "Type": "BTSceneLabelTitleAction",
  2304. "baseSelect": {
  2305. "DisplayName": "收集物2数量",
  2306. "Type": "Action",
  2307. "Value": "uRVSN431z7ev"
  2308. },
  2309. "isIllegal": true,
  2310. "randomID": "QBehMLz1yFfK",
  2311. "redSelect": {
  2312. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2313. "Type": "OBJ",
  2314. "Value": "YCpAoGrLNtxI"
  2315. },
  2316. "stepSlot": {
  2317. "ContainerValue": {
  2318. "Type": "BTSceneSpritePlistAction",
  2319. "baseSelect": {
  2320. "DisplayName": "收集物1位置",
  2321. "Type": "Action",
  2322. "Value": "oascSTl4LURr"
  2323. },
  2324. "frameNameInput": {
  2325. "ContainerValue": {
  2326. "Type": "BTFuncVariableAction",
  2327. "colorName": "More",
  2328. "currentStr": "收集物位置1图片",
  2329. "fatherFuncID": "KLquwt5FkbI7",
  2330. "isIllegal": true,
  2331. "randomID": "Bhay7z8zWFIL",
  2332. "titleLabel": {
  2333. "Type": "STRING",
  2334. "Value": "收集物位置1图片",
  2335. "displayName": ""
  2336. }
  2337. },
  2338. "StringValue": {
  2339. "Type": "STRING",
  2340. "Value": "图片名"
  2341. },
  2342. "Type": "BTInputSlot"
  2343. },
  2344. "isIllegal": true,
  2345. "pathInput": {
  2346. "ContainerValue": {
  2347. "Type": "BTFuncVariableAction",
  2348. "colorName": "More",
  2349. "currentStr": "Plist路径",
  2350. "fatherFuncID": "KLquwt5FkbI7",
  2351. "isIllegal": true,
  2352. "randomID": "RPWvKsU4GL1h",
  2353. "titleLabel": {
  2354. "Type": "STRING",
  2355. "Value": "Plist路径",
  2356. "displayName": ""
  2357. }
  2358. },
  2359. "StringValue": {
  2360. "Type": "STRING",
  2361. "Value": "Plist路径"
  2362. },
  2363. "Type": "BTInputSlot"
  2364. },
  2365. "randomID": "PIcn9PiEWtib",
  2366. "redSelect": {
  2367. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2368. "Type": "OBJ",
  2369. "Value": "YCpAoGrLNtxI"
  2370. },
  2371. "stepSlot": {
  2372. "ContainerValue": {
  2373. "Type": "BTSceneSpritePlistAction",
  2374. "baseSelect": {
  2375. "DisplayName": "收集物2位置",
  2376. "Type": "Action",
  2377. "Value": "gXu9oG8KQc31"
  2378. },
  2379. "frameNameInput": {
  2380. "ContainerValue": {
  2381. "Type": "BTFuncVariableAction",
  2382. "colorName": "More",
  2383. "currentStr": "收集物位置2图片",
  2384. "fatherFuncID": "KLquwt5FkbI7",
  2385. "isIllegal": true,
  2386. "randomID": "kF0mOLeaamLr",
  2387. "titleLabel": {
  2388. "Type": "STRING",
  2389. "Value": "收集物位置2图片",
  2390. "displayName": ""
  2391. }
  2392. },
  2393. "StringValue": {
  2394. "Type": "STRING",
  2395. "Value": "图片名"
  2396. },
  2397. "Type": "BTInputSlot"
  2398. },
  2399. "isIllegal": true,
  2400. "pathInput": {
  2401. "ContainerValue": {
  2402. "Type": "BTFuncVariableAction",
  2403. "colorName": "More",
  2404. "currentStr": "Plist路径",
  2405. "fatherFuncID": "KLquwt5FkbI7",
  2406. "isIllegal": true,
  2407. "randomID": "maULBtUqYNxV",
  2408. "titleLabel": {
  2409. "Type": "STRING",
  2410. "Value": "Plist路径",
  2411. "displayName": ""
  2412. }
  2413. },
  2414. "StringValue": {
  2415. "Type": "STRING",
  2416. "Value": "Plist路径"
  2417. },
  2418. "Type": "BTInputSlot"
  2419. },
  2420. "randomID": "GmL7QDttDueO",
  2421. "redSelect": {
  2422. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2423. "Type": "OBJ",
  2424. "Value": "YCpAoGrLNtxI"
  2425. },
  2426. "stepSlot": {
  2427. "ContainerValue": {
  2428. "Type": "BTSceneSpritePlistAction",
  2429. "baseSelect": {
  2430. "DisplayName": "收集物3位置",
  2431. "Type": "Action",
  2432. "Value": "yjauhyDYIeFC"
  2433. },
  2434. "frameNameInput": {
  2435. "ContainerValue": {
  2436. "Type": "BTFuncVariableAction",
  2437. "colorName": "More",
  2438. "currentStr": "收集物位置3图片",
  2439. "fatherFuncID": "KLquwt5FkbI7",
  2440. "isIllegal": true,
  2441. "randomID": "x1guSvJ8qK9r",
  2442. "titleLabel": {
  2443. "Type": "STRING",
  2444. "Value": "收集物位置3图片",
  2445. "displayName": ""
  2446. }
  2447. },
  2448. "StringValue": {
  2449. "Type": "STRING",
  2450. "Value": "图片名"
  2451. },
  2452. "Type": "BTInputSlot"
  2453. },
  2454. "isIllegal": true,
  2455. "pathInput": {
  2456. "ContainerValue": {
  2457. "Type": "BTFuncVariableAction",
  2458. "colorName": "More",
  2459. "currentStr": "Plist路径",
  2460. "fatherFuncID": "KLquwt5FkbI7",
  2461. "isIllegal": true,
  2462. "randomID": "r9K8YJbywpdM",
  2463. "titleLabel": {
  2464. "Type": "STRING",
  2465. "Value": "Plist路径",
  2466. "displayName": ""
  2467. }
  2468. },
  2469. "StringValue": {
  2470. "Type": "STRING",
  2471. "Value": "Plist路径"
  2472. },
  2473. "Type": "BTInputSlot"
  2474. },
  2475. "randomID": "yUgZFNXL9oeF",
  2476. "redSelect": {
  2477. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2478. "Type": "OBJ",
  2479. "Value": "YCpAoGrLNtxI"
  2480. },
  2481. "stepSlot": {
  2482. "ContainerValue": {
  2483. "Type": "BTSceneSpritePlistAction",
  2484. "baseSelect": {
  2485. "DisplayName": "收集物4位置",
  2486. "Type": "Action",
  2487. "Value": "sh3dG3v40sWN"
  2488. },
  2489. "frameNameInput": {
  2490. "ContainerValue": {
  2491. "Type": "BTFuncVariableAction",
  2492. "colorName": "More",
  2493. "currentStr": "收集物位置4图片",
  2494. "fatherFuncID": "KLquwt5FkbI7",
  2495. "isIllegal": true,
  2496. "randomID": "6dPir2gVQGdt",
  2497. "titleLabel": {
  2498. "Type": "STRING",
  2499. "Value": "收集物位置4图片",
  2500. "displayName": ""
  2501. }
  2502. },
  2503. "StringValue": {
  2504. "Type": "STRING",
  2505. "Value": "图片名"
  2506. },
  2507. "Type": "BTInputSlot"
  2508. },
  2509. "isIllegal": true,
  2510. "pathInput": {
  2511. "ContainerValue": {
  2512. "Type": "BTFuncVariableAction",
  2513. "colorName": "More",
  2514. "currentStr": "Plist路径",
  2515. "fatherFuncID": "KLquwt5FkbI7",
  2516. "isIllegal": true,
  2517. "randomID": "WMjETuiKwhmR",
  2518. "titleLabel": {
  2519. "Type": "STRING",
  2520. "Value": "Plist路径",
  2521. "displayName": ""
  2522. }
  2523. },
  2524. "StringValue": {
  2525. "Type": "STRING",
  2526. "Value": "Plist路径"
  2527. },
  2528. "Type": "BTInputSlot"
  2529. },
  2530. "randomID": "kWqFuVE6mhCK",
  2531. "redSelect": {
  2532. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2533. "Type": "OBJ",
  2534. "Value": "YCpAoGrLNtxI"
  2535. },
  2536. "stepSlot": {
  2537. "ContainerValue": {
  2538. "Type": "BTSceneSpritePlistAction",
  2539. "baseSelect": {
  2540. "DisplayName": "收集物5位置",
  2541. "Type": "Action",
  2542. "Value": "yiFBGh2aWLwQ"
  2543. },
  2544. "frameNameInput": {
  2545. "ContainerValue": {
  2546. "Type": "BTFuncVariableAction",
  2547. "colorName": "More",
  2548. "currentStr": "收集物位置5图片",
  2549. "fatherFuncID": "KLquwt5FkbI7",
  2550. "isIllegal": true,
  2551. "randomID": "b5oMEmZHch0y",
  2552. "titleLabel": {
  2553. "Type": "STRING",
  2554. "Value": "收集物位置5图片",
  2555. "displayName": ""
  2556. }
  2557. },
  2558. "StringValue": {
  2559. "Type": "STRING",
  2560. "Value": "图片名"
  2561. },
  2562. "Type": "BTInputSlot"
  2563. },
  2564. "isIllegal": true,
  2565. "pathInput": {
  2566. "ContainerValue": {
  2567. "Type": "BTFuncVariableAction",
  2568. "colorName": "More",
  2569. "currentStr": "Plist路径",
  2570. "fatherFuncID": "KLquwt5FkbI7",
  2571. "isIllegal": true,
  2572. "randomID": "Ngvgb5vmxl2n",
  2573. "titleLabel": {
  2574. "Type": "STRING",
  2575. "Value": "Plist路径",
  2576. "displayName": ""
  2577. }
  2578. },
  2579. "StringValue": {
  2580. "Type": "STRING",
  2581. "Value": "Plist路径"
  2582. },
  2583. "Type": "BTInputSlot"
  2584. },
  2585. "randomID": "FAhqV48LT8dH",
  2586. "redSelect": {
  2587. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2588. "Type": "OBJ",
  2589. "Value": "YCpAoGrLNtxI"
  2590. },
  2591. "stepSlot": {
  2592. "ContainerValue": {
  2593. "Type": "BTIFControlAction",
  2594. "conditionA": {
  2595. "ContainerValue": {
  2596. "Type": "BTStringEqualOperatorAction",
  2597. "conditionA": {
  2598. "ContainerValue": {
  2599. "Type": "BTFuncVariableAction",
  2600. "colorName": "More",
  2601. "currentStr": "收集物种类",
  2602. "fatherFuncID": "KLquwt5FkbI7",
  2603. "isIllegal": true,
  2604. "randomID": "dMarmmhgQCps",
  2605. "titleLabel": {
  2606. "Type": "STRING",
  2607. "Value": "收集物种类",
  2608. "displayName": ""
  2609. }
  2610. },
  2611. "StringValue": {
  2612. "Type": "STRING",
  2613. "Value": "收集物收集倍数"
  2614. },
  2615. "Type": "BTInputSlot"
  2616. },
  2617. "conditionB": {
  2618. "ContainerValue": null,
  2619. "StringValue": {
  2620. "Type": "STRING",
  2621. "Value": "1"
  2622. },
  2623. "Type": "BTInputSlot"
  2624. },
  2625. "isIllegal": true,
  2626. "randomID": "MZstsMocHpaJ"
  2627. },
  2628. "Type": "BTBoolSlot"
  2629. },
  2630. "isIllegal": true,
  2631. "randomID": "oaXNY4UCTmfL",
  2632. "sectionA": {
  2633. "ContainerValue": {
  2634. "Type": "BTPlaySceneTimeLineAction",
  2635. "baseSelect": {
  2636. "DisplayName": "收集物1",
  2637. "Type": "Action",
  2638. "Value": "0"
  2639. },
  2640. "isIllegal": true,
  2641. "randomID": "BcMUigxXkn8g",
  2642. "redSelect": {
  2643. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2644. "Type": "OBJ",
  2645. "Value": "YCpAoGrLNtxI"
  2646. },
  2647. "stepSlot": {
  2648. "ContainerValue": null,
  2649. "Type": "BTStepSlot"
  2650. }
  2651. },
  2652. "Type": "BTSectionSlot"
  2653. },
  2654. "stepSlot": {
  2655. "ContainerValue": {
  2656. "Type": "BTIFControlAction",
  2657. "conditionA": {
  2658. "ContainerValue": {
  2659. "Type": "BTStringEqualOperatorAction",
  2660. "conditionA": {
  2661. "ContainerValue": {
  2662. "Type": "BTFuncVariableAction",
  2663. "colorName": "More",
  2664. "currentStr": "收集物种类",
  2665. "fatherFuncID": "KLquwt5FkbI7",
  2666. "isIllegal": true,
  2667. "randomID": "0D7SpfPMNGyV",
  2668. "titleLabel": {
  2669. "Type": "STRING",
  2670. "Value": "收集物种类",
  2671. "displayName": ""
  2672. }
  2673. },
  2674. "StringValue": {
  2675. "Type": "STRING",
  2676. "Value": "收集物收集倍数"
  2677. },
  2678. "Type": "BTInputSlot"
  2679. },
  2680. "conditionB": {
  2681. "ContainerValue": null,
  2682. "StringValue": {
  2683. "Type": "STRING",
  2684. "Value": "2"
  2685. },
  2686. "Type": "BTInputSlot"
  2687. },
  2688. "isIllegal": true,
  2689. "randomID": "GV0kadjDdsBb"
  2690. },
  2691. "Type": "BTBoolSlot"
  2692. },
  2693. "isIllegal": true,
  2694. "randomID": "Cr03SIDhzUcd",
  2695. "sectionA": {
  2696. "ContainerValue": {
  2697. "Type": "BTPlaySceneTimeLineAction",
  2698. "baseSelect": {
  2699. "DisplayName": "收集物2",
  2700. "Type": "Action",
  2701. "Value": "1"
  2702. },
  2703. "isIllegal": true,
  2704. "randomID": "sMR3othXcUjB",
  2705. "redSelect": {
  2706. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2707. "Type": "OBJ",
  2708. "Value": "YCpAoGrLNtxI"
  2709. },
  2710. "stepSlot": {
  2711. "ContainerValue": null,
  2712. "Type": "BTStepSlot"
  2713. }
  2714. },
  2715. "Type": "BTSectionSlot"
  2716. },
  2717. "stepSlot": {
  2718. "ContainerValue": {
  2719. "Type": "BTIFControlAction",
  2720. "conditionA": {
  2721. "ContainerValue": {
  2722. "Type": "BTStringEqualOperatorAction",
  2723. "conditionA": {
  2724. "ContainerValue": {
  2725. "Type": "BTFuncVariableAction",
  2726. "colorName": "More",
  2727. "currentStr": "收集物种类",
  2728. "fatherFuncID": "KLquwt5FkbI7",
  2729. "isIllegal": true,
  2730. "randomID": "adPcLTpdcrRV",
  2731. "titleLabel": {
  2732. "Type": "STRING",
  2733. "Value": "收集物种类",
  2734. "displayName": ""
  2735. }
  2736. },
  2737. "StringValue": {
  2738. "Type": "STRING",
  2739. "Value": "收集物收集倍数"
  2740. },
  2741. "Type": "BTInputSlot"
  2742. },
  2743. "conditionB": {
  2744. "ContainerValue": null,
  2745. "StringValue": {
  2746. "Type": "STRING",
  2747. "Value": "3"
  2748. },
  2749. "Type": "BTInputSlot"
  2750. },
  2751. "isIllegal": true,
  2752. "randomID": "HbTUrePI4V5A"
  2753. },
  2754. "Type": "BTBoolSlot"
  2755. },
  2756. "isIllegal": true,
  2757. "randomID": "rwaNKHN4mLW1",
  2758. "sectionA": {
  2759. "ContainerValue": {
  2760. "Type": "BTPlaySceneTimeLineAction",
  2761. "baseSelect": {
  2762. "DisplayName": "收集物3",
  2763. "Type": "Action",
  2764. "Value": "2"
  2765. },
  2766. "isIllegal": true,
  2767. "randomID": "qLo71f6lUUS7",
  2768. "redSelect": {
  2769. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2770. "Type": "OBJ",
  2771. "Value": "YCpAoGrLNtxI"
  2772. },
  2773. "stepSlot": {
  2774. "ContainerValue": null,
  2775. "Type": "BTStepSlot"
  2776. }
  2777. },
  2778. "Type": "BTSectionSlot"
  2779. },
  2780. "stepSlot": {
  2781. "ContainerValue": {
  2782. "Type": "BTIFControlAction",
  2783. "conditionA": {
  2784. "ContainerValue": {
  2785. "Type": "BTStringEqualOperatorAction",
  2786. "conditionA": {
  2787. "ContainerValue": {
  2788. "Type": "BTFuncVariableAction",
  2789. "colorName": "More",
  2790. "currentStr": "收集物种类",
  2791. "fatherFuncID": "KLquwt5FkbI7",
  2792. "isIllegal": true,
  2793. "randomID": "ydEuSA0FRVCv",
  2794. "titleLabel": {
  2795. "Type": "STRING",
  2796. "Value": "收集物种类",
  2797. "displayName": ""
  2798. }
  2799. },
  2800. "StringValue": {
  2801. "Type": "STRING",
  2802. "Value": "收集物收集倍数"
  2803. },
  2804. "Type": "BTInputSlot"
  2805. },
  2806. "conditionB": {
  2807. "ContainerValue": null,
  2808. "StringValue": {
  2809. "Type": "STRING",
  2810. "Value": "4"
  2811. },
  2812. "Type": "BTInputSlot"
  2813. },
  2814. "isIllegal": true,
  2815. "randomID": "VbRMAdTzPGq1"
  2816. },
  2817. "Type": "BTBoolSlot"
  2818. },
  2819. "isIllegal": true,
  2820. "randomID": "QN1kxO3gv0MB",
  2821. "sectionA": {
  2822. "ContainerValue": {
  2823. "Type": "BTPlaySceneTimeLineAction",
  2824. "baseSelect": {
  2825. "DisplayName": "收集物4",
  2826. "Type": "Action",
  2827. "Value": "3"
  2828. },
  2829. "isIllegal": true,
  2830. "randomID": "iOWmldKj815n",
  2831. "redSelect": {
  2832. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2833. "Type": "OBJ",
  2834. "Value": "YCpAoGrLNtxI"
  2835. },
  2836. "stepSlot": {
  2837. "ContainerValue": null,
  2838. "Type": "BTStepSlot"
  2839. }
  2840. },
  2841. "Type": "BTSectionSlot"
  2842. },
  2843. "stepSlot": {
  2844. "ContainerValue": {
  2845. "Type": "BTIFControlAction",
  2846. "conditionA": {
  2847. "ContainerValue": {
  2848. "Type": "BTStringEqualOperatorAction",
  2849. "conditionA": {
  2850. "ContainerValue": {
  2851. "Type": "BTFuncVariableAction",
  2852. "colorName": "More",
  2853. "currentStr": "收集物种类",
  2854. "fatherFuncID": "KLquwt5FkbI7",
  2855. "isIllegal": true,
  2856. "randomID": "v57oQDqIQAgf",
  2857. "titleLabel": {
  2858. "Type": "STRING",
  2859. "Value": "收集物种类",
  2860. "displayName": ""
  2861. }
  2862. },
  2863. "StringValue": {
  2864. "Type": "STRING",
  2865. "Value": "收集物收集倍数"
  2866. },
  2867. "Type": "BTInputSlot"
  2868. },
  2869. "conditionB": {
  2870. "ContainerValue": null,
  2871. "StringValue": {
  2872. "Type": "STRING",
  2873. "Value": "5"
  2874. },
  2875. "Type": "BTInputSlot"
  2876. },
  2877. "isIllegal": true,
  2878. "randomID": "6533e0pLp0BM"
  2879. },
  2880. "Type": "BTBoolSlot"
  2881. },
  2882. "isIllegal": true,
  2883. "randomID": "4pVWHSWvU2rf",
  2884. "sectionA": {
  2885. "ContainerValue": {
  2886. "Type": "BTPlaySceneTimeLineAction",
  2887. "baseSelect": {
  2888. "DisplayName": "收集物5",
  2889. "Type": "Action",
  2890. "Value": "4"
  2891. },
  2892. "isIllegal": true,
  2893. "randomID": "HfB1bqE6VWG7",
  2894. "redSelect": {
  2895. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  2896. "Type": "OBJ",
  2897. "Value": "YCpAoGrLNtxI"
  2898. },
  2899. "stepSlot": {
  2900. "ContainerValue": null,
  2901. "Type": "BTStepSlot"
  2902. }
  2903. },
  2904. "Type": "BTSectionSlot"
  2905. },
  2906. "stepSlot": {
  2907. "ContainerValue": {
  2908. "Type": "BTRedShowAction",
  2909. "baseSelect": {
  2910. "DisplayName": "进入3倍动画",
  2911. "Type": "Action",
  2912. "Value": "0"
  2913. },
  2914. "isIllegal": true,
  2915. "randomID": "CgXOkJ5TSSwW",
  2916. "stepSlot": {
  2917. "ContainerValue": {
  2918. "Type": "BTPlayTimeLineAction",
  2919. "baseSelect": {
  2920. "DisplayName": "进入3倍动画",
  2921. "Type": "Action",
  2922. "Value": "0"
  2923. },
  2924. "isIllegal": true,
  2925. "randomID": "eRqDiqJ2ytbp",
  2926. "stepSlot": {
  2927. "ContainerValue": null,
  2928. "Type": "BTStepSlot"
  2929. }
  2930. },
  2931. "Type": "BTStepSlot"
  2932. }
  2933. },
  2934. "Type": "BTStepSlot"
  2935. }
  2936. },
  2937. "Type": "BTStepSlot"
  2938. }
  2939. },
  2940. "Type": "BTStepSlot"
  2941. }
  2942. },
  2943. "Type": "BTStepSlot"
  2944. }
  2945. },
  2946. "Type": "BTStepSlot"
  2947. }
  2948. },
  2949. "Type": "BTStepSlot"
  2950. }
  2951. },
  2952. "Type": "BTStepSlot"
  2953. }
  2954. },
  2955. "Type": "BTStepSlot"
  2956. }
  2957. },
  2958. "Type": "BTStepSlot"
  2959. }
  2960. },
  2961. "Type": "BTStepSlot"
  2962. }
  2963. },
  2964. "Type": "BTStepSlot"
  2965. }
  2966. },
  2967. "Type": "BTStepSlot"
  2968. }
  2969. },
  2970. "Type": "BTStepSlot"
  2971. }
  2972. },
  2973. "Type": "BTStepSlot"
  2974. }
  2975. },
  2976. "Type": "BTStepSlot"
  2977. }
  2978. },
  2979. "Type": "BTStepSlot"
  2980. },
  2981. "x": 132.5,
  2982. "y": -471
  2983. },
  2984. "Tree3": {
  2985. "ExportTree": true,
  2986. "ImageIndex": 5,
  2987. "Name": {
  2988. "Type": "STRING",
  2989. "Value": "文本提示框超困难",
  2990. "displayName": ""
  2991. },
  2992. "Type": "BTCustomFuncHeadAction",
  2993. "VarJson": {
  2994. "boolJson": {
  2995. },
  2996. "numberJson": {
  2997. "Plist路径": "Number",
  2998. "收集物位置1图片": "Number",
  2999. "收集物位置2图片": "Number",
  3000. "收集物位置3图片": "Number",
  3001. "收集物位置4图片": "Number",
  3002. "收集物位置5图片": "Number",
  3003. "收集物种类": "Number"
  3004. }
  3005. },
  3006. "isIllegal": false,
  3007. "randomID": "kQ4bOKYMhx8C",
  3008. "stepSlot": {
  3009. "ContainerValue": {
  3010. "TitleInput": {
  3011. "ContainerValue": {
  3012. "Type": "BTStringLinkOperatorAction",
  3013. "conditionA": {
  3014. "ContainerValue": null,
  3015. "StringValue": {
  3016. "Type": "STRING",
  3017. "Value": "x "
  3018. },
  3019. "Type": "BTInputSlot"
  3020. },
  3021. "conditionB": {
  3022. "ContainerValue": {
  3023. "Type": "BTVariableAction",
  3024. "VarScope": "Scene",
  3025. "isIllegal": true,
  3026. "randomID": "zmACB2HQj3DL",
  3027. "titleLabel": {
  3028. "Type": "STRING",
  3029. "Value": "奖励倍数",
  3030. "displayName": ""
  3031. }
  3032. },
  3033. "StringValue": {
  3034. "Type": "STRING",
  3035. "Value": "Banana"
  3036. },
  3037. "Type": "BTInputSlot"
  3038. },
  3039. "isIllegal": true,
  3040. "randomID": "sVxmSENAQ8Hq"
  3041. },
  3042. "StringValue": {
  3043. "Type": "STRING",
  3044. "Value": "x5"
  3045. },
  3046. "Type": "BTInputSlot"
  3047. },
  3048. "Type": "BTSceneLabelTitleAction",
  3049. "baseSelect": {
  3050. "DisplayName": "收集物1数量",
  3051. "Type": "Action",
  3052. "Value": "ZbQLr3vF9QeZ"
  3053. },
  3054. "isIllegal": true,
  3055. "randomID": "9ZKQt7CJL0Bf",
  3056. "redSelect": {
  3057. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3058. "Type": "OBJ",
  3059. "Value": "YCpAoGrLNtxI"
  3060. },
  3061. "stepSlot": {
  3062. "ContainerValue": {
  3063. "TitleInput": {
  3064. "ContainerValue": {
  3065. "Type": "BTStringLinkOperatorAction",
  3066. "conditionA": {
  3067. "ContainerValue": null,
  3068. "StringValue": {
  3069. "Type": "STRING",
  3070. "Value": "x "
  3071. },
  3072. "Type": "BTInputSlot"
  3073. },
  3074. "conditionB": {
  3075. "ContainerValue": {
  3076. "Type": "BTVariableAction",
  3077. "VarScope": "Scene",
  3078. "isIllegal": true,
  3079. "randomID": "d3U9Vy5jadBG",
  3080. "titleLabel": {
  3081. "Type": "STRING",
  3082. "Value": "奖励倍数",
  3083. "displayName": ""
  3084. }
  3085. },
  3086. "StringValue": {
  3087. "Type": "STRING",
  3088. "Value": "Banana"
  3089. },
  3090. "Type": "BTInputSlot"
  3091. },
  3092. "isIllegal": true,
  3093. "randomID": "OnGIZYxSK1mB"
  3094. },
  3095. "StringValue": {
  3096. "Type": "STRING",
  3097. "Value": "x5"
  3098. },
  3099. "Type": "BTInputSlot"
  3100. },
  3101. "Type": "BTSceneLabelTitleAction",
  3102. "baseSelect": {
  3103. "DisplayName": "收集物3数量",
  3104. "Type": "Action",
  3105. "Value": "v7qauAUIRw6p"
  3106. },
  3107. "isIllegal": true,
  3108. "randomID": "1E2RZWH2LDMC",
  3109. "redSelect": {
  3110. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3111. "Type": "OBJ",
  3112. "Value": "YCpAoGrLNtxI"
  3113. },
  3114. "stepSlot": {
  3115. "ContainerValue": {
  3116. "TitleInput": {
  3117. "ContainerValue": {
  3118. "Type": "BTStringLinkOperatorAction",
  3119. "conditionA": {
  3120. "ContainerValue": null,
  3121. "StringValue": {
  3122. "Type": "STRING",
  3123. "Value": "x "
  3124. },
  3125. "Type": "BTInputSlot"
  3126. },
  3127. "conditionB": {
  3128. "ContainerValue": {
  3129. "Type": "BTVariableAction",
  3130. "VarScope": "Scene",
  3131. "isIllegal": true,
  3132. "randomID": "bKxhmqtOXOzv",
  3133. "titleLabel": {
  3134. "Type": "STRING",
  3135. "Value": "奖励倍数",
  3136. "displayName": ""
  3137. }
  3138. },
  3139. "StringValue": {
  3140. "Type": "STRING",
  3141. "Value": "Banana"
  3142. },
  3143. "Type": "BTInputSlot"
  3144. },
  3145. "isIllegal": true,
  3146. "randomID": "e2i1PQvpkumK"
  3147. },
  3148. "StringValue": {
  3149. "Type": "STRING",
  3150. "Value": "x5"
  3151. },
  3152. "Type": "BTInputSlot"
  3153. },
  3154. "Type": "BTSceneLabelTitleAction",
  3155. "baseSelect": {
  3156. "DisplayName": "收集物4数量",
  3157. "Type": "Action",
  3158. "Value": "hiu7r45SR9Gk"
  3159. },
  3160. "isIllegal": true,
  3161. "randomID": "sq2fbakw5WV4",
  3162. "redSelect": {
  3163. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3164. "Type": "OBJ",
  3165. "Value": "YCpAoGrLNtxI"
  3166. },
  3167. "stepSlot": {
  3168. "ContainerValue": {
  3169. "TitleInput": {
  3170. "ContainerValue": {
  3171. "Type": "BTStringLinkOperatorAction",
  3172. "conditionA": {
  3173. "ContainerValue": null,
  3174. "StringValue": {
  3175. "Type": "STRING",
  3176. "Value": "x "
  3177. },
  3178. "Type": "BTInputSlot"
  3179. },
  3180. "conditionB": {
  3181. "ContainerValue": {
  3182. "Type": "BTVariableAction",
  3183. "VarScope": "Scene",
  3184. "isIllegal": true,
  3185. "randomID": "nfaEh1i2dvqz",
  3186. "titleLabel": {
  3187. "Type": "STRING",
  3188. "Value": "奖励倍数",
  3189. "displayName": ""
  3190. }
  3191. },
  3192. "StringValue": {
  3193. "Type": "STRING",
  3194. "Value": "Banana"
  3195. },
  3196. "Type": "BTInputSlot"
  3197. },
  3198. "isIllegal": true,
  3199. "randomID": "Hul3rKiYtSgN"
  3200. },
  3201. "StringValue": {
  3202. "Type": "STRING",
  3203. "Value": "x5"
  3204. },
  3205. "Type": "BTInputSlot"
  3206. },
  3207. "Type": "BTSceneLabelTitleAction",
  3208. "baseSelect": {
  3209. "DisplayName": "收集物5数量",
  3210. "Type": "Action",
  3211. "Value": "TS6xIh8L3Pzm"
  3212. },
  3213. "isIllegal": true,
  3214. "randomID": "6fLUrNgE7qyM",
  3215. "redSelect": {
  3216. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3217. "Type": "OBJ",
  3218. "Value": "YCpAoGrLNtxI"
  3219. },
  3220. "stepSlot": {
  3221. "ContainerValue": {
  3222. "TitleInput": {
  3223. "ContainerValue": {
  3224. "Type": "BTStringLinkOperatorAction",
  3225. "conditionA": {
  3226. "ContainerValue": null,
  3227. "StringValue": {
  3228. "Type": "STRING",
  3229. "Value": "x "
  3230. },
  3231. "Type": "BTInputSlot"
  3232. },
  3233. "conditionB": {
  3234. "ContainerValue": {
  3235. "Type": "BTVariableAction",
  3236. "VarScope": "Scene",
  3237. "isIllegal": true,
  3238. "randomID": "3gr72KmUfzfv",
  3239. "titleLabel": {
  3240. "Type": "STRING",
  3241. "Value": "奖励倍数",
  3242. "displayName": ""
  3243. }
  3244. },
  3245. "StringValue": {
  3246. "Type": "STRING",
  3247. "Value": "Banana"
  3248. },
  3249. "Type": "BTInputSlot"
  3250. },
  3251. "isIllegal": true,
  3252. "randomID": "j9n5an1GGV5G"
  3253. },
  3254. "StringValue": {
  3255. "Type": "STRING",
  3256. "Value": "x5"
  3257. },
  3258. "Type": "BTInputSlot"
  3259. },
  3260. "Type": "BTSceneLabelTitleAction",
  3261. "baseSelect": {
  3262. "DisplayName": "收集物2数量",
  3263. "Type": "Action",
  3264. "Value": "uRVSN431z7ev"
  3265. },
  3266. "isIllegal": true,
  3267. "randomID": "03S9lIZ7i5cy",
  3268. "redSelect": {
  3269. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3270. "Type": "OBJ",
  3271. "Value": "YCpAoGrLNtxI"
  3272. },
  3273. "stepSlot": {
  3274. "ContainerValue": {
  3275. "Type": "BTSceneSpritePlistAction",
  3276. "baseSelect": {
  3277. "DisplayName": "收集物1位置",
  3278. "Type": "Action",
  3279. "Value": "oascSTl4LURr"
  3280. },
  3281. "frameNameInput": {
  3282. "ContainerValue": {
  3283. "Type": "BTFuncVariableAction",
  3284. "colorName": "More",
  3285. "currentStr": "收集物位置1图片",
  3286. "fatherFuncID": "kQ4bOKYMhx8C",
  3287. "isIllegal": true,
  3288. "randomID": "eB22rlypCGOD",
  3289. "titleLabel": {
  3290. "Type": "STRING",
  3291. "Value": "收集物位置1图片",
  3292. "displayName": ""
  3293. }
  3294. },
  3295. "StringValue": {
  3296. "Type": "STRING",
  3297. "Value": "图片名"
  3298. },
  3299. "Type": "BTInputSlot"
  3300. },
  3301. "isIllegal": true,
  3302. "pathInput": {
  3303. "ContainerValue": {
  3304. "Type": "BTFuncVariableAction",
  3305. "colorName": "More",
  3306. "currentStr": "Plist路径",
  3307. "fatherFuncID": "kQ4bOKYMhx8C",
  3308. "isIllegal": true,
  3309. "randomID": "GTYAlqZbiQ2m",
  3310. "titleLabel": {
  3311. "Type": "STRING",
  3312. "Value": "Plist路径",
  3313. "displayName": ""
  3314. }
  3315. },
  3316. "StringValue": {
  3317. "Type": "STRING",
  3318. "Value": "Plist路径"
  3319. },
  3320. "Type": "BTInputSlot"
  3321. },
  3322. "randomID": "ae6r64fb99E7",
  3323. "redSelect": {
  3324. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3325. "Type": "OBJ",
  3326. "Value": "YCpAoGrLNtxI"
  3327. },
  3328. "stepSlot": {
  3329. "ContainerValue": {
  3330. "Type": "BTSceneSpritePlistAction",
  3331. "baseSelect": {
  3332. "DisplayName": "收集物2位置",
  3333. "Type": "Action",
  3334. "Value": "gXu9oG8KQc31"
  3335. },
  3336. "frameNameInput": {
  3337. "ContainerValue": {
  3338. "Type": "BTFuncVariableAction",
  3339. "colorName": "More",
  3340. "currentStr": "收集物位置2图片",
  3341. "fatherFuncID": "kQ4bOKYMhx8C",
  3342. "isIllegal": true,
  3343. "randomID": "KJGMgGzzOyp5",
  3344. "titleLabel": {
  3345. "Type": "STRING",
  3346. "Value": "收集物位置2图片",
  3347. "displayName": ""
  3348. }
  3349. },
  3350. "StringValue": {
  3351. "Type": "STRING",
  3352. "Value": "图片名"
  3353. },
  3354. "Type": "BTInputSlot"
  3355. },
  3356. "isIllegal": true,
  3357. "pathInput": {
  3358. "ContainerValue": {
  3359. "Type": "BTFuncVariableAction",
  3360. "colorName": "More",
  3361. "currentStr": "Plist路径",
  3362. "fatherFuncID": "kQ4bOKYMhx8C",
  3363. "isIllegal": true,
  3364. "randomID": "Bjhiy1nZm9Ey",
  3365. "titleLabel": {
  3366. "Type": "STRING",
  3367. "Value": "Plist路径",
  3368. "displayName": ""
  3369. }
  3370. },
  3371. "StringValue": {
  3372. "Type": "STRING",
  3373. "Value": "Plist路径"
  3374. },
  3375. "Type": "BTInputSlot"
  3376. },
  3377. "randomID": "I95KjcPIwKOF",
  3378. "redSelect": {
  3379. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3380. "Type": "OBJ",
  3381. "Value": "YCpAoGrLNtxI"
  3382. },
  3383. "stepSlot": {
  3384. "ContainerValue": {
  3385. "Type": "BTSceneSpritePlistAction",
  3386. "baseSelect": {
  3387. "DisplayName": "收集物3位置",
  3388. "Type": "Action",
  3389. "Value": "yjauhyDYIeFC"
  3390. },
  3391. "frameNameInput": {
  3392. "ContainerValue": {
  3393. "Type": "BTFuncVariableAction",
  3394. "colorName": "More",
  3395. "currentStr": "收集物位置3图片",
  3396. "fatherFuncID": "kQ4bOKYMhx8C",
  3397. "isIllegal": true,
  3398. "randomID": "Sh555mE0U5tm",
  3399. "titleLabel": {
  3400. "Type": "STRING",
  3401. "Value": "收集物位置3图片",
  3402. "displayName": ""
  3403. }
  3404. },
  3405. "StringValue": {
  3406. "Type": "STRING",
  3407. "Value": "图片名"
  3408. },
  3409. "Type": "BTInputSlot"
  3410. },
  3411. "isIllegal": true,
  3412. "pathInput": {
  3413. "ContainerValue": {
  3414. "Type": "BTFuncVariableAction",
  3415. "colorName": "More",
  3416. "currentStr": "Plist路径",
  3417. "fatherFuncID": "kQ4bOKYMhx8C",
  3418. "isIllegal": true,
  3419. "randomID": "UUenCglJXupM",
  3420. "titleLabel": {
  3421. "Type": "STRING",
  3422. "Value": "Plist路径",
  3423. "displayName": ""
  3424. }
  3425. },
  3426. "StringValue": {
  3427. "Type": "STRING",
  3428. "Value": "Plist路径"
  3429. },
  3430. "Type": "BTInputSlot"
  3431. },
  3432. "randomID": "CvuLbnBbJIMI",
  3433. "redSelect": {
  3434. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3435. "Type": "OBJ",
  3436. "Value": "YCpAoGrLNtxI"
  3437. },
  3438. "stepSlot": {
  3439. "ContainerValue": {
  3440. "Type": "BTSceneSpritePlistAction",
  3441. "baseSelect": {
  3442. "DisplayName": "收集物4位置",
  3443. "Type": "Action",
  3444. "Value": "sh3dG3v40sWN"
  3445. },
  3446. "frameNameInput": {
  3447. "ContainerValue": {
  3448. "Type": "BTFuncVariableAction",
  3449. "colorName": "More",
  3450. "currentStr": "收集物位置4图片",
  3451. "fatherFuncID": "kQ4bOKYMhx8C",
  3452. "isIllegal": true,
  3453. "randomID": "nlqOWMamUjPg",
  3454. "titleLabel": {
  3455. "Type": "STRING",
  3456. "Value": "收集物位置4图片",
  3457. "displayName": ""
  3458. }
  3459. },
  3460. "StringValue": {
  3461. "Type": "STRING",
  3462. "Value": "图片名"
  3463. },
  3464. "Type": "BTInputSlot"
  3465. },
  3466. "isIllegal": true,
  3467. "pathInput": {
  3468. "ContainerValue": {
  3469. "Type": "BTFuncVariableAction",
  3470. "colorName": "More",
  3471. "currentStr": "Plist路径",
  3472. "fatherFuncID": "kQ4bOKYMhx8C",
  3473. "isIllegal": true,
  3474. "randomID": "ICZH02jRuGde",
  3475. "titleLabel": {
  3476. "Type": "STRING",
  3477. "Value": "Plist路径",
  3478. "displayName": ""
  3479. }
  3480. },
  3481. "StringValue": {
  3482. "Type": "STRING",
  3483. "Value": "Plist路径"
  3484. },
  3485. "Type": "BTInputSlot"
  3486. },
  3487. "randomID": "Cqtt0MKiNRAY",
  3488. "redSelect": {
  3489. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3490. "Type": "OBJ",
  3491. "Value": "YCpAoGrLNtxI"
  3492. },
  3493. "stepSlot": {
  3494. "ContainerValue": {
  3495. "Type": "BTSceneSpritePlistAction",
  3496. "baseSelect": {
  3497. "DisplayName": "收集物5位置",
  3498. "Type": "Action",
  3499. "Value": "yiFBGh2aWLwQ"
  3500. },
  3501. "frameNameInput": {
  3502. "ContainerValue": {
  3503. "Type": "BTFuncVariableAction",
  3504. "colorName": "More",
  3505. "currentStr": "收集物位置5图片",
  3506. "fatherFuncID": "kQ4bOKYMhx8C",
  3507. "isIllegal": true,
  3508. "randomID": "SLFK7xRkojgy",
  3509. "titleLabel": {
  3510. "Type": "STRING",
  3511. "Value": "收集物位置5图片",
  3512. "displayName": ""
  3513. }
  3514. },
  3515. "StringValue": {
  3516. "Type": "STRING",
  3517. "Value": "图片名"
  3518. },
  3519. "Type": "BTInputSlot"
  3520. },
  3521. "isIllegal": true,
  3522. "pathInput": {
  3523. "ContainerValue": {
  3524. "Type": "BTFuncVariableAction",
  3525. "colorName": "More",
  3526. "currentStr": "Plist路径",
  3527. "fatherFuncID": "kQ4bOKYMhx8C",
  3528. "isIllegal": true,
  3529. "randomID": "LgoUEcIeyjTA",
  3530. "titleLabel": {
  3531. "Type": "STRING",
  3532. "Value": "Plist路径",
  3533. "displayName": ""
  3534. }
  3535. },
  3536. "StringValue": {
  3537. "Type": "STRING",
  3538. "Value": "Plist路径"
  3539. },
  3540. "Type": "BTInputSlot"
  3541. },
  3542. "randomID": "QxUjKzX0IFzj",
  3543. "redSelect": {
  3544. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3545. "Type": "OBJ",
  3546. "Value": "YCpAoGrLNtxI"
  3547. },
  3548. "stepSlot": {
  3549. "ContainerValue": {
  3550. "Type": "BTIFControlAction",
  3551. "conditionA": {
  3552. "ContainerValue": {
  3553. "Type": "BTStringEqualOperatorAction",
  3554. "conditionA": {
  3555. "ContainerValue": {
  3556. "Type": "BTFuncVariableAction",
  3557. "colorName": "More",
  3558. "currentStr": "收集物种类",
  3559. "fatherFuncID": "kQ4bOKYMhx8C",
  3560. "isIllegal": true,
  3561. "randomID": "Jl0gGYfJGjrw",
  3562. "titleLabel": {
  3563. "Type": "STRING",
  3564. "Value": "收集物种类",
  3565. "displayName": ""
  3566. }
  3567. },
  3568. "StringValue": {
  3569. "Type": "STRING",
  3570. "Value": "收集物收集倍数"
  3571. },
  3572. "Type": "BTInputSlot"
  3573. },
  3574. "conditionB": {
  3575. "ContainerValue": null,
  3576. "StringValue": {
  3577. "Type": "STRING",
  3578. "Value": "1"
  3579. },
  3580. "Type": "BTInputSlot"
  3581. },
  3582. "isIllegal": true,
  3583. "randomID": "V5tITeBSR7X9"
  3584. },
  3585. "Type": "BTBoolSlot"
  3586. },
  3587. "isIllegal": true,
  3588. "randomID": "AOskhKxrJgmp",
  3589. "sectionA": {
  3590. "ContainerValue": {
  3591. "Type": "BTPlaySceneTimeLineAction",
  3592. "baseSelect": {
  3593. "DisplayName": "收集物1",
  3594. "Type": "Action",
  3595. "Value": "0"
  3596. },
  3597. "isIllegal": true,
  3598. "randomID": "vaMj6SKSlrTv",
  3599. "redSelect": {
  3600. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3601. "Type": "OBJ",
  3602. "Value": "YCpAoGrLNtxI"
  3603. },
  3604. "stepSlot": {
  3605. "ContainerValue": null,
  3606. "Type": "BTStepSlot"
  3607. }
  3608. },
  3609. "Type": "BTSectionSlot"
  3610. },
  3611. "stepSlot": {
  3612. "ContainerValue": {
  3613. "Type": "BTIFControlAction",
  3614. "conditionA": {
  3615. "ContainerValue": {
  3616. "Type": "BTStringEqualOperatorAction",
  3617. "conditionA": {
  3618. "ContainerValue": {
  3619. "Type": "BTFuncVariableAction",
  3620. "colorName": "More",
  3621. "currentStr": "收集物种类",
  3622. "fatherFuncID": "kQ4bOKYMhx8C",
  3623. "isIllegal": true,
  3624. "randomID": "xqvzOwEPYylk",
  3625. "titleLabel": {
  3626. "Type": "STRING",
  3627. "Value": "收集物种类",
  3628. "displayName": ""
  3629. }
  3630. },
  3631. "StringValue": {
  3632. "Type": "STRING",
  3633. "Value": "收集物收集倍数"
  3634. },
  3635. "Type": "BTInputSlot"
  3636. },
  3637. "conditionB": {
  3638. "ContainerValue": null,
  3639. "StringValue": {
  3640. "Type": "STRING",
  3641. "Value": "2"
  3642. },
  3643. "Type": "BTInputSlot"
  3644. },
  3645. "isIllegal": true,
  3646. "randomID": "aBMW4jKQuKnI"
  3647. },
  3648. "Type": "BTBoolSlot"
  3649. },
  3650. "isIllegal": true,
  3651. "randomID": "eicvVj2xR2U2",
  3652. "sectionA": {
  3653. "ContainerValue": {
  3654. "Type": "BTPlaySceneTimeLineAction",
  3655. "baseSelect": {
  3656. "DisplayName": "收集物2",
  3657. "Type": "Action",
  3658. "Value": "1"
  3659. },
  3660. "isIllegal": true,
  3661. "randomID": "jvb644VnkdhM",
  3662. "redSelect": {
  3663. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3664. "Type": "OBJ",
  3665. "Value": "YCpAoGrLNtxI"
  3666. },
  3667. "stepSlot": {
  3668. "ContainerValue": null,
  3669. "Type": "BTStepSlot"
  3670. }
  3671. },
  3672. "Type": "BTSectionSlot"
  3673. },
  3674. "stepSlot": {
  3675. "ContainerValue": {
  3676. "Type": "BTIFControlAction",
  3677. "conditionA": {
  3678. "ContainerValue": {
  3679. "Type": "BTStringEqualOperatorAction",
  3680. "conditionA": {
  3681. "ContainerValue": {
  3682. "Type": "BTFuncVariableAction",
  3683. "colorName": "More",
  3684. "currentStr": "收集物种类",
  3685. "fatherFuncID": "kQ4bOKYMhx8C",
  3686. "isIllegal": true,
  3687. "randomID": "E1Y0UHK9X7Lj",
  3688. "titleLabel": {
  3689. "Type": "STRING",
  3690. "Value": "收集物种类",
  3691. "displayName": ""
  3692. }
  3693. },
  3694. "StringValue": {
  3695. "Type": "STRING",
  3696. "Value": "收集物收集倍数"
  3697. },
  3698. "Type": "BTInputSlot"
  3699. },
  3700. "conditionB": {
  3701. "ContainerValue": null,
  3702. "StringValue": {
  3703. "Type": "STRING",
  3704. "Value": "3"
  3705. },
  3706. "Type": "BTInputSlot"
  3707. },
  3708. "isIllegal": true,
  3709. "randomID": "0wlxUrlcnSoM"
  3710. },
  3711. "Type": "BTBoolSlot"
  3712. },
  3713. "isIllegal": true,
  3714. "randomID": "JW7swulTBcT1",
  3715. "sectionA": {
  3716. "ContainerValue": {
  3717. "Type": "BTPlaySceneTimeLineAction",
  3718. "baseSelect": {
  3719. "DisplayName": "收集物3",
  3720. "Type": "Action",
  3721. "Value": "2"
  3722. },
  3723. "isIllegal": true,
  3724. "randomID": "pGSQONxVkhKd",
  3725. "redSelect": {
  3726. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3727. "Type": "OBJ",
  3728. "Value": "YCpAoGrLNtxI"
  3729. },
  3730. "stepSlot": {
  3731. "ContainerValue": null,
  3732. "Type": "BTStepSlot"
  3733. }
  3734. },
  3735. "Type": "BTSectionSlot"
  3736. },
  3737. "stepSlot": {
  3738. "ContainerValue": {
  3739. "Type": "BTIFControlAction",
  3740. "conditionA": {
  3741. "ContainerValue": {
  3742. "Type": "BTStringEqualOperatorAction",
  3743. "conditionA": {
  3744. "ContainerValue": {
  3745. "Type": "BTFuncVariableAction",
  3746. "colorName": "More",
  3747. "currentStr": "收集物种类",
  3748. "fatherFuncID": "kQ4bOKYMhx8C",
  3749. "isIllegal": true,
  3750. "randomID": "i1r5rANL0lZv",
  3751. "titleLabel": {
  3752. "Type": "STRING",
  3753. "Value": "收集物种类",
  3754. "displayName": ""
  3755. }
  3756. },
  3757. "StringValue": {
  3758. "Type": "STRING",
  3759. "Value": "收集物收集倍数"
  3760. },
  3761. "Type": "BTInputSlot"
  3762. },
  3763. "conditionB": {
  3764. "ContainerValue": null,
  3765. "StringValue": {
  3766. "Type": "STRING",
  3767. "Value": "4"
  3768. },
  3769. "Type": "BTInputSlot"
  3770. },
  3771. "isIllegal": true,
  3772. "randomID": "FzVpcnKsdqK5"
  3773. },
  3774. "Type": "BTBoolSlot"
  3775. },
  3776. "isIllegal": true,
  3777. "randomID": "t9tDuJ46Q0Y7",
  3778. "sectionA": {
  3779. "ContainerValue": {
  3780. "Type": "BTPlaySceneTimeLineAction",
  3781. "baseSelect": {
  3782. "DisplayName": "收集物4",
  3783. "Type": "Action",
  3784. "Value": "3"
  3785. },
  3786. "isIllegal": true,
  3787. "randomID": "jrp3ELBS6j5j",
  3788. "redSelect": {
  3789. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3790. "Type": "OBJ",
  3791. "Value": "YCpAoGrLNtxI"
  3792. },
  3793. "stepSlot": {
  3794. "ContainerValue": null,
  3795. "Type": "BTStepSlot"
  3796. }
  3797. },
  3798. "Type": "BTSectionSlot"
  3799. },
  3800. "stepSlot": {
  3801. "ContainerValue": {
  3802. "Type": "BTIFControlAction",
  3803. "conditionA": {
  3804. "ContainerValue": {
  3805. "Type": "BTStringEqualOperatorAction",
  3806. "conditionA": {
  3807. "ContainerValue": {
  3808. "Type": "BTFuncVariableAction",
  3809. "colorName": "More",
  3810. "currentStr": "收集物种类",
  3811. "fatherFuncID": "kQ4bOKYMhx8C",
  3812. "isIllegal": true,
  3813. "randomID": "QLcWWx230x4W",
  3814. "titleLabel": {
  3815. "Type": "STRING",
  3816. "Value": "收集物种类",
  3817. "displayName": ""
  3818. }
  3819. },
  3820. "StringValue": {
  3821. "Type": "STRING",
  3822. "Value": "收集物收集倍数"
  3823. },
  3824. "Type": "BTInputSlot"
  3825. },
  3826. "conditionB": {
  3827. "ContainerValue": null,
  3828. "StringValue": {
  3829. "Type": "STRING",
  3830. "Value": "5"
  3831. },
  3832. "Type": "BTInputSlot"
  3833. },
  3834. "isIllegal": true,
  3835. "randomID": "oXrI7lyDvzir"
  3836. },
  3837. "Type": "BTBoolSlot"
  3838. },
  3839. "isIllegal": true,
  3840. "randomID": "jIQJ0mZB0mU5",
  3841. "sectionA": {
  3842. "ContainerValue": {
  3843. "Type": "BTPlaySceneTimeLineAction",
  3844. "baseSelect": {
  3845. "DisplayName": "收集物5",
  3846. "Type": "Action",
  3847. "Value": "4"
  3848. },
  3849. "isIllegal": true,
  3850. "randomID": "0rbra5yRRfF7",
  3851. "redSelect": {
  3852. "DisplayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  3853. "Type": "OBJ",
  3854. "Value": "YCpAoGrLNtxI"
  3855. },
  3856. "stepSlot": {
  3857. "ContainerValue": null,
  3858. "Type": "BTStepSlot"
  3859. }
  3860. },
  3861. "Type": "BTSectionSlot"
  3862. },
  3863. "stepSlot": {
  3864. "ContainerValue": {
  3865. "Type": "BTRedShowAction",
  3866. "baseSelect": {
  3867. "DisplayName": "进入3倍动画",
  3868. "Type": "Action",
  3869. "Value": "0"
  3870. },
  3871. "isIllegal": true,
  3872. "randomID": "fJPt0p2WCw90",
  3873. "stepSlot": {
  3874. "ContainerValue": {
  3875. "Type": "BTPlayTimeLineAction",
  3876. "baseSelect": {
  3877. "DisplayName": "进入5倍动画",
  3878. "Type": "Action",
  3879. "Value": "2"
  3880. },
  3881. "isIllegal": true,
  3882. "randomID": "5t0ci3WEz7tk",
  3883. "stepSlot": {
  3884. "ContainerValue": null,
  3885. "Type": "BTStepSlot"
  3886. }
  3887. },
  3888. "Type": "BTStepSlot"
  3889. }
  3890. },
  3891. "Type": "BTStepSlot"
  3892. }
  3893. },
  3894. "Type": "BTStepSlot"
  3895. }
  3896. },
  3897. "Type": "BTStepSlot"
  3898. }
  3899. },
  3900. "Type": "BTStepSlot"
  3901. }
  3902. },
  3903. "Type": "BTStepSlot"
  3904. }
  3905. },
  3906. "Type": "BTStepSlot"
  3907. }
  3908. },
  3909. "Type": "BTStepSlot"
  3910. }
  3911. },
  3912. "Type": "BTStepSlot"
  3913. }
  3914. },
  3915. "Type": "BTStepSlot"
  3916. }
  3917. },
  3918. "Type": "BTStepSlot"
  3919. }
  3920. },
  3921. "Type": "BTStepSlot"
  3922. }
  3923. },
  3924. "Type": "BTStepSlot"
  3925. }
  3926. },
  3927. "Type": "BTStepSlot"
  3928. }
  3929. },
  3930. "Type": "BTStepSlot"
  3931. }
  3932. },
  3933. "Type": "BTStepSlot"
  3934. }
  3935. },
  3936. "Type": "BTStepSlot"
  3937. },
  3938. "x": 1083.5,
  3939. "y": -488
  3940. },
  3941. "Tree4": {
  3942. "ExportTree": true,
  3943. "ImageIndex": 2,
  3944. "Name": {
  3945. "Type": "STRING",
  3946. "Value": "收集物倍数",
  3947. "displayName": ""
  3948. },
  3949. "Type": "BTCustomFuncHeadAction",
  3950. "VarJson": {
  3951. "boolJson": {
  3952. },
  3953. "numberJson": {
  3954. "倍数": "Number"
  3955. }
  3956. },
  3957. "isIllegal": false,
  3958. "randomID": "l6TSwx7SoCyn",
  3959. "stepSlot": {
  3960. "ContainerValue": {
  3961. "TitleInput": {
  3962. "ContainerValue": {
  3963. "Type": "BTFuncVariableAction",
  3964. "colorName": "More",
  3965. "currentStr": "倍数",
  3966. "fatherFuncID": "l6TSwx7SoCyn",
  3967. "isIllegal": true,
  3968. "randomID": "vzGLXWXbq1zH",
  3969. "titleLabel": {
  3970. "Type": "STRING",
  3971. "Value": "倍数",
  3972. "displayName": ""
  3973. }
  3974. },
  3975. "StringValue": {
  3976. "Type": "STRING",
  3977. "Value": "0"
  3978. },
  3979. "Type": "BTInputSlot"
  3980. },
  3981. "Type": "BTDataVarSetAction",
  3982. "VarScope": "Scene",
  3983. "baseSelect": {
  3984. "DisplayName": "奖励倍数",
  3985. "Type": "Action",
  3986. "Value": "奖励倍数"
  3987. },
  3988. "isIllegal": true,
  3989. "randomID": "eDELKguha90c",
  3990. "stepSlot": {
  3991. "ContainerValue": null,
  3992. "Type": "BTStepSlot"
  3993. }
  3994. },
  3995. "Type": "BTStepSlot"
  3996. },
  3997. "x": -731.5,
  3998. "y": -184
  3999. }
  4000. }
  4001. },
  4002. "lVi0jiqV9Awz::YCpAoGrLNtxI": {
  4003. "CustomFunc": {
  4004. },
  4005. "CustomList": {
  4006. },
  4007. "CustomTestFunc": {
  4008. },
  4009. "CustomVar": {
  4010. },
  4011. "DisPlayName": "GoodsMerge_弹窗_文本提示框_奖励物",
  4012. "RedNoteInfo": {
  4013. },
  4014. "TreeList": {
  4015. }
  4016. },
  4017. "miNKvSdeViD9": {
  4018. "CustomFunc": {
  4019. "游戏前道具初始化": [
  4020. [
  4021. "Name",
  4022. "游戏前道具初始化",
  4023. "q2hMIBClDBV2",
  4024. "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red"
  4025. ],
  4026. [
  4027. "BTInputSlot",
  4028. "道具默认状态"
  4029. ],
  4030. [
  4031. "BTInputSlot",
  4032. "解锁等级"
  4033. ],
  4034. [
  4035. "BTInputSlot",
  4036. "道具数量"
  4037. ],
  4038. [
  4039. "BTInputSlot",
  4040. "时效文本"
  4041. ],
  4042. [
  4043. "BTInputSlot",
  4044. "Plist路径"
  4045. ],
  4046. [
  4047. "BTInputSlot",
  4048. "道具图片名"
  4049. ]
  4050. ]
  4051. },
  4052. "CustomList": {
  4053. },
  4054. "CustomTestFunc": {
  4055. },
  4056. "CustomVar": {
  4057. },
  4058. "DisPlayName": "道具按钮1",
  4059. "RedNoteInfo": {
  4060. },
  4061. "TreeList": {
  4062. "Tree0": {
  4063. "ExportTree": true,
  4064. "ImageIndex": 2,
  4065. "Name": {
  4066. "Type": "STRING",
  4067. "Value": "游戏前道具初始化",
  4068. "displayName": ""
  4069. },
  4070. "Type": "BTCustomFuncHeadAction",
  4071. "VarJson": {
  4072. "boolJson": {
  4073. },
  4074. "numberJson": {
  4075. "Plist路径": "Number",
  4076. "时效文本": "Number",
  4077. "解锁等级": "Number",
  4078. "道具图片名": "Number",
  4079. "道具数量": "Number",
  4080. "道具默认状态": "Number"
  4081. }
  4082. },
  4083. "isIllegal": false,
  4084. "randomID": "q2hMIBClDBV2",
  4085. "stepSlot": {
  4086. "ContainerValue": {
  4087. "Type": "BTNodeHiddenAction",
  4088. "baseSelect": {
  4089. "DisplayName": "增加道具模块",
  4090. "Type": "Action",
  4091. "Value": "Ozr3UVNj2Rx6"
  4092. },
  4093. "isIllegal": true,
  4094. "randomID": "nvQFhkfUEv6C",
  4095. "stepSlot": {
  4096. "ContainerValue": {
  4097. "Type": "BTNodeHiddenAction",
  4098. "baseSelect": {
  4099. "DisplayName": "红点模块",
  4100. "Type": "Action",
  4101. "Value": "tm0924bAwzde"
  4102. },
  4103. "isIllegal": true,
  4104. "randomID": "J4R8LKRRHWrs",
  4105. "stepSlot": {
  4106. "ContainerValue": {
  4107. "Type": "BTNodeHiddenAction",
  4108. "baseSelect": {
  4109. "DisplayName": "时段无限使用模块",
  4110. "Type": "Action",
  4111. "Value": "Cu97fOSuVXQT"
  4112. },
  4113. "isIllegal": true,
  4114. "randomID": "i9HQlCF9OYgR",
  4115. "stepSlot": {
  4116. "ContainerValue": {
  4117. "Type": "BTIFControlAction",
  4118. "conditionA": {
  4119. "ContainerValue": {
  4120. "Type": "BTStringEqualOperatorAction",
  4121. "conditionA": {
  4122. "ContainerValue": {
  4123. "Type": "BTFuncVariableAction",
  4124. "colorName": "More",
  4125. "currentStr": "道具默认状态",
  4126. "fatherFuncID": "q2hMIBClDBV2",
  4127. "isIllegal": true,
  4128. "randomID": "dQsEjmGd1gFV",
  4129. "titleLabel": {
  4130. "Type": "STRING",
  4131. "Value": "道具默认状态",
  4132. "displayName": ""
  4133. }
  4134. },
  4135. "StringValue": {
  4136. "Type": "STRING",
  4137. "Value": "Red"
  4138. },
  4139. "Type": "BTInputSlot"
  4140. },
  4141. "conditionB": {
  4142. "ContainerValue": null,
  4143. "StringValue": {
  4144. "Type": "STRING",
  4145. "Value": "道具未解锁"
  4146. },
  4147. "Type": "BTInputSlot"
  4148. },
  4149. "isIllegal": true,
  4150. "randomID": "wOt4HIxqWCts"
  4151. },
  4152. "Type": "BTBoolSlot"
  4153. },
  4154. "isIllegal": true,
  4155. "randomID": "6l0Z6pOM0iKK",
  4156. "sectionA": {
  4157. "ContainerValue": {
  4158. "TitleInput": {
  4159. "ContainerValue": {
  4160. "Type": "BTStringLinkOperatorAction",
  4161. "conditionA": {
  4162. "ContainerValue": null,
  4163. "StringValue": {
  4164. "Type": "STRING",
  4165. "Value": "Lv:"
  4166. },
  4167. "Type": "BTInputSlot"
  4168. },
  4169. "conditionB": {
  4170. "ContainerValue": {
  4171. "Type": "BTFuncVariableAction",
  4172. "colorName": "More",
  4173. "currentStr": "解锁等级",
  4174. "fatherFuncID": "q2hMIBClDBV2",
  4175. "isIllegal": true,
  4176. "randomID": "5EXV69pjbjIJ",
  4177. "titleLabel": {
  4178. "Type": "STRING",
  4179. "Value": "解锁等级",
  4180. "displayName": ""
  4181. }
  4182. },
  4183. "StringValue": {
  4184. "Type": "STRING",
  4185. "Value": "Banana"
  4186. },
  4187. "Type": "BTInputSlot"
  4188. },
  4189. "isIllegal": true,
  4190. "randomID": "aSKxR5so6RVU"
  4191. },
  4192. "StringValue": {
  4193. "Type": "STRING",
  4194. "Value": "填写标题内容"
  4195. },
  4196. "Type": "BTInputSlot"
  4197. },
  4198. "Type": "BTLabelTitleAction",
  4199. "baseSelect": {
  4200. "DisplayName": "解锁等级",
  4201. "Type": "Action",
  4202. "Value": "XVuohG76KVk3"
  4203. },
  4204. "isIllegal": true,
  4205. "randomID": "vXBhJe3oWzZf",
  4206. "stepSlot": {
  4207. "ContainerValue": {
  4208. "Type": "BTRedShowAction",
  4209. "baseSelect": {
  4210. "DisplayName": "常态_未解锁",
  4211. "Type": "Action",
  4212. "Value": "6"
  4213. },
  4214. "isIllegal": true,
  4215. "randomID": "HTr26QuoklFr",
  4216. "stepSlot": {
  4217. "ContainerValue": {
  4218. "Type": "BTPlayTimeLineAction",
  4219. "baseSelect": {
  4220. "DisplayName": "常态_未解锁",
  4221. "Type": "Action",
  4222. "Value": "6"
  4223. },
  4224. "isIllegal": true,
  4225. "randomID": "5nWzimx0j7Ho",
  4226. "stepSlot": {
  4227. "ContainerValue": null,
  4228. "Type": "BTStepSlot"
  4229. }
  4230. },
  4231. "Type": "BTStepSlot"
  4232. }
  4233. },
  4234. "Type": "BTStepSlot"
  4235. }
  4236. },
  4237. "Type": "BTSectionSlot"
  4238. },
  4239. "stepSlot": {
  4240. "ContainerValue": {
  4241. "Type": "BTIFControlAction",
  4242. "conditionA": {
  4243. "ContainerValue": {
  4244. "Type": "BTStringEqualOperatorAction",
  4245. "conditionA": {
  4246. "ContainerValue": {
  4247. "Type": "BTFuncVariableAction",
  4248. "colorName": "More",
  4249. "currentStr": "道具默认状态",
  4250. "fatherFuncID": "q2hMIBClDBV2",
  4251. "isIllegal": true,
  4252. "randomID": "DsXJ4ar7etqZ",
  4253. "titleLabel": {
  4254. "Type": "STRING",
  4255. "Value": "道具默认状态",
  4256. "displayName": ""
  4257. }
  4258. },
  4259. "StringValue": {
  4260. "Type": "STRING",
  4261. "Value": "Red"
  4262. },
  4263. "Type": "BTInputSlot"
  4264. },
  4265. "conditionB": {
  4266. "ContainerValue": null,
  4267. "StringValue": {
  4268. "Type": "STRING",
  4269. "Value": "道具已解锁未获得"
  4270. },
  4271. "Type": "BTInputSlot"
  4272. },
  4273. "isIllegal": true,
  4274. "randomID": "E6NSsJgZs9in"
  4275. },
  4276. "Type": "BTBoolSlot"
  4277. },
  4278. "isIllegal": true,
  4279. "randomID": "jjUOPqYQG3vB",
  4280. "sectionA": {
  4281. "ContainerValue": {
  4282. "Type": "BTSpritePlistAction",
  4283. "baseSelect": {
  4284. "DisplayName": "未选中道具图片",
  4285. "Type": "Action",
  4286. "Value": "udPYPkvH0U3g"
  4287. },
  4288. "frameNameInput": {
  4289. "ContainerValue": {
  4290. "Type": "BTFuncVariableAction",
  4291. "colorName": "More",
  4292. "currentStr": "道具图片名",
  4293. "fatherFuncID": "q2hMIBClDBV2",
  4294. "isIllegal": true,
  4295. "randomID": "9523KWm2K8c8",
  4296. "titleLabel": {
  4297. "Type": "STRING",
  4298. "Value": "道具图片名",
  4299. "displayName": ""
  4300. }
  4301. },
  4302. "StringValue": {
  4303. "Type": "STRING",
  4304. "Value": "图片名"
  4305. },
  4306. "Type": "BTInputSlot"
  4307. },
  4308. "isIllegal": true,
  4309. "pathInput": {
  4310. "ContainerValue": {
  4311. "Type": "BTFuncVariableAction",
  4312. "colorName": "More",
  4313. "currentStr": "Plist路径",
  4314. "fatherFuncID": "q2hMIBClDBV2",
  4315. "isIllegal": true,
  4316. "randomID": "OiBY7CKNgzTB",
  4317. "titleLabel": {
  4318. "Type": "STRING",
  4319. "Value": "Plist路径",
  4320. "displayName": ""
  4321. }
  4322. },
  4323. "StringValue": {
  4324. "Type": "STRING",
  4325. "Value": "Plist路径"
  4326. },
  4327. "Type": "BTInputSlot"
  4328. },
  4329. "randomID": "87UwN5mrQG5x",
  4330. "stepSlot": {
  4331. "ContainerValue": {
  4332. "Type": "BTSpritePlistAction",
  4333. "baseSelect": {
  4334. "DisplayName": "已选中道具图片",
  4335. "Type": "Action",
  4336. "Value": "P0zZUc9sgGYz"
  4337. },
  4338. "frameNameInput": {
  4339. "ContainerValue": {
  4340. "Type": "BTFuncVariableAction",
  4341. "colorName": "More",
  4342. "currentStr": "道具图片名",
  4343. "fatherFuncID": "q2hMIBClDBV2",
  4344. "isIllegal": true,
  4345. "randomID": "Sid4AARsbL7A",
  4346. "titleLabel": {
  4347. "Type": "STRING",
  4348. "Value": "道具图片名",
  4349. "displayName": ""
  4350. }
  4351. },
  4352. "StringValue": {
  4353. "Type": "STRING",
  4354. "Value": "图片名"
  4355. },
  4356. "Type": "BTInputSlot"
  4357. },
  4358. "isIllegal": true,
  4359. "pathInput": {
  4360. "ContainerValue": {
  4361. "Type": "BTFuncVariableAction",
  4362. "colorName": "More",
  4363. "currentStr": "Plist路径",
  4364. "fatherFuncID": "q2hMIBClDBV2",
  4365. "isIllegal": true,
  4366. "randomID": "KKS3KQvTa0qG",
  4367. "titleLabel": {
  4368. "Type": "STRING",
  4369. "Value": "Plist路径",
  4370. "displayName": ""
  4371. }
  4372. },
  4373. "StringValue": {
  4374. "Type": "STRING",
  4375. "Value": "Plist路径"
  4376. },
  4377. "Type": "BTInputSlot"
  4378. },
  4379. "randomID": "r9mymUEslak0",
  4380. "stepSlot": {
  4381. "ContainerValue": {
  4382. "Type": "BTNodeShowAction",
  4383. "baseSelect": {
  4384. "DisplayName": "增加道具模块",
  4385. "Type": "Action",
  4386. "Value": "Ozr3UVNj2Rx6"
  4387. },
  4388. "isIllegal": true,
  4389. "randomID": "6WIBwoW3YBRf",
  4390. "stepSlot": {
  4391. "ContainerValue": {
  4392. "Type": "BTPlayTimeLineAction",
  4393. "baseSelect": {
  4394. "DisplayName": "常态_已解锁_未选中",
  4395. "Type": "Action",
  4396. "Value": "7"
  4397. },
  4398. "isIllegal": true,
  4399. "randomID": "wcqcg4lZ8O4v",
  4400. "stepSlot": {
  4401. "ContainerValue": null,
  4402. "Type": "BTStepSlot"
  4403. }
  4404. },
  4405. "Type": "BTStepSlot"
  4406. }
  4407. },
  4408. "Type": "BTStepSlot"
  4409. }
  4410. },
  4411. "Type": "BTStepSlot"
  4412. }
  4413. },
  4414. "Type": "BTSectionSlot"
  4415. },
  4416. "stepSlot": {
  4417. "ContainerValue": {
  4418. "Type": "BTIFControlAction",
  4419. "conditionA": {
  4420. "ContainerValue": {
  4421. "Type": "BTStringEqualOperatorAction",
  4422. "conditionA": {
  4423. "ContainerValue": {
  4424. "Type": "BTFuncVariableAction",
  4425. "colorName": "More",
  4426. "currentStr": "道具默认状态",
  4427. "fatherFuncID": "q2hMIBClDBV2",
  4428. "isIllegal": true,
  4429. "randomID": "mc4s2tjKY3jh",
  4430. "titleLabel": {
  4431. "Type": "STRING",
  4432. "Value": "道具默认状态",
  4433. "displayName": ""
  4434. }
  4435. },
  4436. "StringValue": {
  4437. "Type": "STRING",
  4438. "Value": "Red"
  4439. },
  4440. "Type": "BTInputSlot"
  4441. },
  4442. "conditionB": {
  4443. "ContainerValue": null,
  4444. "StringValue": {
  4445. "Type": "STRING",
  4446. "Value": "道具已解锁已获得"
  4447. },
  4448. "Type": "BTInputSlot"
  4449. },
  4450. "isIllegal": true,
  4451. "randomID": "KqBKkZJe0k4n"
  4452. },
  4453. "Type": "BTBoolSlot"
  4454. },
  4455. "isIllegal": true,
  4456. "randomID": "nHUZWbpx7ht1",
  4457. "sectionA": {
  4458. "ContainerValue": {
  4459. "Type": "BTSpritePlistAction",
  4460. "baseSelect": {
  4461. "DisplayName": "未选中道具图片",
  4462. "Type": "Action",
  4463. "Value": "udPYPkvH0U3g"
  4464. },
  4465. "frameNameInput": {
  4466. "ContainerValue": {
  4467. "Type": "BTFuncVariableAction",
  4468. "colorName": "More",
  4469. "currentStr": "道具图片名",
  4470. "fatherFuncID": "q2hMIBClDBV2",
  4471. "isIllegal": true,
  4472. "randomID": "2YeOZNQkmeUV",
  4473. "titleLabel": {
  4474. "Type": "STRING",
  4475. "Value": "道具图片名",
  4476. "displayName": ""
  4477. }
  4478. },
  4479. "StringValue": {
  4480. "Type": "STRING",
  4481. "Value": "图片名"
  4482. },
  4483. "Type": "BTInputSlot"
  4484. },
  4485. "isIllegal": true,
  4486. "pathInput": {
  4487. "ContainerValue": {
  4488. "Type": "BTFuncVariableAction",
  4489. "colorName": "More",
  4490. "currentStr": "Plist路径",
  4491. "fatherFuncID": "q2hMIBClDBV2",
  4492. "isIllegal": true,
  4493. "randomID": "I8YqscSzoHeg",
  4494. "titleLabel": {
  4495. "Type": "STRING",
  4496. "Value": "Plist路径",
  4497. "displayName": ""
  4498. }
  4499. },
  4500. "StringValue": {
  4501. "Type": "STRING",
  4502. "Value": "Plist路径"
  4503. },
  4504. "Type": "BTInputSlot"
  4505. },
  4506. "randomID": "Bm34Xz8FNdsb",
  4507. "stepSlot": {
  4508. "ContainerValue": {
  4509. "Type": "BTSpritePlistAction",
  4510. "baseSelect": {
  4511. "DisplayName": "已选中道具图片",
  4512. "Type": "Action",
  4513. "Value": "P0zZUc9sgGYz"
  4514. },
  4515. "frameNameInput": {
  4516. "ContainerValue": {
  4517. "Type": "BTFuncVariableAction",
  4518. "colorName": "More",
  4519. "currentStr": "道具图片名",
  4520. "fatherFuncID": "q2hMIBClDBV2",
  4521. "isIllegal": true,
  4522. "randomID": "Q4vJ7tH5MIM0",
  4523. "titleLabel": {
  4524. "Type": "STRING",
  4525. "Value": "道具图片名",
  4526. "displayName": ""
  4527. }
  4528. },
  4529. "StringValue": {
  4530. "Type": "STRING",
  4531. "Value": "图片名"
  4532. },
  4533. "Type": "BTInputSlot"
  4534. },
  4535. "isIllegal": true,
  4536. "pathInput": {
  4537. "ContainerValue": {
  4538. "Type": "BTFuncVariableAction",
  4539. "colorName": "More",
  4540. "currentStr": "Plist路径",
  4541. "fatherFuncID": "q2hMIBClDBV2",
  4542. "isIllegal": true,
  4543. "randomID": "CB9aMazyCkfs",
  4544. "titleLabel": {
  4545. "Type": "STRING",
  4546. "Value": "Plist路径",
  4547. "displayName": ""
  4548. }
  4549. },
  4550. "StringValue": {
  4551. "Type": "STRING",
  4552. "Value": "Plist路径"
  4553. },
  4554. "Type": "BTInputSlot"
  4555. },
  4556. "randomID": "zO97PWViWq7i",
  4557. "stepSlot": {
  4558. "ContainerValue": {
  4559. "Type": "BTNodeShowAction",
  4560. "baseSelect": {
  4561. "DisplayName": "红点模块",
  4562. "Type": "Action",
  4563. "Value": "tm0924bAwzde"
  4564. },
  4565. "isIllegal": true,
  4566. "randomID": "RWWYh7awW3Ap",
  4567. "stepSlot": {
  4568. "ContainerValue": {
  4569. "TitleInput": {
  4570. "ContainerValue": {
  4571. "Type": "BTFuncVariableAction",
  4572. "colorName": "More",
  4573. "currentStr": "道具数量",
  4574. "fatherFuncID": "q2hMIBClDBV2",
  4575. "isIllegal": true,
  4576. "randomID": "2RTIVjZxmtDd",
  4577. "titleLabel": {
  4578. "Type": "STRING",
  4579. "Value": "道具数量",
  4580. "displayName": ""
  4581. }
  4582. },
  4583. "StringValue": {
  4584. "Type": "STRING",
  4585. "Value": "填写标题内容"
  4586. },
  4587. "Type": "BTInputSlot"
  4588. },
  4589. "Type": "BTLabelTitleAction",
  4590. "baseSelect": {
  4591. "DisplayName": "道具数量",
  4592. "Type": "Action",
  4593. "Value": "VgnvLbYfpABl"
  4594. },
  4595. "isIllegal": true,
  4596. "randomID": "wvdleQBOfBCo",
  4597. "stepSlot": {
  4598. "ContainerValue": {
  4599. "Type": "BTPlayTimeLineAction",
  4600. "baseSelect": {
  4601. "DisplayName": "常态_已解锁_未选中",
  4602. "Type": "Action",
  4603. "Value": "7"
  4604. },
  4605. "isIllegal": true,
  4606. "randomID": "lNQKoVHXp3IL",
  4607. "stepSlot": {
  4608. "ContainerValue": null,
  4609. "Type": "BTStepSlot"
  4610. }
  4611. },
  4612. "Type": "BTStepSlot"
  4613. }
  4614. },
  4615. "Type": "BTStepSlot"
  4616. }
  4617. },
  4618. "Type": "BTStepSlot"
  4619. }
  4620. },
  4621. "Type": "BTStepSlot"
  4622. }
  4623. },
  4624. "Type": "BTSectionSlot"
  4625. },
  4626. "stepSlot": {
  4627. "ContainerValue": {
  4628. "Type": "BTIFControlAction",
  4629. "conditionA": {
  4630. "ContainerValue": {
  4631. "Type": "BTStringEqualOperatorAction",
  4632. "conditionA": {
  4633. "ContainerValue": {
  4634. "Type": "BTFuncVariableAction",
  4635. "colorName": "More",
  4636. "currentStr": "道具默认状态",
  4637. "fatherFuncID": "q2hMIBClDBV2",
  4638. "isIllegal": true,
  4639. "randomID": "fU1Y2StpVtdV",
  4640. "titleLabel": {
  4641. "Type": "STRING",
  4642. "Value": "道具默认状态",
  4643. "displayName": ""
  4644. }
  4645. },
  4646. "StringValue": {
  4647. "Type": "STRING",
  4648. "Value": "Red"
  4649. },
  4650. "Type": "BTInputSlot"
  4651. },
  4652. "conditionB": {
  4653. "ContainerValue": null,
  4654. "StringValue": {
  4655. "Type": "STRING",
  4656. "Value": "道具已解锁已获得_时段"
  4657. },
  4658. "Type": "BTInputSlot"
  4659. },
  4660. "isIllegal": true,
  4661. "randomID": "Btxu1wnm07UP"
  4662. },
  4663. "Type": "BTBoolSlot"
  4664. },
  4665. "isIllegal": true,
  4666. "randomID": "1BpZ5Ho9QB0y",
  4667. "sectionA": {
  4668. "ContainerValue": {
  4669. "Type": "BTSpritePlistAction",
  4670. "baseSelect": {
  4671. "DisplayName": "未选中道具图片",
  4672. "Type": "Action",
  4673. "Value": "udPYPkvH0U3g"
  4674. },
  4675. "frameNameInput": {
  4676. "ContainerValue": {
  4677. "Type": "BTFuncVariableAction",
  4678. "colorName": "More",
  4679. "currentStr": "道具图片名",
  4680. "fatherFuncID": "q2hMIBClDBV2",
  4681. "isIllegal": true,
  4682. "randomID": "EJWGaiyz1VbL",
  4683. "titleLabel": {
  4684. "Type": "STRING",
  4685. "Value": "道具图片名",
  4686. "displayName": ""
  4687. }
  4688. },
  4689. "StringValue": {
  4690. "Type": "STRING",
  4691. "Value": "图片名"
  4692. },
  4693. "Type": "BTInputSlot"
  4694. },
  4695. "isIllegal": true,
  4696. "pathInput": {
  4697. "ContainerValue": {
  4698. "Type": "BTFuncVariableAction",
  4699. "colorName": "More",
  4700. "currentStr": "Plist路径",
  4701. "fatherFuncID": "q2hMIBClDBV2",
  4702. "isIllegal": true,
  4703. "randomID": "KIL9vygqhsoS",
  4704. "titleLabel": {
  4705. "Type": "STRING",
  4706. "Value": "Plist路径",
  4707. "displayName": ""
  4708. }
  4709. },
  4710. "StringValue": {
  4711. "Type": "STRING",
  4712. "Value": "Plist路径"
  4713. },
  4714. "Type": "BTInputSlot"
  4715. },
  4716. "randomID": "MBgh90lzZuVX",
  4717. "stepSlot": {
  4718. "ContainerValue": {
  4719. "Type": "BTSpritePlistAction",
  4720. "baseSelect": {
  4721. "DisplayName": "已选中道具图片",
  4722. "Type": "Action",
  4723. "Value": "P0zZUc9sgGYz"
  4724. },
  4725. "frameNameInput": {
  4726. "ContainerValue": {
  4727. "Type": "BTFuncVariableAction",
  4728. "colorName": "More",
  4729. "currentStr": "道具图片名",
  4730. "fatherFuncID": "q2hMIBClDBV2",
  4731. "isIllegal": true,
  4732. "randomID": "hoYxMgAfwIrI",
  4733. "titleLabel": {
  4734. "Type": "STRING",
  4735. "Value": "道具图片名",
  4736. "displayName": ""
  4737. }
  4738. },
  4739. "StringValue": {
  4740. "Type": "STRING",
  4741. "Value": "图片名"
  4742. },
  4743. "Type": "BTInputSlot"
  4744. },
  4745. "isIllegal": true,
  4746. "pathInput": {
  4747. "ContainerValue": {
  4748. "Type": "BTFuncVariableAction",
  4749. "colorName": "More",
  4750. "currentStr": "Plist路径",
  4751. "fatherFuncID": "q2hMIBClDBV2",
  4752. "isIllegal": true,
  4753. "randomID": "G5S79Cgn7SdT",
  4754. "titleLabel": {
  4755. "Type": "STRING",
  4756. "Value": "Plist路径",
  4757. "displayName": ""
  4758. }
  4759. },
  4760. "StringValue": {
  4761. "Type": "STRING",
  4762. "Value": "Plist路径"
  4763. },
  4764. "Type": "BTInputSlot"
  4765. },
  4766. "randomID": "BaaQB8lmkY6q",
  4767. "stepSlot": {
  4768. "ContainerValue": {
  4769. "Type": "BTPlayTimeLineAction",
  4770. "baseSelect": {
  4771. "DisplayName": "常态_已解锁_已选中",
  4772. "Type": "Action",
  4773. "Value": "8"
  4774. },
  4775. "isIllegal": true,
  4776. "randomID": "3KrfUxuoXzos",
  4777. "stepSlot": {
  4778. "ContainerValue": {
  4779. "Type": "BTNodeShowAction",
  4780. "baseSelect": {
  4781. "DisplayName": "时段无限使用模块",
  4782. "Type": "Action",
  4783. "Value": "Cu97fOSuVXQT"
  4784. },
  4785. "isIllegal": true,
  4786. "randomID": "IcnQL7zsuXgD",
  4787. "stepSlot": {
  4788. "ContainerValue": null,
  4789. "Type": "BTStepSlot"
  4790. }
  4791. },
  4792. "Type": "BTStepSlot"
  4793. }
  4794. },
  4795. "Type": "BTStepSlot"
  4796. }
  4797. },
  4798. "Type": "BTStepSlot"
  4799. }
  4800. },
  4801. "Type": "BTSectionSlot"
  4802. },
  4803. "stepSlot": {
  4804. "ContainerValue": null,
  4805. "Type": "BTStepSlot"
  4806. }
  4807. },
  4808. "Type": "BTStepSlot"
  4809. }
  4810. },
  4811. "Type": "BTStepSlot"
  4812. }
  4813. },
  4814. "Type": "BTStepSlot"
  4815. }
  4816. },
  4817. "Type": "BTStepSlot"
  4818. }
  4819. },
  4820. "Type": "BTStepSlot"
  4821. }
  4822. },
  4823. "Type": "BTStepSlot"
  4824. }
  4825. },
  4826. "Type": "BTStepSlot"
  4827. },
  4828. "x": 415.5,
  4829. "y": -4
  4830. }
  4831. }
  4832. },
  4833. "oy6rfCPR5S9h": {
  4834. "CustomFunc": {
  4835. },
  4836. "CustomList": {
  4837. },
  4838. "CustomTestFunc": {
  4839. },
  4840. "CustomVar": {
  4841. },
  4842. "DisPlayName": "道具循环标签",
  4843. "RedNoteInfo": {
  4844. },
  4845. "TreeList": {
  4846. }
  4847. }
  4848. },
  4849. "RedNoteInfo": {
  4850. },
  4851. "TreeList": {
  4852. "Tree0": {
  4853. "ExportTree": true,
  4854. "ImageIndex": 2,
  4855. "Name": {
  4856. "Type": "STRING",
  4857. "Value": "关卡进入",
  4858. "displayName": ""
  4859. },
  4860. "Type": "BTCustomFuncHeadAction",
  4861. "VarJson": {
  4862. "boolJson": {
  4863. },
  4864. "numberJson": {
  4865. }
  4866. },
  4867. "isIllegal": false,
  4868. "randomID": "wF1wtWEJhOGm",
  4869. "stepSlot": {
  4870. "ContainerValue": {
  4871. "Type": "BTButtonEnableAction",
  4872. "baseSelect": {
  4873. "DisplayName": "全屏关闭按钮",
  4874. "Type": "Action",
  4875. "Value": "DTxdzzOCvTIN"
  4876. },
  4877. "enableButton": {
  4878. "Type": "BTCheckBox",
  4879. "isEnable": true
  4880. },
  4881. "isIllegal": true,
  4882. "randomID": "yqljjTllfuSh",
  4883. "stepSlot": {
  4884. "ContainerValue": {
  4885. "Type": "BTButtonEnableAction",
  4886. "baseSelect": {
  4887. "DisplayName": "游戏开始_道具未解锁",
  4888. "Type": "Action",
  4889. "Value": "fufh4FcDRba5"
  4890. },
  4891. "enableButton": {
  4892. "Type": "BTCheckBox",
  4893. "isEnable": true
  4894. },
  4895. "isIllegal": true,
  4896. "randomID": "trh1akTcKvL7",
  4897. "stepSlot": {
  4898. "ContainerValue": {
  4899. "Type": "BTButtonEnableAction",
  4900. "baseSelect": {
  4901. "DisplayName": "关闭按钮",
  4902. "Type": "Action",
  4903. "Value": "T58ipYJ3q0G2"
  4904. },
  4905. "enableButton": {
  4906. "Type": "BTCheckBox",
  4907. "isEnable": true
  4908. },
  4909. "isIllegal": true,
  4910. "randomID": "8acpi6vdOip3",
  4911. "stepSlot": {
  4912. "ContainerValue": {
  4913. "Type": "BTButtonEnableAction",
  4914. "baseSelect": {
  4915. "DisplayName": "全屏关闭按钮",
  4916. "Type": "Action",
  4917. "Value": "DTxdzzOCvTIN"
  4918. },
  4919. "enableButton": {
  4920. "Type": "BTCheckBox",
  4921. "isEnable": true
  4922. },
  4923. "isIllegal": true,
  4924. "randomID": "lRdBKz9kuqJb",
  4925. "stepSlot": {
  4926. "ContainerValue": {
  4927. "Type": "BTButtonEnableAction",
  4928. "baseSelect": {
  4929. "DisplayName": "道具已解锁_游戏开始按钮",
  4930. "Type": "Action",
  4931. "Value": "mrGvncEssDgR"
  4932. },
  4933. "enableButton": {
  4934. "Type": "BTCheckBox",
  4935. "isEnable": true
  4936. },
  4937. "isIllegal": true,
  4938. "randomID": "x2f69EQIvtB5",
  4939. "stepSlot": {
  4940. "ContainerValue": {
  4941. "Type": "BTNotifiSceneNodeToCoderAction",
  4942. "baseSelect": {
  4943. "DisplayName": "时效文本",
  4944. "Type": "Action",
  4945. "Value": "tscXYDElm19g"
  4946. },
  4947. "conditionA": {
  4948. "ContainerValue": null,
  4949. "StringValue": {
  4950. "Type": "STRING",
  4951. "Value": "游戏前道具1_时效文本"
  4952. },
  4953. "Type": "BTInputSlot"
  4954. },
  4955. "isIllegal": true,
  4956. "paramA": {
  4957. "ContainerValue": null,
  4958. "StringValue": {
  4959. "Type": "STRING",
  4960. "Value": "1"
  4961. },
  4962. "Type": "BTInputSlot"
  4963. },
  4964. "randomID": "RBYeyDNwIgsu",
  4965. "redSelect": {
  4966. "DisplayName": "道具按钮1",
  4967. "Type": "OBJ",
  4968. "Value": "miNKvSdeViD9"
  4969. },
  4970. "stepSlot": {
  4971. "ContainerValue": {
  4972. "Type": "BTNotifiSceneNodeToCoderAction",
  4973. "baseSelect": {
  4974. "DisplayName": "时效文本",
  4975. "Type": "Action",
  4976. "Value": "tscXYDElm19g"
  4977. },
  4978. "conditionA": {
  4979. "ContainerValue": null,
  4980. "StringValue": {
  4981. "Type": "STRING",
  4982. "Value": "游戏前道具2_时效文本"
  4983. },
  4984. "Type": "BTInputSlot"
  4985. },
  4986. "isIllegal": true,
  4987. "paramA": {
  4988. "ContainerValue": null,
  4989. "StringValue": {
  4990. "Type": "STRING",
  4991. "Value": "1"
  4992. },
  4993. "Type": "BTInputSlot"
  4994. },
  4995. "randomID": "KGoPRPHDL23k",
  4996. "redSelect": {
  4997. "DisplayName": "道具按钮2",
  4998. "Type": "OBJ",
  4999. "Value": "YmYHnGK7GDWr"
  5000. },
  5001. "stepSlot": {
  5002. "ContainerValue": {
  5003. "Type": "BTNotifiSceneNodeToCoderAction",
  5004. "baseSelect": {
  5005. "DisplayName": "时效文本",
  5006. "Type": "Action",
  5007. "Value": "tscXYDElm19g"
  5008. },
  5009. "conditionA": {
  5010. "ContainerValue": null,
  5011. "StringValue": {
  5012. "Type": "STRING",
  5013. "Value": "游戏前道具3_时效文本"
  5014. },
  5015. "Type": "BTInputSlot"
  5016. },
  5017. "isIllegal": true,
  5018. "paramA": {
  5019. "ContainerValue": null,
  5020. "StringValue": {
  5021. "Type": "STRING",
  5022. "Value": "1"
  5023. },
  5024. "Type": "BTInputSlot"
  5025. },
  5026. "randomID": "OIKZrcxmTa1Q",
  5027. "redSelect": {
  5028. "DisplayName": "道具按钮3",
  5029. "Type": "OBJ",
  5030. "Value": "Xuuh1MncKir7"
  5031. },
  5032. "stepSlot": {
  5033. "ContainerValue": {
  5034. "Name": {
  5035. "Type": "STRING",
  5036. "Value": "刷新游戏前道具状态",
  5037. "displayName": ""
  5038. },
  5039. "Type": "BTCustomFuncBodyAction",
  5040. "funcHeadID": "z4Kg8GWAc9je",
  5041. "isIllegal": true,
  5042. "paramArr": [
  5043. ],
  5044. "randomID": "zQf5zlmkgaRc",
  5045. "stepSlot": {
  5046. "ContainerValue": {
  5047. "Name": {
  5048. "Type": "STRING",
  5049. "Value": "按钮显示状态",
  5050. "displayName": ""
  5051. },
  5052. "Type": "BTCustomFuncBodyAction",
  5053. "funcHeadID": "AVaxZpI23SGx",
  5054. "isIllegal": true,
  5055. "paramArr": [
  5056. ],
  5057. "randomID": "9GRRnwUldPXy",
  5058. "stepSlot": {
  5059. "ContainerValue": {
  5060. "Name": {
  5061. "Type": "STRING",
  5062. "Value": "循环标签图片设置",
  5063. "displayName": ""
  5064. },
  5065. "Type": "BTCustomFuncBodyAction",
  5066. "funcHeadID": "DN2tPz8aLvVp",
  5067. "isIllegal": true,
  5068. "paramArr": [
  5069. ],
  5070. "randomID": "UWaXUqeMj4w6",
  5071. "stepSlot": {
  5072. "ContainerValue": {
  5073. "Type": "BTSceneNodeShowAction",
  5074. "baseSelect": {
  5075. "DisplayName": "橙色win文字",
  5076. "Type": "Action",
  5077. "Value": "5KJjSyZQCxJE"
  5078. },
  5079. "isIllegal": true,
  5080. "randomID": "cOkQfPHsa8Em",
  5081. "redSelect": {
  5082. "DisplayName": "连胜任务栏",
  5083. "Type": "OBJ",
  5084. "Value": "M5e9fX6ZLhzf"
  5085. },
  5086. "stepSlot": {
  5087. "ContainerValue": {
  5088. "Type": "BTSceneSpritePlistAction",
  5089. "baseSelect": {
  5090. "DisplayName": "连胜任务详情按钮图标",
  5091. "Type": "Action",
  5092. "Value": "QlhwxjcAMBw7"
  5093. },
  5094. "frameNameInput": {
  5095. "ContainerValue": null,
  5096. "StringValue": {
  5097. "Type": "STRING",
  5098. "Value": "GoodsMerge_连胜任务_详情按钮_橙色.png"
  5099. },
  5100. "Type": "BTInputSlot"
  5101. },
  5102. "isIllegal": true,
  5103. "pathInput": {
  5104. "ContainerValue": null,
  5105. "StringValue": {
  5106. "Type": "STRING",
  5107. "Value": "GoodsMerge_游戏UI资源.plist"
  5108. },
  5109. "Type": "BTInputSlot"
  5110. },
  5111. "randomID": "qJvWEu5IzjM0",
  5112. "redSelect": {
  5113. "DisplayName": "连胜任务栏",
  5114. "Type": "OBJ",
  5115. "Value": "M5e9fX6ZLhzf"
  5116. },
  5117. "stepSlot": {
  5118. "ContainerValue": {
  5119. "Type": "BTSceneSpritePlistAction",
  5120. "baseSelect": {
  5121. "DisplayName": "时间信息框_底图",
  5122. "Type": "Action",
  5123. "Value": "ZrmJoG6vgwhq"
  5124. },
  5125. "frameNameInput": {
  5126. "ContainerValue": null,
  5127. "StringValue": {
  5128. "Type": "STRING",
  5129. "Value": "GoodsMerge_连胜任务_时间信息框_橙色.png"
  5130. },
  5131. "Type": "BTInputSlot"
  5132. },
  5133. "isIllegal": true,
  5134. "pathInput": {
  5135. "ContainerValue": null,
  5136. "StringValue": {
  5137. "Type": "STRING",
  5138. "Value": "GoodsMerge_游戏UI资源.plist"
  5139. },
  5140. "Type": "BTInputSlot"
  5141. },
  5142. "randomID": "9z5LBtfq6vqq",
  5143. "redSelect": {
  5144. "DisplayName": "连胜任务栏",
  5145. "Type": "OBJ",
  5146. "Value": "M5e9fX6ZLhzf"
  5147. },
  5148. "stepSlot": {
  5149. "ContainerValue": {
  5150. "TitleInput": {
  5151. "ContainerValue": {
  5152. "Type": "BTStringLinkOperatorAction",
  5153. "conditionA": {
  5154. "ContainerValue": null,
  5155. "StringValue": {
  5156. "Type": "STRING",
  5157. "Value": "x "
  5158. },
  5159. "Type": "BTInputSlot"
  5160. },
  5161. "conditionB": {
  5162. "ContainerValue": {
  5163. "Type": "BTCoderVariableAction",
  5164. "VarScope": "Scene",
  5165. "isIllegal": true,
  5166. "randomID": "jiTvcsYHsNu9",
  5167. "titleLabel": {
  5168. "Type": "STRING",
  5169. "Value": "P-收集物倍数",
  5170. "displayName": ""
  5171. }
  5172. },
  5173. "StringValue": {
  5174. "Type": "STRING",
  5175. "Value": "Banana"
  5176. },
  5177. "Type": "BTInputSlot"
  5178. },
  5179. "isIllegal": true,
  5180. "randomID": "pjsmcN83Hm5w"
  5181. },
  5182. "StringValue": {
  5183. "Type": "STRING",
  5184. "Value": "填写标题内容"
  5185. },
  5186. "Type": "BTInputSlot"
  5187. },
  5188. "Type": "BTSceneLabelTitleAction",
  5189. "baseSelect": {
  5190. "DisplayName": "困难奖励倍数",
  5191. "Type": "Action",
  5192. "Value": "biNwBMb0EPGR"
  5193. },
  5194. "isIllegal": true,
  5195. "randomID": "HqyYy4BcmUOY",
  5196. "redSelect": {
  5197. "DisplayName": "GoodsMerge_弹窗_难度标签",
  5198. "Type": "OBJ",
  5199. "Value": "kNrJkvZP4N1R"
  5200. },
  5201. "stepSlot": {
  5202. "ContainerValue": {
  5203. "TitleInput": {
  5204. "ContainerValue": {
  5205. "Type": "BTStringLinkOperatorAction",
  5206. "conditionA": {
  5207. "ContainerValue": null,
  5208. "StringValue": {
  5209. "Type": "STRING",
  5210. "Value": "Level"
  5211. },
  5212. "Type": "BTInputSlot"
  5213. },
  5214. "conditionB": {
  5215. "ContainerValue": {
  5216. "Type": "BTCoderVariableAction",
  5217. "VarScope": "Scene",
  5218. "isIllegal": true,
  5219. "randomID": "LewVHwnq6HtL",
  5220. "titleLabel": {
  5221. "Type": "STRING",
  5222. "Value": "P-关卡数",
  5223. "displayName": ""
  5224. }
  5225. },
  5226. "StringValue": {
  5227. "Type": "STRING",
  5228. "Value": ""
  5229. },
  5230. "Type": "BTInputSlot"
  5231. },
  5232. "isIllegal": true,
  5233. "randomID": "t2FRj4slFJsl"
  5234. },
  5235. "StringValue": {
  5236. "Type": "STRING",
  5237. "Value": "填写标题内容"
  5238. },
  5239. "Type": "BTInputSlot"
  5240. },
  5241. "Type": "BTLabelTitleAction",
  5242. "baseSelect": {
  5243. "DisplayName": "关卡数",
  5244. "Type": "Action",
  5245. "Value": "Jk9QZlMmEqgT"
  5246. },
  5247. "isIllegal": true,
  5248. "randomID": "tWLO95UjkNDJ",
  5249. "stepSlot": {
  5250. "ContainerValue": {
  5251. "TitleInput": {
  5252. "ContainerValue": {
  5253. "Type": "BTCoderVariableAction",
  5254. "VarScope": "Scene",
  5255. "isIllegal": true,
  5256. "randomID": "DqP0OptWF9Ye",
  5257. "titleLabel": {
  5258. "Type": "STRING",
  5259. "Value": "P-开始游戏文本",
  5260. "displayName": ""
  5261. }
  5262. },
  5263. "StringValue": {
  5264. "Type": "STRING",
  5265. "Value": "填写标题内容"
  5266. },
  5267. "Type": "BTInputSlot"
  5268. },
  5269. "Type": "BTLabelTitleAction",
  5270. "baseSelect": {
  5271. "DisplayName": "开始游戏文本",
  5272. "Type": "Action",
  5273. "Value": "uibnREgOZC2C"
  5274. },
  5275. "isIllegal": true,
  5276. "randomID": "aMCRaCknXb35",
  5277. "stepSlot": {
  5278. "ContainerValue": {
  5279. "TitleInput": {
  5280. "ContainerValue": {
  5281. "Type": "BTCoderVariableAction",
  5282. "VarScope": "Scene",
  5283. "isIllegal": true,
  5284. "randomID": "2nFSTvaX4CZy",
  5285. "titleLabel": {
  5286. "Type": "STRING",
  5287. "Value": "P-开始游戏文本",
  5288. "displayName": ""
  5289. }
  5290. },
  5291. "StringValue": {
  5292. "Type": "STRING",
  5293. "Value": "填写标题内容"
  5294. },
  5295. "Type": "BTInputSlot"
  5296. },
  5297. "Type": "BTLabelTitleAction",
  5298. "baseSelect": {
  5299. "DisplayName": "道具未解锁开始游戏文本",
  5300. "Type": "Action",
  5301. "Value": "T84HsL9wPgSF"
  5302. },
  5303. "isIllegal": true,
  5304. "randomID": "1SRTDOC2rULb",
  5305. "stepSlot": {
  5306. "ContainerValue": {
  5307. "Name": {
  5308. "Type": "STRING",
  5309. "Value": "连胜状态",
  5310. "displayName": ""
  5311. },
  5312. "Type": "BTCustomFuncBodyAction",
  5313. "funcHeadID": "xIHMKDvCj4iV",
  5314. "isIllegal": true,
  5315. "paramArr": [
  5316. ],
  5317. "randomID": "ASS207cywB5v",
  5318. "stepSlot": {
  5319. "ContainerValue": {
  5320. "Type": "BTPlayTimeLineAction",
  5321. "baseSelect": {
  5322. "DisplayName": "进入动画",
  5323. "Type": "Action",
  5324. "Value": "0"
  5325. },
  5326. "isIllegal": true,
  5327. "randomID": "0w8SjyM8bNni",
  5328. "stepSlot": {
  5329. "ContainerValue": null,
  5330. "Type": "BTStepSlot"
  5331. }
  5332. },
  5333. "Type": "BTStepSlot"
  5334. }
  5335. },
  5336. "Type": "BTStepSlot"
  5337. }
  5338. },
  5339. "Type": "BTStepSlot"
  5340. }
  5341. },
  5342. "Type": "BTStepSlot"
  5343. }
  5344. },
  5345. "Type": "BTStepSlot"
  5346. }
  5347. },
  5348. "Type": "BTStepSlot"
  5349. }
  5350. },
  5351. "Type": "BTStepSlot"
  5352. }
  5353. },
  5354. "Type": "BTStepSlot"
  5355. }
  5356. },
  5357. "Type": "BTStepSlot"
  5358. }
  5359. },
  5360. "Type": "BTStepSlot"
  5361. }
  5362. },
  5363. "Type": "BTStepSlot"
  5364. }
  5365. },
  5366. "Type": "BTStepSlot"
  5367. }
  5368. },
  5369. "Type": "BTStepSlot"
  5370. }
  5371. },
  5372. "Type": "BTStepSlot"
  5373. }
  5374. },
  5375. "Type": "BTStepSlot"
  5376. }
  5377. },
  5378. "Type": "BTStepSlot"
  5379. }
  5380. },
  5381. "Type": "BTStepSlot"
  5382. }
  5383. },
  5384. "Type": "BTStepSlot"
  5385. }
  5386. },
  5387. "Type": "BTStepSlot"
  5388. }
  5389. },
  5390. "Type": "BTStepSlot"
  5391. },
  5392. "x": -273.1635982569055,
  5393. "y": -654.9805142967917
  5394. },
  5395. "Tree1": {
  5396. "ExportTree": true,
  5397. "ImageIndex": 1,
  5398. "Name": {
  5399. "Type": "STRING",
  5400. "Value": "连胜状态",
  5401. "displayName": ""
  5402. },
  5403. "Type": "BTCustomFuncHeadAction",
  5404. "VarJson": {
  5405. "boolJson": {
  5406. },
  5407. "numberJson": {
  5408. }
  5409. },
  5410. "isIllegal": false,
  5411. "randomID": "xIHMKDvCj4iV",
  5412. "stepSlot": {
  5413. "ContainerValue": {
  5414. "Type": "BTIFControlAction",
  5415. "conditionA": {
  5416. "ContainerValue": {
  5417. "Type": "BTEqualOperatorAction",
  5418. "conditionA": {
  5419. "ContainerValue": {
  5420. "Type": "BTCoderVariableAction",
  5421. "VarScope": "Scene",
  5422. "isIllegal": true,
  5423. "randomID": "enJr2f8CZ4dd",
  5424. "titleLabel": {
  5425. "Type": "STRING",
  5426. "Value": "P-连胜次数",
  5427. "displayName": ""
  5428. }
  5429. },
  5430. "StringValue": {
  5431. "Type": "FLOAT",
  5432. "Value": 0
  5433. },
  5434. "Type": "BTInputSlot"
  5435. },
  5436. "conditionB": {
  5437. "ContainerValue": null,
  5438. "StringValue": {
  5439. "Type": "FLOAT",
  5440. "Value": 0
  5441. },
  5442. "Type": "BTInputSlot"
  5443. },
  5444. "isIllegal": true,
  5445. "randomID": "DGNauRYOD988"
  5446. },
  5447. "Type": "BTBoolSlot"
  5448. },
  5449. "isIllegal": true,
  5450. "randomID": "j58xGOLr38sM",
  5451. "sectionA": {
  5452. "ContainerValue": {
  5453. "Type": "BTPlaySceneTimeLineAction",
  5454. "baseSelect": {
  5455. "DisplayName": "常态_进度阶段0",
  5456. "Type": "Action",
  5457. "Value": "0"
  5458. },
  5459. "isIllegal": true,
  5460. "randomID": "Er57ooliAZwG",
  5461. "redSelect": {
  5462. "DisplayName": "连胜任务栏",
  5463. "Type": "OBJ",
  5464. "Value": "M5e9fX6ZLhzf"
  5465. },
  5466. "stepSlot": {
  5467. "ContainerValue": null,
  5468. "Type": "BTStepSlot"
  5469. }
  5470. },
  5471. "Type": "BTSectionSlot"
  5472. },
  5473. "stepSlot": {
  5474. "ContainerValue": {
  5475. "Type": "BTIFControlAction",
  5476. "conditionA": {
  5477. "ContainerValue": {
  5478. "Type": "BTEqualOperatorAction",
  5479. "conditionA": {
  5480. "ContainerValue": {
  5481. "Type": "BTCoderVariableAction",
  5482. "VarScope": "Scene",
  5483. "isIllegal": true,
  5484. "randomID": "ccJMNbqO7wwu",
  5485. "titleLabel": {
  5486. "Type": "STRING",
  5487. "Value": "P-连胜次数",
  5488. "displayName": ""
  5489. }
  5490. },
  5491. "StringValue": {
  5492. "Type": "FLOAT",
  5493. "Value": 0
  5494. },
  5495. "Type": "BTInputSlot"
  5496. },
  5497. "conditionB": {
  5498. "ContainerValue": null,
  5499. "StringValue": {
  5500. "Type": "FLOAT",
  5501. "Value": 1
  5502. },
  5503. "Type": "BTInputSlot"
  5504. },
  5505. "isIllegal": true,
  5506. "randomID": "S9C4yKQUijUr"
  5507. },
  5508. "Type": "BTBoolSlot"
  5509. },
  5510. "isIllegal": true,
  5511. "randomID": "VBZF8K5xidS0",
  5512. "sectionA": {
  5513. "ContainerValue": {
  5514. "Type": "BTPlaySceneTimeLineAction",
  5515. "baseSelect": {
  5516. "DisplayName": "动画_阶段0到1",
  5517. "Type": "Action",
  5518. "Value": "7"
  5519. },
  5520. "isIllegal": true,
  5521. "randomID": "QgZlnekLfsal",
  5522. "redSelect": {
  5523. "DisplayName": "连胜任务栏",
  5524. "Type": "OBJ",
  5525. "Value": "M5e9fX6ZLhzf"
  5526. },
  5527. "stepSlot": {
  5528. "ContainerValue": null,
  5529. "Type": "BTStepSlot"
  5530. }
  5531. },
  5532. "Type": "BTSectionSlot"
  5533. },
  5534. "stepSlot": {
  5535. "ContainerValue": {
  5536. "Type": "BTIFControlAction",
  5537. "conditionA": {
  5538. "ContainerValue": {
  5539. "Type": "BTEqualOperatorAction",
  5540. "conditionA": {
  5541. "ContainerValue": {
  5542. "Type": "BTCoderVariableAction",
  5543. "VarScope": "Scene",
  5544. "isIllegal": true,
  5545. "randomID": "4FFqfL8iiEDp",
  5546. "titleLabel": {
  5547. "Type": "STRING",
  5548. "Value": "P-连胜次数",
  5549. "displayName": ""
  5550. }
  5551. },
  5552. "StringValue": {
  5553. "Type": "FLOAT",
  5554. "Value": 0
  5555. },
  5556. "Type": "BTInputSlot"
  5557. },
  5558. "conditionB": {
  5559. "ContainerValue": null,
  5560. "StringValue": {
  5561. "Type": "FLOAT",
  5562. "Value": 2
  5563. },
  5564. "Type": "BTInputSlot"
  5565. },
  5566. "isIllegal": true,
  5567. "randomID": "Tb5LjBqvno10"
  5568. },
  5569. "Type": "BTBoolSlot"
  5570. },
  5571. "isIllegal": true,
  5572. "randomID": "OqqRfvEHmMn3",
  5573. "sectionA": {
  5574. "ContainerValue": {
  5575. "Type": "BTPlaySceneTimeLineAction",
  5576. "baseSelect": {
  5577. "DisplayName": "动画_阶段1到2",
  5578. "Type": "Action",
  5579. "Value": "8"
  5580. },
  5581. "isIllegal": true,
  5582. "randomID": "o0aXgX9UxV3W",
  5583. "redSelect": {
  5584. "DisplayName": "连胜任务栏",
  5585. "Type": "OBJ",
  5586. "Value": "M5e9fX6ZLhzf"
  5587. },
  5588. "stepSlot": {
  5589. "ContainerValue": null,
  5590. "Type": "BTStepSlot"
  5591. }
  5592. },
  5593. "Type": "BTSectionSlot"
  5594. },
  5595. "stepSlot": {
  5596. "ContainerValue": {
  5597. "Type": "BTIFControlAction",
  5598. "conditionA": {
  5599. "ContainerValue": {
  5600. "Type": "BTEqualOperatorAction",
  5601. "conditionA": {
  5602. "ContainerValue": {
  5603. "Type": "BTCoderVariableAction",
  5604. "VarScope": "Scene",
  5605. "isIllegal": true,
  5606. "randomID": "B0KmiQcMyQ43",
  5607. "titleLabel": {
  5608. "Type": "STRING",
  5609. "Value": "P-连胜次数",
  5610. "displayName": ""
  5611. }
  5612. },
  5613. "StringValue": {
  5614. "Type": "FLOAT",
  5615. "Value": 0
  5616. },
  5617. "Type": "BTInputSlot"
  5618. },
  5619. "conditionB": {
  5620. "ContainerValue": null,
  5621. "StringValue": {
  5622. "Type": "FLOAT",
  5623. "Value": 3
  5624. },
  5625. "Type": "BTInputSlot"
  5626. },
  5627. "isIllegal": true,
  5628. "randomID": "SkApuqmGJl3v"
  5629. },
  5630. "Type": "BTBoolSlot"
  5631. },
  5632. "isIllegal": true,
  5633. "randomID": "F0M2clW7UKAb",
  5634. "sectionA": {
  5635. "ContainerValue": {
  5636. "Type": "BTPlaySceneTimeLineAction",
  5637. "baseSelect": {
  5638. "DisplayName": "动画_阶段2到3",
  5639. "Type": "Action",
  5640. "Value": "9"
  5641. },
  5642. "isIllegal": true,
  5643. "randomID": "owI3pGUQ0zvN",
  5644. "redSelect": {
  5645. "DisplayName": "连胜任务栏",
  5646. "Type": "OBJ",
  5647. "Value": "M5e9fX6ZLhzf"
  5648. },
  5649. "stepSlot": {
  5650. "ContainerValue": null,
  5651. "Type": "BTStepSlot"
  5652. }
  5653. },
  5654. "Type": "BTSectionSlot"
  5655. },
  5656. "stepSlot": {
  5657. "ContainerValue": {
  5658. "Type": "BTIFControlAction",
  5659. "conditionA": {
  5660. "ContainerValue": {
  5661. "Type": "BTSmallThanAction",
  5662. "conditionA": {
  5663. "ContainerValue": null,
  5664. "StringValue": {
  5665. "Type": "FLOAT",
  5666. "Value": 3
  5667. },
  5668. "Type": "BTInputSlot"
  5669. },
  5670. "conditionB": {
  5671. "ContainerValue": {
  5672. "Type": "BTCoderVariableAction",
  5673. "VarScope": "Scene",
  5674. "isIllegal": true,
  5675. "randomID": "H3r9oIWEw0fj",
  5676. "titleLabel": {
  5677. "Type": "STRING",
  5678. "Value": "P-连胜次数",
  5679. "displayName": ""
  5680. }
  5681. },
  5682. "StringValue": {
  5683. "Type": "FLOAT",
  5684. "Value": 0
  5685. },
  5686. "Type": "BTInputSlot"
  5687. },
  5688. "isIllegal": true,
  5689. "randomID": "7xm1rFSjv8aA"
  5690. },
  5691. "Type": "BTBoolSlot"
  5692. },
  5693. "isIllegal": true,
  5694. "randomID": "JHiowdLAKcWu",
  5695. "sectionA": {
  5696. "ContainerValue": {
  5697. "Type": "BTPlaySceneTimeLineAction",
  5698. "baseSelect": {
  5699. "DisplayName": "常态_进度阶段3",
  5700. "Type": "Action",
  5701. "Value": "3"
  5702. },
  5703. "isIllegal": true,
  5704. "randomID": "1TjuT8evOHjC",
  5705. "redSelect": {
  5706. "DisplayName": "连胜任务栏",
  5707. "Type": "OBJ",
  5708. "Value": "M5e9fX6ZLhzf"
  5709. },
  5710. "stepSlot": {
  5711. "ContainerValue": null,
  5712. "Type": "BTStepSlot"
  5713. }
  5714. },
  5715. "Type": "BTSectionSlot"
  5716. },
  5717. "stepSlot": {
  5718. "ContainerValue": null,
  5719. "Type": "BTStepSlot"
  5720. }
  5721. },
  5722. "Type": "BTStepSlot"
  5723. }
  5724. },
  5725. "Type": "BTStepSlot"
  5726. }
  5727. },
  5728. "Type": "BTStepSlot"
  5729. }
  5730. },
  5731. "Type": "BTStepSlot"
  5732. }
  5733. },
  5734. "Type": "BTStepSlot"
  5735. },
  5736. "x": 1116,
  5737. "y": -201
  5738. },
  5739. "Tree10": {
  5740. "ExportTree": true,
  5741. "ImageIndex": -1,
  5742. "Type": "BTSceneBtnClickFuncAction",
  5743. "VarJson": {
  5744. "boolJson": {
  5745. },
  5746. "numberJson": {
  5747. }
  5748. },
  5749. "baseSelect": {
  5750. "DisplayName": "道具未选择按钮",
  5751. "Type": "Action",
  5752. "Value": "lolJ5r4PeVDW"
  5753. },
  5754. "isIllegal": false,
  5755. "randomID": "hLqsr62NtNfU",
  5756. "redSelect": {
  5757. "DisplayName": "道具按钮2",
  5758. "Type": "OBJ",
  5759. "Value": "YmYHnGK7GDWr"
  5760. },
  5761. "stepSlot": {
  5762. "ContainerValue": {
  5763. "Type": "BTSceneButtonEnableAction",
  5764. "baseSelect": {
  5765. "DisplayName": "道具未选择按钮",
  5766. "Type": "Action",
  5767. "Value": "lolJ5r4PeVDW"
  5768. },
  5769. "enableButton": {
  5770. "Type": "BTCheckBox",
  5771. "isEnable": false
  5772. },
  5773. "isIllegal": true,
  5774. "randomID": "X7IxD5XfPXzY",
  5775. "redSelect": {
  5776. "DisplayName": "道具按钮2",
  5777. "Type": "OBJ",
  5778. "Value": "YmYHnGK7GDWr"
  5779. },
  5780. "stepSlot": {
  5781. "ContainerValue": {
  5782. "Type": "BTNotificationToCoderWithParamAction",
  5783. "conditionA": {
  5784. "ContainerValue": null,
  5785. "StringValue": {
  5786. "Type": "STRING",
  5787. "Value": "游戏前道具使用按钮被点击"
  5788. },
  5789. "Type": "BTInputSlot"
  5790. },
  5791. "isIllegal": true,
  5792. "paramA": {
  5793. "ContainerValue": null,
  5794. "StringValue": {
  5795. "Type": "STRING",
  5796. "Value": "2"
  5797. },
  5798. "Type": "BTInputSlot"
  5799. },
  5800. "randomID": "rMvR6HhQIpAo",
  5801. "stepSlot": {
  5802. "ContainerValue": {
  5803. "Type": "BTSceneNodeShowAction",
  5804. "baseSelect": {
  5805. "DisplayName": "道具选中对勾",
  5806. "Type": "Action",
  5807. "Value": "gVXiqLq2wGkb"
  5808. },
  5809. "isIllegal": true,
  5810. "randomID": "ZX5sZppTTaNB",
  5811. "redSelect": {
  5812. "DisplayName": "道具按钮2",
  5813. "Type": "OBJ",
  5814. "Value": "YmYHnGK7GDWr"
  5815. },
  5816. "stepSlot": {
  5817. "ContainerValue": {
  5818. "Type": "BTPlaySceneTimeLineAction",
  5819. "baseSelect": {
  5820. "DisplayName": "常态_已解锁_已选中",
  5821. "Type": "Action",
  5822. "Value": "8"
  5823. },
  5824. "isIllegal": true,
  5825. "randomID": "EcVGGViO3Kc6",
  5826. "redSelect": {
  5827. "DisplayName": "道具按钮2",
  5828. "Type": "OBJ",
  5829. "Value": "YmYHnGK7GDWr"
  5830. },
  5831. "stepSlot": {
  5832. "ContainerValue": {
  5833. "Type": "BTWaitTimeAction",
  5834. "conditionA": {
  5835. "ContainerValue": null,
  5836. "StringValue": {
  5837. "Type": "FLOAT",
  5838. "Value": 0.30000001192092896
  5839. },
  5840. "Type": "BTInputSlot"
  5841. },
  5842. "isIllegal": true,
  5843. "randomID": "9S5akne726Dc",
  5844. "stepSlot": {
  5845. "ContainerValue": {
  5846. "Type": "BTSceneButtonEnableAction",
  5847. "baseSelect": {
  5848. "DisplayName": "道具未选择按钮",
  5849. "Type": "Action",
  5850. "Value": "lolJ5r4PeVDW"
  5851. },
  5852. "enableButton": {
  5853. "Type": "BTCheckBox",
  5854. "isEnable": true
  5855. },
  5856. "isIllegal": true,
  5857. "randomID": "cmjrn5fQZo30",
  5858. "redSelect": {
  5859. "DisplayName": "道具按钮2",
  5860. "Type": "OBJ",
  5861. "Value": "YmYHnGK7GDWr"
  5862. },
  5863. "stepSlot": {
  5864. "ContainerValue": null,
  5865. "Type": "BTStepSlot"
  5866. }
  5867. },
  5868. "Type": "BTStepSlot"
  5869. }
  5870. },
  5871. "Type": "BTStepSlot"
  5872. }
  5873. },
  5874. "Type": "BTStepSlot"
  5875. }
  5876. },
  5877. "Type": "BTStepSlot"
  5878. }
  5879. },
  5880. "Type": "BTStepSlot"
  5881. }
  5882. },
  5883. "Type": "BTStepSlot"
  5884. },
  5885. "x": 228,
  5886. "y": 959
  5887. },
  5888. "Tree11": {
  5889. "ExportTree": false,
  5890. "ImageIndex": -1,
  5891. "Type": "BTTestFuncAction",
  5892. "VarJson": {
  5893. "boolJson": {
  5894. },
  5895. "numberJson": {
  5896. }
  5897. },
  5898. "VarScope": "Red",
  5899. "isIllegal": false,
  5900. "randomID": "onC59oJWi3Kk",
  5901. "stepSlot": {
  5902. "ContainerValue": {
  5903. "TitleInput": {
  5904. "ContainerValue": null,
  5905. "StringValue": {
  5906. "Type": "STRING",
  5907. "Value": "GoodsMerge_游戏UI资源.plist"
  5908. },
  5909. "Type": "BTInputSlot"
  5910. },
  5911. "Type": "BTDataCoderVarSetAction",
  5912. "VarScope": "Scene",
  5913. "baseSelect": {
  5914. "DisplayName": "P-Plist路径",
  5915. "Type": "Action",
  5916. "Value": "P-Plist路径"
  5917. },
  5918. "isIllegal": true,
  5919. "randomID": "rTLk0puqPUKK",
  5920. "stepSlot": {
  5921. "ContainerValue": {
  5922. "TitleInput": {
  5923. "ContainerValue": null,
  5924. "StringValue": {
  5925. "Type": "STRING",
  5926. "Value": "18"
  5927. },
  5928. "Type": "BTInputSlot"
  5929. },
  5930. "Type": "BTDataCoderVarSetAction",
  5931. "VarScope": "Scene",
  5932. "baseSelect": {
  5933. "DisplayName": "P-关卡数",
  5934. "Type": "Action",
  5935. "Value": "P-关卡数"
  5936. },
  5937. "isIllegal": true,
  5938. "randomID": "aXYobPjQkhLH",
  5939. "stepSlot": {
  5940. "ContainerValue": {
  5941. "TitleInput": {
  5942. "ContainerValue": null,
  5943. "StringValue": {
  5944. "Type": "STRING",
  5945. "Value": "GoodsMerge_连胜任务_道具_魔棒.png"
  5946. },
  5947. "Type": "BTInputSlot"
  5948. },
  5949. "Type": "BTDataCoderVarSetAction",
  5950. "VarScope": "Scene",
  5951. "baseSelect": {
  5952. "DisplayName": "P-游戏前道具1_图片名",
  5953. "Type": "Action",
  5954. "Value": "P-游戏前道具1_图片名"
  5955. },
  5956. "isIllegal": true,
  5957. "randomID": "tdqhhGjGAFc5",
  5958. "stepSlot": {
  5959. "ContainerValue": {
  5960. "TitleInput": {
  5961. "ContainerValue": null,
  5962. "StringValue": {
  5963. "Type": "STRING",
  5964. "Value": "6"
  5965. },
  5966. "Type": "BTInputSlot"
  5967. },
  5968. "Type": "BTDataCoderVarSetAction",
  5969. "VarScope": "Scene",
  5970. "baseSelect": {
  5971. "DisplayName": "P-游戏前道具1_解锁等级",
  5972. "Type": "Action",
  5973. "Value": "P-游戏前道具1_解锁等级"
  5974. },
  5975. "isIllegal": true,
  5976. "randomID": "e5J4v1rVXjEX",
  5977. "stepSlot": {
  5978. "ContainerValue": {
  5979. "TitleInput": {
  5980. "ContainerValue": null,
  5981. "StringValue": {
  5982. "Type": "STRING",
  5983. "Value": "0"
  5984. },
  5985. "Type": "BTInputSlot"
  5986. },
  5987. "Type": "BTDataCoderVarSetAction",
  5988. "VarScope": "Scene",
  5989. "baseSelect": {
  5990. "DisplayName": "P-游戏前道具1_道具数量",
  5991. "Type": "Action",
  5992. "Value": "P-游戏前道具1_道具数量"
  5993. },
  5994. "isIllegal": true,
  5995. "randomID": "9k8JhsuwSJ5F",
  5996. "stepSlot": {
  5997. "ContainerValue": {
  5998. "TitleInput": {
  5999. "ContainerValue": null,
  6000. "StringValue": {
  6001. "Type": "STRING",
  6002. "Value": "道具已解锁未获得"
  6003. },
  6004. "Type": "BTInputSlot"
  6005. },
  6006. "Type": "BTDataCoderVarSetAction",
  6007. "VarScope": "Scene",
  6008. "baseSelect": {
  6009. "DisplayName": "P-游戏前道具1_默认状态",
  6010. "Type": "Action",
  6011. "Value": "P-游戏前道具1_默认状态"
  6012. },
  6013. "isIllegal": true,
  6014. "randomID": "SWBKHZXmMUTL",
  6015. "stepSlot": {
  6016. "ContainerValue": {
  6017. "TitleInput": {
  6018. "ContainerValue": null,
  6019. "StringValue": {
  6020. "Type": "STRING",
  6021. "Value": "GoodsMerge_连胜任务_道具_时钟.png"
  6022. },
  6023. "Type": "BTInputSlot"
  6024. },
  6025. "Type": "BTDataCoderVarSetAction",
  6026. "VarScope": "Scene",
  6027. "baseSelect": {
  6028. "DisplayName": "P-游戏前道具2_图片名",
  6029. "Type": "Action",
  6030. "Value": "P-游戏前道具2_图片名"
  6031. },
  6032. "isIllegal": true,
  6033. "randomID": "yp06Tswrv4Pz",
  6034. "stepSlot": {
  6035. "ContainerValue": {
  6036. "TitleInput": {
  6037. "ContainerValue": null,
  6038. "StringValue": {
  6039. "Type": "STRING",
  6040. "Value": "10"
  6041. },
  6042. "Type": "BTInputSlot"
  6043. },
  6044. "Type": "BTDataCoderVarSetAction",
  6045. "VarScope": "Scene",
  6046. "baseSelect": {
  6047. "DisplayName": "P-游戏前道具2_解锁等级",
  6048. "Type": "Action",
  6049. "Value": "P-游戏前道具2_解锁等级"
  6050. },
  6051. "isIllegal": true,
  6052. "randomID": "OTZeU1BR7zL9",
  6053. "stepSlot": {
  6054. "ContainerValue": {
  6055. "TitleInput": {
  6056. "ContainerValue": null,
  6057. "StringValue": {
  6058. "Type": "STRING",
  6059. "Value": "2"
  6060. },
  6061. "Type": "BTInputSlot"
  6062. },
  6063. "Type": "BTDataCoderVarSetAction",
  6064. "VarScope": "Scene",
  6065. "baseSelect": {
  6066. "DisplayName": "P-游戏前道具2_道具数量",
  6067. "Type": "Action",
  6068. "Value": "P-游戏前道具2_道具数量"
  6069. },
  6070. "isIllegal": true,
  6071. "randomID": "QkfYZcpZcvu2",
  6072. "stepSlot": {
  6073. "ContainerValue": {
  6074. "TitleInput": {
  6075. "ContainerValue": null,
  6076. "StringValue": {
  6077. "Type": "STRING",
  6078. "Value": "道具已解锁已获得"
  6079. },
  6080. "Type": "BTInputSlot"
  6081. },
  6082. "Type": "BTDataCoderVarSetAction",
  6083. "VarScope": "Scene",
  6084. "baseSelect": {
  6085. "DisplayName": "P-游戏前道具2_默认状态",
  6086. "Type": "Action",
  6087. "Value": "P-游戏前道具2_默认状态"
  6088. },
  6089. "isIllegal": true,
  6090. "randomID": "vYBpRCaNC0KF",
  6091. "stepSlot": {
  6092. "ContainerValue": {
  6093. "TitleInput": {
  6094. "ContainerValue": null,
  6095. "StringValue": {
  6096. "Type": "STRING",
  6097. "Value": "GoodsMerge_连胜任务_道具_箱子.png"
  6098. },
  6099. "Type": "BTInputSlot"
  6100. },
  6101. "Type": "BTDataCoderVarSetAction",
  6102. "VarScope": "Scene",
  6103. "baseSelect": {
  6104. "DisplayName": "P-游戏前道具3_图片名",
  6105. "Type": "Action",
  6106. "Value": "P-游戏前道具3_图片名"
  6107. },
  6108. "isIllegal": true,
  6109. "randomID": "YMRyrEumPMRI",
  6110. "stepSlot": {
  6111. "ContainerValue": {
  6112. "TitleInput": {
  6113. "ContainerValue": null,
  6114. "StringValue": {
  6115. "Type": "STRING",
  6116. "Value": "25"
  6117. },
  6118. "Type": "BTInputSlot"
  6119. },
  6120. "Type": "BTDataCoderVarSetAction",
  6121. "VarScope": "Scene",
  6122. "baseSelect": {
  6123. "DisplayName": "P-游戏前道具3_解锁等级",
  6124. "Type": "Action",
  6125. "Value": "P-游戏前道具3_解锁等级"
  6126. },
  6127. "isIllegal": true,
  6128. "randomID": "19TI7lG4lk0x",
  6129. "stepSlot": {
  6130. "ContainerValue": {
  6131. "TitleInput": {
  6132. "ContainerValue": null,
  6133. "StringValue": {
  6134. "Type": "STRING",
  6135. "Value": "0"
  6136. },
  6137. "Type": "BTInputSlot"
  6138. },
  6139. "Type": "BTDataCoderVarSetAction",
  6140. "VarScope": "Scene",
  6141. "baseSelect": {
  6142. "DisplayName": "P-游戏前道具3_道具数量",
  6143. "Type": "Action",
  6144. "Value": "P-游戏前道具3_道具数量"
  6145. },
  6146. "isIllegal": true,
  6147. "randomID": "iUluCEOmW2DG",
  6148. "stepSlot": {
  6149. "ContainerValue": {
  6150. "TitleInput": {
  6151. "ContainerValue": null,
  6152. "StringValue": {
  6153. "Type": "STRING",
  6154. "Value": "道具已解锁已获得"
  6155. },
  6156. "Type": "BTInputSlot"
  6157. },
  6158. "Type": "BTDataCoderVarSetAction",
  6159. "VarScope": "Scene",
  6160. "baseSelect": {
  6161. "DisplayName": "P-游戏前道具3_默认状态",
  6162. "Type": "Action",
  6163. "Value": "P-游戏前道具3_默认状态"
  6164. },
  6165. "isIllegal": true,
  6166. "randomID": "77F7Tkgh5kYn",
  6167. "stepSlot": {
  6168. "ContainerValue": {
  6169. "TitleInput": {
  6170. "ContainerValue": null,
  6171. "StringValue": {
  6172. "Type": "STRING",
  6173. "Value": "1"
  6174. },
  6175. "Type": "BTInputSlot"
  6176. },
  6177. "Type": "BTDataCoderVarSetAction",
  6178. "VarScope": "Scene",
  6179. "baseSelect": {
  6180. "DisplayName": "P-连胜次数",
  6181. "Type": "Action",
  6182. "Value": "P-连胜次数"
  6183. },
  6184. "isIllegal": true,
  6185. "randomID": "U2tGeoJxxBAP",
  6186. "stepSlot": {
  6187. "ContainerValue": {
  6188. "TitleInput": {
  6189. "ContainerValue": null,
  6190. "StringValue": {
  6191. "Type": "STRING",
  6192. "Value": "3"
  6193. },
  6194. "Type": "BTInputSlot"
  6195. },
  6196. "Type": "BTDataCoderVarSetAction",
  6197. "VarScope": "Scene",
  6198. "baseSelect": {
  6199. "DisplayName": "P-道具解锁数",
  6200. "Type": "Action",
  6201. "Value": "P-道具解锁数"
  6202. },
  6203. "isIllegal": true,
  6204. "randomID": "kHLdsMbVMXbO",
  6205. "stepSlot": {
  6206. "ContainerValue": {
  6207. "Name": {
  6208. "Type": "STRING",
  6209. "Value": "关卡进入",
  6210. "displayName": ""
  6211. },
  6212. "Type": "BTCustomFuncBodyAction",
  6213. "funcHeadID": "wF1wtWEJhOGm",
  6214. "isIllegal": true,
  6215. "paramArr": [
  6216. ],
  6217. "randomID": "H5j2NCvAYYN4",
  6218. "stepSlot": {
  6219. "ContainerValue": null,
  6220. "Type": "BTStepSlot"
  6221. }
  6222. },
  6223. "Type": "BTStepSlot"
  6224. }
  6225. },
  6226. "Type": "BTStepSlot"
  6227. }
  6228. },
  6229. "Type": "BTStepSlot"
  6230. }
  6231. },
  6232. "Type": "BTStepSlot"
  6233. }
  6234. },
  6235. "Type": "BTStepSlot"
  6236. }
  6237. },
  6238. "Type": "BTStepSlot"
  6239. }
  6240. },
  6241. "Type": "BTStepSlot"
  6242. }
  6243. },
  6244. "Type": "BTStepSlot"
  6245. }
  6246. },
  6247. "Type": "BTStepSlot"
  6248. }
  6249. },
  6250. "Type": "BTStepSlot"
  6251. }
  6252. },
  6253. "Type": "BTStepSlot"
  6254. }
  6255. },
  6256. "Type": "BTStepSlot"
  6257. }
  6258. },
  6259. "Type": "BTStepSlot"
  6260. }
  6261. },
  6262. "Type": "BTStepSlot"
  6263. }
  6264. },
  6265. "Type": "BTStepSlot"
  6266. }
  6267. },
  6268. "Type": "BTStepSlot"
  6269. }
  6270. },
  6271. "Type": "BTStepSlot"
  6272. },
  6273. "titleLabel": {
  6274. "Type": "STRING",
  6275. "Value": "11",
  6276. "displayName": ""
  6277. },
  6278. "x": -1167.8163362552905,
  6279. "y": -624.9999627470985
  6280. },
  6281. "Tree12": {
  6282. "ExportTree": true,
  6283. "ImageIndex": -1,
  6284. "Type": "BTSceneBtnClickFuncAction",
  6285. "VarJson": {
  6286. "boolJson": {
  6287. },
  6288. "numberJson": {
  6289. }
  6290. },
  6291. "baseSelect": {
  6292. "DisplayName": "道具购买按钮",
  6293. "Type": "Action",
  6294. "Value": "Z5gzZGIKZK6W"
  6295. },
  6296. "isIllegal": false,
  6297. "randomID": "Q1CcZTgFtV3z",
  6298. "redSelect": {
  6299. "DisplayName": "道具按钮3",
  6300. "Type": "OBJ",
  6301. "Value": "Xuuh1MncKir7"
  6302. },
  6303. "stepSlot": {
  6304. "ContainerValue": {
  6305. "Type": "BTSceneButtonEnableAction",
  6306. "baseSelect": {
  6307. "DisplayName": "道具购买按钮",
  6308. "Type": "Action",
  6309. "Value": "Z5gzZGIKZK6W"
  6310. },
  6311. "enableButton": {
  6312. "Type": "BTCheckBox",
  6313. "isEnable": false
  6314. },
  6315. "isIllegal": true,
  6316. "randomID": "ImBQxoJEqbBR",
  6317. "redSelect": {
  6318. "DisplayName": "道具按钮3",
  6319. "Type": "OBJ",
  6320. "Value": "Xuuh1MncKir7"
  6321. },
  6322. "stepSlot": {
  6323. "ContainerValue": {
  6324. "Type": "BTNotificationToCoderWithParamAction",
  6325. "conditionA": {
  6326. "ContainerValue": null,
  6327. "StringValue": {
  6328. "Type": "STRING",
  6329. "Value": "游戏前道具购买按钮被点击"
  6330. },
  6331. "Type": "BTInputSlot"
  6332. },
  6333. "isIllegal": true,
  6334. "paramA": {
  6335. "ContainerValue": null,
  6336. "StringValue": {
  6337. "Type": "STRING",
  6338. "Value": "3"
  6339. },
  6340. "Type": "BTInputSlot"
  6341. },
  6342. "randomID": "hjvsrCUeoCs6",
  6343. "stepSlot": {
  6344. "ContainerValue": {
  6345. "Type": "BTWaitTimeAction",
  6346. "conditionA": {
  6347. "ContainerValue": null,
  6348. "StringValue": {
  6349. "Type": "FLOAT",
  6350. "Value": 0.30000001192092896
  6351. },
  6352. "Type": "BTInputSlot"
  6353. },
  6354. "isIllegal": true,
  6355. "randomID": "yMWtaq2kkUsy",
  6356. "stepSlot": {
  6357. "ContainerValue": {
  6358. "Type": "BTSceneButtonEnableAction",
  6359. "baseSelect": {
  6360. "DisplayName": "道具购买按钮",
  6361. "Type": "Action",
  6362. "Value": "Z5gzZGIKZK6W"
  6363. },
  6364. "enableButton": {
  6365. "Type": "BTCheckBox",
  6366. "isEnable": true
  6367. },
  6368. "isIllegal": true,
  6369. "randomID": "TFBIGMQ4EAIs",
  6370. "redSelect": {
  6371. "DisplayName": "道具按钮3",
  6372. "Type": "OBJ",
  6373. "Value": "Xuuh1MncKir7"
  6374. },
  6375. "stepSlot": {
  6376. "ContainerValue": null,
  6377. "Type": "BTStepSlot"
  6378. }
  6379. },
  6380. "Type": "BTStepSlot"
  6381. }
  6382. },
  6383. "Type": "BTStepSlot"
  6384. }
  6385. },
  6386. "Type": "BTStepSlot"
  6387. }
  6388. },
  6389. "Type": "BTStepSlot"
  6390. },
  6391. "x": 215,
  6392. "y": 1810
  6393. },
  6394. "Tree13": {
  6395. "ExportTree": true,
  6396. "ImageIndex": -1,
  6397. "Type": "BTSceneBtnClickFuncAction",
  6398. "VarJson": {
  6399. "boolJson": {
  6400. },
  6401. "numberJson": {
  6402. }
  6403. },
  6404. "baseSelect": {
  6405. "DisplayName": "道具购买按钮",
  6406. "Type": "Action",
  6407. "Value": "Z5gzZGIKZK6W"
  6408. },
  6409. "isIllegal": false,
  6410. "randomID": "tojiEXhF2Zd8",
  6411. "redSelect": {
  6412. "DisplayName": "道具按钮2",
  6413. "Type": "OBJ",
  6414. "Value": "YmYHnGK7GDWr"
  6415. },
  6416. "stepSlot": {
  6417. "ContainerValue": {
  6418. "Type": "BTSceneButtonEnableAction",
  6419. "baseSelect": {
  6420. "DisplayName": "道具购买按钮",
  6421. "Type": "Action",
  6422. "Value": "Z5gzZGIKZK6W"
  6423. },
  6424. "enableButton": {
  6425. "Type": "BTCheckBox",
  6426. "isEnable": false
  6427. },
  6428. "isIllegal": true,
  6429. "randomID": "g2D81bFNNjF5",
  6430. "redSelect": {
  6431. "DisplayName": "道具按钮2",
  6432. "Type": "OBJ",
  6433. "Value": "YmYHnGK7GDWr"
  6434. },
  6435. "stepSlot": {
  6436. "ContainerValue": {
  6437. "Type": "BTNotificationToCoderWithParamAction",
  6438. "conditionA": {
  6439. "ContainerValue": null,
  6440. "StringValue": {
  6441. "Type": "STRING",
  6442. "Value": "游戏前道具购买按钮被点击"
  6443. },
  6444. "Type": "BTInputSlot"
  6445. },
  6446. "isIllegal": true,
  6447. "paramA": {
  6448. "ContainerValue": null,
  6449. "StringValue": {
  6450. "Type": "STRING",
  6451. "Value": "2"
  6452. },
  6453. "Type": "BTInputSlot"
  6454. },
  6455. "randomID": "9ogzt1Ot4IIq",
  6456. "stepSlot": {
  6457. "ContainerValue": {
  6458. "Type": "BTWaitTimeAction",
  6459. "conditionA": {
  6460. "ContainerValue": null,
  6461. "StringValue": {
  6462. "Type": "FLOAT",
  6463. "Value": 0.30000001192092896
  6464. },
  6465. "Type": "BTInputSlot"
  6466. },
  6467. "isIllegal": true,
  6468. "randomID": "qescYE4lYgZo",
  6469. "stepSlot": {
  6470. "ContainerValue": {
  6471. "Type": "BTSceneButtonEnableAction",
  6472. "baseSelect": {
  6473. "DisplayName": "道具购买按钮",
  6474. "Type": "Action",
  6475. "Value": "Z5gzZGIKZK6W"
  6476. },
  6477. "enableButton": {
  6478. "Type": "BTCheckBox",
  6479. "isEnable": true
  6480. },
  6481. "isIllegal": true,
  6482. "randomID": "6KasS1iKZkRy",
  6483. "redSelect": {
  6484. "DisplayName": "道具按钮2",
  6485. "Type": "OBJ",
  6486. "Value": "YmYHnGK7GDWr"
  6487. },
  6488. "stepSlot": {
  6489. "ContainerValue": null,
  6490. "Type": "BTStepSlot"
  6491. }
  6492. },
  6493. "Type": "BTStepSlot"
  6494. }
  6495. },
  6496. "Type": "BTStepSlot"
  6497. }
  6498. },
  6499. "Type": "BTStepSlot"
  6500. }
  6501. },
  6502. "Type": "BTStepSlot"
  6503. },
  6504. "x": 231,
  6505. "y": 1258
  6506. },
  6507. "Tree14": {
  6508. "ExportTree": true,
  6509. "ImageIndex": -1,
  6510. "Type": "BTSceneBtnClickFuncAction",
  6511. "VarJson": {
  6512. "boolJson": {
  6513. },
  6514. "numberJson": {
  6515. }
  6516. },
  6517. "baseSelect": {
  6518. "DisplayName": "道具未选择按钮",
  6519. "Type": "Action",
  6520. "Value": "lolJ5r4PeVDW"
  6521. },
  6522. "isIllegal": false,
  6523. "randomID": "SKvKFkUqV2bJ",
  6524. "redSelect": {
  6525. "DisplayName": "道具按钮3",
  6526. "Type": "OBJ",
  6527. "Value": "Xuuh1MncKir7"
  6528. },
  6529. "stepSlot": {
  6530. "ContainerValue": {
  6531. "Type": "BTSceneButtonEnableAction",
  6532. "baseSelect": {
  6533. "DisplayName": "道具未选择按钮",
  6534. "Type": "Action",
  6535. "Value": "lolJ5r4PeVDW"
  6536. },
  6537. "enableButton": {
  6538. "Type": "BTCheckBox",
  6539. "isEnable": false
  6540. },
  6541. "isIllegal": true,
  6542. "randomID": "PXfTDRryJlQs",
  6543. "redSelect": {
  6544. "DisplayName": "道具按钮3",
  6545. "Type": "OBJ",
  6546. "Value": "Xuuh1MncKir7"
  6547. },
  6548. "stepSlot": {
  6549. "ContainerValue": {
  6550. "Type": "BTNotificationToCoderWithParamAction",
  6551. "conditionA": {
  6552. "ContainerValue": null,
  6553. "StringValue": {
  6554. "Type": "STRING",
  6555. "Value": "游戏前道具使用按钮被点击"
  6556. },
  6557. "Type": "BTInputSlot"
  6558. },
  6559. "isIllegal": true,
  6560. "paramA": {
  6561. "ContainerValue": null,
  6562. "StringValue": {
  6563. "Type": "STRING",
  6564. "Value": "3"
  6565. },
  6566. "Type": "BTInputSlot"
  6567. },
  6568. "randomID": "25oE3ib8DRKJ",
  6569. "stepSlot": {
  6570. "ContainerValue": {
  6571. "Type": "BTSceneNodeShowAction",
  6572. "baseSelect": {
  6573. "DisplayName": "道具选中对勾",
  6574. "Type": "Action",
  6575. "Value": "gVXiqLq2wGkb"
  6576. },
  6577. "isIllegal": true,
  6578. "randomID": "DwLIV3RKtcmG",
  6579. "redSelect": {
  6580. "DisplayName": "道具按钮3",
  6581. "Type": "OBJ",
  6582. "Value": "Xuuh1MncKir7"
  6583. },
  6584. "stepSlot": {
  6585. "ContainerValue": {
  6586. "Type": "BTPlaySceneTimeLineAction",
  6587. "baseSelect": {
  6588. "DisplayName": "常态_已解锁_已选中",
  6589. "Type": "Action",
  6590. "Value": "8"
  6591. },
  6592. "isIllegal": true,
  6593. "randomID": "tb2YqZLKIH5f",
  6594. "redSelect": {
  6595. "DisplayName": "道具按钮3",
  6596. "Type": "OBJ",
  6597. "Value": "Xuuh1MncKir7"
  6598. },
  6599. "stepSlot": {
  6600. "ContainerValue": {
  6601. "Type": "BTWaitTimeAction",
  6602. "conditionA": {
  6603. "ContainerValue": null,
  6604. "StringValue": {
  6605. "Type": "FLOAT",
  6606. "Value": 0.30000001192092896
  6607. },
  6608. "Type": "BTInputSlot"
  6609. },
  6610. "isIllegal": true,
  6611. "randomID": "Jw0SYycgfNk9",
  6612. "stepSlot": {
  6613. "ContainerValue": {
  6614. "Type": "BTSceneButtonEnableAction",
  6615. "baseSelect": {
  6616. "DisplayName": "道具未选择按钮",
  6617. "Type": "Action",
  6618. "Value": "lolJ5r4PeVDW"
  6619. },
  6620. "enableButton": {
  6621. "Type": "BTCheckBox",
  6622. "isEnable": true
  6623. },
  6624. "isIllegal": true,
  6625. "randomID": "MfB15oSL400Q",
  6626. "redSelect": {
  6627. "DisplayName": "道具按钮3",
  6628. "Type": "OBJ",
  6629. "Value": "Xuuh1MncKir7"
  6630. },
  6631. "stepSlot": {
  6632. "ContainerValue": null,
  6633. "Type": "BTStepSlot"
  6634. }
  6635. },
  6636. "Type": "BTStepSlot"
  6637. }
  6638. },
  6639. "Type": "BTStepSlot"
  6640. }
  6641. },
  6642. "Type": "BTStepSlot"
  6643. }
  6644. },
  6645. "Type": "BTStepSlot"
  6646. }
  6647. },
  6648. "Type": "BTStepSlot"
  6649. }
  6650. },
  6651. "Type": "BTStepSlot"
  6652. },
  6653. "x": 229,
  6654. "y": 1498
  6655. },
  6656. "Tree15": {
  6657. "ExportTree": true,
  6658. "ImageIndex": 6,
  6659. "Name": {
  6660. "Type": "STRING",
  6661. "Value": "刷新游戏前道具状态",
  6662. "displayName": ""
  6663. },
  6664. "Type": "BTCustomFuncHeadAction",
  6665. "VarJson": {
  6666. "boolJson": {
  6667. },
  6668. "numberJson": {
  6669. }
  6670. },
  6671. "isIllegal": false,
  6672. "randomID": "z4Kg8GWAc9je",
  6673. "stepSlot": {
  6674. "ContainerValue": {
  6675. "BTInputSlot1": {
  6676. "ContainerValue": {
  6677. "Type": "BTCoderVariableAction",
  6678. "VarScope": "Scene",
  6679. "isIllegal": true,
  6680. "randomID": "97nIDEmHevrl",
  6681. "titleLabel": {
  6682. "Type": "STRING",
  6683. "Value": "P-游戏前道具1_默认状态",
  6684. "displayName": ""
  6685. }
  6686. },
  6687. "StringValue": {
  6688. "Type": "STRING",
  6689. "Value": "道具默认状态"
  6690. },
  6691. "Type": "BTInputSlot"
  6692. },
  6693. "BTInputSlot2": {
  6694. "ContainerValue": {
  6695. "Type": "BTCoderVariableAction",
  6696. "VarScope": "Scene",
  6697. "isIllegal": true,
  6698. "randomID": "GDGfCkKP95uh",
  6699. "titleLabel": {
  6700. "Type": "STRING",
  6701. "Value": "P-游戏前道具1_解锁等级",
  6702. "displayName": ""
  6703. }
  6704. },
  6705. "StringValue": {
  6706. "Type": "STRING",
  6707. "Value": "解锁等级"
  6708. },
  6709. "Type": "BTInputSlot"
  6710. },
  6711. "BTInputSlot3": {
  6712. "ContainerValue": {
  6713. "Type": "BTCoderVariableAction",
  6714. "VarScope": "Scene",
  6715. "isIllegal": true,
  6716. "randomID": "ulYTdRUeP530",
  6717. "titleLabel": {
  6718. "Type": "STRING",
  6719. "Value": "P-游戏前道具1_道具数量",
  6720. "displayName": ""
  6721. }
  6722. },
  6723. "StringValue": {
  6724. "Type": "STRING",
  6725. "Value": "道具数量"
  6726. },
  6727. "Type": "BTInputSlot"
  6728. },
  6729. "BTInputSlot4": {
  6730. "ContainerValue": null,
  6731. "StringValue": {
  6732. "Type": "STRING",
  6733. "Value": "时效文本"
  6734. },
  6735. "Type": "BTInputSlot"
  6736. },
  6737. "BTInputSlot5": {
  6738. "ContainerValue": {
  6739. "Type": "BTCoderVariableAction",
  6740. "VarScope": "Scene",
  6741. "isIllegal": true,
  6742. "randomID": "SZMYn4gL2saI",
  6743. "titleLabel": {
  6744. "Type": "STRING",
  6745. "Value": "P-Plist路径",
  6746. "displayName": ""
  6747. }
  6748. },
  6749. "StringValue": {
  6750. "Type": "STRING",
  6751. "Value": "Plist路径"
  6752. },
  6753. "Type": "BTInputSlot"
  6754. },
  6755. "BTInputSlot6": {
  6756. "ContainerValue": {
  6757. "Type": "BTCoderVariableAction",
  6758. "VarScope": "Scene",
  6759. "isIllegal": true,
  6760. "randomID": "ucGviVZ8Gmxd",
  6761. "titleLabel": {
  6762. "Type": "STRING",
  6763. "Value": "P-游戏前道具1_图片名",
  6764. "displayName": ""
  6765. }
  6766. },
  6767. "StringValue": {
  6768. "Type": "STRING",
  6769. "Value": "道具图片名"
  6770. },
  6771. "Type": "BTInputSlot"
  6772. },
  6773. "Type": "BTCallRedCustomFuncBodyAction",
  6774. "baseSelect": {
  6775. "DisplayName": "游戏前道具初始化",
  6776. "Type": "Action",
  6777. "Value": "游戏前道具初始化"
  6778. },
  6779. "funcHeadID": "q2hMIBClDBV2",
  6780. "isIllegal": true,
  6781. "paramArr": [
  6782. [
  6783. "BTInputSlot1",
  6784. "道具默认状态"
  6785. ],
  6786. [
  6787. "BTInputSlot2",
  6788. "解锁等级"
  6789. ],
  6790. [
  6791. "BTInputSlot3",
  6792. "道具数量"
  6793. ],
  6794. [
  6795. "BTInputSlot4",
  6796. "时效文本"
  6797. ],
  6798. [
  6799. "BTInputSlot5",
  6800. "Plist路径"
  6801. ],
  6802. [
  6803. "BTInputSlot6",
  6804. "道具图片名"
  6805. ]
  6806. ],
  6807. "randomID": "2Dqo18JC23NG",
  6808. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  6809. "redSelect": {
  6810. "DisplayName": "道具按钮1",
  6811. "Type": "OBJ",
  6812. "Value": "miNKvSdeViD9"
  6813. },
  6814. "stepSlot": {
  6815. "ContainerValue": {
  6816. "BTInputSlot1": {
  6817. "ContainerValue": {
  6818. "Type": "BTCoderVariableAction",
  6819. "VarScope": "Scene",
  6820. "isIllegal": true,
  6821. "randomID": "LcT8KllQ4CVi",
  6822. "titleLabel": {
  6823. "Type": "STRING",
  6824. "Value": "P-游戏前道具2_默认状态",
  6825. "displayName": ""
  6826. }
  6827. },
  6828. "StringValue": {
  6829. "Type": "STRING",
  6830. "Value": "道具默认状态"
  6831. },
  6832. "Type": "BTInputSlot"
  6833. },
  6834. "BTInputSlot2": {
  6835. "ContainerValue": {
  6836. "Type": "BTCoderVariableAction",
  6837. "VarScope": "Scene",
  6838. "isIllegal": true,
  6839. "randomID": "z7OQbkCmEcAw",
  6840. "titleLabel": {
  6841. "Type": "STRING",
  6842. "Value": "P-游戏前道具2_解锁等级",
  6843. "displayName": ""
  6844. }
  6845. },
  6846. "StringValue": {
  6847. "Type": "STRING",
  6848. "Value": "解锁等级"
  6849. },
  6850. "Type": "BTInputSlot"
  6851. },
  6852. "BTInputSlot3": {
  6853. "ContainerValue": {
  6854. "Type": "BTCoderVariableAction",
  6855. "VarScope": "Scene",
  6856. "isIllegal": true,
  6857. "randomID": "HDAMCKVT3jna",
  6858. "titleLabel": {
  6859. "Type": "STRING",
  6860. "Value": "P-游戏前道具2_道具数量",
  6861. "displayName": ""
  6862. }
  6863. },
  6864. "StringValue": {
  6865. "Type": "STRING",
  6866. "Value": "道具数量"
  6867. },
  6868. "Type": "BTInputSlot"
  6869. },
  6870. "BTInputSlot4": {
  6871. "ContainerValue": null,
  6872. "StringValue": {
  6873. "Type": "STRING",
  6874. "Value": "时效文本"
  6875. },
  6876. "Type": "BTInputSlot"
  6877. },
  6878. "BTInputSlot5": {
  6879. "ContainerValue": {
  6880. "Type": "BTCoderVariableAction",
  6881. "VarScope": "Scene",
  6882. "isIllegal": true,
  6883. "randomID": "nrPjb48HOjXq",
  6884. "titleLabel": {
  6885. "Type": "STRING",
  6886. "Value": "P-Plist路径",
  6887. "displayName": ""
  6888. }
  6889. },
  6890. "StringValue": {
  6891. "Type": "STRING",
  6892. "Value": "Plist路径"
  6893. },
  6894. "Type": "BTInputSlot"
  6895. },
  6896. "BTInputSlot6": {
  6897. "ContainerValue": {
  6898. "Type": "BTCoderVariableAction",
  6899. "VarScope": "Scene",
  6900. "isIllegal": true,
  6901. "randomID": "HOVMqtbS0Vur",
  6902. "titleLabel": {
  6903. "Type": "STRING",
  6904. "Value": "P-游戏前道具2_图片名",
  6905. "displayName": ""
  6906. }
  6907. },
  6908. "StringValue": {
  6909. "Type": "STRING",
  6910. "Value": "道具图片名"
  6911. },
  6912. "Type": "BTInputSlot"
  6913. },
  6914. "Type": "BTCallRedCustomFuncBodyAction",
  6915. "baseSelect": {
  6916. "DisplayName": "游戏前道具初始化",
  6917. "Type": "Action",
  6918. "Value": "游戏前道具初始化"
  6919. },
  6920. "funcHeadID": "q2hMIBClDBV2",
  6921. "isIllegal": true,
  6922. "paramArr": [
  6923. [
  6924. "BTInputSlot1",
  6925. "道具默认状态"
  6926. ],
  6927. [
  6928. "BTInputSlot2",
  6929. "解锁等级"
  6930. ],
  6931. [
  6932. "BTInputSlot3",
  6933. "道具数量"
  6934. ],
  6935. [
  6936. "BTInputSlot4",
  6937. "时效文本"
  6938. ],
  6939. [
  6940. "BTInputSlot5",
  6941. "Plist路径"
  6942. ],
  6943. [
  6944. "BTInputSlot6",
  6945. "道具图片名"
  6946. ]
  6947. ],
  6948. "randomID": "BVAAX8xSnJjg",
  6949. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  6950. "redSelect": {
  6951. "DisplayName": "道具按钮2",
  6952. "Type": "OBJ",
  6953. "Value": "YmYHnGK7GDWr"
  6954. },
  6955. "stepSlot": {
  6956. "ContainerValue": {
  6957. "BTInputSlot1": {
  6958. "ContainerValue": {
  6959. "Type": "BTCoderVariableAction",
  6960. "VarScope": "Scene",
  6961. "isIllegal": true,
  6962. "randomID": "Ym24VE8r1vdO",
  6963. "titleLabel": {
  6964. "Type": "STRING",
  6965. "Value": "P-游戏前道具3_默认状态",
  6966. "displayName": ""
  6967. }
  6968. },
  6969. "StringValue": {
  6970. "Type": "STRING",
  6971. "Value": "道具默认状态"
  6972. },
  6973. "Type": "BTInputSlot"
  6974. },
  6975. "BTInputSlot2": {
  6976. "ContainerValue": {
  6977. "Type": "BTCoderVariableAction",
  6978. "VarScope": "Scene",
  6979. "isIllegal": true,
  6980. "randomID": "7ZUvahtrOSrm",
  6981. "titleLabel": {
  6982. "Type": "STRING",
  6983. "Value": "P-游戏前道具3_解锁等级",
  6984. "displayName": ""
  6985. }
  6986. },
  6987. "StringValue": {
  6988. "Type": "STRING",
  6989. "Value": "解锁等级"
  6990. },
  6991. "Type": "BTInputSlot"
  6992. },
  6993. "BTInputSlot3": {
  6994. "ContainerValue": {
  6995. "Type": "BTCoderVariableAction",
  6996. "VarScope": "Scene",
  6997. "isIllegal": true,
  6998. "randomID": "k3HhlbBKxOWw",
  6999. "titleLabel": {
  7000. "Type": "STRING",
  7001. "Value": "P-游戏前道具3_道具数量",
  7002. "displayName": ""
  7003. }
  7004. },
  7005. "StringValue": {
  7006. "Type": "STRING",
  7007. "Value": "道具数量"
  7008. },
  7009. "Type": "BTInputSlot"
  7010. },
  7011. "BTInputSlot4": {
  7012. "ContainerValue": null,
  7013. "StringValue": {
  7014. "Type": "STRING",
  7015. "Value": "时效文本"
  7016. },
  7017. "Type": "BTInputSlot"
  7018. },
  7019. "BTInputSlot5": {
  7020. "ContainerValue": {
  7021. "Type": "BTCoderVariableAction",
  7022. "VarScope": "Scene",
  7023. "isIllegal": true,
  7024. "randomID": "yyMKCGDGCIlJ",
  7025. "titleLabel": {
  7026. "Type": "STRING",
  7027. "Value": "P-Plist路径",
  7028. "displayName": ""
  7029. }
  7030. },
  7031. "StringValue": {
  7032. "Type": "STRING",
  7033. "Value": "Plist路径"
  7034. },
  7035. "Type": "BTInputSlot"
  7036. },
  7037. "BTInputSlot6": {
  7038. "ContainerValue": {
  7039. "Type": "BTCoderVariableAction",
  7040. "VarScope": "Scene",
  7041. "isIllegal": true,
  7042. "randomID": "H1j2DpH3khtw",
  7043. "titleLabel": {
  7044. "Type": "STRING",
  7045. "Value": "P-游戏前道具3_图片名",
  7046. "displayName": ""
  7047. }
  7048. },
  7049. "StringValue": {
  7050. "Type": "STRING",
  7051. "Value": "道具图片名"
  7052. },
  7053. "Type": "BTInputSlot"
  7054. },
  7055. "Type": "BTCallRedCustomFuncBodyAction",
  7056. "baseSelect": {
  7057. "DisplayName": "游戏前道具初始化",
  7058. "Type": "Action",
  7059. "Value": "游戏前道具初始化"
  7060. },
  7061. "funcHeadID": "q2hMIBClDBV2",
  7062. "isIllegal": true,
  7063. "paramArr": [
  7064. [
  7065. "BTInputSlot1",
  7066. "道具默认状态"
  7067. ],
  7068. [
  7069. "BTInputSlot2",
  7070. "解锁等级"
  7071. ],
  7072. [
  7073. "BTInputSlot3",
  7074. "道具数量"
  7075. ],
  7076. [
  7077. "BTInputSlot4",
  7078. "时效文本"
  7079. ],
  7080. [
  7081. "BTInputSlot5",
  7082. "Plist路径"
  7083. ],
  7084. [
  7085. "BTInputSlot6",
  7086. "道具图片名"
  7087. ]
  7088. ],
  7089. "randomID": "KTIAXigEEdyE",
  7090. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  7091. "redSelect": {
  7092. "DisplayName": "道具按钮3",
  7093. "Type": "OBJ",
  7094. "Value": "Xuuh1MncKir7"
  7095. },
  7096. "stepSlot": {
  7097. "ContainerValue": null,
  7098. "Type": "BTStepSlot"
  7099. }
  7100. },
  7101. "Type": "BTStepSlot"
  7102. }
  7103. },
  7104. "Type": "BTStepSlot"
  7105. }
  7106. },
  7107. "Type": "BTStepSlot"
  7108. },
  7109. "x": -1257,
  7110. "y": 186
  7111. },
  7112. "Tree16": {
  7113. "ExportTree": true,
  7114. "ImageIndex": 3,
  7115. "Name": {
  7116. "Type": "STRING",
  7117. "Value": "按钮显示状态",
  7118. "displayName": ""
  7119. },
  7120. "Type": "BTCustomFuncHeadAction",
  7121. "VarJson": {
  7122. "boolJson": {
  7123. },
  7124. "numberJson": {
  7125. }
  7126. },
  7127. "isIllegal": false,
  7128. "randomID": "AVaxZpI23SGx",
  7129. "stepSlot": {
  7130. "ContainerValue": {
  7131. "Type": "BTNodeHiddenAction",
  7132. "baseSelect": {
  7133. "DisplayName": "道具未解锁按钮模块",
  7134. "Type": "Action",
  7135. "Value": "dZue1dzdRugh"
  7136. },
  7137. "isIllegal": true,
  7138. "randomID": "aAJm7IwXNsBI",
  7139. "stepSlot": {
  7140. "ContainerValue": {
  7141. "Type": "BTNodeHiddenAction",
  7142. "baseSelect": {
  7143. "DisplayName": "道具已解锁_游戏开始模块",
  7144. "Type": "Action",
  7145. "Value": "x9QqPQLaUucT"
  7146. },
  7147. "isIllegal": true,
  7148. "randomID": "9fYESupkIt1h",
  7149. "stepSlot": {
  7150. "ContainerValue": {
  7151. "Type": "BTNodeHiddenAction",
  7152. "baseSelect": {
  7153. "DisplayName": "广告获取道具模块",
  7154. "Type": "Action",
  7155. "Value": "IFTHeHHJ8sa2"
  7156. },
  7157. "isIllegal": true,
  7158. "randomID": "iQCSNJ9ogqpx",
  7159. "stepSlot": {
  7160. "ContainerValue": {
  7161. "Type": "BTIFControlAction",
  7162. "conditionA": {
  7163. "ContainerValue": {
  7164. "Type": "BTEqualOperatorAction",
  7165. "conditionA": {
  7166. "ContainerValue": {
  7167. "Type": "BTCoderVariableAction",
  7168. "VarScope": "Scene",
  7169. "isIllegal": true,
  7170. "randomID": "VnFLRw4ix5Y0",
  7171. "titleLabel": {
  7172. "Type": "STRING",
  7173. "Value": "P-道具解锁数",
  7174. "displayName": ""
  7175. }
  7176. },
  7177. "StringValue": {
  7178. "Type": "FLOAT",
  7179. "Value": 0
  7180. },
  7181. "Type": "BTInputSlot"
  7182. },
  7183. "conditionB": {
  7184. "ContainerValue": null,
  7185. "StringValue": {
  7186. "Type": "FLOAT",
  7187. "Value": 0
  7188. },
  7189. "Type": "BTInputSlot"
  7190. },
  7191. "isIllegal": true,
  7192. "randomID": "dtkZPysr1ZKr"
  7193. },
  7194. "Type": "BTBoolSlot"
  7195. },
  7196. "isIllegal": true,
  7197. "randomID": "oy9V4I2OXzrG",
  7198. "sectionA": {
  7199. "ContainerValue": {
  7200. "Type": "BTNodeShowAction",
  7201. "baseSelect": {
  7202. "DisplayName": "道具未解锁按钮模块",
  7203. "Type": "Action",
  7204. "Value": "dZue1dzdRugh"
  7205. },
  7206. "isIllegal": true,
  7207. "randomID": "CPl4JRUe1u2o",
  7208. "stepSlot": {
  7209. "ContainerValue": null,
  7210. "Type": "BTStepSlot"
  7211. }
  7212. },
  7213. "Type": "BTSectionSlot"
  7214. },
  7215. "stepSlot": {
  7216. "ContainerValue": {
  7217. "Type": "BTIFControlAction",
  7218. "conditionA": {
  7219. "ContainerValue": {
  7220. "Type": "BTBoolOrAction",
  7221. "conditionA": {
  7222. "ContainerValue": {
  7223. "Type": "BTEqualOperatorAction",
  7224. "conditionA": {
  7225. "ContainerValue": null,
  7226. "StringValue": {
  7227. "Type": "FLOAT",
  7228. "Value": 1
  7229. },
  7230. "Type": "BTInputSlot"
  7231. },
  7232. "conditionB": {
  7233. "ContainerValue": {
  7234. "Type": "BTCoderVariableAction",
  7235. "VarScope": "Scene",
  7236. "isIllegal": true,
  7237. "randomID": "vb72ZDklOwff",
  7238. "titleLabel": {
  7239. "Type": "STRING",
  7240. "Value": "P-道具解锁数",
  7241. "displayName": ""
  7242. }
  7243. },
  7244. "StringValue": {
  7245. "Type": "FLOAT",
  7246. "Value": 0
  7247. },
  7248. "Type": "BTInputSlot"
  7249. },
  7250. "isIllegal": true,
  7251. "randomID": "pyAO9AGOK0kZ"
  7252. },
  7253. "Type": "BTBoolSlot"
  7254. },
  7255. "conditionB": {
  7256. "ContainerValue": {
  7257. "Type": "BTBiggerThanAction",
  7258. "conditionA": {
  7259. "ContainerValue": {
  7260. "Type": "BTCoderVariableAction",
  7261. "VarScope": "Scene",
  7262. "isIllegal": true,
  7263. "randomID": "OYKILGiF24yM",
  7264. "titleLabel": {
  7265. "Type": "STRING",
  7266. "Value": "P-道具解锁数",
  7267. "displayName": ""
  7268. }
  7269. },
  7270. "StringValue": {
  7271. "Type": "FLOAT",
  7272. "Value": 0
  7273. },
  7274. "Type": "BTInputSlot"
  7275. },
  7276. "conditionB": {
  7277. "ContainerValue": null,
  7278. "StringValue": {
  7279. "Type": "FLOAT",
  7280. "Value": 1
  7281. },
  7282. "Type": "BTInputSlot"
  7283. },
  7284. "isIllegal": true,
  7285. "randomID": "9cRt2DRpkFj0"
  7286. },
  7287. "Type": "BTBoolSlot"
  7288. },
  7289. "isIllegal": true,
  7290. "randomID": "sqwL9mmpHs69"
  7291. },
  7292. "Type": "BTBoolSlot"
  7293. },
  7294. "isIllegal": true,
  7295. "randomID": "MPZ0I3t53pyk",
  7296. "sectionA": {
  7297. "ContainerValue": {
  7298. "Type": "BTNodeShowAction",
  7299. "baseSelect": {
  7300. "DisplayName": "广告获取道具模块",
  7301. "Type": "Action",
  7302. "Value": "IFTHeHHJ8sa2"
  7303. },
  7304. "isIllegal": true,
  7305. "randomID": "415oZ93ZA0vZ",
  7306. "stepSlot": {
  7307. "ContainerValue": {
  7308. "Type": "BTNodeShowAction",
  7309. "baseSelect": {
  7310. "DisplayName": "道具已解锁_游戏开始模块",
  7311. "Type": "Action",
  7312. "Value": "x9QqPQLaUucT"
  7313. },
  7314. "isIllegal": true,
  7315. "randomID": "etabvSw2hwrl",
  7316. "stepSlot": {
  7317. "ContainerValue": null,
  7318. "Type": "BTStepSlot"
  7319. }
  7320. },
  7321. "Type": "BTStepSlot"
  7322. }
  7323. },
  7324. "Type": "BTSectionSlot"
  7325. },
  7326. "stepSlot": {
  7327. "ContainerValue": {
  7328. "Type": "BTIFControlAction",
  7329. "conditionA": {
  7330. "ContainerValue": {
  7331. "Type": "BTEqualOperatorAction",
  7332. "conditionA": {
  7333. "ContainerValue": null,
  7334. "StringValue": {
  7335. "Type": "FLOAT",
  7336. "Value": 1
  7337. },
  7338. "Type": "BTInputSlot"
  7339. },
  7340. "conditionB": {
  7341. "ContainerValue": {
  7342. "Type": "BTCoderVariableAction",
  7343. "VarScope": "Scene",
  7344. "isIllegal": true,
  7345. "randomID": "N3DYwR5ibqfR",
  7346. "titleLabel": {
  7347. "Type": "STRING",
  7348. "Value": "P-道具解锁数",
  7349. "displayName": ""
  7350. }
  7351. },
  7352. "StringValue": {
  7353. "Type": "FLOAT",
  7354. "Value": 0
  7355. },
  7356. "Type": "BTInputSlot"
  7357. },
  7358. "isIllegal": true,
  7359. "randomID": "sj3ovKNU4Av6"
  7360. },
  7361. "Type": "BTBoolSlot"
  7362. },
  7363. "isIllegal": true,
  7364. "randomID": "kQPKwHKiiTj7",
  7365. "sectionA": {
  7366. "ContainerValue": {
  7367. "Type": "BTPlaySceneTimeLineAction",
  7368. "baseSelect": {
  7369. "DisplayName": "循环动画1",
  7370. "Type": "Action",
  7371. "Value": "0"
  7372. },
  7373. "isIllegal": true,
  7374. "randomID": "Hk8Y1aKVq4Bk",
  7375. "redSelect": {
  7376. "DisplayName": "道具循环标签",
  7377. "Type": "OBJ",
  7378. "Value": "oy6rfCPR5S9h"
  7379. },
  7380. "stepSlot": {
  7381. "ContainerValue": null,
  7382. "Type": "BTStepSlot"
  7383. }
  7384. },
  7385. "Type": "BTSectionSlot"
  7386. },
  7387. "stepSlot": {
  7388. "ContainerValue": {
  7389. "Type": "BTIFControlAction",
  7390. "conditionA": {
  7391. "ContainerValue": {
  7392. "Type": "BTEqualOperatorAction",
  7393. "conditionA": {
  7394. "ContainerValue": null,
  7395. "StringValue": {
  7396. "Type": "FLOAT",
  7397. "Value": 2
  7398. },
  7399. "Type": "BTInputSlot"
  7400. },
  7401. "conditionB": {
  7402. "ContainerValue": {
  7403. "Type": "BTCoderVariableAction",
  7404. "VarScope": "Scene",
  7405. "isIllegal": true,
  7406. "randomID": "KjvQgkmKd0yA",
  7407. "titleLabel": {
  7408. "Type": "STRING",
  7409. "Value": "P-道具解锁数",
  7410. "displayName": ""
  7411. }
  7412. },
  7413. "StringValue": {
  7414. "Type": "FLOAT",
  7415. "Value": 0
  7416. },
  7417. "Type": "BTInputSlot"
  7418. },
  7419. "isIllegal": true,
  7420. "randomID": "dBNnMmAII8OO"
  7421. },
  7422. "Type": "BTBoolSlot"
  7423. },
  7424. "isIllegal": true,
  7425. "randomID": "teAZPfsxwnKW",
  7426. "sectionA": {
  7427. "ContainerValue": {
  7428. "Type": "BTPlaySceneTimeLineAction",
  7429. "baseSelect": {
  7430. "DisplayName": "循环动画2",
  7431. "Type": "Action",
  7432. "Value": "1"
  7433. },
  7434. "isIllegal": true,
  7435. "randomID": "QbL82tYnmkvE",
  7436. "redSelect": {
  7437. "DisplayName": "道具循环标签",
  7438. "Type": "OBJ",
  7439. "Value": "oy6rfCPR5S9h"
  7440. },
  7441. "stepSlot": {
  7442. "ContainerValue": null,
  7443. "Type": "BTStepSlot"
  7444. }
  7445. },
  7446. "Type": "BTSectionSlot"
  7447. },
  7448. "stepSlot": {
  7449. "ContainerValue": {
  7450. "Type": "BTIFControlAction",
  7451. "conditionA": {
  7452. "ContainerValue": {
  7453. "Type": "BTEqualOperatorAction",
  7454. "conditionA": {
  7455. "ContainerValue": null,
  7456. "StringValue": {
  7457. "Type": "FLOAT",
  7458. "Value": 3
  7459. },
  7460. "Type": "BTInputSlot"
  7461. },
  7462. "conditionB": {
  7463. "ContainerValue": {
  7464. "Type": "BTCoderVariableAction",
  7465. "VarScope": "Scene",
  7466. "isIllegal": true,
  7467. "randomID": "ewbs2VFHm0tc",
  7468. "titleLabel": {
  7469. "Type": "STRING",
  7470. "Value": "P-道具解锁数",
  7471. "displayName": ""
  7472. }
  7473. },
  7474. "StringValue": {
  7475. "Type": "FLOAT",
  7476. "Value": 0
  7477. },
  7478. "Type": "BTInputSlot"
  7479. },
  7480. "isIllegal": true,
  7481. "randomID": "ouroMdf9VBty"
  7482. },
  7483. "Type": "BTBoolSlot"
  7484. },
  7485. "isIllegal": true,
  7486. "randomID": "sGMapu5CNIP0",
  7487. "sectionA": {
  7488. "ContainerValue": {
  7489. "Type": "BTPlaySceneTimeLineAction",
  7490. "baseSelect": {
  7491. "DisplayName": "循环动画3",
  7492. "Type": "Action",
  7493. "Value": "2"
  7494. },
  7495. "isIllegal": true,
  7496. "randomID": "A65iPnG3RIzs",
  7497. "redSelect": {
  7498. "DisplayName": "道具循环标签",
  7499. "Type": "OBJ",
  7500. "Value": "oy6rfCPR5S9h"
  7501. },
  7502. "stepSlot": {
  7503. "ContainerValue": null,
  7504. "Type": "BTStepSlot"
  7505. }
  7506. },
  7507. "Type": "BTSectionSlot"
  7508. },
  7509. "stepSlot": {
  7510. "ContainerValue": null,
  7511. "Type": "BTStepSlot"
  7512. }
  7513. },
  7514. "Type": "BTStepSlot"
  7515. }
  7516. },
  7517. "Type": "BTStepSlot"
  7518. }
  7519. },
  7520. "Type": "BTStepSlot"
  7521. }
  7522. },
  7523. "Type": "BTStepSlot"
  7524. }
  7525. },
  7526. "Type": "BTStepSlot"
  7527. }
  7528. },
  7529. "Type": "BTStepSlot"
  7530. }
  7531. },
  7532. "Type": "BTStepSlot"
  7533. }
  7534. },
  7535. "Type": "BTStepSlot"
  7536. },
  7537. "x": 1123.7482979472218,
  7538. "y": 412.24612021070453
  7539. },
  7540. "Tree17": {
  7541. "ExportTree": true,
  7542. "ImageIndex": 8,
  7543. "Name": {
  7544. "Type": "STRING",
  7545. "Value": "文本提示框困难",
  7546. "displayName": ""
  7547. },
  7548. "Type": "BTCustomFuncHeadAction",
  7549. "VarJson": {
  7550. "boolJson": {
  7551. },
  7552. "numberJson": {
  7553. }
  7554. },
  7555. "isIllegal": false,
  7556. "randomID": "YRafGq7HRO4L",
  7557. "stepSlot": {
  7558. "ContainerValue": {
  7559. "BTInputSlot1": {
  7560. "ContainerValue": {
  7561. "Type": "BTCoderVariableAction",
  7562. "VarScope": "Scene",
  7563. "isIllegal": true,
  7564. "randomID": "fwR5pVgXAZS3",
  7565. "titleLabel": {
  7566. "Type": "STRING",
  7567. "Value": "P-收集物倍数",
  7568. "displayName": ""
  7569. }
  7570. },
  7571. "StringValue": {
  7572. "Type": "STRING",
  7573. "Value": "倍数"
  7574. },
  7575. "Type": "BTInputSlot"
  7576. },
  7577. "Type": "BTCallRedCustomFuncBodyAction",
  7578. "baseSelect": {
  7579. "DisplayName": "收集物倍数",
  7580. "Type": "Action",
  7581. "Value": "收集物倍数"
  7582. },
  7583. "funcHeadID": "l6TSwx7SoCyn",
  7584. "isIllegal": true,
  7585. "paramArr": [
  7586. [
  7587. "BTInputSlot1",
  7588. "倍数"
  7589. ]
  7590. ],
  7591. "randomID": "ijOWPfVTQdwR",
  7592. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_文本提示框.red",
  7593. "redSelect": {
  7594. "DisplayName": "GoodsMerge_弹窗_文本提示框",
  7595. "Type": "OBJ",
  7596. "Value": "lVi0jiqV9Awz"
  7597. },
  7598. "stepSlot": {
  7599. "ContainerValue": {
  7600. "BTInputSlot1": {
  7601. "ContainerValue": {
  7602. "Type": "BTCoderVariableAction",
  7603. "VarScope": "Scene",
  7604. "isIllegal": true,
  7605. "randomID": "c0XlZaq0PSUP",
  7606. "titleLabel": {
  7607. "Type": "STRING",
  7608. "Value": "P-Plist路径",
  7609. "displayName": ""
  7610. }
  7611. },
  7612. "StringValue": {
  7613. "Type": "STRING",
  7614. "Value": "Plist路径"
  7615. },
  7616. "Type": "BTInputSlot"
  7617. },
  7618. "BTInputSlot2": {
  7619. "ContainerValue": {
  7620. "Type": "BTCoderVariableAction",
  7621. "VarScope": "Scene",
  7622. "isIllegal": true,
  7623. "randomID": "M2V9Y5IAxVUT",
  7624. "titleLabel": {
  7625. "Type": "STRING",
  7626. "Value": "P-收集物位置1图片",
  7627. "displayName": ""
  7628. }
  7629. },
  7630. "StringValue": {
  7631. "Type": "STRING",
  7632. "Value": "收集物位置1图片"
  7633. },
  7634. "Type": "BTInputSlot"
  7635. },
  7636. "BTInputSlot3": {
  7637. "ContainerValue": {
  7638. "Type": "BTCoderVariableAction",
  7639. "VarScope": "Scene",
  7640. "isIllegal": true,
  7641. "randomID": "6VcweazLgNTF",
  7642. "titleLabel": {
  7643. "Type": "STRING",
  7644. "Value": "P-收集物位置2图片",
  7645. "displayName": ""
  7646. }
  7647. },
  7648. "StringValue": {
  7649. "Type": "STRING",
  7650. "Value": "收集物位置2图片"
  7651. },
  7652. "Type": "BTInputSlot"
  7653. },
  7654. "BTInputSlot4": {
  7655. "ContainerValue": {
  7656. "Type": "BTCoderVariableAction",
  7657. "VarScope": "Scene",
  7658. "isIllegal": true,
  7659. "randomID": "4JseAEEGKX2c",
  7660. "titleLabel": {
  7661. "Type": "STRING",
  7662. "Value": "P-收集物位置3图片",
  7663. "displayName": ""
  7664. }
  7665. },
  7666. "StringValue": {
  7667. "Type": "STRING",
  7668. "Value": "收集物位置3图片"
  7669. },
  7670. "Type": "BTInputSlot"
  7671. },
  7672. "BTInputSlot5": {
  7673. "ContainerValue": {
  7674. "Type": "BTCoderVariableAction",
  7675. "VarScope": "Scene",
  7676. "isIllegal": true,
  7677. "randomID": "dpli3JLNygmK",
  7678. "titleLabel": {
  7679. "Type": "STRING",
  7680. "Value": "P-收集物位置4图片",
  7681. "displayName": ""
  7682. }
  7683. },
  7684. "StringValue": {
  7685. "Type": "STRING",
  7686. "Value": "收集物位置4图片"
  7687. },
  7688. "Type": "BTInputSlot"
  7689. },
  7690. "BTInputSlot6": {
  7691. "ContainerValue": {
  7692. "Type": "BTCoderVariableAction",
  7693. "VarScope": "Scene",
  7694. "isIllegal": true,
  7695. "randomID": "A2ChHVg76M8u",
  7696. "titleLabel": {
  7697. "Type": "STRING",
  7698. "Value": "P-收集物位置5图片",
  7699. "displayName": ""
  7700. }
  7701. },
  7702. "StringValue": {
  7703. "Type": "STRING",
  7704. "Value": "收集物位置5图片"
  7705. },
  7706. "Type": "BTInputSlot"
  7707. },
  7708. "BTInputSlot7": {
  7709. "ContainerValue": {
  7710. "Type": "BTCoderVariableAction",
  7711. "VarScope": "Scene",
  7712. "isIllegal": true,
  7713. "randomID": "bIW2HNTdRupy",
  7714. "titleLabel": {
  7715. "Type": "STRING",
  7716. "Value": "P-收集物种类",
  7717. "displayName": ""
  7718. }
  7719. },
  7720. "StringValue": {
  7721. "Type": "STRING",
  7722. "Value": "收集物种类"
  7723. },
  7724. "Type": "BTInputSlot"
  7725. },
  7726. "Type": "BTCallRedCustomFuncBodyAction",
  7727. "baseSelect": {
  7728. "DisplayName": "文本提示框困难",
  7729. "Type": "Action",
  7730. "Value": "文本提示框困难"
  7731. },
  7732. "funcHeadID": "KLquwt5FkbI7",
  7733. "isIllegal": true,
  7734. "paramArr": [
  7735. [
  7736. "BTInputSlot1",
  7737. "Plist路径"
  7738. ],
  7739. [
  7740. "BTInputSlot2",
  7741. "收集物位置1图片"
  7742. ],
  7743. [
  7744. "BTInputSlot3",
  7745. "收集物位置2图片"
  7746. ],
  7747. [
  7748. "BTInputSlot4",
  7749. "收集物位置3图片"
  7750. ],
  7751. [
  7752. "BTInputSlot5",
  7753. "收集物位置4图片"
  7754. ],
  7755. [
  7756. "BTInputSlot6",
  7757. "收集物位置5图片"
  7758. ],
  7759. [
  7760. "BTInputSlot7",
  7761. "收集物种类"
  7762. ]
  7763. ],
  7764. "randomID": "3a80FJxMB2ji",
  7765. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_弹窗_文本提示框.red",
  7766. "redSelect": {
  7767. "DisplayName": "GoodsMerge_弹窗_文本提示框",
  7768. "Type": "OBJ",
  7769. "Value": "lVi0jiqV9Awz"
  7770. },
  7771. "stepSlot": {
  7772. "ContainerValue": null,
  7773. "Type": "BTStepSlot"
  7774. }
  7775. },
  7776. "Type": "BTStepSlot"
  7777. }
  7778. },
  7779. "Type": "BTStepSlot"
  7780. },
  7781. "x": -1469,
  7782. "y": 1578
  7783. },
  7784. "Tree18": {
  7785. "ExportTree": true,
  7786. "ImageIndex": -1,
  7787. "Type": "BTButtonClickFuncAction",
  7788. "VarJson": {
  7789. "boolJson": {
  7790. },
  7791. "numberJson": {
  7792. }
  7793. },
  7794. "isIllegal": false,
  7795. "mathSelector": {
  7796. "DisplayName": "关闭按钮",
  7797. "Type": "OBJ",
  7798. "Value": "T58ipYJ3q0G2"
  7799. },
  7800. "randomID": "Nx97Q5NYFpMR",
  7801. "stepSlot": {
  7802. "ContainerValue": {
  7803. "Type": "BTButtonEnableAction",
  7804. "baseSelect": {
  7805. "DisplayName": "关闭按钮",
  7806. "Type": "Action",
  7807. "Value": "T58ipYJ3q0G2"
  7808. },
  7809. "enableButton": {
  7810. "Type": "BTCheckBox",
  7811. "isEnable": false
  7812. },
  7813. "isIllegal": true,
  7814. "randomID": "Jm6ERIKbBLoG",
  7815. "stepSlot": {
  7816. "ContainerValue": {
  7817. "Type": "BTPlayTimeLineAction",
  7818. "baseSelect": {
  7819. "DisplayName": "退出动画",
  7820. "Type": "Action",
  7821. "Value": "1"
  7822. },
  7823. "isIllegal": true,
  7824. "randomID": "FUmHUKilRGva",
  7825. "stepSlot": {
  7826. "ContainerValue": {
  7827. "Type": "BTRedHiddenAction",
  7828. "baseSelect": {
  7829. "DisplayName": "进入动画",
  7830. "Type": "Action",
  7831. "Value": "0"
  7832. },
  7833. "isIllegal": true,
  7834. "randomID": "94d9BZSiZJ3s",
  7835. "stepSlot": {
  7836. "ContainerValue": {
  7837. "Type": "BTWaitTimeAction",
  7838. "conditionA": {
  7839. "ContainerValue": null,
  7840. "StringValue": {
  7841. "Type": "FLOAT",
  7842. "Value": 0.10000000149011612
  7843. },
  7844. "Type": "BTInputSlot"
  7845. },
  7846. "isIllegal": true,
  7847. "randomID": "m5KewPlfFYHK",
  7848. "stepSlot": {
  7849. "ContainerValue": {
  7850. "Type": "BTButtonEnableAction",
  7851. "baseSelect": {
  7852. "DisplayName": "关闭按钮",
  7853. "Type": "Action",
  7854. "Value": "T58ipYJ3q0G2"
  7855. },
  7856. "enableButton": {
  7857. "Type": "BTCheckBox",
  7858. "isEnable": true
  7859. },
  7860. "isIllegal": true,
  7861. "randomID": "xY8DKIvin5hC",
  7862. "stepSlot": {
  7863. "ContainerValue": {
  7864. "Type": "BTNotificationToCoderAction",
  7865. "conditionA": {
  7866. "ContainerValue": null,
  7867. "StringValue": {
  7868. "Type": "STRING",
  7869. "Value": "关闭游戏进入弹窗"
  7870. },
  7871. "Type": "BTInputSlot"
  7872. },
  7873. "isIllegal": true,
  7874. "randomID": "tb39WufSLPMA",
  7875. "stepSlot": {
  7876. "ContainerValue": null,
  7877. "Type": "BTStepSlot"
  7878. }
  7879. },
  7880. "Type": "BTStepSlot"
  7881. }
  7882. },
  7883. "Type": "BTStepSlot"
  7884. }
  7885. },
  7886. "Type": "BTStepSlot"
  7887. }
  7888. },
  7889. "Type": "BTStepSlot"
  7890. }
  7891. },
  7892. "Type": "BTStepSlot"
  7893. }
  7894. },
  7895. "Type": "BTStepSlot"
  7896. },
  7897. "x": -214,
  7898. "y": 795
  7899. },
  7900. "Tree19": {
  7901. "ExportTree": true,
  7902. "ImageIndex": -1,
  7903. "Type": "BTButtonClickFuncAction",
  7904. "VarJson": {
  7905. "boolJson": {
  7906. },
  7907. "numberJson": {
  7908. }
  7909. },
  7910. "isIllegal": false,
  7911. "mathSelector": {
  7912. "DisplayName": "游戏开始_道具未解锁",
  7913. "Type": "OBJ",
  7914. "Value": "fufh4FcDRba5"
  7915. },
  7916. "randomID": "BvkkR8Rb0kO6",
  7917. "stepSlot": {
  7918. "ContainerValue": {
  7919. "Type": "BTButtonEnableAction",
  7920. "baseSelect": {
  7921. "DisplayName": "游戏开始_道具未解锁",
  7922. "Type": "Action",
  7923. "Value": "fufh4FcDRba5"
  7924. },
  7925. "enableButton": {
  7926. "Type": "BTCheckBox",
  7927. "isEnable": false
  7928. },
  7929. "isIllegal": true,
  7930. "randomID": "AOoO03WOxstR",
  7931. "stepSlot": {
  7932. "ContainerValue": {
  7933. "Type": "BTNotificationToCoderAction",
  7934. "conditionA": {
  7935. "ContainerValue": null,
  7936. "StringValue": {
  7937. "Type": "STRING",
  7938. "Value": "游戏进入弹窗_游戏进入"
  7939. },
  7940. "Type": "BTInputSlot"
  7941. },
  7942. "isIllegal": true,
  7943. "randomID": "EHNKaKedhmZJ",
  7944. "stepSlot": {
  7945. "ContainerValue": null,
  7946. "Type": "BTStepSlot"
  7947. }
  7948. },
  7949. "Type": "BTStepSlot"
  7950. }
  7951. },
  7952. "Type": "BTStepSlot"
  7953. },
  7954. "x": -173.78168291617322,
  7955. "y": 1071.8274756257401
  7956. },
  7957. "Tree2": {
  7958. "ExportTree": true,
  7959. "ImageIndex": 7,
  7960. "Name": {
  7961. "Type": "STRING",
  7962. "Value": "刷新道具1状态",
  7963. "displayName": ""
  7964. },
  7965. "Type": "BTCustomFuncHeadAction",
  7966. "VarJson": {
  7967. "boolJson": {
  7968. },
  7969. "numberJson": {
  7970. }
  7971. },
  7972. "isIllegal": false,
  7973. "randomID": "liYA4sCInEX7",
  7974. "stepSlot": {
  7975. "ContainerValue": {
  7976. "BTInputSlot1": {
  7977. "ContainerValue": {
  7978. "Type": "BTCoderVariableAction",
  7979. "VarScope": "Scene",
  7980. "isIllegal": true,
  7981. "randomID": "mNEbpFFEFwG1",
  7982. "titleLabel": {
  7983. "Type": "STRING",
  7984. "Value": "P-游戏前道具1_默认状态",
  7985. "displayName": ""
  7986. }
  7987. },
  7988. "StringValue": {
  7989. "Type": "STRING",
  7990. "Value": "道具默认状态"
  7991. },
  7992. "Type": "BTInputSlot"
  7993. },
  7994. "BTInputSlot2": {
  7995. "ContainerValue": {
  7996. "Type": "BTCoderVariableAction",
  7997. "VarScope": "Scene",
  7998. "isIllegal": true,
  7999. "randomID": "74XMzG5xcj9s",
  8000. "titleLabel": {
  8001. "Type": "STRING",
  8002. "Value": "P-游戏前道具1_解锁等级",
  8003. "displayName": ""
  8004. }
  8005. },
  8006. "StringValue": {
  8007. "Type": "STRING",
  8008. "Value": "解锁等级"
  8009. },
  8010. "Type": "BTInputSlot"
  8011. },
  8012. "BTInputSlot3": {
  8013. "ContainerValue": {
  8014. "Type": "BTCoderVariableAction",
  8015. "VarScope": "Scene",
  8016. "isIllegal": true,
  8017. "randomID": "lK9PZTMnaUAA",
  8018. "titleLabel": {
  8019. "Type": "STRING",
  8020. "Value": "P-游戏前道具1_道具数量",
  8021. "displayName": ""
  8022. }
  8023. },
  8024. "StringValue": {
  8025. "Type": "STRING",
  8026. "Value": "道具数量"
  8027. },
  8028. "Type": "BTInputSlot"
  8029. },
  8030. "BTInputSlot4": {
  8031. "ContainerValue": null,
  8032. "StringValue": {
  8033. "Type": "STRING",
  8034. "Value": "时效文本"
  8035. },
  8036. "Type": "BTInputSlot"
  8037. },
  8038. "BTInputSlot5": {
  8039. "ContainerValue": {
  8040. "Type": "BTCoderVariableAction",
  8041. "VarScope": "Scene",
  8042. "isIllegal": true,
  8043. "randomID": "dGJbAoSA3GbC",
  8044. "titleLabel": {
  8045. "Type": "STRING",
  8046. "Value": "P-Plist路径",
  8047. "displayName": ""
  8048. }
  8049. },
  8050. "StringValue": {
  8051. "Type": "STRING",
  8052. "Value": "Plist路径"
  8053. },
  8054. "Type": "BTInputSlot"
  8055. },
  8056. "BTInputSlot6": {
  8057. "ContainerValue": {
  8058. "Type": "BTCoderVariableAction",
  8059. "VarScope": "Scene",
  8060. "isIllegal": true,
  8061. "randomID": "crEEJjAn7J5c",
  8062. "titleLabel": {
  8063. "Type": "STRING",
  8064. "Value": "P-游戏前道具1_图片名",
  8065. "displayName": ""
  8066. }
  8067. },
  8068. "StringValue": {
  8069. "Type": "STRING",
  8070. "Value": "道具图片名"
  8071. },
  8072. "Type": "BTInputSlot"
  8073. },
  8074. "Type": "BTCallRedCustomFuncBodyAction",
  8075. "baseSelect": {
  8076. "DisplayName": "游戏前道具初始化",
  8077. "Type": "Action",
  8078. "Value": "游戏前道具初始化"
  8079. },
  8080. "funcHeadID": "q2hMIBClDBV2",
  8081. "isIllegal": true,
  8082. "paramArr": [
  8083. [
  8084. "BTInputSlot1",
  8085. "道具默认状态"
  8086. ],
  8087. [
  8088. "BTInputSlot2",
  8089. "解锁等级"
  8090. ],
  8091. [
  8092. "BTInputSlot3",
  8093. "道具数量"
  8094. ],
  8095. [
  8096. "BTInputSlot4",
  8097. "时效文本"
  8098. ],
  8099. [
  8100. "BTInputSlot5",
  8101. "Plist路径"
  8102. ],
  8103. [
  8104. "BTInputSlot6",
  8105. "道具图片名"
  8106. ]
  8107. ],
  8108. "randomID": "kMiPI4ml1DQg",
  8109. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  8110. "redSelect": {
  8111. "DisplayName": "道具按钮1",
  8112. "Type": "OBJ",
  8113. "Value": "miNKvSdeViD9"
  8114. },
  8115. "stepSlot": {
  8116. "ContainerValue": {
  8117. "Type": "BTNotifiSceneNodeToCoderAction",
  8118. "baseSelect": {
  8119. "DisplayName": "时效文本",
  8120. "Type": "Action",
  8121. "Value": "tscXYDElm19g"
  8122. },
  8123. "conditionA": {
  8124. "ContainerValue": null,
  8125. "StringValue": {
  8126. "Type": "STRING",
  8127. "Value": "游戏前道具1_时效文本"
  8128. },
  8129. "Type": "BTInputSlot"
  8130. },
  8131. "isIllegal": true,
  8132. "paramA": {
  8133. "ContainerValue": null,
  8134. "StringValue": {
  8135. "Type": "STRING",
  8136. "Value": "1"
  8137. },
  8138. "Type": "BTInputSlot"
  8139. },
  8140. "randomID": "O7pEe1ICdKCR",
  8141. "redSelect": {
  8142. "DisplayName": "道具按钮1",
  8143. "Type": "OBJ",
  8144. "Value": "miNKvSdeViD9"
  8145. },
  8146. "stepSlot": {
  8147. "ContainerValue": null,
  8148. "Type": "BTStepSlot"
  8149. }
  8150. },
  8151. "Type": "BTStepSlot"
  8152. }
  8153. },
  8154. "Type": "BTStepSlot"
  8155. },
  8156. "x": -1411.5,
  8157. "y": 406
  8158. },
  8159. "Tree20": {
  8160. "ExportTree": true,
  8161. "ImageIndex": -1,
  8162. "Type": "BTButtonClickFuncAction",
  8163. "VarJson": {
  8164. "boolJson": {
  8165. },
  8166. "numberJson": {
  8167. }
  8168. },
  8169. "isIllegal": false,
  8170. "mathSelector": {
  8171. "DisplayName": "道具已解锁_游戏开始按钮",
  8172. "Type": "OBJ",
  8173. "Value": "mrGvncEssDgR"
  8174. },
  8175. "randomID": "nWcjBTBhUMoF",
  8176. "stepSlot": {
  8177. "ContainerValue": {
  8178. "Type": "BTButtonEnableAction",
  8179. "baseSelect": {
  8180. "DisplayName": "道具已解锁_游戏开始按钮",
  8181. "Type": "Action",
  8182. "Value": "mrGvncEssDgR"
  8183. },
  8184. "enableButton": {
  8185. "Type": "BTCheckBox",
  8186. "isEnable": false
  8187. },
  8188. "isIllegal": true,
  8189. "randomID": "g3VS4iRL9AfZ",
  8190. "stepSlot": {
  8191. "ContainerValue": {
  8192. "Type": "BTNotificationToCoderAction",
  8193. "conditionA": {
  8194. "ContainerValue": null,
  8195. "StringValue": {
  8196. "Type": "STRING",
  8197. "Value": "游戏进入弹窗_游戏进入"
  8198. },
  8199. "Type": "BTInputSlot"
  8200. },
  8201. "isIllegal": true,
  8202. "randomID": "pawR6zMsTPym",
  8203. "stepSlot": {
  8204. "ContainerValue": null,
  8205. "Type": "BTStepSlot"
  8206. }
  8207. },
  8208. "Type": "BTStepSlot"
  8209. }
  8210. },
  8211. "Type": "BTStepSlot"
  8212. },
  8213. "x": -163.73943902794224,
  8214. "y": 1233.5633658323463
  8215. },
  8216. "Tree21": {
  8217. "ExportTree": true,
  8218. "ImageIndex": -1,
  8219. "Type": "BTButtonClickFuncAction",
  8220. "VarJson": {
  8221. "boolJson": {
  8222. },
  8223. "numberJson": {
  8224. }
  8225. },
  8226. "isIllegal": false,
  8227. "mathSelector": {
  8228. "DisplayName": "广告进入游戏按钮",
  8229. "Type": "OBJ",
  8230. "Value": "K5F35qRw6eDm"
  8231. },
  8232. "randomID": "B4ObR5A9Qzoe",
  8233. "stepSlot": {
  8234. "ContainerValue": {
  8235. "Type": "BTButtonEnableAction",
  8236. "baseSelect": {
  8237. "DisplayName": "广告进入游戏按钮",
  8238. "Type": "Action",
  8239. "Value": "K5F35qRw6eDm"
  8240. },
  8241. "enableButton": {
  8242. "Type": "BTCheckBox",
  8243. "isEnable": false
  8244. },
  8245. "isIllegal": true,
  8246. "randomID": "Ir9EHGC2J9ux",
  8247. "stepSlot": {
  8248. "ContainerValue": {
  8249. "Type": "BTNotificationToCoderAction",
  8250. "conditionA": {
  8251. "ContainerValue": null,
  8252. "StringValue": {
  8253. "Type": "STRING",
  8254. "Value": "游戏进入弹窗_广告_游戏进入"
  8255. },
  8256. "Type": "BTInputSlot"
  8257. },
  8258. "isIllegal": true,
  8259. "randomID": "U6CPgHeyytaK",
  8260. "stepSlot": {
  8261. "ContainerValue": {
  8262. "Type": "BTWaitTimeAction",
  8263. "conditionA": {
  8264. "ContainerValue": null,
  8265. "StringValue": {
  8266. "Type": "FLOAT",
  8267. "Value": 0.10000000149011612
  8268. },
  8269. "Type": "BTInputSlot"
  8270. },
  8271. "isIllegal": true,
  8272. "randomID": "qxqbs2EnnUcF",
  8273. "stepSlot": {
  8274. "ContainerValue": {
  8275. "Type": "BTButtonEnableAction",
  8276. "baseSelect": {
  8277. "DisplayName": "广告进入游戏按钮",
  8278. "Type": "Action",
  8279. "Value": "K5F35qRw6eDm"
  8280. },
  8281. "enableButton": {
  8282. "Type": "BTCheckBox",
  8283. "isEnable": true
  8284. },
  8285. "isIllegal": true,
  8286. "randomID": "UdvscqhlxrvC",
  8287. "stepSlot": {
  8288. "ContainerValue": null,
  8289. "Type": "BTStepSlot"
  8290. }
  8291. },
  8292. "Type": "BTStepSlot"
  8293. }
  8294. },
  8295. "Type": "BTStepSlot"
  8296. }
  8297. },
  8298. "Type": "BTStepSlot"
  8299. }
  8300. },
  8301. "Type": "BTStepSlot"
  8302. },
  8303. "x": -186,
  8304. "y": 1413
  8305. },
  8306. "Tree22": {
  8307. "ExportTree": true,
  8308. "ImageIndex": -1,
  8309. "Type": "BTSceneBtnClickFuncAction",
  8310. "VarJson": {
  8311. "boolJson": {
  8312. },
  8313. "numberJson": {
  8314. }
  8315. },
  8316. "baseSelect": {
  8317. "DisplayName": "连胜详情按钮",
  8318. "Type": "Action",
  8319. "Value": "H5DImnaBgB4Q"
  8320. },
  8321. "isIllegal": false,
  8322. "randomID": "ucBgxDTvFc6v",
  8323. "redSelect": {
  8324. "DisplayName": "连胜任务栏",
  8325. "Type": "OBJ",
  8326. "Value": "M5e9fX6ZLhzf"
  8327. },
  8328. "stepSlot": {
  8329. "ContainerValue": {
  8330. "Type": "BTSceneButtonEnableAction",
  8331. "baseSelect": {
  8332. "DisplayName": "连胜详情按钮",
  8333. "Type": "Action",
  8334. "Value": "H5DImnaBgB4Q"
  8335. },
  8336. "enableButton": {
  8337. "Type": "BTCheckBox",
  8338. "isEnable": false
  8339. },
  8340. "isIllegal": true,
  8341. "randomID": "dyz1fw7WXNm6",
  8342. "redSelect": {
  8343. "DisplayName": "连胜任务栏",
  8344. "Type": "OBJ",
  8345. "Value": "M5e9fX6ZLhzf"
  8346. },
  8347. "stepSlot": {
  8348. "ContainerValue": {
  8349. "Type": "BTNotificationToCoderAction",
  8350. "conditionA": {
  8351. "ContainerValue": null,
  8352. "StringValue": {
  8353. "Type": "STRING",
  8354. "Value": "连胜任务详情按钮被点击"
  8355. },
  8356. "Type": "BTInputSlot"
  8357. },
  8358. "isIllegal": true,
  8359. "randomID": "b3NZfs9jeToc",
  8360. "stepSlot": {
  8361. "ContainerValue": {
  8362. "Type": "BTWaitTimeAction",
  8363. "conditionA": {
  8364. "ContainerValue": null,
  8365. "StringValue": {
  8366. "Type": "FLOAT",
  8367. "Value": 0.30000001192092896
  8368. },
  8369. "Type": "BTInputSlot"
  8370. },
  8371. "isIllegal": true,
  8372. "randomID": "YpOognC3LQ60",
  8373. "stepSlot": {
  8374. "ContainerValue": {
  8375. "Type": "BTSceneButtonEnableAction",
  8376. "baseSelect": {
  8377. "DisplayName": "连胜详情按钮",
  8378. "Type": "Action",
  8379. "Value": "H5DImnaBgB4Q"
  8380. },
  8381. "enableButton": {
  8382. "Type": "BTCheckBox",
  8383. "isEnable": true
  8384. },
  8385. "isIllegal": true,
  8386. "randomID": "2cJXVdjMEwhW",
  8387. "redSelect": {
  8388. "DisplayName": "连胜任务栏",
  8389. "Type": "OBJ",
  8390. "Value": "M5e9fX6ZLhzf"
  8391. },
  8392. "stepSlot": {
  8393. "ContainerValue": null,
  8394. "Type": "BTStepSlot"
  8395. }
  8396. },
  8397. "Type": "BTStepSlot"
  8398. }
  8399. },
  8400. "Type": "BTStepSlot"
  8401. }
  8402. },
  8403. "Type": "BTStepSlot"
  8404. }
  8405. },
  8406. "Type": "BTStepSlot"
  8407. },
  8408. "x": -160,
  8409. "y": 563
  8410. },
  8411. "Tree23": {
  8412. "ExportTree": true,
  8413. "ImageIndex": -1,
  8414. "Type": "BTSceneBtnClickFuncAction",
  8415. "VarJson": {
  8416. "boolJson": {
  8417. },
  8418. "numberJson": {
  8419. }
  8420. },
  8421. "baseSelect": {
  8422. "DisplayName": "3倍奖励详情按钮",
  8423. "Type": "Action",
  8424. "Value": "3yqlYTB8RoLM"
  8425. },
  8426. "isIllegal": false,
  8427. "randomID": "3zpVzE9a4OsD",
  8428. "redSelect": {
  8429. "DisplayName": "GoodsMerge_弹窗_难度标签",
  8430. "Type": "OBJ",
  8431. "Value": "kNrJkvZP4N1R"
  8432. },
  8433. "stepSlot": {
  8434. "ContainerValue": {
  8435. "Type": "BTSceneButtonEnableAction",
  8436. "baseSelect": {
  8437. "DisplayName": "3倍奖励详情按钮",
  8438. "Type": "Action",
  8439. "Value": "3yqlYTB8RoLM"
  8440. },
  8441. "enableButton": {
  8442. "Type": "BTCheckBox",
  8443. "isEnable": false
  8444. },
  8445. "isIllegal": true,
  8446. "randomID": "GzvMb81c44nl",
  8447. "redSelect": {
  8448. "DisplayName": "GoodsMerge_弹窗_难度标签",
  8449. "Type": "OBJ",
  8450. "Value": "kNrJkvZP4N1R"
  8451. },
  8452. "stepSlot": {
  8453. "ContainerValue": {
  8454. "Type": "BTNotificationToCoderAction",
  8455. "conditionA": {
  8456. "ContainerValue": null,
  8457. "StringValue": {
  8458. "Type": "STRING",
  8459. "Value": "3倍收集物详情点击"
  8460. },
  8461. "Type": "BTInputSlot"
  8462. },
  8463. "isIllegal": true,
  8464. "randomID": "jfh7IvSdp8dN",
  8465. "stepSlot": {
  8466. "ContainerValue": {
  8467. "Name": {
  8468. "Type": "STRING",
  8469. "Value": "文本提示框困难",
  8470. "displayName": ""
  8471. },
  8472. "Type": "BTCustomFuncBodyAction",
  8473. "funcHeadID": "YRafGq7HRO4L",
  8474. "isIllegal": true,
  8475. "paramArr": [
  8476. ],
  8477. "randomID": "SwxMp7v7k5Ak",
  8478. "stepSlot": {
  8479. "ContainerValue": {
  8480. "Type": "BTNodeShowAction",
  8481. "baseSelect": {
  8482. "DisplayName": "文本提示框",
  8483. "Type": "Action",
  8484. "Value": "lVi0jiqV9Awz"
  8485. },
  8486. "isIllegal": true,
  8487. "randomID": "OEhtpC4EksG3",
  8488. "stepSlot": {
  8489. "ContainerValue": {
  8490. "Type": "BTPlaySceneTimeLineAction",
  8491. "baseSelect": {
  8492. "DisplayName": "进入3倍动画",
  8493. "Type": "Action",
  8494. "Value": "0"
  8495. },
  8496. "isIllegal": true,
  8497. "randomID": "4QOfDvhb5Kd2",
  8498. "redSelect": {
  8499. "DisplayName": "GoodsMerge_弹窗_文本提示框",
  8500. "Type": "OBJ",
  8501. "Value": "lVi0jiqV9Awz"
  8502. },
  8503. "stepSlot": {
  8504. "ContainerValue": {
  8505. "Type": "BTWaitTimeAction",
  8506. "conditionA": {
  8507. "ContainerValue": null,
  8508. "StringValue": {
  8509. "Type": "FLOAT",
  8510. "Value": 0.10000000149011612
  8511. },
  8512. "Type": "BTInputSlot"
  8513. },
  8514. "isIllegal": true,
  8515. "randomID": "qLCmMNyAlx3B",
  8516. "stepSlot": {
  8517. "ContainerValue": {
  8518. "Type": "BTSceneButtonEnableAction",
  8519. "baseSelect": {
  8520. "DisplayName": "3倍奖励详情按钮",
  8521. "Type": "Action",
  8522. "Value": "3yqlYTB8RoLM"
  8523. },
  8524. "enableButton": {
  8525. "Type": "BTCheckBox",
  8526. "isEnable": true
  8527. },
  8528. "isIllegal": true,
  8529. "randomID": "aCwlPaW6aOYm",
  8530. "redSelect": {
  8531. "DisplayName": "GoodsMerge_弹窗_难度标签",
  8532. "Type": "OBJ",
  8533. "Value": "kNrJkvZP4N1R"
  8534. },
  8535. "stepSlot": {
  8536. "ContainerValue": null,
  8537. "Type": "BTStepSlot"
  8538. }
  8539. },
  8540. "Type": "BTStepSlot"
  8541. }
  8542. },
  8543. "Type": "BTStepSlot"
  8544. }
  8545. },
  8546. "Type": "BTStepSlot"
  8547. }
  8548. },
  8549. "Type": "BTStepSlot"
  8550. }
  8551. },
  8552. "Type": "BTStepSlot"
  8553. }
  8554. },
  8555. "Type": "BTStepSlot"
  8556. }
  8557. },
  8558. "Type": "BTStepSlot"
  8559. },
  8560. "x": -1245,
  8561. "y": 1047
  8562. },
  8563. "Tree24": {
  8564. "ExportTree": true,
  8565. "ImageIndex": 4,
  8566. "Name": {
  8567. "Type": "STRING",
  8568. "Value": "循环标签图片设置",
  8569. "displayName": ""
  8570. },
  8571. "Type": "BTCustomFuncHeadAction",
  8572. "VarJson": {
  8573. "boolJson": {
  8574. },
  8575. "numberJson": {
  8576. }
  8577. },
  8578. "isIllegal": false,
  8579. "randomID": "DN2tPz8aLvVp",
  8580. "stepSlot": {
  8581. "ContainerValue": {
  8582. "Type": "BTSceneSpritePlistAction",
  8583. "baseSelect": {
  8584. "DisplayName": "道具1",
  8585. "Type": "Action",
  8586. "Value": "oo4LS2HcEoi5"
  8587. },
  8588. "frameNameInput": {
  8589. "ContainerValue": {
  8590. "Type": "BTCoderVariableAction",
  8591. "VarScope": "Scene",
  8592. "isIllegal": true,
  8593. "randomID": "QfFymUU3HRnb",
  8594. "titleLabel": {
  8595. "Type": "STRING",
  8596. "Value": "P-游戏前道具1_图片名",
  8597. "displayName": ""
  8598. }
  8599. },
  8600. "StringValue": {
  8601. "Type": "STRING",
  8602. "Value": "图片名"
  8603. },
  8604. "Type": "BTInputSlot"
  8605. },
  8606. "isIllegal": true,
  8607. "pathInput": {
  8608. "ContainerValue": {
  8609. "Type": "BTCoderVariableAction",
  8610. "VarScope": "Scene",
  8611. "isIllegal": true,
  8612. "randomID": "px7EnbT5TI41",
  8613. "titleLabel": {
  8614. "Type": "STRING",
  8615. "Value": "P-Plist路径",
  8616. "displayName": ""
  8617. }
  8618. },
  8619. "StringValue": {
  8620. "Type": "STRING",
  8621. "Value": "Plist路径"
  8622. },
  8623. "Type": "BTInputSlot"
  8624. },
  8625. "randomID": "tTpr84Ra7ZHY",
  8626. "redSelect": {
  8627. "DisplayName": "道具循环标签",
  8628. "Type": "OBJ",
  8629. "Value": "oy6rfCPR5S9h"
  8630. },
  8631. "stepSlot": {
  8632. "ContainerValue": {
  8633. "Type": "BTSceneSpritePlistAction",
  8634. "baseSelect": {
  8635. "DisplayName": "道具2",
  8636. "Type": "Action",
  8637. "Value": "yqH9MOpP5QxK"
  8638. },
  8639. "frameNameInput": {
  8640. "ContainerValue": {
  8641. "Type": "BTCoderVariableAction",
  8642. "VarScope": "Scene",
  8643. "isIllegal": true,
  8644. "randomID": "9mdLHEcLB9r5",
  8645. "titleLabel": {
  8646. "Type": "STRING",
  8647. "Value": "P-游戏前道具2_图片名",
  8648. "displayName": ""
  8649. }
  8650. },
  8651. "StringValue": {
  8652. "Type": "STRING",
  8653. "Value": "图片名"
  8654. },
  8655. "Type": "BTInputSlot"
  8656. },
  8657. "isIllegal": true,
  8658. "pathInput": {
  8659. "ContainerValue": {
  8660. "Type": "BTCoderVariableAction",
  8661. "VarScope": "Scene",
  8662. "isIllegal": true,
  8663. "randomID": "4glQ0bafq5BA",
  8664. "titleLabel": {
  8665. "Type": "STRING",
  8666. "Value": "P-Plist路径",
  8667. "displayName": ""
  8668. }
  8669. },
  8670. "StringValue": {
  8671. "Type": "STRING",
  8672. "Value": "Plist路径"
  8673. },
  8674. "Type": "BTInputSlot"
  8675. },
  8676. "randomID": "8wWkOGl8y763",
  8677. "redSelect": {
  8678. "DisplayName": "道具循环标签",
  8679. "Type": "OBJ",
  8680. "Value": "oy6rfCPR5S9h"
  8681. },
  8682. "stepSlot": {
  8683. "ContainerValue": {
  8684. "Type": "BTSceneSpritePlistAction",
  8685. "baseSelect": {
  8686. "DisplayName": "道具3",
  8687. "Type": "Action",
  8688. "Value": "LzfBvebdr0HR"
  8689. },
  8690. "frameNameInput": {
  8691. "ContainerValue": {
  8692. "Type": "BTCoderVariableAction",
  8693. "VarScope": "Scene",
  8694. "isIllegal": true,
  8695. "randomID": "YlNyst5ljPmT",
  8696. "titleLabel": {
  8697. "Type": "STRING",
  8698. "Value": "P-游戏前道具3_图片名",
  8699. "displayName": ""
  8700. }
  8701. },
  8702. "StringValue": {
  8703. "Type": "STRING",
  8704. "Value": "图片名"
  8705. },
  8706. "Type": "BTInputSlot"
  8707. },
  8708. "isIllegal": true,
  8709. "pathInput": {
  8710. "ContainerValue": {
  8711. "Type": "BTCoderVariableAction",
  8712. "VarScope": "Scene",
  8713. "isIllegal": true,
  8714. "randomID": "GsvzgRDQulrz",
  8715. "titleLabel": {
  8716. "Type": "STRING",
  8717. "Value": "P-Plist路径",
  8718. "displayName": ""
  8719. }
  8720. },
  8721. "StringValue": {
  8722. "Type": "STRING",
  8723. "Value": "Plist路径"
  8724. },
  8725. "Type": "BTInputSlot"
  8726. },
  8727. "randomID": "OVLNaAHR3QVn",
  8728. "redSelect": {
  8729. "DisplayName": "道具循环标签",
  8730. "Type": "OBJ",
  8731. "Value": "oy6rfCPR5S9h"
  8732. },
  8733. "stepSlot": {
  8734. "ContainerValue": null,
  8735. "Type": "BTStepSlot"
  8736. }
  8737. },
  8738. "Type": "BTStepSlot"
  8739. }
  8740. },
  8741. "Type": "BTStepSlot"
  8742. }
  8743. },
  8744. "Type": "BTStepSlot"
  8745. },
  8746. "x": -85.03158856800155,
  8747. "y": 120.41984761035877
  8748. },
  8749. "Tree3": {
  8750. "ExportTree": true,
  8751. "ImageIndex": 11,
  8752. "Name": {
  8753. "Type": "STRING",
  8754. "Value": "刷新道具3状态",
  8755. "displayName": ""
  8756. },
  8757. "Type": "BTCustomFuncHeadAction",
  8758. "VarJson": {
  8759. "boolJson": {
  8760. },
  8761. "numberJson": {
  8762. }
  8763. },
  8764. "isIllegal": false,
  8765. "randomID": "MaN1Qak4Wd8d",
  8766. "stepSlot": {
  8767. "ContainerValue": {
  8768. "BTInputSlot1": {
  8769. "ContainerValue": {
  8770. "Type": "BTCoderVariableAction",
  8771. "VarScope": "Scene",
  8772. "isIllegal": true,
  8773. "randomID": "ujo1jfsOYDPE",
  8774. "titleLabel": {
  8775. "Type": "STRING",
  8776. "Value": "P-游戏前道具3_默认状态",
  8777. "displayName": ""
  8778. }
  8779. },
  8780. "StringValue": {
  8781. "Type": "STRING",
  8782. "Value": "道具默认状态"
  8783. },
  8784. "Type": "BTInputSlot"
  8785. },
  8786. "BTInputSlot2": {
  8787. "ContainerValue": {
  8788. "Type": "BTCoderVariableAction",
  8789. "VarScope": "Scene",
  8790. "isIllegal": true,
  8791. "randomID": "JIC4UV3JQ1j8",
  8792. "titleLabel": {
  8793. "Type": "STRING",
  8794. "Value": "P-游戏前道具3_解锁等级",
  8795. "displayName": ""
  8796. }
  8797. },
  8798. "StringValue": {
  8799. "Type": "STRING",
  8800. "Value": "解锁等级"
  8801. },
  8802. "Type": "BTInputSlot"
  8803. },
  8804. "BTInputSlot3": {
  8805. "ContainerValue": {
  8806. "Type": "BTCoderVariableAction",
  8807. "VarScope": "Scene",
  8808. "isIllegal": true,
  8809. "randomID": "xQ0C7jeDR8re",
  8810. "titleLabel": {
  8811. "Type": "STRING",
  8812. "Value": "P-游戏前道具3_道具数量",
  8813. "displayName": ""
  8814. }
  8815. },
  8816. "StringValue": {
  8817. "Type": "STRING",
  8818. "Value": "道具数量"
  8819. },
  8820. "Type": "BTInputSlot"
  8821. },
  8822. "BTInputSlot4": {
  8823. "ContainerValue": null,
  8824. "StringValue": {
  8825. "Type": "STRING",
  8826. "Value": "时效文本"
  8827. },
  8828. "Type": "BTInputSlot"
  8829. },
  8830. "BTInputSlot5": {
  8831. "ContainerValue": {
  8832. "Type": "BTCoderVariableAction",
  8833. "VarScope": "Scene",
  8834. "isIllegal": true,
  8835. "randomID": "b4U4utWHbdnB",
  8836. "titleLabel": {
  8837. "Type": "STRING",
  8838. "Value": "P-Plist路径",
  8839. "displayName": ""
  8840. }
  8841. },
  8842. "StringValue": {
  8843. "Type": "STRING",
  8844. "Value": "Plist路径"
  8845. },
  8846. "Type": "BTInputSlot"
  8847. },
  8848. "BTInputSlot6": {
  8849. "ContainerValue": {
  8850. "Type": "BTCoderVariableAction",
  8851. "VarScope": "Scene",
  8852. "isIllegal": true,
  8853. "randomID": "iwC3b7MfXEbu",
  8854. "titleLabel": {
  8855. "Type": "STRING",
  8856. "Value": "P-游戏前道具3_图片名",
  8857. "displayName": ""
  8858. }
  8859. },
  8860. "StringValue": {
  8861. "Type": "STRING",
  8862. "Value": "道具图片名"
  8863. },
  8864. "Type": "BTInputSlot"
  8865. },
  8866. "Type": "BTCallRedCustomFuncBodyAction",
  8867. "baseSelect": {
  8868. "DisplayName": "游戏前道具初始化",
  8869. "Type": "Action",
  8870. "Value": "游戏前道具初始化"
  8871. },
  8872. "funcHeadID": "q2hMIBClDBV2",
  8873. "isIllegal": true,
  8874. "paramArr": [
  8875. [
  8876. "BTInputSlot1",
  8877. "道具默认状态"
  8878. ],
  8879. [
  8880. "BTInputSlot2",
  8881. "解锁等级"
  8882. ],
  8883. [
  8884. "BTInputSlot3",
  8885. "道具数量"
  8886. ],
  8887. [
  8888. "BTInputSlot4",
  8889. "时效文本"
  8890. ],
  8891. [
  8892. "BTInputSlot5",
  8893. "Plist路径"
  8894. ],
  8895. [
  8896. "BTInputSlot6",
  8897. "道具图片名"
  8898. ]
  8899. ],
  8900. "randomID": "JTFFbelNUe8Z",
  8901. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  8902. "redSelect": {
  8903. "DisplayName": "道具按钮3",
  8904. "Type": "OBJ",
  8905. "Value": "Xuuh1MncKir7"
  8906. },
  8907. "stepSlot": {
  8908. "ContainerValue": {
  8909. "Type": "BTNotifiSceneNodeToCoderAction",
  8910. "baseSelect": {
  8911. "DisplayName": "时效文本",
  8912. "Type": "Action",
  8913. "Value": "tscXYDElm19g"
  8914. },
  8915. "conditionA": {
  8916. "ContainerValue": null,
  8917. "StringValue": {
  8918. "Type": "STRING",
  8919. "Value": "游戏前道具3_时效文本"
  8920. },
  8921. "Type": "BTInputSlot"
  8922. },
  8923. "isIllegal": true,
  8924. "paramA": {
  8925. "ContainerValue": null,
  8926. "StringValue": {
  8927. "Type": "STRING",
  8928. "Value": "1"
  8929. },
  8930. "Type": "BTInputSlot"
  8931. },
  8932. "randomID": "LGiokXG3w2W3",
  8933. "redSelect": {
  8934. "DisplayName": "道具按钮3",
  8935. "Type": "OBJ",
  8936. "Value": "Xuuh1MncKir7"
  8937. },
  8938. "stepSlot": {
  8939. "ContainerValue": null,
  8940. "Type": "BTStepSlot"
  8941. }
  8942. },
  8943. "Type": "BTStepSlot"
  8944. }
  8945. },
  8946. "Type": "BTStepSlot"
  8947. },
  8948. "x": -1393.5,
  8949. "y": 807
  8950. },
  8951. "Tree4": {
  8952. "ExportTree": true,
  8953. "ImageIndex": -1,
  8954. "Type": "BTSceneBtnClickFuncAction",
  8955. "VarJson": {
  8956. "boolJson": {
  8957. },
  8958. "numberJson": {
  8959. }
  8960. },
  8961. "baseSelect": {
  8962. "DisplayName": "道具购买按钮",
  8963. "Type": "Action",
  8964. "Value": "Z5gzZGIKZK6W"
  8965. },
  8966. "isIllegal": false,
  8967. "randomID": "oNw92M6e3Ozl",
  8968. "redSelect": {
  8969. "DisplayName": "道具按钮1",
  8970. "Type": "OBJ",
  8971. "Value": "miNKvSdeViD9"
  8972. },
  8973. "stepSlot": {
  8974. "ContainerValue": {
  8975. "Type": "BTSceneButtonEnableAction",
  8976. "baseSelect": {
  8977. "DisplayName": "道具购买按钮",
  8978. "Type": "Action",
  8979. "Value": "Z5gzZGIKZK6W"
  8980. },
  8981. "enableButton": {
  8982. "Type": "BTCheckBox",
  8983. "isEnable": false
  8984. },
  8985. "isIllegal": true,
  8986. "randomID": "Spd90TpvKUX4",
  8987. "redSelect": {
  8988. "DisplayName": "道具按钮1",
  8989. "Type": "OBJ",
  8990. "Value": "miNKvSdeViD9"
  8991. },
  8992. "stepSlot": {
  8993. "ContainerValue": {
  8994. "Type": "BTNotificationToCoderWithParamAction",
  8995. "conditionA": {
  8996. "ContainerValue": null,
  8997. "StringValue": {
  8998. "Type": "STRING",
  8999. "Value": "游戏前道具购买按钮被点击"
  9000. },
  9001. "Type": "BTInputSlot"
  9002. },
  9003. "isIllegal": true,
  9004. "paramA": {
  9005. "ContainerValue": null,
  9006. "StringValue": {
  9007. "Type": "STRING",
  9008. "Value": "1"
  9009. },
  9010. "Type": "BTInputSlot"
  9011. },
  9012. "randomID": "BLzrxnBwWCLY",
  9013. "stepSlot": {
  9014. "ContainerValue": {
  9015. "Type": "BTWaitTimeAction",
  9016. "conditionA": {
  9017. "ContainerValue": null,
  9018. "StringValue": {
  9019. "Type": "FLOAT",
  9020. "Value": 0.30000001192092896
  9021. },
  9022. "Type": "BTInputSlot"
  9023. },
  9024. "isIllegal": true,
  9025. "randomID": "OBkvcvjzxKwu",
  9026. "stepSlot": {
  9027. "ContainerValue": {
  9028. "Type": "BTSceneButtonEnableAction",
  9029. "baseSelect": {
  9030. "DisplayName": "道具购买按钮",
  9031. "Type": "Action",
  9032. "Value": "Z5gzZGIKZK6W"
  9033. },
  9034. "enableButton": {
  9035. "Type": "BTCheckBox",
  9036. "isEnable": true
  9037. },
  9038. "isIllegal": true,
  9039. "randomID": "1v6J3GnylrD7",
  9040. "redSelect": {
  9041. "DisplayName": "道具按钮1",
  9042. "Type": "OBJ",
  9043. "Value": "miNKvSdeViD9"
  9044. },
  9045. "stepSlot": {
  9046. "ContainerValue": null,
  9047. "Type": "BTStepSlot"
  9048. }
  9049. },
  9050. "Type": "BTStepSlot"
  9051. }
  9052. },
  9053. "Type": "BTStepSlot"
  9054. }
  9055. },
  9056. "Type": "BTStepSlot"
  9057. }
  9058. },
  9059. "Type": "BTStepSlot"
  9060. },
  9061. "x": 241,
  9062. "y": 673
  9063. },
  9064. "Tree5": {
  9065. "ExportTree": true,
  9066. "ImageIndex": 9,
  9067. "Name": {
  9068. "Type": "STRING",
  9069. "Value": "刷新道具2状态",
  9070. "displayName": ""
  9071. },
  9072. "Type": "BTCustomFuncHeadAction",
  9073. "VarJson": {
  9074. "boolJson": {
  9075. },
  9076. "numberJson": {
  9077. }
  9078. },
  9079. "isIllegal": false,
  9080. "randomID": "fvTjmezKXuPu",
  9081. "stepSlot": {
  9082. "ContainerValue": {
  9083. "BTInputSlot1": {
  9084. "ContainerValue": {
  9085. "Type": "BTCoderVariableAction",
  9086. "VarScope": "Scene",
  9087. "isIllegal": true,
  9088. "randomID": "5fd3oJNoYg8g",
  9089. "titleLabel": {
  9090. "Type": "STRING",
  9091. "Value": "P-游戏前道具2_默认状态",
  9092. "displayName": ""
  9093. }
  9094. },
  9095. "StringValue": {
  9096. "Type": "STRING",
  9097. "Value": "道具默认状态"
  9098. },
  9099. "Type": "BTInputSlot"
  9100. },
  9101. "BTInputSlot2": {
  9102. "ContainerValue": {
  9103. "Type": "BTCoderVariableAction",
  9104. "VarScope": "Scene",
  9105. "isIllegal": true,
  9106. "randomID": "yKPFcQdT2Zsv",
  9107. "titleLabel": {
  9108. "Type": "STRING",
  9109. "Value": "P-游戏前道具2_解锁等级",
  9110. "displayName": ""
  9111. }
  9112. },
  9113. "StringValue": {
  9114. "Type": "STRING",
  9115. "Value": "解锁等级"
  9116. },
  9117. "Type": "BTInputSlot"
  9118. },
  9119. "BTInputSlot3": {
  9120. "ContainerValue": {
  9121. "Type": "BTCoderVariableAction",
  9122. "VarScope": "Scene",
  9123. "isIllegal": true,
  9124. "randomID": "FkpPCH8qEquy",
  9125. "titleLabel": {
  9126. "Type": "STRING",
  9127. "Value": "P-游戏前道具2_道具数量",
  9128. "displayName": ""
  9129. }
  9130. },
  9131. "StringValue": {
  9132. "Type": "STRING",
  9133. "Value": "道具数量"
  9134. },
  9135. "Type": "BTInputSlot"
  9136. },
  9137. "BTInputSlot4": {
  9138. "ContainerValue": null,
  9139. "StringValue": {
  9140. "Type": "STRING",
  9141. "Value": "时效文本"
  9142. },
  9143. "Type": "BTInputSlot"
  9144. },
  9145. "BTInputSlot5": {
  9146. "ContainerValue": {
  9147. "Type": "BTCoderVariableAction",
  9148. "VarScope": "Scene",
  9149. "isIllegal": true,
  9150. "randomID": "J0FTzcc0BwAl",
  9151. "titleLabel": {
  9152. "Type": "STRING",
  9153. "Value": "P-Plist路径",
  9154. "displayName": ""
  9155. }
  9156. },
  9157. "StringValue": {
  9158. "Type": "STRING",
  9159. "Value": "Plist路径"
  9160. },
  9161. "Type": "BTInputSlot"
  9162. },
  9163. "BTInputSlot6": {
  9164. "ContainerValue": {
  9165. "Type": "BTCoderVariableAction",
  9166. "VarScope": "Scene",
  9167. "isIllegal": true,
  9168. "randomID": "sjMaKQ2e8dlW",
  9169. "titleLabel": {
  9170. "Type": "STRING",
  9171. "Value": "P-游戏前道具2_图片名",
  9172. "displayName": ""
  9173. }
  9174. },
  9175. "StringValue": {
  9176. "Type": "STRING",
  9177. "Value": "道具图片名"
  9178. },
  9179. "Type": "BTInputSlot"
  9180. },
  9181. "Type": "BTCallRedCustomFuncBodyAction",
  9182. "baseSelect": {
  9183. "DisplayName": "游戏前道具初始化",
  9184. "Type": "Action",
  9185. "Value": "游戏前道具初始化"
  9186. },
  9187. "funcHeadID": "q2hMIBClDBV2",
  9188. "isIllegal": true,
  9189. "paramArr": [
  9190. [
  9191. "BTInputSlot1",
  9192. "道具默认状态"
  9193. ],
  9194. [
  9195. "BTInputSlot2",
  9196. "解锁等级"
  9197. ],
  9198. [
  9199. "BTInputSlot3",
  9200. "道具数量"
  9201. ],
  9202. [
  9203. "BTInputSlot4",
  9204. "时效文本"
  9205. ],
  9206. [
  9207. "BTInputSlot5",
  9208. "Plist路径"
  9209. ],
  9210. [
  9211. "BTInputSlot6",
  9212. "道具图片名"
  9213. ]
  9214. ],
  9215. "randomID": "SnB0Dh5fLXMj",
  9216. "redId": "/Users/puzzle/Documents/MergeRemoveRes/MergeRemove/ccb/GoodsMerge_选中道具按钮.red",
  9217. "redSelect": {
  9218. "DisplayName": "道具按钮2",
  9219. "Type": "OBJ",
  9220. "Value": "YmYHnGK7GDWr"
  9221. },
  9222. "stepSlot": {
  9223. "ContainerValue": {
  9224. "Type": "BTNotifiSceneNodeToCoderAction",
  9225. "baseSelect": {
  9226. "DisplayName": "时效文本",
  9227. "Type": "Action",
  9228. "Value": "tscXYDElm19g"
  9229. },
  9230. "conditionA": {
  9231. "ContainerValue": null,
  9232. "StringValue": {
  9233. "Type": "STRING",
  9234. "Value": "游戏前道具2_时效文本"
  9235. },
  9236. "Type": "BTInputSlot"
  9237. },
  9238. "isIllegal": true,
  9239. "paramA": {
  9240. "ContainerValue": null,
  9241. "StringValue": {
  9242. "Type": "STRING",
  9243. "Value": "1"
  9244. },
  9245. "Type": "BTInputSlot"
  9246. },
  9247. "randomID": "WqR0JYBARs8C",
  9248. "redSelect": {
  9249. "DisplayName": "道具按钮2",
  9250. "Type": "OBJ",
  9251. "Value": "YmYHnGK7GDWr"
  9252. },
  9253. "stepSlot": {
  9254. "ContainerValue": null,
  9255. "Type": "BTStepSlot"
  9256. }
  9257. },
  9258. "Type": "BTStepSlot"
  9259. }
  9260. },
  9261. "Type": "BTStepSlot"
  9262. },
  9263. "x": -1404.5,
  9264. "y": 619
  9265. },
  9266. "Tree6": {
  9267. "ExportTree": true,
  9268. "ImageIndex": -1,
  9269. "Type": "BTSceneBtnClickFuncAction",
  9270. "VarJson": {
  9271. "boolJson": {
  9272. },
  9273. "numberJson": {
  9274. }
  9275. },
  9276. "baseSelect": {
  9277. "DisplayName": "道具未选择按钮",
  9278. "Type": "Action",
  9279. "Value": "lolJ5r4PeVDW"
  9280. },
  9281. "isIllegal": false,
  9282. "randomID": "zxUnRmmUOKOD",
  9283. "redSelect": {
  9284. "DisplayName": "道具按钮1",
  9285. "Type": "OBJ",
  9286. "Value": "miNKvSdeViD9"
  9287. },
  9288. "stepSlot": {
  9289. "ContainerValue": {
  9290. "Type": "BTSceneButtonEnableAction",
  9291. "baseSelect": {
  9292. "DisplayName": "道具未选择按钮",
  9293. "Type": "Action",
  9294. "Value": "lolJ5r4PeVDW"
  9295. },
  9296. "enableButton": {
  9297. "Type": "BTCheckBox",
  9298. "isEnable": false
  9299. },
  9300. "isIllegal": true,
  9301. "randomID": "2ccW3jKoe3qb",
  9302. "redSelect": {
  9303. "DisplayName": "道具按钮1",
  9304. "Type": "OBJ",
  9305. "Value": "miNKvSdeViD9"
  9306. },
  9307. "stepSlot": {
  9308. "ContainerValue": {
  9309. "Type": "BTNotificationToCoderWithParamAction",
  9310. "conditionA": {
  9311. "ContainerValue": null,
  9312. "StringValue": {
  9313. "Type": "STRING",
  9314. "Value": "游戏前道具使用按钮被点击"
  9315. },
  9316. "Type": "BTInputSlot"
  9317. },
  9318. "isIllegal": true,
  9319. "paramA": {
  9320. "ContainerValue": null,
  9321. "StringValue": {
  9322. "Type": "STRING",
  9323. "Value": "1"
  9324. },
  9325. "Type": "BTInputSlot"
  9326. },
  9327. "randomID": "TJkIb1UAO1xb",
  9328. "stepSlot": {
  9329. "ContainerValue": {
  9330. "Type": "BTSceneNodeShowAction",
  9331. "baseSelect": {
  9332. "DisplayName": "道具选中对勾",
  9333. "Type": "Action",
  9334. "Value": "gVXiqLq2wGkb"
  9335. },
  9336. "isIllegal": true,
  9337. "randomID": "7AT0DeroDmeh",
  9338. "redSelect": {
  9339. "DisplayName": "道具按钮1",
  9340. "Type": "OBJ",
  9341. "Value": "miNKvSdeViD9"
  9342. },
  9343. "stepSlot": {
  9344. "ContainerValue": {
  9345. "Type": "BTPlaySceneTimeLineAction",
  9346. "baseSelect": {
  9347. "DisplayName": "常态_已解锁_已选中",
  9348. "Type": "Action",
  9349. "Value": "8"
  9350. },
  9351. "isIllegal": true,
  9352. "randomID": "2NVwiUQGFKff",
  9353. "redSelect": {
  9354. "DisplayName": "道具按钮1",
  9355. "Type": "OBJ",
  9356. "Value": "miNKvSdeViD9"
  9357. },
  9358. "stepSlot": {
  9359. "ContainerValue": {
  9360. "Type": "BTWaitTimeAction",
  9361. "conditionA": {
  9362. "ContainerValue": null,
  9363. "StringValue": {
  9364. "Type": "FLOAT",
  9365. "Value": 0.30000001192092896
  9366. },
  9367. "Type": "BTInputSlot"
  9368. },
  9369. "isIllegal": true,
  9370. "randomID": "r3nkW6HmGLky",
  9371. "stepSlot": {
  9372. "ContainerValue": {
  9373. "Type": "BTSceneButtonEnableAction",
  9374. "baseSelect": {
  9375. "DisplayName": "道具未选择按钮",
  9376. "Type": "Action",
  9377. "Value": "lolJ5r4PeVDW"
  9378. },
  9379. "enableButton": {
  9380. "Type": "BTCheckBox",
  9381. "isEnable": true
  9382. },
  9383. "isIllegal": true,
  9384. "randomID": "ApVzWaUMe8tg",
  9385. "redSelect": {
  9386. "DisplayName": "道具按钮1",
  9387. "Type": "OBJ",
  9388. "Value": "miNKvSdeViD9"
  9389. },
  9390. "stepSlot": {
  9391. "ContainerValue": null,
  9392. "Type": "BTStepSlot"
  9393. }
  9394. },
  9395. "Type": "BTStepSlot"
  9396. }
  9397. },
  9398. "Type": "BTStepSlot"
  9399. }
  9400. },
  9401. "Type": "BTStepSlot"
  9402. }
  9403. },
  9404. "Type": "BTStepSlot"
  9405. }
  9406. },
  9407. "Type": "BTStepSlot"
  9408. }
  9409. },
  9410. "Type": "BTStepSlot"
  9411. },
  9412. "x": 242,
  9413. "y": 382
  9414. },
  9415. "Tree7": {
  9416. "ExportTree": true,
  9417. "ImageIndex": -1,
  9418. "Type": "BTSceneBtnClickFuncAction",
  9419. "VarJson": {
  9420. "boolJson": {
  9421. },
  9422. "numberJson": {
  9423. }
  9424. },
  9425. "baseSelect": {
  9426. "DisplayName": "道具已选中按钮",
  9427. "Type": "Action",
  9428. "Value": "AmB61brSpzhe"
  9429. },
  9430. "isIllegal": false,
  9431. "randomID": "5AdSTNmA9tz4",
  9432. "redSelect": {
  9433. "DisplayName": "道具按钮1",
  9434. "Type": "OBJ",
  9435. "Value": "miNKvSdeViD9"
  9436. },
  9437. "stepSlot": {
  9438. "ContainerValue": {
  9439. "Type": "BTSceneButtonEnableAction",
  9440. "baseSelect": {
  9441. "DisplayName": "道具已选中按钮",
  9442. "Type": "Action",
  9443. "Value": "AmB61brSpzhe"
  9444. },
  9445. "enableButton": {
  9446. "Type": "BTCheckBox",
  9447. "isEnable": false
  9448. },
  9449. "isIllegal": true,
  9450. "randomID": "igwf1Yi7O5TX",
  9451. "redSelect": {
  9452. "DisplayName": "道具按钮1",
  9453. "Type": "OBJ",
  9454. "Value": "miNKvSdeViD9"
  9455. },
  9456. "stepSlot": {
  9457. "ContainerValue": {
  9458. "Type": "BTNotificationToCoderWithParamAction",
  9459. "conditionA": {
  9460. "ContainerValue": null,
  9461. "StringValue": {
  9462. "Type": "STRING",
  9463. "Value": "游戏前道具取消使用按钮被点击"
  9464. },
  9465. "Type": "BTInputSlot"
  9466. },
  9467. "isIllegal": true,
  9468. "paramA": {
  9469. "ContainerValue": null,
  9470. "StringValue": {
  9471. "Type": "STRING",
  9472. "Value": "1"
  9473. },
  9474. "Type": "BTInputSlot"
  9475. },
  9476. "randomID": "AjH5IjKV3s6Z",
  9477. "stepSlot": {
  9478. "ContainerValue": {
  9479. "Type": "BTSceneNodeHiddenAction",
  9480. "baseSelect": {
  9481. "DisplayName": "道具选中对勾",
  9482. "Type": "Action",
  9483. "Value": "gVXiqLq2wGkb"
  9484. },
  9485. "isIllegal": true,
  9486. "randomID": "hJ0O11G74oZ0",
  9487. "redSelect": {
  9488. "DisplayName": "道具按钮1",
  9489. "Type": "OBJ",
  9490. "Value": "miNKvSdeViD9"
  9491. },
  9492. "stepSlot": {
  9493. "ContainerValue": {
  9494. "Type": "BTPlaySceneTimeLineAction",
  9495. "baseSelect": {
  9496. "DisplayName": "常态_已解锁_未选中",
  9497. "Type": "Action",
  9498. "Value": "7"
  9499. },
  9500. "isIllegal": true,
  9501. "randomID": "ujNsErZCQQkG",
  9502. "redSelect": {
  9503. "DisplayName": "道具按钮1",
  9504. "Type": "OBJ",
  9505. "Value": "miNKvSdeViD9"
  9506. },
  9507. "stepSlot": {
  9508. "ContainerValue": {
  9509. "Type": "BTWaitTimeAction",
  9510. "conditionA": {
  9511. "ContainerValue": null,
  9512. "StringValue": {
  9513. "Type": "FLOAT",
  9514. "Value": 0.30000001192092896
  9515. },
  9516. "Type": "BTInputSlot"
  9517. },
  9518. "isIllegal": true,
  9519. "randomID": "izAfys8QFlYh",
  9520. "stepSlot": {
  9521. "ContainerValue": {
  9522. "Type": "BTSceneButtonEnableAction",
  9523. "baseSelect": {
  9524. "DisplayName": "道具已选中按钮",
  9525. "Type": "Action",
  9526. "Value": "AmB61brSpzhe"
  9527. },
  9528. "enableButton": {
  9529. "Type": "BTCheckBox",
  9530. "isEnable": true
  9531. },
  9532. "isIllegal": true,
  9533. "randomID": "MNaLlRdxyYbT",
  9534. "redSelect": {
  9535. "DisplayName": "道具按钮1",
  9536. "Type": "OBJ",
  9537. "Value": "miNKvSdeViD9"
  9538. },
  9539. "stepSlot": {
  9540. "ContainerValue": null,
  9541. "Type": "BTStepSlot"
  9542. }
  9543. },
  9544. "Type": "BTStepSlot"
  9545. }
  9546. },
  9547. "Type": "BTStepSlot"
  9548. }
  9549. },
  9550. "Type": "BTStepSlot"
  9551. }
  9552. },
  9553. "Type": "BTStepSlot"
  9554. }
  9555. },
  9556. "Type": "BTStepSlot"
  9557. }
  9558. },
  9559. "Type": "BTStepSlot"
  9560. },
  9561. "x": 690.5,
  9562. "y": 380
  9563. },
  9564. "Tree8": {
  9565. "ExportTree": true,
  9566. "ImageIndex": -1,
  9567. "Type": "BTSceneBtnClickFuncAction",
  9568. "VarJson": {
  9569. "boolJson": {
  9570. },
  9571. "numberJson": {
  9572. }
  9573. },
  9574. "baseSelect": {
  9575. "DisplayName": "道具已选中按钮",
  9576. "Type": "Action",
  9577. "Value": "AmB61brSpzhe"
  9578. },
  9579. "isIllegal": false,
  9580. "randomID": "cvbHKjVmYpvb",
  9581. "redSelect": {
  9582. "DisplayName": "道具按钮3",
  9583. "Type": "OBJ",
  9584. "Value": "Xuuh1MncKir7"
  9585. },
  9586. "stepSlot": {
  9587. "ContainerValue": {
  9588. "Type": "BTSceneButtonEnableAction",
  9589. "baseSelect": {
  9590. "DisplayName": "道具已选中按钮",
  9591. "Type": "Action",
  9592. "Value": "AmB61brSpzhe"
  9593. },
  9594. "enableButton": {
  9595. "Type": "BTCheckBox",
  9596. "isEnable": false
  9597. },
  9598. "isIllegal": true,
  9599. "randomID": "B67fIfTmlsW1",
  9600. "redSelect": {
  9601. "DisplayName": "道具按钮3",
  9602. "Type": "OBJ",
  9603. "Value": "Xuuh1MncKir7"
  9604. },
  9605. "stepSlot": {
  9606. "ContainerValue": {
  9607. "Type": "BTNotificationToCoderWithParamAction",
  9608. "conditionA": {
  9609. "ContainerValue": null,
  9610. "StringValue": {
  9611. "Type": "STRING",
  9612. "Value": "游戏前道具取消使用按钮被点击"
  9613. },
  9614. "Type": "BTInputSlot"
  9615. },
  9616. "isIllegal": true,
  9617. "paramA": {
  9618. "ContainerValue": null,
  9619. "StringValue": {
  9620. "Type": "STRING",
  9621. "Value": "3"
  9622. },
  9623. "Type": "BTInputSlot"
  9624. },
  9625. "randomID": "VD8gemPbHGHp",
  9626. "stepSlot": {
  9627. "ContainerValue": {
  9628. "Type": "BTSceneNodeHiddenAction",
  9629. "baseSelect": {
  9630. "DisplayName": "道具选中对勾",
  9631. "Type": "Action",
  9632. "Value": "gVXiqLq2wGkb"
  9633. },
  9634. "isIllegal": true,
  9635. "randomID": "BGOeQ8wiRboR",
  9636. "redSelect": {
  9637. "DisplayName": "道具按钮3",
  9638. "Type": "OBJ",
  9639. "Value": "Xuuh1MncKir7"
  9640. },
  9641. "stepSlot": {
  9642. "ContainerValue": {
  9643. "Type": "BTPlaySceneTimeLineAction",
  9644. "baseSelect": {
  9645. "DisplayName": "常态_已解锁_未选中",
  9646. "Type": "Action",
  9647. "Value": "7"
  9648. },
  9649. "isIllegal": true,
  9650. "randomID": "9io7io4aht8B",
  9651. "redSelect": {
  9652. "DisplayName": "道具按钮3",
  9653. "Type": "OBJ",
  9654. "Value": "Xuuh1MncKir7"
  9655. },
  9656. "stepSlot": {
  9657. "ContainerValue": {
  9658. "Type": "BTWaitTimeAction",
  9659. "conditionA": {
  9660. "ContainerValue": null,
  9661. "StringValue": {
  9662. "Type": "FLOAT",
  9663. "Value": 0.30000001192092896
  9664. },
  9665. "Type": "BTInputSlot"
  9666. },
  9667. "isIllegal": true,
  9668. "randomID": "qTq5HK40osbz",
  9669. "stepSlot": {
  9670. "ContainerValue": {
  9671. "Type": "BTSceneButtonEnableAction",
  9672. "baseSelect": {
  9673. "DisplayName": "道具已选中按钮",
  9674. "Type": "Action",
  9675. "Value": "AmB61brSpzhe"
  9676. },
  9677. "enableButton": {
  9678. "Type": "BTCheckBox",
  9679. "isEnable": true
  9680. },
  9681. "isIllegal": true,
  9682. "randomID": "xgrLk1dPJT8g",
  9683. "redSelect": {
  9684. "DisplayName": "道具按钮3",
  9685. "Type": "OBJ",
  9686. "Value": "Xuuh1MncKir7"
  9687. },
  9688. "stepSlot": {
  9689. "ContainerValue": null,
  9690. "Type": "BTStepSlot"
  9691. }
  9692. },
  9693. "Type": "BTStepSlot"
  9694. }
  9695. },
  9696. "Type": "BTStepSlot"
  9697. }
  9698. },
  9699. "Type": "BTStepSlot"
  9700. }
  9701. },
  9702. "Type": "BTStepSlot"
  9703. }
  9704. },
  9705. "Type": "BTStepSlot"
  9706. }
  9707. },
  9708. "Type": "BTStepSlot"
  9709. },
  9710. "x": 664,
  9711. "y": 1503
  9712. },
  9713. "Tree9": {
  9714. "ExportTree": true,
  9715. "ImageIndex": -1,
  9716. "Type": "BTSceneBtnClickFuncAction",
  9717. "VarJson": {
  9718. "boolJson": {
  9719. },
  9720. "numberJson": {
  9721. }
  9722. },
  9723. "baseSelect": {
  9724. "DisplayName": "道具已选中按钮",
  9725. "Type": "Action",
  9726. "Value": "AmB61brSpzhe"
  9727. },
  9728. "isIllegal": false,
  9729. "randomID": "j9pYMcVlXQLa",
  9730. "redSelect": {
  9731. "DisplayName": "道具按钮2",
  9732. "Type": "OBJ",
  9733. "Value": "YmYHnGK7GDWr"
  9734. },
  9735. "stepSlot": {
  9736. "ContainerValue": {
  9737. "Type": "BTSceneButtonEnableAction",
  9738. "baseSelect": {
  9739. "DisplayName": "道具已选中按钮",
  9740. "Type": "Action",
  9741. "Value": "AmB61brSpzhe"
  9742. },
  9743. "enableButton": {
  9744. "Type": "BTCheckBox",
  9745. "isEnable": false
  9746. },
  9747. "isIllegal": true,
  9748. "randomID": "ZDSNsf9Wh6g2",
  9749. "redSelect": {
  9750. "DisplayName": "道具按钮2",
  9751. "Type": "OBJ",
  9752. "Value": "YmYHnGK7GDWr"
  9753. },
  9754. "stepSlot": {
  9755. "ContainerValue": {
  9756. "Type": "BTNotificationToCoderWithParamAction",
  9757. "conditionA": {
  9758. "ContainerValue": null,
  9759. "StringValue": {
  9760. "Type": "STRING",
  9761. "Value": "游戏前道具取消使用按钮被点击"
  9762. },
  9763. "Type": "BTInputSlot"
  9764. },
  9765. "isIllegal": true,
  9766. "paramA": {
  9767. "ContainerValue": null,
  9768. "StringValue": {
  9769. "Type": "STRING",
  9770. "Value": "2"
  9771. },
  9772. "Type": "BTInputSlot"
  9773. },
  9774. "randomID": "L9CgPLMGuMQB",
  9775. "stepSlot": {
  9776. "ContainerValue": {
  9777. "Type": "BTSceneNodeHiddenAction",
  9778. "baseSelect": {
  9779. "DisplayName": "道具选中对勾",
  9780. "Type": "Action",
  9781. "Value": "gVXiqLq2wGkb"
  9782. },
  9783. "isIllegal": true,
  9784. "randomID": "JcSY60wbtft2",
  9785. "redSelect": {
  9786. "DisplayName": "道具按钮2",
  9787. "Type": "OBJ",
  9788. "Value": "YmYHnGK7GDWr"
  9789. },
  9790. "stepSlot": {
  9791. "ContainerValue": {
  9792. "Type": "BTPlaySceneTimeLineAction",
  9793. "baseSelect": {
  9794. "DisplayName": "常态_已解锁_未选中",
  9795. "Type": "Action",
  9796. "Value": "7"
  9797. },
  9798. "isIllegal": true,
  9799. "randomID": "fXIygmGagPlF",
  9800. "redSelect": {
  9801. "DisplayName": "道具按钮2",
  9802. "Type": "OBJ",
  9803. "Value": "YmYHnGK7GDWr"
  9804. },
  9805. "stepSlot": {
  9806. "ContainerValue": {
  9807. "Type": "BTWaitTimeAction",
  9808. "conditionA": {
  9809. "ContainerValue": null,
  9810. "StringValue": {
  9811. "Type": "FLOAT",
  9812. "Value": 0.30000001192092896
  9813. },
  9814. "Type": "BTInputSlot"
  9815. },
  9816. "isIllegal": true,
  9817. "randomID": "LlJsK5Tf74jh",
  9818. "stepSlot": {
  9819. "ContainerValue": {
  9820. "Type": "BTSceneButtonEnableAction",
  9821. "baseSelect": {
  9822. "DisplayName": "道具已选中按钮",
  9823. "Type": "Action",
  9824. "Value": "AmB61brSpzhe"
  9825. },
  9826. "enableButton": {
  9827. "Type": "BTCheckBox",
  9828. "isEnable": true
  9829. },
  9830. "isIllegal": true,
  9831. "randomID": "JkbxSqc7BwjB",
  9832. "redSelect": {
  9833. "DisplayName": "道具按钮2",
  9834. "Type": "OBJ",
  9835. "Value": "YmYHnGK7GDWr"
  9836. },
  9837. "stepSlot": {
  9838. "ContainerValue": null,
  9839. "Type": "BTStepSlot"
  9840. }
  9841. },
  9842. "Type": "BTStepSlot"
  9843. }
  9844. },
  9845. "Type": "BTStepSlot"
  9846. }
  9847. },
  9848. "Type": "BTStepSlot"
  9849. }
  9850. },
  9851. "Type": "BTStepSlot"
  9852. }
  9853. },
  9854. "Type": "BTStepSlot"
  9855. }
  9856. },
  9857. "Type": "BTStepSlot"
  9858. },
  9859. "x": 669,
  9860. "y": 1038
  9861. }
  9862. }
  9863. }