太空任务活动_浮层_奖励物获得界面.rebolt 554 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662
  1. {
  2. "CustomFunc": {
  3. "初始化": [
  4. [
  5. "Name",
  6. "初始化",
  7. "BdWRkuA6Q51Y",
  8. "/Users/yanhao/Desktop/work/Res_Activities/SpaceMission/ccb/太空任务活动_浮层_奖励物获得界面.red"
  9. ]
  10. ],
  11. "奖励物获得界面": [
  12. [
  13. "Name",
  14. "奖励物获得界面",
  15. "RcjTryxo3J47",
  16. "/Users/yanhao/Desktop/work/Res_Activities/SpaceMission/ccb/太空任务活动_浮层_奖励物获得界面.red"
  17. ]
  18. ]
  19. },
  20. "CustomList": {
  21. },
  22. "CustomMessage": {
  23. "Hello Red": 1
  24. },
  25. "CustomTestFunc": {
  26. "test1": ""
  27. },
  28. "CustomVar": {
  29. "P-奖励物个数": 0,
  30. "P-宝箱类型": 0,
  31. "P-收集物1_终点X": 0,
  32. "P-收集物1_终点Y": 0,
  33. "P-收集物2_终点X": 0,
  34. "P-收集物2_终点Y": 0,
  35. "P-收集物3_终点X": 0,
  36. "P-收集物3_终点Y": 0,
  37. "P-收集物4_终点X": 0,
  38. "P-收集物4_终点Y": 0,
  39. "vIsClosing": 0
  40. },
  41. "DisPlayName": "太空任务活动_浮层_奖励物获得界面",
  42. "RedFileList": {
  43. "8OWcZJllAgtb": {
  44. "CustomFunc": {
  45. },
  46. "CustomList": {
  47. },
  48. "CustomTestFunc": {
  49. },
  50. "CustomVar": {
  51. },
  52. "DisPlayName": "动画_宝箱打开",
  53. "RedNoteInfo": {
  54. },
  55. "TreeList": {
  56. }
  57. }
  58. },
  59. "RedNoteInfo": {
  60. },
  61. "TreeList": {
  62. "Tree0": {
  63. "ExportTree": true,
  64. "ImageIndex": 2,
  65. "Name": {
  66. "Type": "STRING",
  67. "Value": "奖励物获得界面",
  68. "displayName": ""
  69. },
  70. "Type": "BTCustomFuncHeadAction",
  71. "VarJson": {
  72. "boolJson": {
  73. },
  74. "numberJson": {
  75. }
  76. },
  77. "isIllegal": false,
  78. "randomID": "RcjTryxo3J47",
  79. "stepSlot": {
  80. "ContainerValue": {
  81. "Type": "BTPlayTimeLineAction",
  82. "baseSelect": {
  83. "DisplayName": "进入动画",
  84. "Type": "Action",
  85. "Value": "0"
  86. },
  87. "isIllegal": true,
  88. "randomID": "25gjnT8lgRMu",
  89. "stepSlot": {
  90. "ContainerValue": {
  91. "Type": "BTIFControlAction",
  92. "conditionA": {
  93. "ContainerValue": {
  94. "Type": "BTStringEqualOperatorAction",
  95. "conditionA": {
  96. "ContainerValue": {
  97. "Type": "BTCoderVariableAction",
  98. "VarScope": "Scene",
  99. "isIllegal": true,
  100. "randomID": "YfdzD0p2qMm4",
  101. "titleLabel": {
  102. "Type": "STRING",
  103. "Value": "P-宝箱类型",
  104. "displayName": ""
  105. }
  106. },
  107. "StringValue": {
  108. "Type": "STRING",
  109. "Value": "Red"
  110. },
  111. "Type": "BTInputSlot"
  112. },
  113. "conditionB": {
  114. "ContainerValue": null,
  115. "StringValue": {
  116. "Type": "STRING",
  117. "Value": "3"
  118. },
  119. "Type": "BTInputSlot"
  120. },
  121. "isIllegal": true,
  122. "randomID": "X2VOrcmgNvm9"
  123. },
  124. "Type": "BTBoolSlot"
  125. },
  126. "isIllegal": true,
  127. "randomID": "cqmHPSAn27jh",
  128. "sectionA": {
  129. "ContainerValue": {
  130. "Type": "BTPlaySceneTimeLineAction",
  131. "baseSelect": {
  132. "DisplayName": "循环动画_获得金宝箱",
  133. "Type": "Action",
  134. "Value": "3"
  135. },
  136. "isIllegal": true,
  137. "randomID": "RhIHF2HMBKhy",
  138. "redSelect": {
  139. "DisplayName": "动画_宝箱打开",
  140. "Type": "OBJ",
  141. "Value": "8OWcZJllAgtb"
  142. },
  143. "stepSlot": {
  144. "ContainerValue": null,
  145. "Type": "BTStepSlot"
  146. }
  147. },
  148. "Type": "BTSectionSlot"
  149. },
  150. "stepSlot": {
  151. "ContainerValue": {
  152. "Type": "BTIFControlAction",
  153. "conditionA": {
  154. "ContainerValue": {
  155. "Type": "BTStringEqualOperatorAction",
  156. "conditionA": {
  157. "ContainerValue": {
  158. "Type": "BTCoderVariableAction",
  159. "VarScope": "Scene",
  160. "isIllegal": true,
  161. "randomID": "HZE3e6kIBL06",
  162. "titleLabel": {
  163. "Type": "STRING",
  164. "Value": "P-宝箱类型",
  165. "displayName": ""
  166. }
  167. },
  168. "StringValue": {
  169. "Type": "STRING",
  170. "Value": "Red"
  171. },
  172. "Type": "BTInputSlot"
  173. },
  174. "conditionB": {
  175. "ContainerValue": null,
  176. "StringValue": {
  177. "Type": "STRING",
  178. "Value": "2"
  179. },
  180. "Type": "BTInputSlot"
  181. },
  182. "isIllegal": true,
  183. "randomID": "oOo6MJ6rfQjH"
  184. },
  185. "Type": "BTBoolSlot"
  186. },
  187. "isIllegal": true,
  188. "randomID": "ES82pTwIkHAx",
  189. "sectionA": {
  190. "ContainerValue": {
  191. "Type": "BTPlaySceneTimeLineAction",
  192. "baseSelect": {
  193. "DisplayName": "循环动画_获得银宝箱",
  194. "Type": "Action",
  195. "Value": "4"
  196. },
  197. "isIllegal": true,
  198. "randomID": "RzS4ss5vD12F",
  199. "redSelect": {
  200. "DisplayName": "动画_宝箱打开",
  201. "Type": "OBJ",
  202. "Value": "8OWcZJllAgtb"
  203. },
  204. "stepSlot": {
  205. "ContainerValue": null,
  206. "Type": "BTStepSlot"
  207. }
  208. },
  209. "Type": "BTSectionSlot"
  210. },
  211. "stepSlot": {
  212. "ContainerValue": {
  213. "Type": "BTIFControlAction",
  214. "conditionA": {
  215. "ContainerValue": {
  216. "Type": "BTStringEqualOperatorAction",
  217. "conditionA": {
  218. "ContainerValue": {
  219. "Type": "BTCoderVariableAction",
  220. "VarScope": "Scene",
  221. "isIllegal": true,
  222. "randomID": "sWGULZXrU9n7",
  223. "titleLabel": {
  224. "Type": "STRING",
  225. "Value": "P-宝箱类型",
  226. "displayName": ""
  227. }
  228. },
  229. "StringValue": {
  230. "Type": "STRING",
  231. "Value": "Red"
  232. },
  233. "Type": "BTInputSlot"
  234. },
  235. "conditionB": {
  236. "ContainerValue": null,
  237. "StringValue": {
  238. "Type": "STRING",
  239. "Value": "1"
  240. },
  241. "Type": "BTInputSlot"
  242. },
  243. "isIllegal": true,
  244. "randomID": "HV7UNAVDKY0G"
  245. },
  246. "Type": "BTBoolSlot"
  247. },
  248. "isIllegal": true,
  249. "randomID": "9zoywAeVzjx",
  250. "sectionA": {
  251. "ContainerValue": {
  252. "Type": "BTPlaySceneTimeLineAction",
  253. "baseSelect": {
  254. "DisplayName": "循环动画_获得铜宝箱",
  255. "Type": "Action",
  256. "Value": "5"
  257. },
  258. "isIllegal": true,
  259. "randomID": "jap5NPJxLP43",
  260. "redSelect": {
  261. "DisplayName": "动画_宝箱打开",
  262. "Type": "OBJ",
  263. "Value": "8OWcZJllAgtb"
  264. },
  265. "stepSlot": {
  266. "ContainerValue": null,
  267. "Type": "BTStepSlot"
  268. }
  269. },
  270. "Type": "BTSectionSlot"
  271. },
  272. "stepSlot": {
  273. "ContainerValue": null,
  274. "Type": "BTStepSlot"
  275. }
  276. },
  277. "Type": "BTStepSlot"
  278. }
  279. },
  280. "Type": "BTStepSlot"
  281. }
  282. },
  283. "Type": "BTStepSlot"
  284. }
  285. },
  286. "Type": "BTStepSlot"
  287. },
  288. "x": -291.3920582977303,
  289. "y": -816.7797281832187
  290. },
  291. "Tree1": {
  292. "ExportTree": true,
  293. "ImageIndex": 5,
  294. "Name": {
  295. "Type": "STRING",
  296. "Value": "",
  297. "displayName": ""
  298. },
  299. "Type": "BTMessageReciverAction",
  300. "VarJson": {
  301. "boolJson": {
  302. },
  303. "numberJson": {
  304. "消息参数": "Number"
  305. }
  306. },
  307. "isIllegal": false,
  308. "mathSelector": {
  309. "DisplayName": "打开浮层_奖励物获得界面",
  310. "Type": "Action",
  311. "Value": "gg5u1VleLuRo"
  312. },
  313. "randomID": "TNIxzPmluG7l",
  314. "stepSlot": {
  315. "ContainerValue": {
  316. "Type": "BTNotificationToCoderAction",
  317. "conditionA": {
  318. "ContainerValue": null,
  319. "StringValue": {
  320. "Type": "STRING",
  321. "Value": "测试_打开浮层_奖励物获得界面"
  322. },
  323. "Type": "BTInputSlot"
  324. },
  325. "isIllegal": true,
  326. "randomID": "pwPfTsUa68ir",
  327. "stepSlot": {
  328. "ContainerValue": null,
  329. "Type": "BTStepSlot"
  330. }
  331. },
  332. "Type": "BTStepSlot"
  333. },
  334. "x": -790.5,
  335. "y": -915
  336. },
  337. "Tree2": {
  338. "ExportTree": true,
  339. "ImageIndex": -1,
  340. "Type": "BTButtonClickFuncAction",
  341. "VarJson": {
  342. "boolJson": {
  343. },
  344. "numberJson": {
  345. }
  346. },
  347. "isIllegal": false,
  348. "mathSelector": {
  349. "DisplayName": "点击打开按钮",
  350. "Type": "OBJ",
  351. "Value": "8XZEEHp5BMmD"
  352. },
  353. "randomID": "OFKzC0TraaaC",
  354. "stepSlot": {
  355. "ContainerValue": {
  356. "Type": "BTNodeShowAction",
  357. "baseSelect": {
  358. "DisplayName": "点击收集按钮",
  359. "Type": "Action",
  360. "Value": "tJKPq9mnmL"
  361. },
  362. "isIllegal": true,
  363. "randomID": "F1C3UfHgkULH",
  364. "stepSlot": {
  365. "ContainerValue": {
  366. "Type": "BTNodeHiddenAction",
  367. "baseSelect": {
  368. "DisplayName": "点击打开按钮",
  369. "Type": "Action",
  370. "Value": "8XZEEHp5BMmD"
  371. },
  372. "isIllegal": true,
  373. "randomID": "GULdaNaHu0AM",
  374. "stepSlot": {
  375. "ContainerValue": {
  376. "Type": "BTIFControlAction",
  377. "conditionA": {
  378. "ContainerValue": {
  379. "Type": "BTStringEqualOperatorAction",
  380. "conditionA": {
  381. "ContainerValue": {
  382. "Type": "BTCoderVariableAction",
  383. "VarScope": "Scene",
  384. "isIllegal": true,
  385. "randomID": "o9mQ08cbASSs",
  386. "titleLabel": {
  387. "Type": "STRING",
  388. "Value": "P-奖励物个数",
  389. "displayName": ""
  390. }
  391. },
  392. "StringValue": {
  393. "Type": "STRING",
  394. "Value": "Red"
  395. },
  396. "Type": "BTInputSlot"
  397. },
  398. "conditionB": {
  399. "ContainerValue": null,
  400. "StringValue": {
  401. "Type": "STRING",
  402. "Value": "1"
  403. },
  404. "Type": "BTInputSlot"
  405. },
  406. "isIllegal": true,
  407. "randomID": "Orjlr1kRs8fu"
  408. },
  409. "Type": "BTBoolSlot"
  410. },
  411. "isIllegal": true,
  412. "randomID": "jNu05oN1xSWF",
  413. "sectionA": {
  414. "ContainerValue": {
  415. "Type": "BTPlayTimeLineAction",
  416. "baseSelect": {
  417. "DisplayName": "获得奖励_1",
  418. "Type": "Action",
  419. "Value": "2"
  420. },
  421. "isIllegal": true,
  422. "randomID": "JGKGZbRQDLbE",
  423. "stepSlot": {
  424. "ContainerValue": null,
  425. "Type": "BTStepSlot"
  426. }
  427. },
  428. "Type": "BTSectionSlot"
  429. },
  430. "stepSlot": {
  431. "ContainerValue": {
  432. "Type": "BTIFControlAction",
  433. "conditionA": {
  434. "ContainerValue": {
  435. "Type": "BTStringEqualOperatorAction",
  436. "conditionA": {
  437. "ContainerValue": {
  438. "Type": "BTCoderVariableAction",
  439. "VarScope": "Scene",
  440. "isIllegal": true,
  441. "randomID": "CJWLysS5W9Tj",
  442. "titleLabel": {
  443. "Type": "STRING",
  444. "Value": "P-奖励物个数",
  445. "displayName": ""
  446. }
  447. },
  448. "StringValue": {
  449. "Type": "STRING",
  450. "Value": "Red"
  451. },
  452. "Type": "BTInputSlot"
  453. },
  454. "conditionB": {
  455. "ContainerValue": null,
  456. "StringValue": {
  457. "Type": "STRING",
  458. "Value": "2"
  459. },
  460. "Type": "BTInputSlot"
  461. },
  462. "isIllegal": true,
  463. "randomID": "sZGJvhWXZLzu"
  464. },
  465. "Type": "BTBoolSlot"
  466. },
  467. "isIllegal": true,
  468. "randomID": "e6oSPXBLP6gg",
  469. "sectionA": {
  470. "ContainerValue": {
  471. "Type": "BTPlayTimeLineAction",
  472. "baseSelect": {
  473. "DisplayName": "获得奖励_2",
  474. "Type": "Action",
  475. "Value": "3"
  476. },
  477. "isIllegal": true,
  478. "randomID": "LdLwNUbGW981",
  479. "stepSlot": {
  480. "ContainerValue": null,
  481. "Type": "BTStepSlot"
  482. }
  483. },
  484. "Type": "BTSectionSlot"
  485. },
  486. "stepSlot": {
  487. "ContainerValue": {
  488. "Type": "BTIFControlAction",
  489. "conditionA": {
  490. "ContainerValue": {
  491. "Type": "BTStringEqualOperatorAction",
  492. "conditionA": {
  493. "ContainerValue": {
  494. "Type": "BTCoderVariableAction",
  495. "VarScope": "Scene",
  496. "isIllegal": true,
  497. "randomID": "XAn8O9lhddRd",
  498. "titleLabel": {
  499. "Type": "STRING",
  500. "Value": "P-奖励物个数",
  501. "displayName": ""
  502. }
  503. },
  504. "StringValue": {
  505. "Type": "STRING",
  506. "Value": "Red"
  507. },
  508. "Type": "BTInputSlot"
  509. },
  510. "conditionB": {
  511. "ContainerValue": null,
  512. "StringValue": {
  513. "Type": "STRING",
  514. "Value": "3"
  515. },
  516. "Type": "BTInputSlot"
  517. },
  518. "isIllegal": true,
  519. "randomID": "EdLDt51x9ITB"
  520. },
  521. "Type": "BTBoolSlot"
  522. },
  523. "isIllegal": true,
  524. "randomID": "YBkYzV4ap12",
  525. "sectionA": {
  526. "ContainerValue": {
  527. "Type": "BTPlayTimeLineAction",
  528. "baseSelect": {
  529. "DisplayName": "获得奖励_3",
  530. "Type": "Action",
  531. "Value": "4"
  532. },
  533. "isIllegal": true,
  534. "randomID": "wKSFmHDSEQRW",
  535. "stepSlot": {
  536. "ContainerValue": null,
  537. "Type": "BTStepSlot"
  538. }
  539. },
  540. "Type": "BTSectionSlot"
  541. },
  542. "stepSlot": {
  543. "ContainerValue": {
  544. "Type": "BTIFControlAction",
  545. "conditionA": {
  546. "ContainerValue": {
  547. "Type": "BTStringEqualOperatorAction",
  548. "conditionA": {
  549. "ContainerValue": {
  550. "Type": "BTCoderVariableAction",
  551. "VarScope": "Scene",
  552. "isIllegal": true,
  553. "randomID": "lD1ZAI7Bv3j4",
  554. "titleLabel": {
  555. "Type": "STRING",
  556. "Value": "P-奖励物个数",
  557. "displayName": ""
  558. }
  559. },
  560. "StringValue": {
  561. "Type": "STRING",
  562. "Value": "Red"
  563. },
  564. "Type": "BTInputSlot"
  565. },
  566. "conditionB": {
  567. "ContainerValue": null,
  568. "StringValue": {
  569. "Type": "STRING",
  570. "Value": "4"
  571. },
  572. "Type": "BTInputSlot"
  573. },
  574. "isIllegal": true,
  575. "randomID": "HGdSBnwrBgm8"
  576. },
  577. "Type": "BTBoolSlot"
  578. },
  579. "isIllegal": true,
  580. "randomID": "AMxLTMlhDeDk",
  581. "sectionA": {
  582. "ContainerValue": {
  583. "Type": "BTPlayTimeLineAction",
  584. "baseSelect": {
  585. "DisplayName": "获得奖励_4",
  586. "Type": "Action",
  587. "Value": "6"
  588. },
  589. "isIllegal": true,
  590. "randomID": "fPqMyt2rs0yi",
  591. "stepSlot": {
  592. "ContainerValue": null,
  593. "Type": "BTStepSlot"
  594. }
  595. },
  596. "Type": "BTSectionSlot"
  597. },
  598. "stepSlot": {
  599. "ContainerValue": {
  600. "Type": "BTIFControlAction",
  601. "conditionA": {
  602. "ContainerValue": {
  603. "Type": "BTStringEqualOperatorAction",
  604. "conditionA": {
  605. "ContainerValue": {
  606. "Type": "BTCoderVariableAction",
  607. "VarScope": "Scene",
  608. "isIllegal": true,
  609. "randomID": "uDZBsS37zbP4",
  610. "titleLabel": {
  611. "Type": "STRING",
  612. "Value": "P-奖励物个数",
  613. "displayName": ""
  614. }
  615. },
  616. "StringValue": {
  617. "Type": "STRING",
  618. "Value": "Red"
  619. },
  620. "Type": "BTInputSlot"
  621. },
  622. "conditionB": {
  623. "ContainerValue": null,
  624. "StringValue": {
  625. "Type": "STRING",
  626. "Value": "5"
  627. },
  628. "Type": "BTInputSlot"
  629. },
  630. "isIllegal": true,
  631. "randomID": "CUJqysKi15t4"
  632. },
  633. "Type": "BTBoolSlot"
  634. },
  635. "isIllegal": true,
  636. "randomID": "dUXVDDurhkz3",
  637. "sectionA": {
  638. "ContainerValue": {
  639. "Type": "BTPlayTimeLineAction",
  640. "baseSelect": {
  641. "DisplayName": "获得奖励_5",
  642. "Type": "Action",
  643. "Value": "7"
  644. },
  645. "isIllegal": true,
  646. "randomID": "UahBFaEUhzF5",
  647. "stepSlot": {
  648. "ContainerValue": null,
  649. "Type": "BTStepSlot"
  650. }
  651. },
  652. "Type": "BTSectionSlot"
  653. },
  654. "stepSlot": {
  655. "ContainerValue": {
  656. "Type": "BTIFControlAction",
  657. "conditionA": {
  658. "ContainerValue": {
  659. "Type": "BTStringEqualOperatorAction",
  660. "conditionA": {
  661. "ContainerValue": {
  662. "Type": "BTCoderVariableAction",
  663. "VarScope": "Scene",
  664. "isIllegal": true,
  665. "randomID": "TuolpTN6cNnx",
  666. "titleLabel": {
  667. "Type": "STRING",
  668. "Value": "P-奖励物个数",
  669. "displayName": ""
  670. }
  671. },
  672. "StringValue": {
  673. "Type": "STRING",
  674. "Value": "Red"
  675. },
  676. "Type": "BTInputSlot"
  677. },
  678. "conditionB": {
  679. "ContainerValue": null,
  680. "StringValue": {
  681. "Type": "STRING",
  682. "Value": "6"
  683. },
  684. "Type": "BTInputSlot"
  685. },
  686. "isIllegal": true,
  687. "randomID": "mtiLhGGNRGPH"
  688. },
  689. "Type": "BTBoolSlot"
  690. },
  691. "isIllegal": true,
  692. "randomID": "RrMWY4HolQfj",
  693. "sectionA": {
  694. "ContainerValue": {
  695. "Type": "BTPlayTimeLineAction",
  696. "baseSelect": {
  697. "DisplayName": "获得奖励_6",
  698. "Type": "Action",
  699. "Value": "8"
  700. },
  701. "isIllegal": true,
  702. "randomID": "MeSB2K4cPkS1",
  703. "stepSlot": {
  704. "ContainerValue": null,
  705. "Type": "BTStepSlot"
  706. }
  707. },
  708. "Type": "BTSectionSlot"
  709. },
  710. "stepSlot": {
  711. "ContainerValue": {
  712. "Type": "BTIFControlAction",
  713. "conditionA": {
  714. "ContainerValue": {
  715. "Type": "BTStringEqualOperatorAction",
  716. "conditionA": {
  717. "ContainerValue": {
  718. "Type": "BTCoderVariableAction",
  719. "VarScope": "Scene",
  720. "isIllegal": true,
  721. "randomID": "lMCH4OVggYnA",
  722. "titleLabel": {
  723. "Type": "STRING",
  724. "Value": "P-奖励物个数",
  725. "displayName": ""
  726. }
  727. },
  728. "StringValue": {
  729. "Type": "STRING",
  730. "Value": "Red"
  731. },
  732. "Type": "BTInputSlot"
  733. },
  734. "conditionB": {
  735. "ContainerValue": null,
  736. "StringValue": {
  737. "Type": "STRING",
  738. "Value": "7"
  739. },
  740. "Type": "BTInputSlot"
  741. },
  742. "isIllegal": true,
  743. "randomID": "M9GV3jsm31bb"
  744. },
  745. "Type": "BTBoolSlot"
  746. },
  747. "isIllegal": true,
  748. "randomID": "FrHL7VpOpokf",
  749. "sectionA": {
  750. "ContainerValue": {
  751. "Type": "BTPlayTimeLineAction",
  752. "baseSelect": {
  753. "DisplayName": "获得奖励_7",
  754. "Type": "Action",
  755. "Value": "9"
  756. },
  757. "isIllegal": true,
  758. "randomID": "k3GcfveShBt5",
  759. "stepSlot": {
  760. "ContainerValue": null,
  761. "Type": "BTStepSlot"
  762. }
  763. },
  764. "Type": "BTSectionSlot"
  765. },
  766. "stepSlot": {
  767. "ContainerValue": {
  768. "Type": "BTIFControlAction",
  769. "conditionA": {
  770. "ContainerValue": {
  771. "Type": "BTStringEqualOperatorAction",
  772. "conditionA": {
  773. "ContainerValue": {
  774. "Type": "BTCoderVariableAction",
  775. "VarScope": "Scene",
  776. "isIllegal": true,
  777. "randomID": "iwA9ZNZmmkD2",
  778. "titleLabel": {
  779. "Type": "STRING",
  780. "Value": "P-奖励物个数",
  781. "displayName": ""
  782. }
  783. },
  784. "StringValue": {
  785. "Type": "STRING",
  786. "Value": "Red"
  787. },
  788. "Type": "BTInputSlot"
  789. },
  790. "conditionB": {
  791. "ContainerValue": null,
  792. "StringValue": {
  793. "Type": "STRING",
  794. "Value": "8"
  795. },
  796. "Type": "BTInputSlot"
  797. },
  798. "isIllegal": true,
  799. "randomID": "uU3RyWIFYeqH"
  800. },
  801. "Type": "BTBoolSlot"
  802. },
  803. "isIllegal": true,
  804. "randomID": "sRzKrpULmjJU",
  805. "sectionA": {
  806. "ContainerValue": {
  807. "Type": "BTPlayTimeLineAction",
  808. "baseSelect": {
  809. "DisplayName": "获得奖励_8",
  810. "Type": "Action",
  811. "Value": "10"
  812. },
  813. "isIllegal": true,
  814. "randomID": "4sDTyOaHSJLI",
  815. "stepSlot": {
  816. "ContainerValue": null,
  817. "Type": "BTStepSlot"
  818. }
  819. },
  820. "Type": "BTSectionSlot"
  821. },
  822. "stepSlot": {
  823. "ContainerValue": {
  824. "Type": "BTIFControlAction",
  825. "conditionA": {
  826. "ContainerValue": {
  827. "Type": "BTStringEqualOperatorAction",
  828. "conditionA": {
  829. "ContainerValue": {
  830. "Type": "BTCoderVariableAction",
  831. "VarScope": "Scene",
  832. "isIllegal": true,
  833. "randomID": "dLSi4XtVOPx5",
  834. "titleLabel": {
  835. "Type": "STRING",
  836. "Value": "P-宝箱类型",
  837. "displayName": ""
  838. }
  839. },
  840. "StringValue": {
  841. "Type": "STRING",
  842. "Value": "Red"
  843. },
  844. "Type": "BTInputSlot"
  845. },
  846. "conditionB": {
  847. "ContainerValue": null,
  848. "StringValue": {
  849. "Type": "STRING",
  850. "Value": "3"
  851. },
  852. "Type": "BTInputSlot"
  853. },
  854. "isIllegal": true,
  855. "randomID": "VExpgkrLIEMG"
  856. },
  857. "Type": "BTBoolSlot"
  858. },
  859. "isIllegal": true,
  860. "randomID": "WnjzjzkylFcc",
  861. "sectionA": {
  862. "ContainerValue": {
  863. "Type": "BTPlaySceneTimeLineAction",
  864. "baseSelect": {
  865. "DisplayName": "动画_打开金宝箱",
  866. "Type": "Action",
  867. "Value": "0"
  868. },
  869. "isIllegal": true,
  870. "randomID": "H58S4cyZjXnG",
  871. "redSelect": {
  872. "DisplayName": "动画_宝箱打开",
  873. "Type": "OBJ",
  874. "Value": "8OWcZJllAgtb"
  875. },
  876. "stepSlot": {
  877. "ContainerValue": null,
  878. "Type": "BTStepSlot"
  879. }
  880. },
  881. "Type": "BTSectionSlot"
  882. },
  883. "stepSlot": {
  884. "ContainerValue": {
  885. "Type": "BTIFControlAction",
  886. "conditionA": {
  887. "ContainerValue": {
  888. "Type": "BTStringEqualOperatorAction",
  889. "conditionA": {
  890. "ContainerValue": {
  891. "Type": "BTCoderVariableAction",
  892. "VarScope": "Scene",
  893. "isIllegal": true,
  894. "randomID": "J8dnR8kfQpw1",
  895. "titleLabel": {
  896. "Type": "STRING",
  897. "Value": "P-宝箱类型",
  898. "displayName": ""
  899. }
  900. },
  901. "StringValue": {
  902. "Type": "STRING",
  903. "Value": "Red"
  904. },
  905. "Type": "BTInputSlot"
  906. },
  907. "conditionB": {
  908. "ContainerValue": null,
  909. "StringValue": {
  910. "Type": "STRING",
  911. "Value": "2"
  912. },
  913. "Type": "BTInputSlot"
  914. },
  915. "isIllegal": true,
  916. "randomID": "0sIszADFC7sB"
  917. },
  918. "Type": "BTBoolSlot"
  919. },
  920. "isIllegal": true,
  921. "randomID": "TZTi7xCZhVAr",
  922. "sectionA": {
  923. "ContainerValue": {
  924. "Type": "BTPlaySceneTimeLineAction",
  925. "baseSelect": {
  926. "DisplayName": "动画_打开银宝箱",
  927. "Type": "Action",
  928. "Value": "1"
  929. },
  930. "isIllegal": true,
  931. "randomID": "KMEoxIayLB3x",
  932. "redSelect": {
  933. "DisplayName": "动画_宝箱打开",
  934. "Type": "OBJ",
  935. "Value": "8OWcZJllAgtb"
  936. },
  937. "stepSlot": {
  938. "ContainerValue": null,
  939. "Type": "BTStepSlot"
  940. }
  941. },
  942. "Type": "BTSectionSlot"
  943. },
  944. "stepSlot": {
  945. "ContainerValue": {
  946. "Type": "BTIFControlAction",
  947. "conditionA": {
  948. "ContainerValue": {
  949. "Type": "BTStringEqualOperatorAction",
  950. "conditionA": {
  951. "ContainerValue": {
  952. "Type": "BTCoderVariableAction",
  953. "VarScope": "Scene",
  954. "isIllegal": true,
  955. "randomID": "Tb2S6UGvdbjV",
  956. "titleLabel": {
  957. "Type": "STRING",
  958. "Value": "P-宝箱类型",
  959. "displayName": ""
  960. }
  961. },
  962. "StringValue": {
  963. "Type": "STRING",
  964. "Value": "Red"
  965. },
  966. "Type": "BTInputSlot"
  967. },
  968. "conditionB": {
  969. "ContainerValue": null,
  970. "StringValue": {
  971. "Type": "STRING",
  972. "Value": "1"
  973. },
  974. "Type": "BTInputSlot"
  975. },
  976. "isIllegal": true,
  977. "randomID": "15aogKpssyGh"
  978. },
  979. "Type": "BTBoolSlot"
  980. },
  981. "isIllegal": true,
  982. "randomID": "QgZFAsNZVFYd",
  983. "sectionA": {
  984. "ContainerValue": {
  985. "Type": "BTPlaySceneTimeLineAction",
  986. "baseSelect": {
  987. "DisplayName": "动画_打开铜宝箱",
  988. "Type": "Action",
  989. "Value": "2"
  990. },
  991. "isIllegal": true,
  992. "randomID": "VGpEOk0c3MYL",
  993. "redSelect": {
  994. "DisplayName": "动画_宝箱打开",
  995. "Type": "OBJ",
  996. "Value": "8OWcZJllAgtb"
  997. },
  998. "stepSlot": {
  999. "ContainerValue": null,
  1000. "Type": "BTStepSlot"
  1001. }
  1002. },
  1003. "Type": "BTSectionSlot"
  1004. },
  1005. "stepSlot": {
  1006. "ContainerValue": null,
  1007. "Type": "BTStepSlot"
  1008. }
  1009. },
  1010. "Type": "BTStepSlot"
  1011. }
  1012. },
  1013. "Type": "BTStepSlot"
  1014. }
  1015. },
  1016. "Type": "BTStepSlot"
  1017. }
  1018. },
  1019. "Type": "BTStepSlot"
  1020. }
  1021. },
  1022. "Type": "BTStepSlot"
  1023. }
  1024. },
  1025. "Type": "BTStepSlot"
  1026. }
  1027. },
  1028. "Type": "BTStepSlot"
  1029. }
  1030. },
  1031. "Type": "BTStepSlot"
  1032. }
  1033. },
  1034. "Type": "BTStepSlot"
  1035. }
  1036. },
  1037. "Type": "BTStepSlot"
  1038. }
  1039. },
  1040. "Type": "BTStepSlot"
  1041. }
  1042. },
  1043. "Type": "BTStepSlot"
  1044. }
  1045. },
  1046. "Type": "BTStepSlot"
  1047. },
  1048. "x": -251.95151466416758,
  1049. "y": -390.9471262519256
  1050. },
  1051. "Tree3": {
  1052. "ExportTree": true,
  1053. "ImageIndex": -1,
  1054. "Type": "BTButtonClickFuncAction",
  1055. "VarJson": {
  1056. "boolJson": {
  1057. },
  1058. "numberJson": {
  1059. }
  1060. },
  1061. "isIllegal": false,
  1062. "mathSelector": {
  1063. "DisplayName": "点击收集按钮",
  1064. "Type": "OBJ",
  1065. "Value": "tJKPq9mnmL"
  1066. },
  1067. "randomID": "nPVGUrCX6ucK",
  1068. "stepSlot": {
  1069. "ContainerValue": {
  1070. "Type": "BTPlayTimeLineAction",
  1071. "baseSelect": {
  1072. "DisplayName": "退出动画",
  1073. "Type": "Action",
  1074. "Value": "1"
  1075. },
  1076. "isIllegal": true,
  1077. "randomID": "RxID8LHk5uzj",
  1078. "stepSlot": {
  1079. "ContainerValue": {
  1080. "Type": "BTIFControlAction",
  1081. "conditionA": {
  1082. "ContainerValue": {
  1083. "Type": "BTStringEqualOperatorAction",
  1084. "conditionA": {
  1085. "ContainerValue": {
  1086. "Type": "BTCoderVariableAction",
  1087. "VarScope": "Scene",
  1088. "isIllegal": true,
  1089. "randomID": "A7F0myPBTVMQ",
  1090. "titleLabel": {
  1091. "Type": "STRING",
  1092. "Value": "P-奖励物个数",
  1093. "displayName": ""
  1094. }
  1095. },
  1096. "StringValue": {
  1097. "Type": "STRING",
  1098. "Value": "Red"
  1099. },
  1100. "Type": "BTInputSlot"
  1101. },
  1102. "conditionB": {
  1103. "ContainerValue": null,
  1104. "StringValue": {
  1105. "Type": "STRING",
  1106. "Value": "1"
  1107. },
  1108. "Type": "BTInputSlot"
  1109. },
  1110. "isIllegal": true,
  1111. "randomID": "so2eYxpDsiIy"
  1112. },
  1113. "Type": "BTBoolSlot"
  1114. },
  1115. "isIllegal": true,
  1116. "randomID": "ZWdr3DdUnPRb",
  1117. "sectionA": {
  1118. "ContainerValue": {
  1119. "Type": "BTNodeSetPosAction",
  1120. "baseSelect": {
  1121. "DisplayName": "奖励物组_1",
  1122. "Type": "Action",
  1123. "Value": "1H812FzCFC5"
  1124. },
  1125. "isIllegal": true,
  1126. "posXInput": {
  1127. "ContainerValue": {
  1128. "Type": "BTNodeGetPosXAction",
  1129. "baseSelect": {
  1130. "DisplayName": "定位点1_1",
  1131. "Type": "Action",
  1132. "Value": "cKH6TBxdUwK5"
  1133. },
  1134. "isIllegal": true,
  1135. "randomID": "23NK9oUkkOFU"
  1136. },
  1137. "StringValue": {
  1138. "Type": "FLOAT",
  1139. "Value": 0
  1140. },
  1141. "Type": "BTInputSlot"
  1142. },
  1143. "posYInput": {
  1144. "ContainerValue": {
  1145. "Type": "BTNodeGetPosYAction",
  1146. "baseSelect": {
  1147. "DisplayName": "定位点1_1",
  1148. "Type": "Action",
  1149. "Value": "cKH6TBxdUwK5"
  1150. },
  1151. "isIllegal": true,
  1152. "randomID": "GhUMNPzQfqPB"
  1153. },
  1154. "StringValue": {
  1155. "Type": "FLOAT",
  1156. "Value": 0
  1157. },
  1158. "Type": "BTInputSlot"
  1159. },
  1160. "randomID": "7tqrWKyKl9sx",
  1161. "stepSlot": {
  1162. "ContainerValue": null,
  1163. "Type": "BTStepSlot"
  1164. }
  1165. },
  1166. "Type": "BTSectionSlot"
  1167. },
  1168. "stepSlot": {
  1169. "ContainerValue": {
  1170. "Type": "BTNodeSetScaleAction",
  1171. "baseSelect": {
  1172. "DisplayName": "奖励物组_1",
  1173. "Type": "Action",
  1174. "Value": "1H812FzCFC5"
  1175. },
  1176. "isIllegal": true,
  1177. "randomID": "7KLBUSNl9Ome",
  1178. "scaleXInput": {
  1179. "ContainerValue": null,
  1180. "StringValue": {
  1181. "Type": "FLOAT",
  1182. "Value": 1.2999999523162842
  1183. },
  1184. "Type": "BTInputSlot"
  1185. },
  1186. "scaleYInput": {
  1187. "ContainerValue": null,
  1188. "StringValue": {
  1189. "Type": "FLOAT",
  1190. "Value": 1.2999999523162842
  1191. },
  1192. "Type": "BTInputSlot"
  1193. },
  1194. "stepSlot": {
  1195. "ContainerValue": {
  1196. "Type": "BTNodeShowAction",
  1197. "baseSelect": {
  1198. "DisplayName": "奖励物组_1",
  1199. "Type": "Action",
  1200. "Value": "1H812FzCFC5"
  1201. },
  1202. "isIllegal": true,
  1203. "randomID": "vLI1ROkclAQl",
  1204. "stepSlot": {
  1205. "ContainerValue": {
  1206. "Type": "BTIFControlAction",
  1207. "conditionA": {
  1208. "ContainerValue": {
  1209. "Type": "BTStringEqualOperatorAction",
  1210. "conditionA": {
  1211. "ContainerValue": {
  1212. "Type": "BTCoderVariableAction",
  1213. "VarScope": "Scene",
  1214. "isIllegal": true,
  1215. "randomID": "om7H4y42XV2k",
  1216. "titleLabel": {
  1217. "Type": "STRING",
  1218. "Value": "P-奖励物个数",
  1219. "displayName": ""
  1220. }
  1221. },
  1222. "StringValue": {
  1223. "Type": "STRING",
  1224. "Value": "Red"
  1225. },
  1226. "Type": "BTInputSlot"
  1227. },
  1228. "conditionB": {
  1229. "ContainerValue": null,
  1230. "StringValue": {
  1231. "Type": "STRING",
  1232. "Value": "2"
  1233. },
  1234. "Type": "BTInputSlot"
  1235. },
  1236. "isIllegal": true,
  1237. "randomID": "d89YorOUbfb2"
  1238. },
  1239. "Type": "BTBoolSlot"
  1240. },
  1241. "isIllegal": true,
  1242. "randomID": "R0wy7EYUHJBP",
  1243. "sectionA": {
  1244. "ContainerValue": {
  1245. "Type": "BTNodeSetPosAction",
  1246. "baseSelect": {
  1247. "DisplayName": "奖励物组_1",
  1248. "Type": "Action",
  1249. "Value": "1H812FzCFC5"
  1250. },
  1251. "isIllegal": true,
  1252. "posXInput": {
  1253. "ContainerValue": {
  1254. "Type": "BTNodeGetPosXAction",
  1255. "baseSelect": {
  1256. "DisplayName": "定位点2_1",
  1257. "Type": "Action",
  1258. "Value": "PouUGrBwlCpd"
  1259. },
  1260. "isIllegal": true,
  1261. "randomID": "XFGlVymWjh8b"
  1262. },
  1263. "StringValue": {
  1264. "Type": "FLOAT",
  1265. "Value": 0
  1266. },
  1267. "Type": "BTInputSlot"
  1268. },
  1269. "posYInput": {
  1270. "ContainerValue": {
  1271. "Type": "BTNodeGetPosYAction",
  1272. "baseSelect": {
  1273. "DisplayName": "定位点2_1",
  1274. "Type": "Action",
  1275. "Value": "PouUGrBwlCpd"
  1276. },
  1277. "isIllegal": true,
  1278. "randomID": "KUW2oZ2IaRSi"
  1279. },
  1280. "StringValue": {
  1281. "Type": "FLOAT",
  1282. "Value": 0
  1283. },
  1284. "Type": "BTInputSlot"
  1285. },
  1286. "randomID": "a7O1YThsS3JE",
  1287. "stepSlot": {
  1288. "ContainerValue": {
  1289. "Type": "BTNodeSetScaleAction",
  1290. "baseSelect": {
  1291. "DisplayName": "奖励物组_1",
  1292. "Type": "Action",
  1293. "Value": "1H812FzCFC5"
  1294. },
  1295. "isIllegal": true,
  1296. "randomID": "MeX2nK09XxV0",
  1297. "scaleXInput": {
  1298. "ContainerValue": null,
  1299. "StringValue": {
  1300. "Type": "FLOAT",
  1301. "Value": 1.2999999523162842
  1302. },
  1303. "Type": "BTInputSlot"
  1304. },
  1305. "scaleYInput": {
  1306. "ContainerValue": null,
  1307. "StringValue": {
  1308. "Type": "FLOAT",
  1309. "Value": 1.2999999523162842
  1310. },
  1311. "Type": "BTInputSlot"
  1312. },
  1313. "stepSlot": {
  1314. "ContainerValue": {
  1315. "Type": "BTNodeShowAction",
  1316. "baseSelect": {
  1317. "DisplayName": "奖励物组_1",
  1318. "Type": "Action",
  1319. "Value": "1H812FzCFC5"
  1320. },
  1321. "isIllegal": true,
  1322. "randomID": "oMBppyYamC1",
  1323. "stepSlot": {
  1324. "ContainerValue": {
  1325. "Type": "BTNodeSetPosAction",
  1326. "baseSelect": {
  1327. "DisplayName": "奖励物组_2",
  1328. "Type": "Action",
  1329. "Value": "uAa3Cmdx1Xzh"
  1330. },
  1331. "isIllegal": true,
  1332. "posXInput": {
  1333. "ContainerValue": {
  1334. "Type": "BTNodeGetPosXAction",
  1335. "baseSelect": {
  1336. "DisplayName": "定位点2_2",
  1337. "Type": "Action",
  1338. "Value": "2F95gatAo1r"
  1339. },
  1340. "isIllegal": true,
  1341. "randomID": "lg2MqV79pqyg"
  1342. },
  1343. "StringValue": {
  1344. "Type": "FLOAT",
  1345. "Value": 0
  1346. },
  1347. "Type": "BTInputSlot"
  1348. },
  1349. "posYInput": {
  1350. "ContainerValue": {
  1351. "Type": "BTNodeGetPosYAction",
  1352. "baseSelect": {
  1353. "DisplayName": "定位点2_2",
  1354. "Type": "Action",
  1355. "Value": "2F95gatAo1r"
  1356. },
  1357. "isIllegal": true,
  1358. "randomID": "tYeFNBNGoq2m"
  1359. },
  1360. "StringValue": {
  1361. "Type": "FLOAT",
  1362. "Value": 0
  1363. },
  1364. "Type": "BTInputSlot"
  1365. },
  1366. "randomID": "40sqMa1MEntr",
  1367. "stepSlot": {
  1368. "ContainerValue": {
  1369. "Type": "BTNodeSetScaleAction",
  1370. "baseSelect": {
  1371. "DisplayName": "奖励物组_2",
  1372. "Type": "Action",
  1373. "Value": "uAa3Cmdx1Xzh"
  1374. },
  1375. "isIllegal": true,
  1376. "randomID": "ZyB3BBXcMXY",
  1377. "scaleXInput": {
  1378. "ContainerValue": null,
  1379. "StringValue": {
  1380. "Type": "FLOAT",
  1381. "Value": 1.2999999523162842
  1382. },
  1383. "Type": "BTInputSlot"
  1384. },
  1385. "scaleYInput": {
  1386. "ContainerValue": null,
  1387. "StringValue": {
  1388. "Type": "FLOAT",
  1389. "Value": 1.2999999523162842
  1390. },
  1391. "Type": "BTInputSlot"
  1392. },
  1393. "stepSlot": {
  1394. "ContainerValue": {
  1395. "Type": "BTNodeShowAction",
  1396. "baseSelect": {
  1397. "DisplayName": "奖励物组_2",
  1398. "Type": "Action",
  1399. "Value": "uAa3Cmdx1Xzh"
  1400. },
  1401. "isIllegal": true,
  1402. "randomID": "J9SNJ6m5mEdG",
  1403. "stepSlot": {
  1404. "ContainerValue": null,
  1405. "Type": "BTStepSlot"
  1406. }
  1407. },
  1408. "Type": "BTStepSlot"
  1409. }
  1410. },
  1411. "Type": "BTStepSlot"
  1412. }
  1413. },
  1414. "Type": "BTStepSlot"
  1415. }
  1416. },
  1417. "Type": "BTStepSlot"
  1418. }
  1419. },
  1420. "Type": "BTStepSlot"
  1421. }
  1422. },
  1423. "Type": "BTSectionSlot"
  1424. },
  1425. "stepSlot": {
  1426. "ContainerValue": {
  1427. "Type": "BTIFControlAction",
  1428. "conditionA": {
  1429. "ContainerValue": {
  1430. "Type": "BTStringEqualOperatorAction",
  1431. "conditionA": {
  1432. "ContainerValue": {
  1433. "Type": "BTCoderVariableAction",
  1434. "VarScope": "Scene",
  1435. "isIllegal": true,
  1436. "randomID": "ujzqWTeiNQ4u",
  1437. "titleLabel": {
  1438. "Type": "STRING",
  1439. "Value": "P-奖励物个数",
  1440. "displayName": ""
  1441. }
  1442. },
  1443. "StringValue": {
  1444. "Type": "STRING",
  1445. "Value": "Red"
  1446. },
  1447. "Type": "BTInputSlot"
  1448. },
  1449. "conditionB": {
  1450. "ContainerValue": null,
  1451. "StringValue": {
  1452. "Type": "STRING",
  1453. "Value": "3"
  1454. },
  1455. "Type": "BTInputSlot"
  1456. },
  1457. "isIllegal": true,
  1458. "randomID": "2fprFdhjhTvb"
  1459. },
  1460. "Type": "BTBoolSlot"
  1461. },
  1462. "isIllegal": true,
  1463. "randomID": "7ixOzhpOgc72",
  1464. "sectionA": {
  1465. "ContainerValue": {
  1466. "Type": "BTNodeSetPosAction",
  1467. "baseSelect": {
  1468. "DisplayName": "奖励物组_1",
  1469. "Type": "Action",
  1470. "Value": "1H812FzCFC5"
  1471. },
  1472. "isIllegal": true,
  1473. "posXInput": {
  1474. "ContainerValue": {
  1475. "Type": "BTNodeGetPosXAction",
  1476. "baseSelect": {
  1477. "DisplayName": "定位点3_1",
  1478. "Type": "Action",
  1479. "Value": "1tFNPHeegdq2"
  1480. },
  1481. "isIllegal": true,
  1482. "randomID": "vANcV8TWICO0"
  1483. },
  1484. "StringValue": {
  1485. "Type": "FLOAT",
  1486. "Value": 0
  1487. },
  1488. "Type": "BTInputSlot"
  1489. },
  1490. "posYInput": {
  1491. "ContainerValue": {
  1492. "Type": "BTNodeGetPosYAction",
  1493. "baseSelect": {
  1494. "DisplayName": "定位点3_1",
  1495. "Type": "Action",
  1496. "Value": "1tFNPHeegdq2"
  1497. },
  1498. "isIllegal": true,
  1499. "randomID": "zC1TB2s6vXZa"
  1500. },
  1501. "StringValue": {
  1502. "Type": "FLOAT",
  1503. "Value": 0
  1504. },
  1505. "Type": "BTInputSlot"
  1506. },
  1507. "randomID": "UkM15RO3zGpx",
  1508. "stepSlot": {
  1509. "ContainerValue": {
  1510. "Type": "BTNodeShowAction",
  1511. "baseSelect": {
  1512. "DisplayName": "奖励物组_1",
  1513. "Type": "Action",
  1514. "Value": "1H812FzCFC5"
  1515. },
  1516. "isIllegal": true,
  1517. "randomID": "pm5AmPMeDoBx",
  1518. "stepSlot": {
  1519. "ContainerValue": {
  1520. "Type": "BTNodeSetPosAction",
  1521. "baseSelect": {
  1522. "DisplayName": "奖励物组_2",
  1523. "Type": "Action",
  1524. "Value": "uAa3Cmdx1Xzh"
  1525. },
  1526. "isIllegal": true,
  1527. "posXInput": {
  1528. "ContainerValue": {
  1529. "Type": "BTNodeGetPosXAction",
  1530. "baseSelect": {
  1531. "DisplayName": "定位点3_2",
  1532. "Type": "Action",
  1533. "Value": "W13VyNVuARti"
  1534. },
  1535. "isIllegal": true,
  1536. "randomID": "4IBWHW39KOsS"
  1537. },
  1538. "StringValue": {
  1539. "Type": "FLOAT",
  1540. "Value": 0
  1541. },
  1542. "Type": "BTInputSlot"
  1543. },
  1544. "posYInput": {
  1545. "ContainerValue": {
  1546. "Type": "BTNodeGetPosYAction",
  1547. "baseSelect": {
  1548. "DisplayName": "定位点3_2",
  1549. "Type": "Action",
  1550. "Value": "W13VyNVuARti"
  1551. },
  1552. "isIllegal": true,
  1553. "randomID": "oQ8nZ6hJcEXN"
  1554. },
  1555. "StringValue": {
  1556. "Type": "FLOAT",
  1557. "Value": 0
  1558. },
  1559. "Type": "BTInputSlot"
  1560. },
  1561. "randomID": "RIPPprTfX6DY",
  1562. "stepSlot": {
  1563. "ContainerValue": {
  1564. "Type": "BTNodeShowAction",
  1565. "baseSelect": {
  1566. "DisplayName": "奖励物组_2",
  1567. "Type": "Action",
  1568. "Value": "uAa3Cmdx1Xzh"
  1569. },
  1570. "isIllegal": true,
  1571. "randomID": "bTHEsiPTnHh3",
  1572. "stepSlot": {
  1573. "ContainerValue": {
  1574. "Type": "BTNodeSetPosAction",
  1575. "baseSelect": {
  1576. "DisplayName": "奖励物组_3",
  1577. "Type": "Action",
  1578. "Value": "BrsxMiuuSb4Y"
  1579. },
  1580. "isIllegal": true,
  1581. "posXInput": {
  1582. "ContainerValue": {
  1583. "Type": "BTNodeGetPosXAction",
  1584. "baseSelect": {
  1585. "DisplayName": "定位点3_3",
  1586. "Type": "Action",
  1587. "Value": "eapVoFOWkmd"
  1588. },
  1589. "isIllegal": true,
  1590. "randomID": "P1j6Z7EHHTzp"
  1591. },
  1592. "StringValue": {
  1593. "Type": "FLOAT",
  1594. "Value": 0
  1595. },
  1596. "Type": "BTInputSlot"
  1597. },
  1598. "posYInput": {
  1599. "ContainerValue": {
  1600. "Type": "BTNodeGetPosYAction",
  1601. "baseSelect": {
  1602. "DisplayName": "定位点3_3",
  1603. "Type": "Action",
  1604. "Value": "eapVoFOWkmd"
  1605. },
  1606. "isIllegal": true,
  1607. "randomID": "9ammjwKVseVg"
  1608. },
  1609. "StringValue": {
  1610. "Type": "FLOAT",
  1611. "Value": 0
  1612. },
  1613. "Type": "BTInputSlot"
  1614. },
  1615. "randomID": "xnIc3ZclFebI",
  1616. "stepSlot": {
  1617. "ContainerValue": {
  1618. "Type": "BTNodeShowAction",
  1619. "baseSelect": {
  1620. "DisplayName": "奖励物组_3",
  1621. "Type": "Action",
  1622. "Value": "BrsxMiuuSb4Y"
  1623. },
  1624. "isIllegal": true,
  1625. "randomID": "GGDgrOj4HfSw",
  1626. "stepSlot": {
  1627. "ContainerValue": null,
  1628. "Type": "BTStepSlot"
  1629. }
  1630. },
  1631. "Type": "BTStepSlot"
  1632. }
  1633. },
  1634. "Type": "BTStepSlot"
  1635. }
  1636. },
  1637. "Type": "BTStepSlot"
  1638. }
  1639. },
  1640. "Type": "BTStepSlot"
  1641. }
  1642. },
  1643. "Type": "BTStepSlot"
  1644. }
  1645. },
  1646. "Type": "BTSectionSlot"
  1647. },
  1648. "stepSlot": {
  1649. "ContainerValue": {
  1650. "Type": "BTIFControlAction",
  1651. "conditionA": {
  1652. "ContainerValue": {
  1653. "Type": "BTStringEqualOperatorAction",
  1654. "conditionA": {
  1655. "ContainerValue": {
  1656. "Type": "BTCoderVariableAction",
  1657. "VarScope": "Scene",
  1658. "isIllegal": true,
  1659. "randomID": "u2lM9mI0CYho",
  1660. "titleLabel": {
  1661. "Type": "STRING",
  1662. "Value": "P-奖励物个数",
  1663. "displayName": ""
  1664. }
  1665. },
  1666. "StringValue": {
  1667. "Type": "STRING",
  1668. "Value": "Red"
  1669. },
  1670. "Type": "BTInputSlot"
  1671. },
  1672. "conditionB": {
  1673. "ContainerValue": null,
  1674. "StringValue": {
  1675. "Type": "STRING",
  1676. "Value": "4"
  1677. },
  1678. "Type": "BTInputSlot"
  1679. },
  1680. "isIllegal": true,
  1681. "randomID": "vu4XuZvXLFQC"
  1682. },
  1683. "Type": "BTBoolSlot"
  1684. },
  1685. "isIllegal": true,
  1686. "randomID": "Su6fX2yBGxvL",
  1687. "sectionA": {
  1688. "ContainerValue": {
  1689. "Type": "BTNodeSetPosAction",
  1690. "baseSelect": {
  1691. "DisplayName": "奖励物组_1",
  1692. "Type": "Action",
  1693. "Value": "1H812FzCFC5"
  1694. },
  1695. "isIllegal": true,
  1696. "posXInput": {
  1697. "ContainerValue": {
  1698. "Type": "BTNodeGetPosXAction",
  1699. "baseSelect": {
  1700. "DisplayName": "定位点4_1",
  1701. "Type": "Action",
  1702. "Value": "RY9V5JJvteEZ"
  1703. },
  1704. "isIllegal": true,
  1705. "randomID": "oHe1GCeSOMlF"
  1706. },
  1707. "StringValue": {
  1708. "Type": "FLOAT",
  1709. "Value": 0
  1710. },
  1711. "Type": "BTInputSlot"
  1712. },
  1713. "posYInput": {
  1714. "ContainerValue": {
  1715. "Type": "BTNodeGetPosYAction",
  1716. "baseSelect": {
  1717. "DisplayName": "定位点4_1",
  1718. "Type": "Action",
  1719. "Value": "RY9V5JJvteEZ"
  1720. },
  1721. "isIllegal": true,
  1722. "randomID": "1plFab0RNi9t"
  1723. },
  1724. "StringValue": {
  1725. "Type": "FLOAT",
  1726. "Value": 0
  1727. },
  1728. "Type": "BTInputSlot"
  1729. },
  1730. "randomID": "hXDy7zq0h3A5",
  1731. "stepSlot": {
  1732. "ContainerValue": {
  1733. "Type": "BTNodeShowAction",
  1734. "baseSelect": {
  1735. "DisplayName": "奖励物组_1",
  1736. "Type": "Action",
  1737. "Value": "1H812FzCFC5"
  1738. },
  1739. "isIllegal": true,
  1740. "randomID": "SvqbLvlEzCnu",
  1741. "stepSlot": {
  1742. "ContainerValue": {
  1743. "Type": "BTNodeSetPosAction",
  1744. "baseSelect": {
  1745. "DisplayName": "奖励物组_2",
  1746. "Type": "Action",
  1747. "Value": "uAa3Cmdx1Xzh"
  1748. },
  1749. "isIllegal": true,
  1750. "posXInput": {
  1751. "ContainerValue": {
  1752. "Type": "BTNodeGetPosXAction",
  1753. "baseSelect": {
  1754. "DisplayName": "定位点4_2",
  1755. "Type": "Action",
  1756. "Value": "wQfPHthqyWe6"
  1757. },
  1758. "isIllegal": true,
  1759. "randomID": "SlBa0z682x4f"
  1760. },
  1761. "StringValue": {
  1762. "Type": "FLOAT",
  1763. "Value": 0
  1764. },
  1765. "Type": "BTInputSlot"
  1766. },
  1767. "posYInput": {
  1768. "ContainerValue": {
  1769. "Type": "BTNodeGetPosYAction",
  1770. "baseSelect": {
  1771. "DisplayName": "定位点4_2",
  1772. "Type": "Action",
  1773. "Value": "wQfPHthqyWe6"
  1774. },
  1775. "isIllegal": true,
  1776. "randomID": "e8FRjAuw5N3c"
  1777. },
  1778. "StringValue": {
  1779. "Type": "FLOAT",
  1780. "Value": 0
  1781. },
  1782. "Type": "BTInputSlot"
  1783. },
  1784. "randomID": "o2zcvaMgaSj7",
  1785. "stepSlot": {
  1786. "ContainerValue": {
  1787. "Type": "BTNodeShowAction",
  1788. "baseSelect": {
  1789. "DisplayName": "奖励物组_2",
  1790. "Type": "Action",
  1791. "Value": "uAa3Cmdx1Xzh"
  1792. },
  1793. "isIllegal": true,
  1794. "randomID": "fTV96NHUtbPs",
  1795. "stepSlot": {
  1796. "ContainerValue": {
  1797. "Type": "BTNodeSetPosAction",
  1798. "baseSelect": {
  1799. "DisplayName": "奖励物组_3",
  1800. "Type": "Action",
  1801. "Value": "BrsxMiuuSb4Y"
  1802. },
  1803. "isIllegal": true,
  1804. "posXInput": {
  1805. "ContainerValue": {
  1806. "Type": "BTNodeGetPosXAction",
  1807. "baseSelect": {
  1808. "DisplayName": "定位点4_3",
  1809. "Type": "Action",
  1810. "Value": "Y9EYlEEqjIcL"
  1811. },
  1812. "isIllegal": true,
  1813. "randomID": "WxhYYimenuD7"
  1814. },
  1815. "StringValue": {
  1816. "Type": "FLOAT",
  1817. "Value": 0
  1818. },
  1819. "Type": "BTInputSlot"
  1820. },
  1821. "posYInput": {
  1822. "ContainerValue": {
  1823. "Type": "BTNodeGetPosYAction",
  1824. "baseSelect": {
  1825. "DisplayName": "定位点4_3",
  1826. "Type": "Action",
  1827. "Value": "Y9EYlEEqjIcL"
  1828. },
  1829. "isIllegal": true,
  1830. "randomID": "IehNb2luCQSB"
  1831. },
  1832. "StringValue": {
  1833. "Type": "FLOAT",
  1834. "Value": 0
  1835. },
  1836. "Type": "BTInputSlot"
  1837. },
  1838. "randomID": "W0L0s3BZNsmm",
  1839. "stepSlot": {
  1840. "ContainerValue": {
  1841. "Type": "BTNodeShowAction",
  1842. "baseSelect": {
  1843. "DisplayName": "奖励物组_3",
  1844. "Type": "Action",
  1845. "Value": "BrsxMiuuSb4Y"
  1846. },
  1847. "isIllegal": true,
  1848. "randomID": "ZyiFg9cDBGfg",
  1849. "stepSlot": {
  1850. "ContainerValue": {
  1851. "Type": "BTNodeSetPosAction",
  1852. "baseSelect": {
  1853. "DisplayName": "奖励物组_4",
  1854. "Type": "Action",
  1855. "Value": "SM9hAmejXG1x"
  1856. },
  1857. "isIllegal": true,
  1858. "posXInput": {
  1859. "ContainerValue": {
  1860. "Type": "BTNodeGetPosXAction",
  1861. "baseSelect": {
  1862. "DisplayName": "定位点4_4",
  1863. "Type": "Action",
  1864. "Value": "9WIxuOCBLjs0"
  1865. },
  1866. "isIllegal": true,
  1867. "randomID": "gEwKTMyf90bt"
  1868. },
  1869. "StringValue": {
  1870. "Type": "FLOAT",
  1871. "Value": 0
  1872. },
  1873. "Type": "BTInputSlot"
  1874. },
  1875. "posYInput": {
  1876. "ContainerValue": {
  1877. "Type": "BTNodeGetPosYAction",
  1878. "baseSelect": {
  1879. "DisplayName": "定位点4_4",
  1880. "Type": "Action",
  1881. "Value": "9WIxuOCBLjs0"
  1882. },
  1883. "isIllegal": true,
  1884. "randomID": "HOZbeOEeolSj"
  1885. },
  1886. "StringValue": {
  1887. "Type": "FLOAT",
  1888. "Value": 0
  1889. },
  1890. "Type": "BTInputSlot"
  1891. },
  1892. "randomID": "T8ZOEbCn2Yi",
  1893. "stepSlot": {
  1894. "ContainerValue": {
  1895. "Type": "BTNodeShowAction",
  1896. "baseSelect": {
  1897. "DisplayName": "奖励物组_4",
  1898. "Type": "Action",
  1899. "Value": "SM9hAmejXG1x"
  1900. },
  1901. "isIllegal": true,
  1902. "randomID": "5vOm0314GOXd",
  1903. "stepSlot": {
  1904. "ContainerValue": null,
  1905. "Type": "BTStepSlot"
  1906. }
  1907. },
  1908. "Type": "BTStepSlot"
  1909. }
  1910. },
  1911. "Type": "BTStepSlot"
  1912. }
  1913. },
  1914. "Type": "BTStepSlot"
  1915. }
  1916. },
  1917. "Type": "BTStepSlot"
  1918. }
  1919. },
  1920. "Type": "BTStepSlot"
  1921. }
  1922. },
  1923. "Type": "BTStepSlot"
  1924. }
  1925. },
  1926. "Type": "BTStepSlot"
  1927. }
  1928. },
  1929. "Type": "BTSectionSlot"
  1930. },
  1931. "stepSlot": {
  1932. "ContainerValue": {
  1933. "Type": "BTIFControlAction",
  1934. "conditionA": {
  1935. "ContainerValue": {
  1936. "Type": "BTStringEqualOperatorAction",
  1937. "conditionA": {
  1938. "ContainerValue": {
  1939. "Type": "BTCoderVariableAction",
  1940. "VarScope": "Scene",
  1941. "isIllegal": true,
  1942. "randomID": "Z8dkG5zfp6xO",
  1943. "titleLabel": {
  1944. "Type": "STRING",
  1945. "Value": "P-奖励物个数",
  1946. "displayName": ""
  1947. }
  1948. },
  1949. "StringValue": {
  1950. "Type": "STRING",
  1951. "Value": "Red"
  1952. },
  1953. "Type": "BTInputSlot"
  1954. },
  1955. "conditionB": {
  1956. "ContainerValue": null,
  1957. "StringValue": {
  1958. "Type": "STRING",
  1959. "Value": "5"
  1960. },
  1961. "Type": "BTInputSlot"
  1962. },
  1963. "isIllegal": true,
  1964. "randomID": "DIZGVfGusmFt"
  1965. },
  1966. "Type": "BTBoolSlot"
  1967. },
  1968. "isIllegal": true,
  1969. "randomID": "6QxL5i4kfAey",
  1970. "sectionA": {
  1971. "ContainerValue": {
  1972. "Type": "BTNodeSetPosAction",
  1973. "baseSelect": {
  1974. "DisplayName": "奖励物组_1",
  1975. "Type": "Action",
  1976. "Value": "1H812FzCFC5"
  1977. },
  1978. "isIllegal": true,
  1979. "posXInput": {
  1980. "ContainerValue": {
  1981. "Type": "BTNodeGetPosXAction",
  1982. "baseSelect": {
  1983. "DisplayName": "定位点5_1",
  1984. "Type": "Action",
  1985. "Value": "VmfT2y9cVq8S"
  1986. },
  1987. "isIllegal": true,
  1988. "randomID": "nN3jq4sLpMsJ"
  1989. },
  1990. "StringValue": {
  1991. "Type": "FLOAT",
  1992. "Value": 0
  1993. },
  1994. "Type": "BTInputSlot"
  1995. },
  1996. "posYInput": {
  1997. "ContainerValue": {
  1998. "Type": "BTNodeGetPosYAction",
  1999. "baseSelect": {
  2000. "DisplayName": "定位点5_1",
  2001. "Type": "Action",
  2002. "Value": "VmfT2y9cVq8S"
  2003. },
  2004. "isIllegal": true,
  2005. "randomID": "6oskSLfnPwr1"
  2006. },
  2007. "StringValue": {
  2008. "Type": "FLOAT",
  2009. "Value": 0
  2010. },
  2011. "Type": "BTInputSlot"
  2012. },
  2013. "randomID": "FdVKu07CJSVz",
  2014. "stepSlot": {
  2015. "ContainerValue": {
  2016. "Type": "BTNodeShowAction",
  2017. "baseSelect": {
  2018. "DisplayName": "奖励物组_1",
  2019. "Type": "Action",
  2020. "Value": "1H812FzCFC5"
  2021. },
  2022. "isIllegal": true,
  2023. "randomID": "SEbRk8uvlfql",
  2024. "stepSlot": {
  2025. "ContainerValue": {
  2026. "Type": "BTNodeSetPosAction",
  2027. "baseSelect": {
  2028. "DisplayName": "奖励物组_2",
  2029. "Type": "Action",
  2030. "Value": "uAa3Cmdx1Xzh"
  2031. },
  2032. "isIllegal": true,
  2033. "posXInput": {
  2034. "ContainerValue": {
  2035. "Type": "BTNodeGetPosXAction",
  2036. "baseSelect": {
  2037. "DisplayName": "定位点5_2",
  2038. "Type": "Action",
  2039. "Value": "UveHcGMfcqcZ"
  2040. },
  2041. "isIllegal": true,
  2042. "randomID": "9aL3KaG6KlUj"
  2043. },
  2044. "StringValue": {
  2045. "Type": "FLOAT",
  2046. "Value": 0
  2047. },
  2048. "Type": "BTInputSlot"
  2049. },
  2050. "posYInput": {
  2051. "ContainerValue": {
  2052. "Type": "BTNodeGetPosYAction",
  2053. "baseSelect": {
  2054. "DisplayName": "定位点5_2",
  2055. "Type": "Action",
  2056. "Value": "UveHcGMfcqcZ"
  2057. },
  2058. "isIllegal": true,
  2059. "randomID": "TRz8xIQ7hm5S"
  2060. },
  2061. "StringValue": {
  2062. "Type": "FLOAT",
  2063. "Value": 0
  2064. },
  2065. "Type": "BTInputSlot"
  2066. },
  2067. "randomID": "X47DUhiVF59g",
  2068. "stepSlot": {
  2069. "ContainerValue": {
  2070. "Type": "BTNodeShowAction",
  2071. "baseSelect": {
  2072. "DisplayName": "奖励物组_2",
  2073. "Type": "Action",
  2074. "Value": "uAa3Cmdx1Xzh"
  2075. },
  2076. "isIllegal": true,
  2077. "randomID": "j3KdMs9GAjbh",
  2078. "stepSlot": {
  2079. "ContainerValue": {
  2080. "Type": "BTNodeSetPosAction",
  2081. "baseSelect": {
  2082. "DisplayName": "奖励物组_3",
  2083. "Type": "Action",
  2084. "Value": "BrsxMiuuSb4Y"
  2085. },
  2086. "isIllegal": true,
  2087. "posXInput": {
  2088. "ContainerValue": {
  2089. "Type": "BTNodeGetPosXAction",
  2090. "baseSelect": {
  2091. "DisplayName": "定位点5_3",
  2092. "Type": "Action",
  2093. "Value": "fiYeyHjDks"
  2094. },
  2095. "isIllegal": true,
  2096. "randomID": "wZ0EyuTiM7N4"
  2097. },
  2098. "StringValue": {
  2099. "Type": "FLOAT",
  2100. "Value": 0
  2101. },
  2102. "Type": "BTInputSlot"
  2103. },
  2104. "posYInput": {
  2105. "ContainerValue": {
  2106. "Type": "BTNodeGetPosYAction",
  2107. "baseSelect": {
  2108. "DisplayName": "定位点5_3",
  2109. "Type": "Action",
  2110. "Value": "fiYeyHjDks"
  2111. },
  2112. "isIllegal": true,
  2113. "randomID": "JwcfGfTV584R"
  2114. },
  2115. "StringValue": {
  2116. "Type": "FLOAT",
  2117. "Value": 0
  2118. },
  2119. "Type": "BTInputSlot"
  2120. },
  2121. "randomID": "oua4vqHAx5TB",
  2122. "stepSlot": {
  2123. "ContainerValue": {
  2124. "Type": "BTNodeShowAction",
  2125. "baseSelect": {
  2126. "DisplayName": "奖励物组_3",
  2127. "Type": "Action",
  2128. "Value": "BrsxMiuuSb4Y"
  2129. },
  2130. "isIllegal": true,
  2131. "randomID": "uDmErDfI5S8",
  2132. "stepSlot": {
  2133. "ContainerValue": {
  2134. "Type": "BTNodeSetPosAction",
  2135. "baseSelect": {
  2136. "DisplayName": "奖励物组_4",
  2137. "Type": "Action",
  2138. "Value": "SM9hAmejXG1x"
  2139. },
  2140. "isIllegal": true,
  2141. "posXInput": {
  2142. "ContainerValue": {
  2143. "Type": "BTNodeGetPosXAction",
  2144. "baseSelect": {
  2145. "DisplayName": "定位点5_4",
  2146. "Type": "Action",
  2147. "Value": "xtO8utJXQ1MZ"
  2148. },
  2149. "isIllegal": true,
  2150. "randomID": "5Rb8WBQOy0hj"
  2151. },
  2152. "StringValue": {
  2153. "Type": "FLOAT",
  2154. "Value": 0
  2155. },
  2156. "Type": "BTInputSlot"
  2157. },
  2158. "posYInput": {
  2159. "ContainerValue": {
  2160. "Type": "BTNodeGetPosYAction",
  2161. "baseSelect": {
  2162. "DisplayName": "定位点5_4",
  2163. "Type": "Action",
  2164. "Value": "xtO8utJXQ1MZ"
  2165. },
  2166. "isIllegal": true,
  2167. "randomID": "ZpVeVLiiO93E"
  2168. },
  2169. "StringValue": {
  2170. "Type": "FLOAT",
  2171. "Value": 0
  2172. },
  2173. "Type": "BTInputSlot"
  2174. },
  2175. "randomID": "t7cirS8Q3MKZ",
  2176. "stepSlot": {
  2177. "ContainerValue": {
  2178. "Type": "BTNodeShowAction",
  2179. "baseSelect": {
  2180. "DisplayName": "奖励物组_4",
  2181. "Type": "Action",
  2182. "Value": "SM9hAmejXG1x"
  2183. },
  2184. "isIllegal": true,
  2185. "randomID": "OBPOFiJRpxvd",
  2186. "stepSlot": {
  2187. "ContainerValue": {
  2188. "Type": "BTNodeSetPosAction",
  2189. "baseSelect": {
  2190. "DisplayName": "奖励物组_5",
  2191. "Type": "Action",
  2192. "Value": "Phsi7FhC2UBF"
  2193. },
  2194. "isIllegal": true,
  2195. "posXInput": {
  2196. "ContainerValue": {
  2197. "Type": "BTNodeGetPosXAction",
  2198. "baseSelect": {
  2199. "DisplayName": "定位点5_5",
  2200. "Type": "Action",
  2201. "Value": "rCtOD2fUou8e"
  2202. },
  2203. "isIllegal": true,
  2204. "randomID": "n5qNFa4VK9qM"
  2205. },
  2206. "StringValue": {
  2207. "Type": "FLOAT",
  2208. "Value": 0
  2209. },
  2210. "Type": "BTInputSlot"
  2211. },
  2212. "posYInput": {
  2213. "ContainerValue": {
  2214. "Type": "BTNodeGetPosYAction",
  2215. "baseSelect": {
  2216. "DisplayName": "定位点5_5",
  2217. "Type": "Action",
  2218. "Value": "rCtOD2fUou8e"
  2219. },
  2220. "isIllegal": true,
  2221. "randomID": "6twFMOjZQrlX"
  2222. },
  2223. "StringValue": {
  2224. "Type": "FLOAT",
  2225. "Value": 0
  2226. },
  2227. "Type": "BTInputSlot"
  2228. },
  2229. "randomID": "vEIyXx0UNUYR",
  2230. "stepSlot": {
  2231. "ContainerValue": {
  2232. "Type": "BTNodeShowAction",
  2233. "baseSelect": {
  2234. "DisplayName": "奖励物组_5",
  2235. "Type": "Action",
  2236. "Value": "Phsi7FhC2UBF"
  2237. },
  2238. "isIllegal": true,
  2239. "randomID": "bYXDSvuc6gdV",
  2240. "stepSlot": {
  2241. "ContainerValue": null,
  2242. "Type": "BTStepSlot"
  2243. }
  2244. },
  2245. "Type": "BTStepSlot"
  2246. }
  2247. },
  2248. "Type": "BTStepSlot"
  2249. }
  2250. },
  2251. "Type": "BTStepSlot"
  2252. }
  2253. },
  2254. "Type": "BTStepSlot"
  2255. }
  2256. },
  2257. "Type": "BTStepSlot"
  2258. }
  2259. },
  2260. "Type": "BTStepSlot"
  2261. }
  2262. },
  2263. "Type": "BTStepSlot"
  2264. }
  2265. },
  2266. "Type": "BTStepSlot"
  2267. }
  2268. },
  2269. "Type": "BTStepSlot"
  2270. }
  2271. },
  2272. "Type": "BTSectionSlot"
  2273. },
  2274. "stepSlot": {
  2275. "ContainerValue": {
  2276. "Type": "BTIFControlAction",
  2277. "conditionA": {
  2278. "ContainerValue": {
  2279. "Type": "BTStringEqualOperatorAction",
  2280. "conditionA": {
  2281. "ContainerValue": {
  2282. "Type": "BTCoderVariableAction",
  2283. "VarScope": "Scene",
  2284. "isIllegal": true,
  2285. "randomID": "oGDuHzRAaXjm",
  2286. "titleLabel": {
  2287. "Type": "STRING",
  2288. "Value": "P-奖励物个数",
  2289. "displayName": ""
  2290. }
  2291. },
  2292. "StringValue": {
  2293. "Type": "STRING",
  2294. "Value": "Red"
  2295. },
  2296. "Type": "BTInputSlot"
  2297. },
  2298. "conditionB": {
  2299. "ContainerValue": null,
  2300. "StringValue": {
  2301. "Type": "STRING",
  2302. "Value": "6"
  2303. },
  2304. "Type": "BTInputSlot"
  2305. },
  2306. "isIllegal": true,
  2307. "randomID": "EpbCLRydfxU0"
  2308. },
  2309. "Type": "BTBoolSlot"
  2310. },
  2311. "isIllegal": true,
  2312. "randomID": "R0HbkRLXeBz",
  2313. "sectionA": {
  2314. "ContainerValue": {
  2315. "Type": "BTNodeSetPosAction",
  2316. "baseSelect": {
  2317. "DisplayName": "奖励物组_1",
  2318. "Type": "Action",
  2319. "Value": "1H812FzCFC5"
  2320. },
  2321. "isIllegal": true,
  2322. "posXInput": {
  2323. "ContainerValue": {
  2324. "Type": "BTNodeGetPosXAction",
  2325. "baseSelect": {
  2326. "DisplayName": "定位点6_1",
  2327. "Type": "Action",
  2328. "Value": "6IFWWXOAk3xl"
  2329. },
  2330. "isIllegal": true,
  2331. "randomID": "yIYtCKRg2qWe"
  2332. },
  2333. "StringValue": {
  2334. "Type": "FLOAT",
  2335. "Value": 0
  2336. },
  2337. "Type": "BTInputSlot"
  2338. },
  2339. "posYInput": {
  2340. "ContainerValue": {
  2341. "Type": "BTNodeGetPosYAction",
  2342. "baseSelect": {
  2343. "DisplayName": "定位点6_1",
  2344. "Type": "Action",
  2345. "Value": "6IFWWXOAk3xl"
  2346. },
  2347. "isIllegal": true,
  2348. "randomID": "H0n3jty2TIDB"
  2349. },
  2350. "StringValue": {
  2351. "Type": "FLOAT",
  2352. "Value": 0
  2353. },
  2354. "Type": "BTInputSlot"
  2355. },
  2356. "randomID": "O6ErG5bRzZx",
  2357. "stepSlot": {
  2358. "ContainerValue": {
  2359. "Type": "BTNodeShowAction",
  2360. "baseSelect": {
  2361. "DisplayName": "奖励物组_1",
  2362. "Type": "Action",
  2363. "Value": "1H812FzCFC5"
  2364. },
  2365. "isIllegal": true,
  2366. "randomID": "w0fKXpV44xj3",
  2367. "stepSlot": {
  2368. "ContainerValue": {
  2369. "Type": "BTNodeSetPosAction",
  2370. "baseSelect": {
  2371. "DisplayName": "奖励物组_2",
  2372. "Type": "Action",
  2373. "Value": "uAa3Cmdx1Xzh"
  2374. },
  2375. "isIllegal": true,
  2376. "posXInput": {
  2377. "ContainerValue": {
  2378. "Type": "BTNodeGetPosXAction",
  2379. "baseSelect": {
  2380. "DisplayName": "定位点6_2",
  2381. "Type": "Action",
  2382. "Value": "Sqa0ibkW7dv"
  2383. },
  2384. "isIllegal": true,
  2385. "randomID": "HyqegEFPwbn8"
  2386. },
  2387. "StringValue": {
  2388. "Type": "FLOAT",
  2389. "Value": 0
  2390. },
  2391. "Type": "BTInputSlot"
  2392. },
  2393. "posYInput": {
  2394. "ContainerValue": {
  2395. "Type": "BTNodeGetPosYAction",
  2396. "baseSelect": {
  2397. "DisplayName": "定位点6_2",
  2398. "Type": "Action",
  2399. "Value": "Sqa0ibkW7dv"
  2400. },
  2401. "isIllegal": true,
  2402. "randomID": "9wCYtnCxwH4V"
  2403. },
  2404. "StringValue": {
  2405. "Type": "FLOAT",
  2406. "Value": 0
  2407. },
  2408. "Type": "BTInputSlot"
  2409. },
  2410. "randomID": "BT1Sfh2HYRQ",
  2411. "stepSlot": {
  2412. "ContainerValue": {
  2413. "Type": "BTNodeShowAction",
  2414. "baseSelect": {
  2415. "DisplayName": "奖励物组_2",
  2416. "Type": "Action",
  2417. "Value": "uAa3Cmdx1Xzh"
  2418. },
  2419. "isIllegal": true,
  2420. "randomID": "8iYtRNUSDa3Z",
  2421. "stepSlot": {
  2422. "ContainerValue": {
  2423. "Type": "BTNodeSetPosAction",
  2424. "baseSelect": {
  2425. "DisplayName": "奖励物组_3",
  2426. "Type": "Action",
  2427. "Value": "BrsxMiuuSb4Y"
  2428. },
  2429. "isIllegal": true,
  2430. "posXInput": {
  2431. "ContainerValue": {
  2432. "Type": "BTNodeGetPosXAction",
  2433. "baseSelect": {
  2434. "DisplayName": "定位点6_3",
  2435. "Type": "Action",
  2436. "Value": "b5PbtodDQF8M"
  2437. },
  2438. "isIllegal": true,
  2439. "randomID": "2BefXCHcYGCa"
  2440. },
  2441. "StringValue": {
  2442. "Type": "FLOAT",
  2443. "Value": 0
  2444. },
  2445. "Type": "BTInputSlot"
  2446. },
  2447. "posYInput": {
  2448. "ContainerValue": {
  2449. "Type": "BTNodeGetPosYAction",
  2450. "baseSelect": {
  2451. "DisplayName": "定位点6_3",
  2452. "Type": "Action",
  2453. "Value": "b5PbtodDQF8M"
  2454. },
  2455. "isIllegal": true,
  2456. "randomID": "CZFKwFYcY2Tl"
  2457. },
  2458. "StringValue": {
  2459. "Type": "FLOAT",
  2460. "Value": 0
  2461. },
  2462. "Type": "BTInputSlot"
  2463. },
  2464. "randomID": "ue7ebvB9cEOk",
  2465. "stepSlot": {
  2466. "ContainerValue": {
  2467. "Type": "BTNodeShowAction",
  2468. "baseSelect": {
  2469. "DisplayName": "奖励物组_3",
  2470. "Type": "Action",
  2471. "Value": "BrsxMiuuSb4Y"
  2472. },
  2473. "isIllegal": true,
  2474. "randomID": "cERwFUkw1qdi",
  2475. "stepSlot": {
  2476. "ContainerValue": {
  2477. "Type": "BTNodeSetPosAction",
  2478. "baseSelect": {
  2479. "DisplayName": "奖励物组_4",
  2480. "Type": "Action",
  2481. "Value": "SM9hAmejXG1x"
  2482. },
  2483. "isIllegal": true,
  2484. "posXInput": {
  2485. "ContainerValue": {
  2486. "Type": "BTNodeGetPosXAction",
  2487. "baseSelect": {
  2488. "DisplayName": "定位点6_4",
  2489. "Type": "Action",
  2490. "Value": "QwimC988aOhA"
  2491. },
  2492. "isIllegal": true,
  2493. "randomID": "vXvMut5mU0cy"
  2494. },
  2495. "StringValue": {
  2496. "Type": "FLOAT",
  2497. "Value": 0
  2498. },
  2499. "Type": "BTInputSlot"
  2500. },
  2501. "posYInput": {
  2502. "ContainerValue": {
  2503. "Type": "BTNodeGetPosYAction",
  2504. "baseSelect": {
  2505. "DisplayName": "定位点6_4",
  2506. "Type": "Action",
  2507. "Value": "QwimC988aOhA"
  2508. },
  2509. "isIllegal": true,
  2510. "randomID": "a9IUR1D4TYCO"
  2511. },
  2512. "StringValue": {
  2513. "Type": "FLOAT",
  2514. "Value": 0
  2515. },
  2516. "Type": "BTInputSlot"
  2517. },
  2518. "randomID": "BJnO8qUeujaM",
  2519. "stepSlot": {
  2520. "ContainerValue": {
  2521. "Type": "BTNodeShowAction",
  2522. "baseSelect": {
  2523. "DisplayName": "奖励物组_4",
  2524. "Type": "Action",
  2525. "Value": "SM9hAmejXG1x"
  2526. },
  2527. "isIllegal": true,
  2528. "randomID": "ikiZFmpmuCOr",
  2529. "stepSlot": {
  2530. "ContainerValue": {
  2531. "Type": "BTNodeSetPosAction",
  2532. "baseSelect": {
  2533. "DisplayName": "奖励物组_5",
  2534. "Type": "Action",
  2535. "Value": "Phsi7FhC2UBF"
  2536. },
  2537. "isIllegal": true,
  2538. "posXInput": {
  2539. "ContainerValue": {
  2540. "Type": "BTNodeGetPosXAction",
  2541. "baseSelect": {
  2542. "DisplayName": "定位点6_5",
  2543. "Type": "Action",
  2544. "Value": "F8GFTx4KaS1e"
  2545. },
  2546. "isIllegal": true,
  2547. "randomID": "uGQ0FcJSEmqy"
  2548. },
  2549. "StringValue": {
  2550. "Type": "FLOAT",
  2551. "Value": 0
  2552. },
  2553. "Type": "BTInputSlot"
  2554. },
  2555. "posYInput": {
  2556. "ContainerValue": {
  2557. "Type": "BTNodeGetPosYAction",
  2558. "baseSelect": {
  2559. "DisplayName": "定位点6_5",
  2560. "Type": "Action",
  2561. "Value": "F8GFTx4KaS1e"
  2562. },
  2563. "isIllegal": true,
  2564. "randomID": "rKzKfhRXd8aH"
  2565. },
  2566. "StringValue": {
  2567. "Type": "FLOAT",
  2568. "Value": 0
  2569. },
  2570. "Type": "BTInputSlot"
  2571. },
  2572. "randomID": "Jac9GEdsyBGo",
  2573. "stepSlot": {
  2574. "ContainerValue": {
  2575. "Type": "BTNodeShowAction",
  2576. "baseSelect": {
  2577. "DisplayName": "奖励物组_5",
  2578. "Type": "Action",
  2579. "Value": "Phsi7FhC2UBF"
  2580. },
  2581. "isIllegal": true,
  2582. "randomID": "00yiWOWXTSl",
  2583. "stepSlot": {
  2584. "ContainerValue": {
  2585. "Type": "BTNodeSetPosAction",
  2586. "baseSelect": {
  2587. "DisplayName": "奖励物组_6",
  2588. "Type": "Action",
  2589. "Value": "lXxw1Jsv0FN"
  2590. },
  2591. "isIllegal": true,
  2592. "posXInput": {
  2593. "ContainerValue": {
  2594. "Type": "BTNodeGetPosXAction",
  2595. "baseSelect": {
  2596. "DisplayName": "定位点6_6",
  2597. "Type": "Action",
  2598. "Value": "noYU3zxK84V9"
  2599. },
  2600. "isIllegal": true,
  2601. "randomID": "zzaxGS9zXhOa"
  2602. },
  2603. "StringValue": {
  2604. "Type": "FLOAT",
  2605. "Value": 0
  2606. },
  2607. "Type": "BTInputSlot"
  2608. },
  2609. "posYInput": {
  2610. "ContainerValue": {
  2611. "Type": "BTNodeGetPosYAction",
  2612. "baseSelect": {
  2613. "DisplayName": "定位点6_6",
  2614. "Type": "Action",
  2615. "Value": "noYU3zxK84V9"
  2616. },
  2617. "isIllegal": true,
  2618. "randomID": "53vmCJrsg6Yd"
  2619. },
  2620. "StringValue": {
  2621. "Type": "FLOAT",
  2622. "Value": 0
  2623. },
  2624. "Type": "BTInputSlot"
  2625. },
  2626. "randomID": "IFhklF4joTf",
  2627. "stepSlot": {
  2628. "ContainerValue": {
  2629. "Type": "BTNodeShowAction",
  2630. "baseSelect": {
  2631. "DisplayName": "奖励物组_6",
  2632. "Type": "Action",
  2633. "Value": "lXxw1Jsv0FN"
  2634. },
  2635. "isIllegal": true,
  2636. "randomID": "NUBmTIhza34",
  2637. "stepSlot": {
  2638. "ContainerValue": null,
  2639. "Type": "BTStepSlot"
  2640. }
  2641. },
  2642. "Type": "BTStepSlot"
  2643. }
  2644. },
  2645. "Type": "BTStepSlot"
  2646. }
  2647. },
  2648. "Type": "BTStepSlot"
  2649. }
  2650. },
  2651. "Type": "BTStepSlot"
  2652. }
  2653. },
  2654. "Type": "BTStepSlot"
  2655. }
  2656. },
  2657. "Type": "BTStepSlot"
  2658. }
  2659. },
  2660. "Type": "BTStepSlot"
  2661. }
  2662. },
  2663. "Type": "BTStepSlot"
  2664. }
  2665. },
  2666. "Type": "BTStepSlot"
  2667. }
  2668. },
  2669. "Type": "BTStepSlot"
  2670. }
  2671. },
  2672. "Type": "BTStepSlot"
  2673. }
  2674. },
  2675. "Type": "BTSectionSlot"
  2676. },
  2677. "stepSlot": {
  2678. "ContainerValue": {
  2679. "Type": "BTIFControlAction",
  2680. "conditionA": {
  2681. "ContainerValue": {
  2682. "Type": "BTStringEqualOperatorAction",
  2683. "conditionA": {
  2684. "ContainerValue": {
  2685. "Type": "BTCoderVariableAction",
  2686. "VarScope": "Scene",
  2687. "isIllegal": true,
  2688. "randomID": "jgGw5davvFzn",
  2689. "titleLabel": {
  2690. "Type": "STRING",
  2691. "Value": "P-奖励物个数",
  2692. "displayName": ""
  2693. }
  2694. },
  2695. "StringValue": {
  2696. "Type": "STRING",
  2697. "Value": "Red"
  2698. },
  2699. "Type": "BTInputSlot"
  2700. },
  2701. "conditionB": {
  2702. "ContainerValue": null,
  2703. "StringValue": {
  2704. "Type": "STRING",
  2705. "Value": "7"
  2706. },
  2707. "Type": "BTInputSlot"
  2708. },
  2709. "isIllegal": true,
  2710. "randomID": "aETBXa30e32b"
  2711. },
  2712. "Type": "BTBoolSlot"
  2713. },
  2714. "isIllegal": true,
  2715. "randomID": "sD4joQPhISDU",
  2716. "sectionA": {
  2717. "ContainerValue": {
  2718. "Type": "BTNodeSetPosAction",
  2719. "baseSelect": {
  2720. "DisplayName": "奖励物组_1",
  2721. "Type": "Action",
  2722. "Value": "1H812FzCFC5"
  2723. },
  2724. "isIllegal": true,
  2725. "posXInput": {
  2726. "ContainerValue": {
  2727. "Type": "BTNodeGetPosXAction",
  2728. "baseSelect": {
  2729. "DisplayName": "定位点7_1",
  2730. "Type": "Action",
  2731. "Value": "9y9VCqALlAx"
  2732. },
  2733. "isIllegal": true,
  2734. "randomID": "Q4mg2P3KXJ0x"
  2735. },
  2736. "StringValue": {
  2737. "Type": "FLOAT",
  2738. "Value": 0
  2739. },
  2740. "Type": "BTInputSlot"
  2741. },
  2742. "posYInput": {
  2743. "ContainerValue": {
  2744. "Type": "BTNodeGetPosYAction",
  2745. "baseSelect": {
  2746. "DisplayName": "定位点7_1",
  2747. "Type": "Action",
  2748. "Value": "9y9VCqALlAx"
  2749. },
  2750. "isIllegal": true,
  2751. "randomID": "mrbz0nRC3dxH"
  2752. },
  2753. "StringValue": {
  2754. "Type": "FLOAT",
  2755. "Value": 0
  2756. },
  2757. "Type": "BTInputSlot"
  2758. },
  2759. "randomID": "1zc4YcHxkzD",
  2760. "stepSlot": {
  2761. "ContainerValue": {
  2762. "Type": "BTNodeShowAction",
  2763. "baseSelect": {
  2764. "DisplayName": "奖励物组_1",
  2765. "Type": "Action",
  2766. "Value": "1H812FzCFC5"
  2767. },
  2768. "isIllegal": true,
  2769. "randomID": "te7bqnBqJ2mN",
  2770. "stepSlot": {
  2771. "ContainerValue": {
  2772. "Type": "BTNodeSetPosAction",
  2773. "baseSelect": {
  2774. "DisplayName": "奖励物组_2",
  2775. "Type": "Action",
  2776. "Value": "uAa3Cmdx1Xzh"
  2777. },
  2778. "isIllegal": true,
  2779. "posXInput": {
  2780. "ContainerValue": {
  2781. "Type": "BTNodeGetPosXAction",
  2782. "baseSelect": {
  2783. "DisplayName": "定位点7_2",
  2784. "Type": "Action",
  2785. "Value": "Lvn10mr44jv4"
  2786. },
  2787. "isIllegal": true,
  2788. "randomID": "yVMii7hqsO00"
  2789. },
  2790. "StringValue": {
  2791. "Type": "FLOAT",
  2792. "Value": 0
  2793. },
  2794. "Type": "BTInputSlot"
  2795. },
  2796. "posYInput": {
  2797. "ContainerValue": {
  2798. "Type": "BTNodeGetPosYAction",
  2799. "baseSelect": {
  2800. "DisplayName": "定位点7_2",
  2801. "Type": "Action",
  2802. "Value": "Lvn10mr44jv4"
  2803. },
  2804. "isIllegal": true,
  2805. "randomID": "uzZUvqQVKH3i"
  2806. },
  2807. "StringValue": {
  2808. "Type": "FLOAT",
  2809. "Value": 0
  2810. },
  2811. "Type": "BTInputSlot"
  2812. },
  2813. "randomID": "ye6zGRVu1FWU",
  2814. "stepSlot": {
  2815. "ContainerValue": {
  2816. "Type": "BTNodeShowAction",
  2817. "baseSelect": {
  2818. "DisplayName": "奖励物组_2",
  2819. "Type": "Action",
  2820. "Value": "uAa3Cmdx1Xzh"
  2821. },
  2822. "isIllegal": true,
  2823. "randomID": "cRVLmZRJQV4e",
  2824. "stepSlot": {
  2825. "ContainerValue": {
  2826. "Type": "BTNodeSetPosAction",
  2827. "baseSelect": {
  2828. "DisplayName": "奖励物组_3",
  2829. "Type": "Action",
  2830. "Value": "BrsxMiuuSb4Y"
  2831. },
  2832. "isIllegal": true,
  2833. "posXInput": {
  2834. "ContainerValue": {
  2835. "Type": "BTNodeGetPosXAction",
  2836. "baseSelect": {
  2837. "DisplayName": "定位点7_3",
  2838. "Type": "Action",
  2839. "Value": "XbQ9mTNafpJF"
  2840. },
  2841. "isIllegal": true,
  2842. "randomID": "hpRGjNIHAVc1"
  2843. },
  2844. "StringValue": {
  2845. "Type": "FLOAT",
  2846. "Value": 0
  2847. },
  2848. "Type": "BTInputSlot"
  2849. },
  2850. "posYInput": {
  2851. "ContainerValue": {
  2852. "Type": "BTNodeGetPosYAction",
  2853. "baseSelect": {
  2854. "DisplayName": "定位点7_3",
  2855. "Type": "Action",
  2856. "Value": "XbQ9mTNafpJF"
  2857. },
  2858. "isIllegal": true,
  2859. "randomID": "swd0C7kC0qne"
  2860. },
  2861. "StringValue": {
  2862. "Type": "FLOAT",
  2863. "Value": 0
  2864. },
  2865. "Type": "BTInputSlot"
  2866. },
  2867. "randomID": "xOCROgUtB96i",
  2868. "stepSlot": {
  2869. "ContainerValue": {
  2870. "Type": "BTNodeShowAction",
  2871. "baseSelect": {
  2872. "DisplayName": "奖励物组_3",
  2873. "Type": "Action",
  2874. "Value": "BrsxMiuuSb4Y"
  2875. },
  2876. "isIllegal": true,
  2877. "randomID": "fuHZMh8dl9",
  2878. "stepSlot": {
  2879. "ContainerValue": {
  2880. "Type": "BTNodeSetPosAction",
  2881. "baseSelect": {
  2882. "DisplayName": "奖励物组_4",
  2883. "Type": "Action",
  2884. "Value": "SM9hAmejXG1x"
  2885. },
  2886. "isIllegal": true,
  2887. "posXInput": {
  2888. "ContainerValue": {
  2889. "Type": "BTNodeGetPosXAction",
  2890. "baseSelect": {
  2891. "DisplayName": "定位点7_4",
  2892. "Type": "Action",
  2893. "Value": "BfLP7SdnanpV"
  2894. },
  2895. "isIllegal": true,
  2896. "randomID": "Kg5bcFj0JyPf"
  2897. },
  2898. "StringValue": {
  2899. "Type": "FLOAT",
  2900. "Value": 0
  2901. },
  2902. "Type": "BTInputSlot"
  2903. },
  2904. "posYInput": {
  2905. "ContainerValue": {
  2906. "Type": "BTNodeGetPosYAction",
  2907. "baseSelect": {
  2908. "DisplayName": "定位点7_4",
  2909. "Type": "Action",
  2910. "Value": "BfLP7SdnanpV"
  2911. },
  2912. "isIllegal": true,
  2913. "randomID": "nJtZTTqRSt87"
  2914. },
  2915. "StringValue": {
  2916. "Type": "FLOAT",
  2917. "Value": 0
  2918. },
  2919. "Type": "BTInputSlot"
  2920. },
  2921. "randomID": "HW7OYIhMeXxO",
  2922. "stepSlot": {
  2923. "ContainerValue": {
  2924. "Type": "BTNodeShowAction",
  2925. "baseSelect": {
  2926. "DisplayName": "奖励物组_4",
  2927. "Type": "Action",
  2928. "Value": "SM9hAmejXG1x"
  2929. },
  2930. "isIllegal": true,
  2931. "randomID": "oTMUgPNcsZiI",
  2932. "stepSlot": {
  2933. "ContainerValue": {
  2934. "Type": "BTNodeSetPosAction",
  2935. "baseSelect": {
  2936. "DisplayName": "奖励物组_5",
  2937. "Type": "Action",
  2938. "Value": "Phsi7FhC2UBF"
  2939. },
  2940. "isIllegal": true,
  2941. "posXInput": {
  2942. "ContainerValue": {
  2943. "Type": "BTNodeGetPosXAction",
  2944. "baseSelect": {
  2945. "DisplayName": "定位点7_5",
  2946. "Type": "Action",
  2947. "Value": "2bRAbUUzGHHh"
  2948. },
  2949. "isIllegal": true,
  2950. "randomID": "XhA3wiKxGwRF"
  2951. },
  2952. "StringValue": {
  2953. "Type": "FLOAT",
  2954. "Value": 0
  2955. },
  2956. "Type": "BTInputSlot"
  2957. },
  2958. "posYInput": {
  2959. "ContainerValue": {
  2960. "Type": "BTNodeGetPosYAction",
  2961. "baseSelect": {
  2962. "DisplayName": "定位点7_5",
  2963. "Type": "Action",
  2964. "Value": "2bRAbUUzGHHh"
  2965. },
  2966. "isIllegal": true,
  2967. "randomID": "iEcGGjvXYrmz"
  2968. },
  2969. "StringValue": {
  2970. "Type": "FLOAT",
  2971. "Value": 0
  2972. },
  2973. "Type": "BTInputSlot"
  2974. },
  2975. "randomID": "zQ5th7ihoOzn",
  2976. "stepSlot": {
  2977. "ContainerValue": {
  2978. "Type": "BTNodeShowAction",
  2979. "baseSelect": {
  2980. "DisplayName": "奖励物组_5",
  2981. "Type": "Action",
  2982. "Value": "Phsi7FhC2UBF"
  2983. },
  2984. "isIllegal": true,
  2985. "randomID": "Ob3Gfj5Xt1x",
  2986. "stepSlot": {
  2987. "ContainerValue": {
  2988. "Type": "BTNodeSetPosAction",
  2989. "baseSelect": {
  2990. "DisplayName": "奖励物组_6",
  2991. "Type": "Action",
  2992. "Value": "lXxw1Jsv0FN"
  2993. },
  2994. "isIllegal": true,
  2995. "posXInput": {
  2996. "ContainerValue": {
  2997. "Type": "BTNodeGetPosXAction",
  2998. "baseSelect": {
  2999. "DisplayName": "定位点7_6",
  3000. "Type": "Action",
  3001. "Value": "qTW8KMc8SCBT"
  3002. },
  3003. "isIllegal": true,
  3004. "randomID": "y1bQwmNzy6m2"
  3005. },
  3006. "StringValue": {
  3007. "Type": "FLOAT",
  3008. "Value": 0
  3009. },
  3010. "Type": "BTInputSlot"
  3011. },
  3012. "posYInput": {
  3013. "ContainerValue": {
  3014. "Type": "BTNodeGetPosYAction",
  3015. "baseSelect": {
  3016. "DisplayName": "定位点7_6",
  3017. "Type": "Action",
  3018. "Value": "qTW8KMc8SCBT"
  3019. },
  3020. "isIllegal": true,
  3021. "randomID": "RqJwLWRNBrDR"
  3022. },
  3023. "StringValue": {
  3024. "Type": "FLOAT",
  3025. "Value": 0
  3026. },
  3027. "Type": "BTInputSlot"
  3028. },
  3029. "randomID": "3BAx0z2MgUf",
  3030. "stepSlot": {
  3031. "ContainerValue": {
  3032. "Type": "BTNodeShowAction",
  3033. "baseSelect": {
  3034. "DisplayName": "奖励物组_6",
  3035. "Type": "Action",
  3036. "Value": "lXxw1Jsv0FN"
  3037. },
  3038. "isIllegal": true,
  3039. "randomID": "VA3bjSswJYmM",
  3040. "stepSlot": {
  3041. "ContainerValue": {
  3042. "Type": "BTNodeSetPosAction",
  3043. "baseSelect": {
  3044. "DisplayName": "奖励物组_7",
  3045. "Type": "Action",
  3046. "Value": "NfqVkj2YAVK"
  3047. },
  3048. "isIllegal": true,
  3049. "posXInput": {
  3050. "ContainerValue": {
  3051. "Type": "BTNodeGetPosXAction",
  3052. "baseSelect": {
  3053. "DisplayName": "定位点7_7",
  3054. "Type": "Action",
  3055. "Value": "iFwTjLUWUtll"
  3056. },
  3057. "isIllegal": true,
  3058. "randomID": "SMQ0cS5HDo1K"
  3059. },
  3060. "StringValue": {
  3061. "Type": "FLOAT",
  3062. "Value": 0
  3063. },
  3064. "Type": "BTInputSlot"
  3065. },
  3066. "posYInput": {
  3067. "ContainerValue": {
  3068. "Type": "BTNodeGetPosYAction",
  3069. "baseSelect": {
  3070. "DisplayName": "定位点7_7",
  3071. "Type": "Action",
  3072. "Value": "iFwTjLUWUtll"
  3073. },
  3074. "isIllegal": true,
  3075. "randomID": "PHgVP80Iwb2r"
  3076. },
  3077. "StringValue": {
  3078. "Type": "FLOAT",
  3079. "Value": 0
  3080. },
  3081. "Type": "BTInputSlot"
  3082. },
  3083. "randomID": "Ao48oZx6GwaB",
  3084. "stepSlot": {
  3085. "ContainerValue": {
  3086. "Type": "BTNodeShowAction",
  3087. "baseSelect": {
  3088. "DisplayName": "奖励物组_7",
  3089. "Type": "Action",
  3090. "Value": "NfqVkj2YAVK"
  3091. },
  3092. "isIllegal": true,
  3093. "randomID": "OpQo0xATZj6d",
  3094. "stepSlot": {
  3095. "ContainerValue": null,
  3096. "Type": "BTStepSlot"
  3097. }
  3098. },
  3099. "Type": "BTStepSlot"
  3100. }
  3101. },
  3102. "Type": "BTStepSlot"
  3103. }
  3104. },
  3105. "Type": "BTStepSlot"
  3106. }
  3107. },
  3108. "Type": "BTStepSlot"
  3109. }
  3110. },
  3111. "Type": "BTStepSlot"
  3112. }
  3113. },
  3114. "Type": "BTStepSlot"
  3115. }
  3116. },
  3117. "Type": "BTStepSlot"
  3118. }
  3119. },
  3120. "Type": "BTStepSlot"
  3121. }
  3122. },
  3123. "Type": "BTStepSlot"
  3124. }
  3125. },
  3126. "Type": "BTStepSlot"
  3127. }
  3128. },
  3129. "Type": "BTStepSlot"
  3130. }
  3131. },
  3132. "Type": "BTStepSlot"
  3133. }
  3134. },
  3135. "Type": "BTStepSlot"
  3136. }
  3137. },
  3138. "Type": "BTSectionSlot"
  3139. },
  3140. "stepSlot": {
  3141. "ContainerValue": {
  3142. "Type": "BTIFControlAction",
  3143. "conditionA": {
  3144. "ContainerValue": {
  3145. "Type": "BTStringEqualOperatorAction",
  3146. "conditionA": {
  3147. "ContainerValue": {
  3148. "Type": "BTCoderVariableAction",
  3149. "VarScope": "Scene",
  3150. "isIllegal": true,
  3151. "randomID": "sqRNrhLtXk07",
  3152. "titleLabel": {
  3153. "Type": "STRING",
  3154. "Value": "P-奖励物个数",
  3155. "displayName": ""
  3156. }
  3157. },
  3158. "StringValue": {
  3159. "Type": "STRING",
  3160. "Value": "Red"
  3161. },
  3162. "Type": "BTInputSlot"
  3163. },
  3164. "conditionB": {
  3165. "ContainerValue": null,
  3166. "StringValue": {
  3167. "Type": "STRING",
  3168. "Value": "8"
  3169. },
  3170. "Type": "BTInputSlot"
  3171. },
  3172. "isIllegal": true,
  3173. "randomID": "IUW6COixWFVW"
  3174. },
  3175. "Type": "BTBoolSlot"
  3176. },
  3177. "isIllegal": true,
  3178. "randomID": "UmJfr2wuxuU",
  3179. "sectionA": {
  3180. "ContainerValue": {
  3181. "Type": "BTNodeSetPosAction",
  3182. "baseSelect": {
  3183. "DisplayName": "奖励物组_1",
  3184. "Type": "Action",
  3185. "Value": "1H812FzCFC5"
  3186. },
  3187. "isIllegal": true,
  3188. "posXInput": {
  3189. "ContainerValue": {
  3190. "Type": "BTNodeGetPosXAction",
  3191. "baseSelect": {
  3192. "DisplayName": "定位点8_1",
  3193. "Type": "Action",
  3194. "Value": "9HdnCcSak5f3"
  3195. },
  3196. "isIllegal": true,
  3197. "randomID": "QJ8bHHoNs0cb"
  3198. },
  3199. "StringValue": {
  3200. "Type": "FLOAT",
  3201. "Value": 0
  3202. },
  3203. "Type": "BTInputSlot"
  3204. },
  3205. "posYInput": {
  3206. "ContainerValue": {
  3207. "Type": "BTNodeGetPosYAction",
  3208. "baseSelect": {
  3209. "DisplayName": "定位点8_1",
  3210. "Type": "Action",
  3211. "Value": "9HdnCcSak5f3"
  3212. },
  3213. "isIllegal": true,
  3214. "randomID": "7QhODCwprbAG"
  3215. },
  3216. "StringValue": {
  3217. "Type": "FLOAT",
  3218. "Value": 0
  3219. },
  3220. "Type": "BTInputSlot"
  3221. },
  3222. "randomID": "SizMShMKvYA",
  3223. "stepSlot": {
  3224. "ContainerValue": {
  3225. "Type": "BTNodeShowAction",
  3226. "baseSelect": {
  3227. "DisplayName": "奖励物组_1",
  3228. "Type": "Action",
  3229. "Value": "1H812FzCFC5"
  3230. },
  3231. "isIllegal": true,
  3232. "randomID": "XcVDsXzLRmgU",
  3233. "stepSlot": {
  3234. "ContainerValue": {
  3235. "Type": "BTNodeSetPosAction",
  3236. "baseSelect": {
  3237. "DisplayName": "奖励物组_2",
  3238. "Type": "Action",
  3239. "Value": "uAa3Cmdx1Xzh"
  3240. },
  3241. "isIllegal": true,
  3242. "posXInput": {
  3243. "ContainerValue": {
  3244. "Type": "BTNodeGetPosXAction",
  3245. "baseSelect": {
  3246. "DisplayName": "定位点8_2",
  3247. "Type": "Action",
  3248. "Value": "Dzu7qWQdUsmQ"
  3249. },
  3250. "isIllegal": true,
  3251. "randomID": "TQnGO4LBTbSa"
  3252. },
  3253. "StringValue": {
  3254. "Type": "FLOAT",
  3255. "Value": 0
  3256. },
  3257. "Type": "BTInputSlot"
  3258. },
  3259. "posYInput": {
  3260. "ContainerValue": {
  3261. "Type": "BTNodeGetPosYAction",
  3262. "baseSelect": {
  3263. "DisplayName": "定位点8_2",
  3264. "Type": "Action",
  3265. "Value": "Dzu7qWQdUsmQ"
  3266. },
  3267. "isIllegal": true,
  3268. "randomID": "uADb5Q17UKMD"
  3269. },
  3270. "StringValue": {
  3271. "Type": "FLOAT",
  3272. "Value": 0
  3273. },
  3274. "Type": "BTInputSlot"
  3275. },
  3276. "randomID": "bGOKhDKvkROd",
  3277. "stepSlot": {
  3278. "ContainerValue": {
  3279. "Type": "BTNodeShowAction",
  3280. "baseSelect": {
  3281. "DisplayName": "奖励物组_2",
  3282. "Type": "Action",
  3283. "Value": "uAa3Cmdx1Xzh"
  3284. },
  3285. "isIllegal": true,
  3286. "randomID": "NxGA4I1Wfne4",
  3287. "stepSlot": {
  3288. "ContainerValue": {
  3289. "Type": "BTNodeSetPosAction",
  3290. "baseSelect": {
  3291. "DisplayName": "奖励物组_3",
  3292. "Type": "Action",
  3293. "Value": "BrsxMiuuSb4Y"
  3294. },
  3295. "isIllegal": true,
  3296. "posXInput": {
  3297. "ContainerValue": {
  3298. "Type": "BTNodeGetPosXAction",
  3299. "baseSelect": {
  3300. "DisplayName": "定位点8_3",
  3301. "Type": "Action",
  3302. "Value": "sDViCXpWkx7u"
  3303. },
  3304. "isIllegal": true,
  3305. "randomID": "SBQYudmeRKlU"
  3306. },
  3307. "StringValue": {
  3308. "Type": "FLOAT",
  3309. "Value": 0
  3310. },
  3311. "Type": "BTInputSlot"
  3312. },
  3313. "posYInput": {
  3314. "ContainerValue": {
  3315. "Type": "BTNodeGetPosYAction",
  3316. "baseSelect": {
  3317. "DisplayName": "定位点8_3",
  3318. "Type": "Action",
  3319. "Value": "sDViCXpWkx7u"
  3320. },
  3321. "isIllegal": true,
  3322. "randomID": "R55s2Q1EjhoW"
  3323. },
  3324. "StringValue": {
  3325. "Type": "FLOAT",
  3326. "Value": 0
  3327. },
  3328. "Type": "BTInputSlot"
  3329. },
  3330. "randomID": "FhjFjoLbgbRt",
  3331. "stepSlot": {
  3332. "ContainerValue": {
  3333. "Type": "BTNodeShowAction",
  3334. "baseSelect": {
  3335. "DisplayName": "奖励物组_3",
  3336. "Type": "Action",
  3337. "Value": "BrsxMiuuSb4Y"
  3338. },
  3339. "isIllegal": true,
  3340. "randomID": "ASfxpxAzp8XA",
  3341. "stepSlot": {
  3342. "ContainerValue": {
  3343. "Type": "BTNodeSetPosAction",
  3344. "baseSelect": {
  3345. "DisplayName": "奖励物组_4",
  3346. "Type": "Action",
  3347. "Value": "SM9hAmejXG1x"
  3348. },
  3349. "isIllegal": true,
  3350. "posXInput": {
  3351. "ContainerValue": {
  3352. "Type": "BTNodeGetPosXAction",
  3353. "baseSelect": {
  3354. "DisplayName": "定位点8_4",
  3355. "Type": "Action",
  3356. "Value": "nH39ZxKxOCr"
  3357. },
  3358. "isIllegal": true,
  3359. "randomID": "PzthxLPqbL9R"
  3360. },
  3361. "StringValue": {
  3362. "Type": "FLOAT",
  3363. "Value": 0
  3364. },
  3365. "Type": "BTInputSlot"
  3366. },
  3367. "posYInput": {
  3368. "ContainerValue": {
  3369. "Type": "BTNodeGetPosYAction",
  3370. "baseSelect": {
  3371. "DisplayName": "定位点8_4",
  3372. "Type": "Action",
  3373. "Value": "nH39ZxKxOCr"
  3374. },
  3375. "isIllegal": true,
  3376. "randomID": "YoFD2fP3z5yx"
  3377. },
  3378. "StringValue": {
  3379. "Type": "FLOAT",
  3380. "Value": 0
  3381. },
  3382. "Type": "BTInputSlot"
  3383. },
  3384. "randomID": "ChWJYvq8iaSN",
  3385. "stepSlot": {
  3386. "ContainerValue": {
  3387. "Type": "BTNodeShowAction",
  3388. "baseSelect": {
  3389. "DisplayName": "奖励物组_4",
  3390. "Type": "Action",
  3391. "Value": "SM9hAmejXG1x"
  3392. },
  3393. "isIllegal": true,
  3394. "randomID": "RGNbpVKoXl5",
  3395. "stepSlot": {
  3396. "ContainerValue": {
  3397. "Type": "BTNodeSetPosAction",
  3398. "baseSelect": {
  3399. "DisplayName": "奖励物组_5",
  3400. "Type": "Action",
  3401. "Value": "Phsi7FhC2UBF"
  3402. },
  3403. "isIllegal": true,
  3404. "posXInput": {
  3405. "ContainerValue": {
  3406. "Type": "BTNodeGetPosXAction",
  3407. "baseSelect": {
  3408. "DisplayName": "定位点8_5",
  3409. "Type": "Action",
  3410. "Value": "Yrnzqf6ddXtJ"
  3411. },
  3412. "isIllegal": true,
  3413. "randomID": "LotmzUsc1Dbc"
  3414. },
  3415. "StringValue": {
  3416. "Type": "FLOAT",
  3417. "Value": 0
  3418. },
  3419. "Type": "BTInputSlot"
  3420. },
  3421. "posYInput": {
  3422. "ContainerValue": {
  3423. "Type": "BTNodeGetPosYAction",
  3424. "baseSelect": {
  3425. "DisplayName": "定位点8_5",
  3426. "Type": "Action",
  3427. "Value": "Yrnzqf6ddXtJ"
  3428. },
  3429. "isIllegal": true,
  3430. "randomID": "pxWljsXBvPs7"
  3431. },
  3432. "StringValue": {
  3433. "Type": "FLOAT",
  3434. "Value": 0
  3435. },
  3436. "Type": "BTInputSlot"
  3437. },
  3438. "randomID": "S9LuUO2I4Dmb",
  3439. "stepSlot": {
  3440. "ContainerValue": {
  3441. "Type": "BTNodeShowAction",
  3442. "baseSelect": {
  3443. "DisplayName": "奖励物组_5",
  3444. "Type": "Action",
  3445. "Value": "Phsi7FhC2UBF"
  3446. },
  3447. "isIllegal": true,
  3448. "randomID": "DKvcwkuiVC2A",
  3449. "stepSlot": {
  3450. "ContainerValue": {
  3451. "Type": "BTNodeSetPosAction",
  3452. "baseSelect": {
  3453. "DisplayName": "奖励物组_6",
  3454. "Type": "Action",
  3455. "Value": "lXxw1Jsv0FN"
  3456. },
  3457. "isIllegal": true,
  3458. "posXInput": {
  3459. "ContainerValue": {
  3460. "Type": "BTNodeGetPosXAction",
  3461. "baseSelect": {
  3462. "DisplayName": "定位点8_6",
  3463. "Type": "Action",
  3464. "Value": "JeKwpJy6iJN"
  3465. },
  3466. "isIllegal": true,
  3467. "randomID": "Q9Y9Jo8uxv6E"
  3468. },
  3469. "StringValue": {
  3470. "Type": "FLOAT",
  3471. "Value": 0
  3472. },
  3473. "Type": "BTInputSlot"
  3474. },
  3475. "posYInput": {
  3476. "ContainerValue": {
  3477. "Type": "BTNodeGetPosYAction",
  3478. "baseSelect": {
  3479. "DisplayName": "定位点8_6",
  3480. "Type": "Action",
  3481. "Value": "JeKwpJy6iJN"
  3482. },
  3483. "isIllegal": true,
  3484. "randomID": "9LqVHujJXSjP"
  3485. },
  3486. "StringValue": {
  3487. "Type": "FLOAT",
  3488. "Value": 0
  3489. },
  3490. "Type": "BTInputSlot"
  3491. },
  3492. "randomID": "hRf9iWKHbpk7",
  3493. "stepSlot": {
  3494. "ContainerValue": {
  3495. "Type": "BTNodeShowAction",
  3496. "baseSelect": {
  3497. "DisplayName": "奖励物组_6",
  3498. "Type": "Action",
  3499. "Value": "lXxw1Jsv0FN"
  3500. },
  3501. "isIllegal": true,
  3502. "randomID": "4pQbPXGAqi4",
  3503. "stepSlot": {
  3504. "ContainerValue": {
  3505. "Type": "BTNodeSetPosAction",
  3506. "baseSelect": {
  3507. "DisplayName": "奖励物组_7",
  3508. "Type": "Action",
  3509. "Value": "NfqVkj2YAVK"
  3510. },
  3511. "isIllegal": true,
  3512. "posXInput": {
  3513. "ContainerValue": {
  3514. "Type": "BTNodeGetPosXAction",
  3515. "baseSelect": {
  3516. "DisplayName": "定位点8_7",
  3517. "Type": "Action",
  3518. "Value": "snur1QfciXUx"
  3519. },
  3520. "isIllegal": true,
  3521. "randomID": "h0M0X3gmZjhu"
  3522. },
  3523. "StringValue": {
  3524. "Type": "FLOAT",
  3525. "Value": 0
  3526. },
  3527. "Type": "BTInputSlot"
  3528. },
  3529. "posYInput": {
  3530. "ContainerValue": {
  3531. "Type": "BTNodeGetPosYAction",
  3532. "baseSelect": {
  3533. "DisplayName": "定位点8_7",
  3534. "Type": "Action",
  3535. "Value": "snur1QfciXUx"
  3536. },
  3537. "isIllegal": true,
  3538. "randomID": "PFwpmx2YOWCd"
  3539. },
  3540. "StringValue": {
  3541. "Type": "FLOAT",
  3542. "Value": 0
  3543. },
  3544. "Type": "BTInputSlot"
  3545. },
  3546. "randomID": "IL4o3pRjxygr",
  3547. "stepSlot": {
  3548. "ContainerValue": {
  3549. "Type": "BTNodeShowAction",
  3550. "baseSelect": {
  3551. "DisplayName": "奖励物组_7",
  3552. "Type": "Action",
  3553. "Value": "NfqVkj2YAVK"
  3554. },
  3555. "isIllegal": true,
  3556. "randomID": "4T1vqrEogOY",
  3557. "stepSlot": {
  3558. "ContainerValue": {
  3559. "Type": "BTNodeSetPosAction",
  3560. "baseSelect": {
  3561. "DisplayName": "奖励物组_8",
  3562. "Type": "Action",
  3563. "Value": "jFoQE2bDluy"
  3564. },
  3565. "isIllegal": true,
  3566. "posXInput": {
  3567. "ContainerValue": {
  3568. "Type": "BTNodeGetPosXAction",
  3569. "baseSelect": {
  3570. "DisplayName": "定位点8_8",
  3571. "Type": "Action",
  3572. "Value": "rwWE5Mji8Bge"
  3573. },
  3574. "isIllegal": true,
  3575. "randomID": "lItN4jBWUVTf"
  3576. },
  3577. "StringValue": {
  3578. "Type": "FLOAT",
  3579. "Value": 0
  3580. },
  3581. "Type": "BTInputSlot"
  3582. },
  3583. "posYInput": {
  3584. "ContainerValue": {
  3585. "Type": "BTNodeGetPosYAction",
  3586. "baseSelect": {
  3587. "DisplayName": "定位点8_8",
  3588. "Type": "Action",
  3589. "Value": "rwWE5Mji8Bge"
  3590. },
  3591. "isIllegal": true,
  3592. "randomID": "YaeTWoIkp5iu"
  3593. },
  3594. "StringValue": {
  3595. "Type": "FLOAT",
  3596. "Value": 0
  3597. },
  3598. "Type": "BTInputSlot"
  3599. },
  3600. "randomID": "2jYs3FUeBSk3",
  3601. "stepSlot": {
  3602. "ContainerValue": {
  3603. "Type": "BTNodeShowAction",
  3604. "baseSelect": {
  3605. "DisplayName": "奖励物组_8",
  3606. "Type": "Action",
  3607. "Value": "jFoQE2bDluy"
  3608. },
  3609. "isIllegal": true,
  3610. "randomID": "5xLZuFMAtjNz",
  3611. "stepSlot": {
  3612. "ContainerValue": null,
  3613. "Type": "BTStepSlot"
  3614. }
  3615. },
  3616. "Type": "BTStepSlot"
  3617. }
  3618. },
  3619. "Type": "BTStepSlot"
  3620. }
  3621. },
  3622. "Type": "BTStepSlot"
  3623. }
  3624. },
  3625. "Type": "BTStepSlot"
  3626. }
  3627. },
  3628. "Type": "BTStepSlot"
  3629. }
  3630. },
  3631. "Type": "BTStepSlot"
  3632. }
  3633. },
  3634. "Type": "BTStepSlot"
  3635. }
  3636. },
  3637. "Type": "BTStepSlot"
  3638. }
  3639. },
  3640. "Type": "BTStepSlot"
  3641. }
  3642. },
  3643. "Type": "BTStepSlot"
  3644. }
  3645. },
  3646. "Type": "BTStepSlot"
  3647. }
  3648. },
  3649. "Type": "BTStepSlot"
  3650. }
  3651. },
  3652. "Type": "BTStepSlot"
  3653. }
  3654. },
  3655. "Type": "BTStepSlot"
  3656. }
  3657. },
  3658. "Type": "BTStepSlot"
  3659. }
  3660. },
  3661. "Type": "BTSectionSlot"
  3662. },
  3663. "stepSlot": {
  3664. "ContainerValue": {
  3665. "Type": "BTNotificationToCoderAction",
  3666. "conditionA": {
  3667. "ContainerValue": null,
  3668. "StringValue": {
  3669. "Type": "STRING",
  3670. "Value": "点击关闭"
  3671. },
  3672. "Type": "BTInputSlot"
  3673. },
  3674. "isIllegal": true,
  3675. "randomID": "1U5KP2rrQvRg",
  3676. "stepSlot": {
  3677. "ContainerValue": null,
  3678. "Type": "BTStepSlot"
  3679. }
  3680. },
  3681. "Type": "BTStepSlot"
  3682. }
  3683. },
  3684. "Type": "BTStepSlot"
  3685. }
  3686. },
  3687. "Type": "BTStepSlot"
  3688. }
  3689. },
  3690. "Type": "BTStepSlot"
  3691. }
  3692. },
  3693. "Type": "BTStepSlot"
  3694. }
  3695. },
  3696. "Type": "BTStepSlot"
  3697. }
  3698. },
  3699. "Type": "BTStepSlot"
  3700. }
  3701. },
  3702. "Type": "BTStepSlot"
  3703. }
  3704. },
  3705. "Type": "BTStepSlot"
  3706. }
  3707. },
  3708. "Type": "BTStepSlot"
  3709. }
  3710. },
  3711. "Type": "BTStepSlot"
  3712. }
  3713. },
  3714. "Type": "BTStepSlot"
  3715. },
  3716. "x": 242.10502924196686,
  3717. "y": -676.4473828242094
  3718. },
  3719. "Tree4": {
  3720. "ExportTree": false,
  3721. "ImageIndex": 1,
  3722. "Name": {
  3723. "Type": "STRING",
  3724. "Value": "模拟程序执行",
  3725. "displayName": ""
  3726. },
  3727. "Type": "BTSimulatorAction",
  3728. "VarJson": {
  3729. "boolJson": {
  3730. },
  3731. "numberJson": {
  3732. "参数": "Number",
  3733. "通知名": "Number"
  3734. }
  3735. },
  3736. "isIllegal": false,
  3737. "randomID": "MLoOg4FMdgG",
  3738. "stepSlot": {
  3739. "ContainerValue": {
  3740. "Type": "BTIFControlAction",
  3741. "conditionA": {
  3742. "ContainerValue": {
  3743. "Type": "BTStringEqualOperatorAction",
  3744. "conditionA": {
  3745. "ContainerValue": {
  3746. "Type": "BTFuncVariableAction",
  3747. "colorName": "Disable",
  3748. "currentStr": "通知名",
  3749. "fatherFuncID": "MLoOg4FMdgG",
  3750. "isIllegal": true,
  3751. "randomID": "Oxdf7v0gPUJW",
  3752. "titleLabel": {
  3753. "Type": "STRING",
  3754. "Value": "通知名",
  3755. "displayName": ""
  3756. }
  3757. },
  3758. "StringValue": {
  3759. "Type": "STRING",
  3760. "Value": "Red"
  3761. },
  3762. "Type": "BTInputSlot"
  3763. },
  3764. "conditionB": {
  3765. "ContainerValue": null,
  3766. "StringValue": {
  3767. "Type": "STRING",
  3768. "Value": "测试_打开浮层_奖励物获得界面"
  3769. },
  3770. "Type": "BTInputSlot"
  3771. },
  3772. "isIllegal": true,
  3773. "randomID": "r5gwiY7pkf8J"
  3774. },
  3775. "Type": "BTBoolSlot"
  3776. },
  3777. "isIllegal": true,
  3778. "randomID": "O5sOS9Jb9VIp",
  3779. "sectionA": {
  3780. "ContainerValue": null,
  3781. "Type": "BTSectionSlot"
  3782. },
  3783. "stepSlot": {
  3784. "ContainerValue": null,
  3785. "Type": "BTStepSlot"
  3786. }
  3787. },
  3788. "Type": "BTStepSlot"
  3789. },
  3790. "x": -868.2033565713275,
  3791. "y": -672.0754542127978
  3792. },
  3793. "Tree5": {
  3794. "ExportTree": true,
  3795. "ImageIndex": 3,
  3796. "Name": {
  3797. "Type": "STRING",
  3798. "Value": "初始化",
  3799. "displayName": ""
  3800. },
  3801. "Type": "BTCustomFuncHeadAction",
  3802. "VarJson": {
  3803. "boolJson": {
  3804. },
  3805. "numberJson": {
  3806. }
  3807. },
  3808. "isIllegal": false,
  3809. "randomID": "BdWRkuA6Q51Y",
  3810. "stepSlot": {
  3811. "ContainerValue": {
  3812. "Name": {
  3813. "Type": "STRING",
  3814. "Value": "奖励物获得界面",
  3815. "displayName": ""
  3816. },
  3817. "Type": "BTCustomFuncBodyAction",
  3818. "funcHeadID": "RcjTryxo3J47",
  3819. "isIllegal": true,
  3820. "paramArr": [
  3821. ],
  3822. "randomID": "p8dW6SgEdOl5",
  3823. "stepSlot": {
  3824. "ContainerValue": {
  3825. "Type": "BTNodeHiddenAction",
  3826. "baseSelect": {
  3827. "DisplayName": "点击收集按钮",
  3828. "Type": "Action",
  3829. "Value": "tJKPq9mnmL"
  3830. },
  3831. "isIllegal": true,
  3832. "randomID": "6OjUfkEeqTqm",
  3833. "stepSlot": {
  3834. "ContainerValue": {
  3835. "Type": "BTNotificationNodeToCoderAction",
  3836. "baseSelect": {
  3837. "DisplayName": "奖励物_光效1",
  3838. "Type": "Action",
  3839. "Value": "boqMM4y1yIqi"
  3840. },
  3841. "conditionA": {
  3842. "ContainerValue": null,
  3843. "StringValue": {
  3844. "Type": "STRING",
  3845. "Value": "绑定光效1"
  3846. },
  3847. "Type": "BTInputSlot"
  3848. },
  3849. "isIllegal": true,
  3850. "paramA": {
  3851. "ContainerValue": null,
  3852. "StringValue": {
  3853. "Type": "STRING",
  3854. "Value": ""
  3855. },
  3856. "Type": "BTInputSlot"
  3857. },
  3858. "randomID": "oxGCaypmkFX0",
  3859. "stepSlot": {
  3860. "ContainerValue": {
  3861. "Type": "BTNotificationNodeToCoderAction",
  3862. "baseSelect": {
  3863. "DisplayName": "奖励物_光效2",
  3864. "Type": "Action",
  3865. "Value": "QPSVHXp6Hrwq"
  3866. },
  3867. "conditionA": {
  3868. "ContainerValue": null,
  3869. "StringValue": {
  3870. "Type": "STRING",
  3871. "Value": "绑定光效2"
  3872. },
  3873. "Type": "BTInputSlot"
  3874. },
  3875. "isIllegal": true,
  3876. "paramA": {
  3877. "ContainerValue": null,
  3878. "StringValue": {
  3879. "Type": "STRING",
  3880. "Value": ""
  3881. },
  3882. "Type": "BTInputSlot"
  3883. },
  3884. "randomID": "Co3Mcqx3wNOO",
  3885. "stepSlot": {
  3886. "ContainerValue": {
  3887. "Type": "BTNotificationNodeToCoderAction",
  3888. "baseSelect": {
  3889. "DisplayName": "奖励物_光效3",
  3890. "Type": "Action",
  3891. "Value": "zfBFvrWFa2lA"
  3892. },
  3893. "conditionA": {
  3894. "ContainerValue": null,
  3895. "StringValue": {
  3896. "Type": "STRING",
  3897. "Value": "绑定光效3"
  3898. },
  3899. "Type": "BTInputSlot"
  3900. },
  3901. "isIllegal": true,
  3902. "paramA": {
  3903. "ContainerValue": null,
  3904. "StringValue": {
  3905. "Type": "STRING",
  3906. "Value": ""
  3907. },
  3908. "Type": "BTInputSlot"
  3909. },
  3910. "randomID": "q6NbnCU2kB3",
  3911. "stepSlot": {
  3912. "ContainerValue": {
  3913. "Type": "BTNotificationNodeToCoderAction",
  3914. "baseSelect": {
  3915. "DisplayName": "奖励物_光效4",
  3916. "Type": "Action",
  3917. "Value": "SA6ijGn3oAa5"
  3918. },
  3919. "conditionA": {
  3920. "ContainerValue": null,
  3921. "StringValue": {
  3922. "Type": "STRING",
  3923. "Value": "绑定光效4"
  3924. },
  3925. "Type": "BTInputSlot"
  3926. },
  3927. "isIllegal": true,
  3928. "paramA": {
  3929. "ContainerValue": null,
  3930. "StringValue": {
  3931. "Type": "STRING",
  3932. "Value": ""
  3933. },
  3934. "Type": "BTInputSlot"
  3935. },
  3936. "randomID": "UdAlfs9a7Zos",
  3937. "stepSlot": {
  3938. "ContainerValue": {
  3939. "Type": "BTNotificationNodeToCoderAction",
  3940. "baseSelect": {
  3941. "DisplayName": "奖励物_光效5",
  3942. "Type": "Action",
  3943. "Value": "G1YGXUbnwld"
  3944. },
  3945. "conditionA": {
  3946. "ContainerValue": null,
  3947. "StringValue": {
  3948. "Type": "STRING",
  3949. "Value": "绑定光效5"
  3950. },
  3951. "Type": "BTInputSlot"
  3952. },
  3953. "isIllegal": true,
  3954. "paramA": {
  3955. "ContainerValue": null,
  3956. "StringValue": {
  3957. "Type": "STRING",
  3958. "Value": ""
  3959. },
  3960. "Type": "BTInputSlot"
  3961. },
  3962. "randomID": "idYGbvBOlsyv",
  3963. "stepSlot": {
  3964. "ContainerValue": {
  3965. "Type": "BTNotificationNodeToCoderAction",
  3966. "baseSelect": {
  3967. "DisplayName": "奖励物_光效6",
  3968. "Type": "Action",
  3969. "Value": "DvB7yPbNzkrz"
  3970. },
  3971. "conditionA": {
  3972. "ContainerValue": null,
  3973. "StringValue": {
  3974. "Type": "STRING",
  3975. "Value": "绑定光效6"
  3976. },
  3977. "Type": "BTInputSlot"
  3978. },
  3979. "isIllegal": true,
  3980. "paramA": {
  3981. "ContainerValue": null,
  3982. "StringValue": {
  3983. "Type": "STRING",
  3984. "Value": ""
  3985. },
  3986. "Type": "BTInputSlot"
  3987. },
  3988. "randomID": "LQrTy7EyKKo5",
  3989. "stepSlot": {
  3990. "ContainerValue": {
  3991. "Type": "BTNotificationNodeToCoderAction",
  3992. "baseSelect": {
  3993. "DisplayName": "奖励物_光效7",
  3994. "Type": "Action",
  3995. "Value": "IUq2xsDL9P2J"
  3996. },
  3997. "conditionA": {
  3998. "ContainerValue": null,
  3999. "StringValue": {
  4000. "Type": "STRING",
  4001. "Value": "绑定光效7"
  4002. },
  4003. "Type": "BTInputSlot"
  4004. },
  4005. "isIllegal": true,
  4006. "paramA": {
  4007. "ContainerValue": null,
  4008. "StringValue": {
  4009. "Type": "STRING",
  4010. "Value": ""
  4011. },
  4012. "Type": "BTInputSlot"
  4013. },
  4014. "randomID": "KrbnTCGIk0e",
  4015. "stepSlot": {
  4016. "ContainerValue": {
  4017. "Type": "BTNotificationNodeToCoderAction",
  4018. "baseSelect": {
  4019. "DisplayName": "奖励物_光效8",
  4020. "Type": "Action",
  4021. "Value": "5j70g0zTEHC4"
  4022. },
  4023. "conditionA": {
  4024. "ContainerValue": null,
  4025. "StringValue": {
  4026. "Type": "STRING",
  4027. "Value": "绑定光效8"
  4028. },
  4029. "Type": "BTInputSlot"
  4030. },
  4031. "isIllegal": true,
  4032. "paramA": {
  4033. "ContainerValue": null,
  4034. "StringValue": {
  4035. "Type": "STRING",
  4036. "Value": ""
  4037. },
  4038. "Type": "BTInputSlot"
  4039. },
  4040. "randomID": "bND9IEA4p1EQ",
  4041. "stepSlot": {
  4042. "ContainerValue": {
  4043. "Type": "BTNotificationNodeToCoderAction",
  4044. "baseSelect": {
  4045. "DisplayName": "奖励物图片_1",
  4046. "Type": "Action",
  4047. "Value": "Fo3IO8eILxXY"
  4048. },
  4049. "conditionA": {
  4050. "ContainerValue": null,
  4051. "StringValue": {
  4052. "Type": "STRING",
  4053. "Value": "绑定物品1"
  4054. },
  4055. "Type": "BTInputSlot"
  4056. },
  4057. "isIllegal": true,
  4058. "paramA": {
  4059. "ContainerValue": null,
  4060. "StringValue": {
  4061. "Type": "STRING",
  4062. "Value": ""
  4063. },
  4064. "Type": "BTInputSlot"
  4065. },
  4066. "randomID": "3ntrbR6doxlX",
  4067. "stepSlot": {
  4068. "ContainerValue": {
  4069. "Type": "BTNotificationNodeToCoderAction",
  4070. "baseSelect": {
  4071. "DisplayName": "奖励物图片_2",
  4072. "Type": "Action",
  4073. "Value": "fYo97YgFC9pd"
  4074. },
  4075. "conditionA": {
  4076. "ContainerValue": null,
  4077. "StringValue": {
  4078. "Type": "STRING",
  4079. "Value": "绑定物品2"
  4080. },
  4081. "Type": "BTInputSlot"
  4082. },
  4083. "isIllegal": true,
  4084. "paramA": {
  4085. "ContainerValue": null,
  4086. "StringValue": {
  4087. "Type": "STRING",
  4088. "Value": ""
  4089. },
  4090. "Type": "BTInputSlot"
  4091. },
  4092. "randomID": "e2VogUB5vbTJ",
  4093. "stepSlot": {
  4094. "ContainerValue": {
  4095. "Type": "BTNotificationNodeToCoderAction",
  4096. "baseSelect": {
  4097. "DisplayName": "奖励物图片_3",
  4098. "Type": "Action",
  4099. "Value": "v6kV4wjeH3az"
  4100. },
  4101. "conditionA": {
  4102. "ContainerValue": null,
  4103. "StringValue": {
  4104. "Type": "STRING",
  4105. "Value": "绑定物品3"
  4106. },
  4107. "Type": "BTInputSlot"
  4108. },
  4109. "isIllegal": true,
  4110. "paramA": {
  4111. "ContainerValue": null,
  4112. "StringValue": {
  4113. "Type": "STRING",
  4114. "Value": ""
  4115. },
  4116. "Type": "BTInputSlot"
  4117. },
  4118. "randomID": "yU3xxNhtJwLS",
  4119. "stepSlot": {
  4120. "ContainerValue": {
  4121. "Type": "BTNotificationNodeToCoderAction",
  4122. "baseSelect": {
  4123. "DisplayName": "奖励物图片_4",
  4124. "Type": "Action",
  4125. "Value": "HjyifZoFpZis"
  4126. },
  4127. "conditionA": {
  4128. "ContainerValue": null,
  4129. "StringValue": {
  4130. "Type": "STRING",
  4131. "Value": "绑定物品4"
  4132. },
  4133. "Type": "BTInputSlot"
  4134. },
  4135. "isIllegal": true,
  4136. "paramA": {
  4137. "ContainerValue": null,
  4138. "StringValue": {
  4139. "Type": "STRING",
  4140. "Value": ""
  4141. },
  4142. "Type": "BTInputSlot"
  4143. },
  4144. "randomID": "aQuPEj0ymy0u",
  4145. "stepSlot": {
  4146. "ContainerValue": {
  4147. "Type": "BTNotificationNodeToCoderAction",
  4148. "baseSelect": {
  4149. "DisplayName": "奖励物图片_5",
  4150. "Type": "Action",
  4151. "Value": "k10qsM0sRMtO"
  4152. },
  4153. "conditionA": {
  4154. "ContainerValue": null,
  4155. "StringValue": {
  4156. "Type": "STRING",
  4157. "Value": "绑定物品5"
  4158. },
  4159. "Type": "BTInputSlot"
  4160. },
  4161. "isIllegal": true,
  4162. "paramA": {
  4163. "ContainerValue": null,
  4164. "StringValue": {
  4165. "Type": "STRING",
  4166. "Value": ""
  4167. },
  4168. "Type": "BTInputSlot"
  4169. },
  4170. "randomID": "9it9MLnoAYsO",
  4171. "stepSlot": {
  4172. "ContainerValue": {
  4173. "Type": "BTNotificationNodeToCoderAction",
  4174. "baseSelect": {
  4175. "DisplayName": "奖励物图片_6",
  4176. "Type": "Action",
  4177. "Value": "7mp75r8VL7y"
  4178. },
  4179. "conditionA": {
  4180. "ContainerValue": null,
  4181. "StringValue": {
  4182. "Type": "STRING",
  4183. "Value": "绑定物品6"
  4184. },
  4185. "Type": "BTInputSlot"
  4186. },
  4187. "isIllegal": true,
  4188. "paramA": {
  4189. "ContainerValue": null,
  4190. "StringValue": {
  4191. "Type": "STRING",
  4192. "Value": ""
  4193. },
  4194. "Type": "BTInputSlot"
  4195. },
  4196. "randomID": "te3FHDL3hSMr",
  4197. "stepSlot": {
  4198. "ContainerValue": {
  4199. "Type": "BTNotificationNodeToCoderAction",
  4200. "baseSelect": {
  4201. "DisplayName": "奖励物图片_7",
  4202. "Type": "Action",
  4203. "Value": "ccs6GKLg0g6"
  4204. },
  4205. "conditionA": {
  4206. "ContainerValue": null,
  4207. "StringValue": {
  4208. "Type": "STRING",
  4209. "Value": "绑定物品7"
  4210. },
  4211. "Type": "BTInputSlot"
  4212. },
  4213. "isIllegal": true,
  4214. "paramA": {
  4215. "ContainerValue": null,
  4216. "StringValue": {
  4217. "Type": "STRING",
  4218. "Value": ""
  4219. },
  4220. "Type": "BTInputSlot"
  4221. },
  4222. "randomID": "RlcNZN9dilp2",
  4223. "stepSlot": {
  4224. "ContainerValue": {
  4225. "Type": "BTNotificationNodeToCoderAction",
  4226. "baseSelect": {
  4227. "DisplayName": "奖励物图片_8",
  4228. "Type": "Action",
  4229. "Value": "ilU5oRTadfSQ"
  4230. },
  4231. "conditionA": {
  4232. "ContainerValue": null,
  4233. "StringValue": {
  4234. "Type": "STRING",
  4235. "Value": "绑定物品8"
  4236. },
  4237. "Type": "BTInputSlot"
  4238. },
  4239. "isIllegal": true,
  4240. "paramA": {
  4241. "ContainerValue": null,
  4242. "StringValue": {
  4243. "Type": "STRING",
  4244. "Value": ""
  4245. },
  4246. "Type": "BTInputSlot"
  4247. },
  4248. "randomID": "5t96wTpaYBgM",
  4249. "stepSlot": {
  4250. "ContainerValue": {
  4251. "Type": "BTNotificationNodeToCoderAction",
  4252. "baseSelect": {
  4253. "DisplayName": "奖励物数量_1",
  4254. "Type": "Action",
  4255. "Value": "j7147FvBemGe"
  4256. },
  4257. "conditionA": {
  4258. "ContainerValue": null,
  4259. "StringValue": {
  4260. "Type": "STRING",
  4261. "Value": "绑定数字1"
  4262. },
  4263. "Type": "BTInputSlot"
  4264. },
  4265. "isIllegal": true,
  4266. "paramA": {
  4267. "ContainerValue": null,
  4268. "StringValue": {
  4269. "Type": "STRING",
  4270. "Value": ""
  4271. },
  4272. "Type": "BTInputSlot"
  4273. },
  4274. "randomID": "TM5zY42qAhTx",
  4275. "stepSlot": {
  4276. "ContainerValue": {
  4277. "Type": "BTNotificationNodeToCoderAction",
  4278. "baseSelect": {
  4279. "DisplayName": "奖励物数量_2",
  4280. "Type": "Action",
  4281. "Value": "5lFZNjzX7UK"
  4282. },
  4283. "conditionA": {
  4284. "ContainerValue": null,
  4285. "StringValue": {
  4286. "Type": "STRING",
  4287. "Value": "绑定数字2"
  4288. },
  4289. "Type": "BTInputSlot"
  4290. },
  4291. "isIllegal": true,
  4292. "paramA": {
  4293. "ContainerValue": null,
  4294. "StringValue": {
  4295. "Type": "STRING",
  4296. "Value": ""
  4297. },
  4298. "Type": "BTInputSlot"
  4299. },
  4300. "randomID": "yXwNlODkW85m",
  4301. "stepSlot": {
  4302. "ContainerValue": {
  4303. "Type": "BTNotificationNodeToCoderAction",
  4304. "baseSelect": {
  4305. "DisplayName": "奖励物数量_3",
  4306. "Type": "Action",
  4307. "Value": "TaPBWHHmysJ"
  4308. },
  4309. "conditionA": {
  4310. "ContainerValue": null,
  4311. "StringValue": {
  4312. "Type": "STRING",
  4313. "Value": "绑定数字3"
  4314. },
  4315. "Type": "BTInputSlot"
  4316. },
  4317. "isIllegal": true,
  4318. "paramA": {
  4319. "ContainerValue": null,
  4320. "StringValue": {
  4321. "Type": "STRING",
  4322. "Value": ""
  4323. },
  4324. "Type": "BTInputSlot"
  4325. },
  4326. "randomID": "UCPUK5LEmjvS",
  4327. "stepSlot": {
  4328. "ContainerValue": {
  4329. "Type": "BTNotificationNodeToCoderAction",
  4330. "baseSelect": {
  4331. "DisplayName": "奖励物数量_4",
  4332. "Type": "Action",
  4333. "Value": "R93hoSoJG5AK"
  4334. },
  4335. "conditionA": {
  4336. "ContainerValue": null,
  4337. "StringValue": {
  4338. "Type": "STRING",
  4339. "Value": "绑定数字4"
  4340. },
  4341. "Type": "BTInputSlot"
  4342. },
  4343. "isIllegal": true,
  4344. "paramA": {
  4345. "ContainerValue": null,
  4346. "StringValue": {
  4347. "Type": "STRING",
  4348. "Value": ""
  4349. },
  4350. "Type": "BTInputSlot"
  4351. },
  4352. "randomID": "eFzqwGaSRUyL",
  4353. "stepSlot": {
  4354. "ContainerValue": {
  4355. "Type": "BTNotificationNodeToCoderAction",
  4356. "baseSelect": {
  4357. "DisplayName": "奖励物数量_5",
  4358. "Type": "Action",
  4359. "Value": "Y0boYysRmSIz"
  4360. },
  4361. "conditionA": {
  4362. "ContainerValue": null,
  4363. "StringValue": {
  4364. "Type": "STRING",
  4365. "Value": "绑定数字5"
  4366. },
  4367. "Type": "BTInputSlot"
  4368. },
  4369. "isIllegal": true,
  4370. "paramA": {
  4371. "ContainerValue": null,
  4372. "StringValue": {
  4373. "Type": "STRING",
  4374. "Value": ""
  4375. },
  4376. "Type": "BTInputSlot"
  4377. },
  4378. "randomID": "WnmK4NzgR4W",
  4379. "stepSlot": {
  4380. "ContainerValue": {
  4381. "Type": "BTNotificationNodeToCoderAction",
  4382. "baseSelect": {
  4383. "DisplayName": "奖励物数量_6",
  4384. "Type": "Action",
  4385. "Value": "0tBnlv3NSm1n"
  4386. },
  4387. "conditionA": {
  4388. "ContainerValue": null,
  4389. "StringValue": {
  4390. "Type": "STRING",
  4391. "Value": "绑定数字6"
  4392. },
  4393. "Type": "BTInputSlot"
  4394. },
  4395. "isIllegal": true,
  4396. "paramA": {
  4397. "ContainerValue": null,
  4398. "StringValue": {
  4399. "Type": "STRING",
  4400. "Value": ""
  4401. },
  4402. "Type": "BTInputSlot"
  4403. },
  4404. "randomID": "oV1MiAkHQtr",
  4405. "stepSlot": {
  4406. "ContainerValue": {
  4407. "Type": "BTNotificationNodeToCoderAction",
  4408. "baseSelect": {
  4409. "DisplayName": "奖励物数量_7",
  4410. "Type": "Action",
  4411. "Value": "OAodPUJbdnKd"
  4412. },
  4413. "conditionA": {
  4414. "ContainerValue": null,
  4415. "StringValue": {
  4416. "Type": "STRING",
  4417. "Value": "绑定数字7"
  4418. },
  4419. "Type": "BTInputSlot"
  4420. },
  4421. "isIllegal": true,
  4422. "paramA": {
  4423. "ContainerValue": null,
  4424. "StringValue": {
  4425. "Type": "STRING",
  4426. "Value": ""
  4427. },
  4428. "Type": "BTInputSlot"
  4429. },
  4430. "randomID": "3mhU4ZUDKAtj",
  4431. "stepSlot": {
  4432. "ContainerValue": {
  4433. "Type": "BTNotificationNodeToCoderAction",
  4434. "baseSelect": {
  4435. "DisplayName": "奖励物数量_8",
  4436. "Type": "Action",
  4437. "Value": "fhRLvGlKzWTM"
  4438. },
  4439. "conditionA": {
  4440. "ContainerValue": null,
  4441. "StringValue": {
  4442. "Type": "STRING",
  4443. "Value": "绑定数字8"
  4444. },
  4445. "Type": "BTInputSlot"
  4446. },
  4447. "isIllegal": true,
  4448. "paramA": {
  4449. "ContainerValue": null,
  4450. "StringValue": {
  4451. "Type": "STRING",
  4452. "Value": ""
  4453. },
  4454. "Type": "BTInputSlot"
  4455. },
  4456. "randomID": "V6OqUu1YDI5",
  4457. "stepSlot": {
  4458. "ContainerValue": null,
  4459. "Type": "BTStepSlot"
  4460. }
  4461. },
  4462. "Type": "BTStepSlot"
  4463. }
  4464. },
  4465. "Type": "BTStepSlot"
  4466. }
  4467. },
  4468. "Type": "BTStepSlot"
  4469. }
  4470. },
  4471. "Type": "BTStepSlot"
  4472. }
  4473. },
  4474. "Type": "BTStepSlot"
  4475. }
  4476. },
  4477. "Type": "BTStepSlot"
  4478. }
  4479. },
  4480. "Type": "BTStepSlot"
  4481. }
  4482. },
  4483. "Type": "BTStepSlot"
  4484. }
  4485. },
  4486. "Type": "BTStepSlot"
  4487. }
  4488. },
  4489. "Type": "BTStepSlot"
  4490. }
  4491. },
  4492. "Type": "BTStepSlot"
  4493. }
  4494. },
  4495. "Type": "BTStepSlot"
  4496. }
  4497. },
  4498. "Type": "BTStepSlot"
  4499. }
  4500. },
  4501. "Type": "BTStepSlot"
  4502. }
  4503. },
  4504. "Type": "BTStepSlot"
  4505. }
  4506. },
  4507. "Type": "BTStepSlot"
  4508. }
  4509. },
  4510. "Type": "BTStepSlot"
  4511. }
  4512. },
  4513. "Type": "BTStepSlot"
  4514. }
  4515. },
  4516. "Type": "BTStepSlot"
  4517. }
  4518. },
  4519. "Type": "BTStepSlot"
  4520. }
  4521. },
  4522. "Type": "BTStepSlot"
  4523. }
  4524. },
  4525. "Type": "BTStepSlot"
  4526. }
  4527. },
  4528. "Type": "BTStepSlot"
  4529. }
  4530. },
  4531. "Type": "BTStepSlot"
  4532. }
  4533. },
  4534. "Type": "BTStepSlot"
  4535. }
  4536. },
  4537. "Type": "BTStepSlot"
  4538. },
  4539. "x": -958.596806459511,
  4540. "y": -422.42910632211215
  4541. },
  4542. "Tree6": {
  4543. "ExportTree": false,
  4544. "Type": "BTButtonEnableAction",
  4545. "baseSelect": {
  4546. "DisplayName": "点击收集按钮",
  4547. "Type": "Action",
  4548. "Value": "tJKPq9mnmL"
  4549. },
  4550. "enableButton": {
  4551. "Type": "BTCheckBox",
  4552. "isEnable": true
  4553. },
  4554. "isIllegal": true,
  4555. "randomID": "RRpnlZq6R0tl",
  4556. "stepSlot": {
  4557. "ContainerValue": {
  4558. "Type": "BTPlayTimeLineAction",
  4559. "baseSelect": {
  4560. "DisplayName": "退出动画",
  4561. "Type": "Action",
  4562. "Value": "1"
  4563. },
  4564. "isIllegal": true,
  4565. "randomID": "Jk22wMaUemHL",
  4566. "stepSlot": {
  4567. "ContainerValue": null,
  4568. "Type": "BTStepSlot"
  4569. }
  4570. },
  4571. "Type": "BTStepSlot"
  4572. },
  4573. "x": 739.0484853358324,
  4574. "y": -709.9471262519256
  4575. },
  4576. "Tree7": {
  4577. "ExportTree": false,
  4578. "ImageIndex": -1,
  4579. "Type": "BTTestFuncAction",
  4580. "VarJson": {
  4581. "boolJson": {
  4582. },
  4583. "numberJson": {
  4584. }
  4585. },
  4586. "VarScope": "Red",
  4587. "isIllegal": false,
  4588. "randomID": "FhjDrZB5pgWz",
  4589. "stepSlot": {
  4590. "ContainerValue": {
  4591. "TitleInput": {
  4592. "ContainerValue": null,
  4593. "StringValue": {
  4594. "Type": "STRING",
  4595. "Value": "银宝箱"
  4596. },
  4597. "Type": "BTInputSlot"
  4598. },
  4599. "Type": "BTDataCoderVarSetAction",
  4600. "VarScope": "Scene",
  4601. "baseSelect": {
  4602. "DisplayName": "P-宝箱类型",
  4603. "Type": "Action",
  4604. "Value": "P-宝箱类型"
  4605. },
  4606. "isIllegal": true,
  4607. "randomID": "MQL7UmZz6ja",
  4608. "stepSlot": {
  4609. "ContainerValue": {
  4610. "TitleInput": {
  4611. "ContainerValue": null,
  4612. "StringValue": {
  4613. "Type": "STRING",
  4614. "Value": "8"
  4615. },
  4616. "Type": "BTInputSlot"
  4617. },
  4618. "Type": "BTDataCoderVarSetAction",
  4619. "VarScope": "Scene",
  4620. "baseSelect": {
  4621. "DisplayName": "P-奖励物个数",
  4622. "Type": "Action",
  4623. "Value": "P-奖励物个数"
  4624. },
  4625. "isIllegal": true,
  4626. "randomID": "Bq7qLlRvWAab",
  4627. "stepSlot": {
  4628. "ContainerValue": {
  4629. "Name": {
  4630. "Type": "STRING",
  4631. "Value": "初始化",
  4632. "displayName": ""
  4633. },
  4634. "Type": "BTCustomFuncBodyAction",
  4635. "funcHeadID": "BdWRkuA6Q51Y",
  4636. "isIllegal": true,
  4637. "paramArr": [
  4638. ],
  4639. "randomID": "XR3nX6ywEegd",
  4640. "stepSlot": {
  4641. "ContainerValue": null,
  4642. "Type": "BTStepSlot"
  4643. }
  4644. },
  4645. "Type": "BTStepSlot"
  4646. }
  4647. },
  4648. "Type": "BTStepSlot"
  4649. }
  4650. },
  4651. "Type": "BTStepSlot"
  4652. },
  4653. "titleLabel": {
  4654. "Type": "STRING",
  4655. "Value": "test1",
  4656. "displayName": ""
  4657. },
  4658. "x": -1203.5,
  4659. "y": -843
  4660. }
  4661. }
  4662. }