太空任务活动_用户_赛道节点.rebolt 388 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795
  1. {
  2. "CustomFunc": {
  3. "停止前进": [
  4. [
  5. "Name",
  6. "停止前进",
  7. "he1OAKlI068m",
  8. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  9. ]
  10. ],
  11. "停止后退": [
  12. [
  13. "Name",
  14. "停止后退",
  15. "P9Az2HFswbGP",
  16. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  17. ]
  18. ],
  19. "初始化": [
  20. [
  21. "Name",
  22. "初始化",
  23. "Ih8fjZpx391U",
  24. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  25. ]
  26. ],
  27. "刷新": [
  28. [
  29. "Name",
  30. "刷新",
  31. "64aB3P5hRULL",
  32. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  33. ]
  34. ],
  35. "开始前进": [
  36. [
  37. "Name",
  38. "开始前进",
  39. "JnqF4l3QqwAl",
  40. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  41. ]
  42. ],
  43. "开始后退": [
  44. [
  45. "Name",
  46. "开始后退",
  47. "jQg7frUQ6DXX",
  48. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  49. ]
  50. ],
  51. "本地初始化": [
  52. [
  53. "Name",
  54. "本地初始化",
  55. "19HgNX6NF68p",
  56. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  57. ]
  58. ],
  59. "获得奖励": [
  60. [
  61. "Name",
  62. "获得奖励",
  63. "rrOwHE0K19g6",
  64. "/Users/xulianxin/Documents/develop/game/TileMatch/TileManor/Resources/res_ActivityLib/SpaceMission/ccb/太空任务活动_用户_赛道节点.red"
  65. ]
  66. ]
  67. },
  68. "CustomList": {
  69. },
  70. "CustomMessage": {
  71. "Hello Red": 1
  72. },
  73. "CustomTestFunc": {
  74. "t": ""
  75. },
  76. "CustomVar": {
  77. "P-头像plist": 0,
  78. "P-头像png": 0,
  79. "P-头像大小": 0,
  80. "P-已获得奖励": 0,
  81. "P-当前阶段": 0,
  82. "P-是否是当前玩家": 0,
  83. "P-玩家名字": 0,
  84. "P-玩家排名": 0,
  85. "P-玩家进度": 0
  86. },
  87. "DisPlayName": "太空任务活动_用户_赛道节点",
  88. "RedFileList": {
  89. "9TSiP1mOXIWh": {
  90. "CustomFunc": {
  91. },
  92. "CustomList": {
  93. },
  94. "CustomTestFunc": {
  95. },
  96. "CustomVar": {
  97. },
  98. "DisPlayName": "太空任务活动_其他_火箭节点",
  99. "RedNoteInfo": {
  100. },
  101. "TreeList": {
  102. }
  103. },
  104. "OGW51Z8Im1qf": {
  105. "CustomFunc": {
  106. },
  107. "CustomList": {
  108. },
  109. "CustomTestFunc": {
  110. "t": ""
  111. },
  112. "CustomVar": {
  113. },
  114. "DisPlayName": "其他用户_目标弹板",
  115. "RedNoteInfo": {
  116. },
  117. "TreeList": {
  118. "Tree0": {
  119. "ExportTree": true,
  120. "ImageIndex": -1,
  121. "Type": "BTButtonClickFuncAction",
  122. "VarJson": {
  123. "boolJson": {
  124. },
  125. "numberJson": {
  126. }
  127. },
  128. "isIllegal": false,
  129. "mathSelector": {
  130. "DisplayName": "奖励按钮",
  131. "Type": "OBJ",
  132. "Value": "1oqnosv8ieTs"
  133. },
  134. "randomID": "pg7Z20QTfkzO",
  135. "stepSlot": {
  136. "ContainerValue": {
  137. "Type": "BTNotificationNodeToCoderAction",
  138. "baseSelect": {
  139. "DisplayName": "奖励按钮",
  140. "Type": "Action",
  141. "Value": "1oqnosv8ieTs"
  142. },
  143. "conditionA": {
  144. "ContainerValue": null,
  145. "StringValue": {
  146. "Type": "STRING",
  147. "Value": "用户点击奖励"
  148. },
  149. "Type": "BTInputSlot"
  150. },
  151. "isIllegal": true,
  152. "paramA": {
  153. "ContainerValue": null,
  154. "StringValue": {
  155. "Type": "STRING",
  156. "Value": ""
  157. },
  158. "Type": "BTInputSlot"
  159. },
  160. "randomID": "ql178oxbcAdo",
  161. "stepSlot": {
  162. "ContainerValue": null,
  163. "Type": "BTStepSlot"
  164. }
  165. },
  166. "Type": "BTStepSlot"
  167. },
  168. "x": -147,
  169. "y": -172
  170. },
  171. "Tree1": {
  172. "ExportTree": false,
  173. "ImageIndex": -1,
  174. "Type": "BTTestFuncAction",
  175. "VarJson": {
  176. "boolJson": {
  177. },
  178. "numberJson": {
  179. }
  180. },
  181. "VarScope": "Red",
  182. "isIllegal": false,
  183. "randomID": "PWhKK7QiJSri",
  184. "stepSlot": {
  185. "ContainerValue": {
  186. "Type": "BTPlayTimeLineAction",
  187. "baseSelect": {
  188. "DisplayName": "常态_已获得",
  189. "Type": "Action",
  190. "Value": "1"
  191. },
  192. "isIllegal": true,
  193. "randomID": "oA2XN9lqWfBF",
  194. "stepSlot": {
  195. "ContainerValue": null,
  196. "Type": "BTStepSlot"
  197. }
  198. },
  199. "Type": "BTStepSlot"
  200. },
  201. "titleLabel": {
  202. "Type": "STRING",
  203. "Value": "t",
  204. "displayName": ""
  205. },
  206. "x": -193,
  207. "y": -389
  208. },
  209. "Tree2": {
  210. "ExportTree": true,
  211. "ImageIndex": -1,
  212. "Type": "BTButtonClickFuncAction",
  213. "VarJson": {
  214. "boolJson": {
  215. },
  216. "numberJson": {
  217. }
  218. },
  219. "isIllegal": false,
  220. "mathSelector": {
  221. "DisplayName": "徽章按钮",
  222. "Type": "OBJ",
  223. "Value": "FDZqzzxlufz0"
  224. },
  225. "randomID": "JjT9hBY5OC",
  226. "stepSlot": {
  227. "ContainerValue": {
  228. "Type": "BTNotificationNodeToCoderAction",
  229. "baseSelect": {
  230. "DisplayName": "徽章按钮",
  231. "Type": "Action",
  232. "Value": "FDZqzzxlufz0"
  233. },
  234. "conditionA": {
  235. "ContainerValue": null,
  236. "StringValue": {
  237. "Type": "STRING",
  238. "Value": "用户点击徽章"
  239. },
  240. "Type": "BTInputSlot"
  241. },
  242. "isIllegal": true,
  243. "paramA": {
  244. "ContainerValue": null,
  245. "StringValue": {
  246. "Type": "STRING",
  247. "Value": ""
  248. },
  249. "Type": "BTInputSlot"
  250. },
  251. "randomID": "IOvdHelcXc5E",
  252. "stepSlot": {
  253. "ContainerValue": null,
  254. "Type": "BTStepSlot"
  255. }
  256. },
  257. "Type": "BTStepSlot"
  258. },
  259. "x": -150,
  260. "y": -40
  261. }
  262. }
  263. },
  264. "Qz8nNS5Klk0S": {
  265. "CustomFunc": {
  266. },
  267. "CustomList": {
  268. },
  269. "CustomTestFunc": {
  270. },
  271. "CustomVar": {
  272. },
  273. "DisPlayName": "用户_火箭节点(程序调用)",
  274. "RedNoteInfo": {
  275. },
  276. "TreeList": {
  277. }
  278. },
  279. "kYADGMJ3YJtL": {
  280. "CustomFunc": {
  281. },
  282. "CustomList": {
  283. },
  284. "CustomTestFunc": {
  285. "t1": ""
  286. },
  287. "CustomVar": {
  288. },
  289. "DisPlayName": "用户_目标弹板(程序调用)",
  290. "RedNoteInfo": {
  291. },
  292. "TreeList": {
  293. "Tree0": {
  294. "ExportTree": false,
  295. "ImageIndex": -1,
  296. "Type": "BTTestFuncAction",
  297. "VarJson": {
  298. "boolJson": {
  299. },
  300. "numberJson": {
  301. }
  302. },
  303. "VarScope": "Red",
  304. "isIllegal": false,
  305. "randomID": "HJDbtHf3Pc0X",
  306. "stepSlot": {
  307. "ContainerValue": {
  308. "Type": "BTPlayTimeLineAction",
  309. "baseSelect": {
  310. "DisplayName": "常态_已获得",
  311. "Type": "Action",
  312. "Value": "1"
  313. },
  314. "isIllegal": true,
  315. "randomID": "c9xlnU7xkrc5",
  316. "stepSlot": {
  317. "ContainerValue": null,
  318. "Type": "BTStepSlot"
  319. }
  320. },
  321. "Type": "BTStepSlot"
  322. },
  323. "titleLabel": {
  324. "Type": "STRING",
  325. "Value": "t1",
  326. "displayName": ""
  327. },
  328. "x": 269,
  329. "y": -356
  330. },
  331. "Tree1": {
  332. "ExportTree": true,
  333. "ImageIndex": -1,
  334. "Type": "BTButtonClickFuncAction",
  335. "VarJson": {
  336. "boolJson": {
  337. },
  338. "numberJson": {
  339. }
  340. },
  341. "isIllegal": false,
  342. "mathSelector": {
  343. "DisplayName": "徽章按钮",
  344. "Type": "OBJ",
  345. "Value": "AE0D6zLyGI7"
  346. },
  347. "randomID": "rosLpZkcpAPn",
  348. "stepSlot": {
  349. "ContainerValue": {
  350. "Type": "BTNotificationNodeToCoderAction",
  351. "baseSelect": {
  352. "DisplayName": "徽章按钮",
  353. "Type": "Action",
  354. "Value": "AE0D6zLyGI7"
  355. },
  356. "conditionA": {
  357. "ContainerValue": null,
  358. "StringValue": {
  359. "Type": "STRING",
  360. "Value": "用户点击徽章"
  361. },
  362. "Type": "BTInputSlot"
  363. },
  364. "isIllegal": true,
  365. "paramA": {
  366. "ContainerValue": null,
  367. "StringValue": {
  368. "Type": "STRING",
  369. "Value": ""
  370. },
  371. "Type": "BTInputSlot"
  372. },
  373. "randomID": "VnpiNHB0392u",
  374. "stepSlot": {
  375. "ContainerValue": null,
  376. "Type": "BTStepSlot"
  377. }
  378. },
  379. "Type": "BTStepSlot"
  380. },
  381. "x": -100,
  382. "y": -249
  383. },
  384. "Tree2": {
  385. "ExportTree": true,
  386. "ImageIndex": -1,
  387. "Type": "BTButtonClickFuncAction",
  388. "VarJson": {
  389. "boolJson": {
  390. },
  391. "numberJson": {
  392. }
  393. },
  394. "isIllegal": false,
  395. "mathSelector": {
  396. "DisplayName": "奖励按钮",
  397. "Type": "OBJ",
  398. "Value": "eirC2L5V8EVL"
  399. },
  400. "randomID": "G6ZewMk9yZL",
  401. "stepSlot": {
  402. "ContainerValue": {
  403. "Type": "BTNotificationNodeToCoderAction",
  404. "baseSelect": {
  405. "DisplayName": "奖励按钮",
  406. "Type": "Action",
  407. "Value": "eirC2L5V8EVL"
  408. },
  409. "conditionA": {
  410. "ContainerValue": null,
  411. "StringValue": {
  412. "Type": "STRING",
  413. "Value": "用户点击奖励"
  414. },
  415. "Type": "BTInputSlot"
  416. },
  417. "isIllegal": true,
  418. "paramA": {
  419. "ContainerValue": null,
  420. "StringValue": {
  421. "Type": "STRING",
  422. "Value": ""
  423. },
  424. "Type": "BTInputSlot"
  425. },
  426. "randomID": "tB1ETHe982Hl",
  427. "stepSlot": {
  428. "ContainerValue": null,
  429. "Type": "BTStepSlot"
  430. }
  431. },
  432. "Type": "BTStepSlot"
  433. },
  434. "x": -98,
  435. "y": -97
  436. }
  437. }
  438. }
  439. },
  440. "RedNoteInfo": {
  441. },
  442. "TreeList": {
  443. "Tree0": {
  444. "ExportTree": true,
  445. "ImageIndex": 2,
  446. "Name": {
  447. "Type": "STRING",
  448. "Value": "初始化",
  449. "displayName": ""
  450. },
  451. "Type": "BTCustomFuncHeadAction",
  452. "VarJson": {
  453. "boolJson": {
  454. },
  455. "numberJson": {
  456. }
  457. },
  458. "isIllegal": false,
  459. "randomID": "Ih8fjZpx391U",
  460. "stepSlot": {
  461. "ContainerValue": {
  462. "Type": "BTNotificationToCoderAction",
  463. "conditionA": {
  464. "ContainerValue": null,
  465. "StringValue": {
  466. "Type": "STRING",
  467. "Value": "绑定赛道"
  468. },
  469. "Type": "BTInputSlot"
  470. },
  471. "isIllegal": true,
  472. "randomID": "6zCr2tkQqWPy",
  473. "stepSlot": {
  474. "ContainerValue": null,
  475. "Type": "BTStepSlot"
  476. }
  477. },
  478. "Type": "BTStepSlot"
  479. },
  480. "x": -211,
  481. "y": -190
  482. },
  483. "Tree1": {
  484. "ExportTree": true,
  485. "ImageIndex": 3,
  486. "Name": {
  487. "Type": "STRING",
  488. "Value": "本地初始化",
  489. "displayName": ""
  490. },
  491. "Type": "BTCustomFuncHeadAction",
  492. "VarJson": {
  493. "boolJson": {
  494. },
  495. "numberJson": {
  496. }
  497. },
  498. "isIllegal": false,
  499. "randomID": "19HgNX6NF68p",
  500. "stepSlot": {
  501. "ContainerValue": {
  502. "Type": "BTNotificationNodeToCoderAction",
  503. "baseSelect": {
  504. "DisplayName": "目标节点",
  505. "Type": "Action",
  506. "Value": "HKfvnzcCcGH"
  507. },
  508. "conditionA": {
  509. "ContainerValue": null,
  510. "StringValue": {
  511. "Type": "STRING",
  512. "Value": "绑定目标节点"
  513. },
  514. "Type": "BTInputSlot"
  515. },
  516. "isIllegal": true,
  517. "paramA": {
  518. "ContainerValue": null,
  519. "StringValue": {
  520. "Type": "STRING",
  521. "Value": ""
  522. },
  523. "Type": "BTInputSlot"
  524. },
  525. "randomID": "NCFbZO2kiHPC",
  526. "stepSlot": {
  527. "ContainerValue": {
  528. "Type": "BTNotificationNodeToCoderAction",
  529. "baseSelect": {
  530. "DisplayName": "火箭节点",
  531. "Type": "Action",
  532. "Value": "s7CiJWxNrkys"
  533. },
  534. "conditionA": {
  535. "ContainerValue": null,
  536. "StringValue": {
  537. "Type": "STRING",
  538. "Value": "绑定火箭"
  539. },
  540. "Type": "BTInputSlot"
  541. },
  542. "isIllegal": true,
  543. "paramA": {
  544. "ContainerValue": null,
  545. "StringValue": {
  546. "Type": "STRING",
  547. "Value": ""
  548. },
  549. "Type": "BTInputSlot"
  550. },
  551. "randomID": "QZMMwovNSlBP",
  552. "stepSlot": {
  553. "ContainerValue": null,
  554. "Type": "BTStepSlot"
  555. }
  556. },
  557. "Type": "BTStepSlot"
  558. }
  559. },
  560. "Type": "BTStepSlot"
  561. },
  562. "x": -199,
  563. "y": 12
  564. },
  565. "Tree2": {
  566. "ExportTree": true,
  567. "ImageIndex": 1,
  568. "Name": {
  569. "Type": "STRING",
  570. "Value": "刷新",
  571. "displayName": ""
  572. },
  573. "Type": "BTCustomFuncHeadAction",
  574. "VarJson": {
  575. "boolJson": {
  576. },
  577. "numberJson": {
  578. }
  579. },
  580. "isIllegal": false,
  581. "randomID": "64aB3P5hRULL",
  582. "stepSlot": {
  583. "ContainerValue": {
  584. "Type": "BTPlayTimeLineAction",
  585. "baseSelect": {
  586. "DisplayName": "正常状态",
  587. "Type": "Action",
  588. "Value": "0"
  589. },
  590. "isIllegal": true,
  591. "randomID": "l9ImKCn9DST0",
  592. "stepSlot": {
  593. "ContainerValue": {
  594. "Type": "BTPlaySceneTimeLineAction",
  595. "baseSelect": {
  596. "DisplayName": "常态_已获得",
  597. "Type": "Action",
  598. "Value": "1"
  599. },
  600. "isIllegal": true,
  601. "randomID": "3ruEwG0KiH6A",
  602. "redSelect": {
  603. "DisplayName": "用户_目标弹板(程序调用)",
  604. "Type": "OBJ",
  605. "Value": "kYADGMJ3YJtL"
  606. },
  607. "stepSlot": {
  608. "ContainerValue": {
  609. "Type": "BTSpritePlistAction",
  610. "baseSelect": {
  611. "DisplayName": "玩家头像",
  612. "Type": "Action",
  613. "Value": "HT5rVm1aITeo"
  614. },
  615. "frameNameInput": {
  616. "ContainerValue": {
  617. "Type": "BTCoderVariableAction",
  618. "VarScope": "Scene",
  619. "isIllegal": true,
  620. "randomID": "mUFH7Pj9PviK",
  621. "titleLabel": {
  622. "Type": "STRING",
  623. "Value": "P-头像png",
  624. "displayName": ""
  625. }
  626. },
  627. "StringValue": {
  628. "Type": "STRING",
  629. "Value": "图片名"
  630. },
  631. "Type": "BTInputSlot"
  632. },
  633. "isIllegal": true,
  634. "pathInput": {
  635. "ContainerValue": {
  636. "Type": "BTCoderVariableAction",
  637. "VarScope": "Scene",
  638. "isIllegal": true,
  639. "randomID": "nf2HW513l8NE",
  640. "titleLabel": {
  641. "Type": "STRING",
  642. "Value": "P-头像plist",
  643. "displayName": ""
  644. }
  645. },
  646. "StringValue": {
  647. "Type": "STRING",
  648. "Value": "Plist路径"
  649. },
  650. "Type": "BTInputSlot"
  651. },
  652. "randomID": "zBXWssbRT0QV",
  653. "stepSlot": {
  654. "ContainerValue": {
  655. "TitleInput": {
  656. "ContainerValue": {
  657. "Type": "BTCoderVariableAction",
  658. "VarScope": "Scene",
  659. "isIllegal": true,
  660. "randomID": "LF0JgTePMpKx",
  661. "titleLabel": {
  662. "Type": "STRING",
  663. "Value": "P-玩家名字",
  664. "displayName": ""
  665. }
  666. },
  667. "StringValue": {
  668. "Type": "STRING",
  669. "Value": "填写标题内容"
  670. },
  671. "Type": "BTInputSlot"
  672. },
  673. "Type": "BTLabelTitleAction",
  674. "baseSelect": {
  675. "DisplayName": "玩家名字",
  676. "Type": "Action",
  677. "Value": "pewEwmCeCLh"
  678. },
  679. "isIllegal": true,
  680. "randomID": "Mlq3Hi9NeHw",
  681. "stepSlot": {
  682. "ContainerValue": {
  683. "Type": "BTIFElseControlAction",
  684. "conditionA": {
  685. "ContainerValue": {
  686. "Type": "BTStringEqualOperatorAction",
  687. "conditionA": {
  688. "ContainerValue": {
  689. "Type": "BTCoderVariableAction",
  690. "VarScope": "Scene",
  691. "isIllegal": true,
  692. "randomID": "QQi3ms47x2dC",
  693. "titleLabel": {
  694. "Type": "STRING",
  695. "Value": "P-是否是当前玩家",
  696. "displayName": ""
  697. }
  698. },
  699. "StringValue": {
  700. "Type": "STRING",
  701. "Value": "Red"
  702. },
  703. "Type": "BTInputSlot"
  704. },
  705. "conditionB": {
  706. "ContainerValue": null,
  707. "StringValue": {
  708. "Type": "STRING",
  709. "Value": "Yes"
  710. },
  711. "Type": "BTInputSlot"
  712. },
  713. "isIllegal": true,
  714. "randomID": "KRKaYQsMLOSM"
  715. },
  716. "Type": "BTBoolSlot"
  717. },
  718. "isIllegal": true,
  719. "randomID": "0r2m8MDYMA5I",
  720. "sectionA": {
  721. "ContainerValue": {
  722. "Type": "BTNodeShowAction",
  723. "baseSelect": {
  724. "DisplayName": "用户_火箭节点(程序调用)",
  725. "Type": "Action",
  726. "Value": "Qz8nNS5Klk0S"
  727. },
  728. "isIllegal": true,
  729. "randomID": "vdAMoTEZHp7",
  730. "stepSlot": {
  731. "ContainerValue": {
  732. "Type": "BTNodeShowAction",
  733. "baseSelect": {
  734. "DisplayName": "用户_目标弹板(程序调用)",
  735. "Type": "Action",
  736. "Value": "kYADGMJ3YJtL"
  737. },
  738. "isIllegal": true,
  739. "randomID": "eD2Gwt54pCsB",
  740. "stepSlot": {
  741. "ContainerValue": {
  742. "Type": "BTNodeHiddenAction",
  743. "baseSelect": {
  744. "DisplayName": "其他用户_火箭节点",
  745. "Type": "Action",
  746. "Value": "9TSiP1mOXIWh"
  747. },
  748. "isIllegal": true,
  749. "randomID": "397jHdHcsx7V",
  750. "stepSlot": {
  751. "ContainerValue": {
  752. "Type": "BTNodeHiddenAction",
  753. "baseSelect": {
  754. "DisplayName": "其他用户_目标弹板",
  755. "Type": "Action",
  756. "Value": "OGW51Z8Im1qf"
  757. },
  758. "isIllegal": true,
  759. "randomID": "fiseKDJXtGwa",
  760. "stepSlot": {
  761. "ContainerValue": {
  762. "Type": "BTNodeHiddenAction",
  763. "baseSelect": {
  764. "DisplayName": "其他玩家头像底板",
  765. "Type": "Action",
  766. "Value": "vFMpXQirUmtK"
  767. },
  768. "isIllegal": true,
  769. "randomID": "Anxm4tGFcyKv",
  770. "stepSlot": {
  771. "ContainerValue": {
  772. "Type": "BTNodeShowAction",
  773. "baseSelect": {
  774. "DisplayName": "头像底板",
  775. "Type": "Action",
  776. "Value": "uycVRaED625j"
  777. },
  778. "isIllegal": true,
  779. "randomID": "B12kPBLTQlRK",
  780. "stepSlot": {
  781. "ContainerValue": {
  782. "Type": "BTNodeSetScaleAction",
  783. "baseSelect": {
  784. "DisplayName": "玩家头像",
  785. "Type": "Action",
  786. "Value": "HT5rVm1aITeo"
  787. },
  788. "isIllegal": true,
  789. "randomID": "ag18u6RonSYl",
  790. "scaleXInput": {
  791. "ContainerValue": {
  792. "Type": "BTDivOperatorAction",
  793. "conditionA": {
  794. "ContainerValue": null,
  795. "StringValue": {
  796. "Type": "FLOAT",
  797. "Value": 229
  798. },
  799. "Type": "BTInputSlot"
  800. },
  801. "conditionB": {
  802. "ContainerValue": {
  803. "Type": "BTCoderVariableAction",
  804. "VarScope": "Scene",
  805. "isIllegal": true,
  806. "randomID": "IO2oWLHGLzkH",
  807. "titleLabel": {
  808. "Type": "STRING",
  809. "Value": "P-头像大小",
  810. "displayName": ""
  811. }
  812. },
  813. "StringValue": {
  814. "Type": "FLOAT",
  815. "Value": 0
  816. },
  817. "Type": "BTInputSlot"
  818. },
  819. "isIllegal": true,
  820. "randomID": "fnNnhfQSsUVn"
  821. },
  822. "StringValue": {
  823. "Type": "FLOAT",
  824. "Value": 1
  825. },
  826. "Type": "BTInputSlot"
  827. },
  828. "scaleYInput": {
  829. "ContainerValue": {
  830. "Type": "BTDivOperatorAction",
  831. "conditionA": {
  832. "ContainerValue": null,
  833. "StringValue": {
  834. "Type": "FLOAT",
  835. "Value": 229
  836. },
  837. "Type": "BTInputSlot"
  838. },
  839. "conditionB": {
  840. "ContainerValue": {
  841. "Type": "BTCoderVariableAction",
  842. "VarScope": "Scene",
  843. "isIllegal": true,
  844. "randomID": "gJY7lkfKdCxw",
  845. "titleLabel": {
  846. "Type": "STRING",
  847. "Value": "P-头像大小",
  848. "displayName": ""
  849. }
  850. },
  851. "StringValue": {
  852. "Type": "FLOAT",
  853. "Value": 0
  854. },
  855. "Type": "BTInputSlot"
  856. },
  857. "isIllegal": true,
  858. "randomID": "m6qLTzmvIrsI"
  859. },
  860. "StringValue": {
  861. "Type": "FLOAT",
  862. "Value": 1
  863. },
  864. "Type": "BTInputSlot"
  865. },
  866. "stepSlot": {
  867. "ContainerValue": {
  868. "Type": "BTIFElseControlAction",
  869. "conditionA": {
  870. "ContainerValue": {
  871. "Type": "BTStringEqualOperatorAction",
  872. "conditionA": {
  873. "ContainerValue": {
  874. "Type": "BTCoderVariableAction",
  875. "VarScope": "Scene",
  876. "isIllegal": true,
  877. "randomID": "jXnnTJaiSkzQ",
  878. "titleLabel": {
  879. "Type": "STRING",
  880. "Value": "P-当前阶段",
  881. "displayName": ""
  882. }
  883. },
  884. "StringValue": {
  885. "Type": "STRING",
  886. "Value": "Red"
  887. },
  888. "Type": "BTInputSlot"
  889. },
  890. "conditionB": {
  891. "ContainerValue": null,
  892. "StringValue": {
  893. "Type": "STRING",
  894. "Value": "1"
  895. },
  896. "Type": "BTInputSlot"
  897. },
  898. "isIllegal": true,
  899. "randomID": "OPK59uaIdUYU"
  900. },
  901. "Type": "BTBoolSlot"
  902. },
  903. "isIllegal": true,
  904. "randomID": "NjYdQBPb5VS",
  905. "sectionA": {
  906. "ContainerValue": {
  907. "Type": "BTPlaySceneTimeLineAction",
  908. "baseSelect": {
  909. "DisplayName": "正常状态_一级火箭",
  910. "Type": "Action",
  911. "Value": "0"
  912. },
  913. "isIllegal": true,
  914. "randomID": "PdjMNBl5Agb",
  915. "redSelect": {
  916. "DisplayName": "用户_火箭节点(程序调用)",
  917. "Type": "OBJ",
  918. "Value": "Qz8nNS5Klk0S"
  919. },
  920. "stepSlot": {
  921. "ContainerValue": {
  922. "Type": "BTNotifiSceneNodeToCoderAction",
  923. "baseSelect": {
  924. "DisplayName": "分数",
  925. "Type": "Action",
  926. "Value": "ORIA40eon1UZ"
  927. },
  928. "conditionA": {
  929. "ContainerValue": null,
  930. "StringValue": {
  931. "Type": "STRING",
  932. "Value": "绑定阶段数字"
  933. },
  934. "Type": "BTInputSlot"
  935. },
  936. "isIllegal": true,
  937. "paramA": {
  938. "ContainerValue": null,
  939. "StringValue": {
  940. "Type": "STRING",
  941. "Value": ""
  942. },
  943. "Type": "BTInputSlot"
  944. },
  945. "randomID": "RAhBi3LgkBtu",
  946. "redSelect": {
  947. "DisplayName": "用户_火箭节点(程序调用)",
  948. "Type": "OBJ",
  949. "Value": "Qz8nNS5Klk0S"
  950. },
  951. "stepSlot": {
  952. "ContainerValue": {
  953. "Type": "BTNotifiSceneNodeToCoderAction",
  954. "baseSelect": {
  955. "DisplayName": "计分板",
  956. "Type": "Action",
  957. "Value": "sinZ7SloDX5a"
  958. },
  959. "conditionA": {
  960. "ContainerValue": null,
  961. "StringValue": {
  962. "Type": "STRING",
  963. "Value": "绑定计分板"
  964. },
  965. "Type": "BTInputSlot"
  966. },
  967. "isIllegal": true,
  968. "paramA": {
  969. "ContainerValue": null,
  970. "StringValue": {
  971. "Type": "STRING",
  972. "Value": ""
  973. },
  974. "Type": "BTInputSlot"
  975. },
  976. "randomID": "Jym9ZMqZyMAt",
  977. "redSelect": {
  978. "DisplayName": "用户_火箭节点(程序调用)",
  979. "Type": "OBJ",
  980. "Value": "Qz8nNS5Klk0S"
  981. },
  982. "stepSlot": {
  983. "ContainerValue": {
  984. "Type": "BTSceneNodeShowAction",
  985. "baseSelect": {
  986. "DisplayName": "铜宝箱",
  987. "Type": "Action",
  988. "Value": "T2JoPGzKDOZO"
  989. },
  990. "isIllegal": true,
  991. "randomID": "YuIkoUjmIS0z",
  992. "redSelect": {
  993. "DisplayName": "用户_目标弹板(程序调用)",
  994. "Type": "OBJ",
  995. "Value": "kYADGMJ3YJtL"
  996. },
  997. "stepSlot": {
  998. "ContainerValue": {
  999. "Type": "BTSceneNodeHiddenAction",
  1000. "baseSelect": {
  1001. "DisplayName": "金宝箱",
  1002. "Type": "Action",
  1003. "Value": "lDK2HRAj0onM"
  1004. },
  1005. "isIllegal": true,
  1006. "randomID": "F9JI5grP6S5j",
  1007. "redSelect": {
  1008. "DisplayName": "用户_目标弹板(程序调用)",
  1009. "Type": "OBJ",
  1010. "Value": "kYADGMJ3YJtL"
  1011. },
  1012. "stepSlot": {
  1013. "ContainerValue": {
  1014. "Type": "BTSceneNodeHiddenAction",
  1015. "baseSelect": {
  1016. "DisplayName": "银宝箱",
  1017. "Type": "Action",
  1018. "Value": "MaXAlAKMlk5i"
  1019. },
  1020. "isIllegal": true,
  1021. "randomID": "cC1AwfihwRxU",
  1022. "redSelect": {
  1023. "DisplayName": "用户_目标弹板(程序调用)",
  1024. "Type": "OBJ",
  1025. "Value": "kYADGMJ3YJtL"
  1026. },
  1027. "stepSlot": {
  1028. "ContainerValue": null,
  1029. "Type": "BTStepSlot"
  1030. }
  1031. },
  1032. "Type": "BTStepSlot"
  1033. }
  1034. },
  1035. "Type": "BTStepSlot"
  1036. }
  1037. },
  1038. "Type": "BTStepSlot"
  1039. }
  1040. },
  1041. "Type": "BTStepSlot"
  1042. }
  1043. },
  1044. "Type": "BTStepSlot"
  1045. }
  1046. },
  1047. "Type": "BTSectionSlot"
  1048. },
  1049. "sectionB": {
  1050. "ContainerValue": {
  1051. "Type": "BTIFElseControlAction",
  1052. "conditionA": {
  1053. "ContainerValue": {
  1054. "Type": "BTStringEqualOperatorAction",
  1055. "conditionA": {
  1056. "ContainerValue": {
  1057. "Type": "BTCoderVariableAction",
  1058. "VarScope": "Scene",
  1059. "isIllegal": true,
  1060. "randomID": "wfikKc0OOdXQ",
  1061. "titleLabel": {
  1062. "Type": "STRING",
  1063. "Value": "P-当前阶段",
  1064. "displayName": ""
  1065. }
  1066. },
  1067. "StringValue": {
  1068. "Type": "STRING",
  1069. "Value": "Red"
  1070. },
  1071. "Type": "BTInputSlot"
  1072. },
  1073. "conditionB": {
  1074. "ContainerValue": null,
  1075. "StringValue": {
  1076. "Type": "STRING",
  1077. "Value": "2"
  1078. },
  1079. "Type": "BTInputSlot"
  1080. },
  1081. "isIllegal": true,
  1082. "randomID": "Zi573XySyydv"
  1083. },
  1084. "Type": "BTBoolSlot"
  1085. },
  1086. "isIllegal": true,
  1087. "randomID": "PBDvIV7tuouE",
  1088. "sectionA": {
  1089. "ContainerValue": {
  1090. "Type": "BTPlaySceneTimeLineAction",
  1091. "baseSelect": {
  1092. "DisplayName": "正常状态_二级火箭",
  1093. "Type": "Action",
  1094. "Value": "3"
  1095. },
  1096. "isIllegal": true,
  1097. "randomID": "MKVJaNkuodR2",
  1098. "redSelect": {
  1099. "DisplayName": "用户_火箭节点(程序调用)",
  1100. "Type": "OBJ",
  1101. "Value": "Qz8nNS5Klk0S"
  1102. },
  1103. "stepSlot": {
  1104. "ContainerValue": {
  1105. "Type": "BTNotifiSceneNodeToCoderAction",
  1106. "baseSelect": {
  1107. "DisplayName": "二级分数",
  1108. "Type": "Action",
  1109. "Value": "LUmWKR8gWGx"
  1110. },
  1111. "conditionA": {
  1112. "ContainerValue": null,
  1113. "StringValue": {
  1114. "Type": "STRING",
  1115. "Value": "绑定阶段数字"
  1116. },
  1117. "Type": "BTInputSlot"
  1118. },
  1119. "isIllegal": true,
  1120. "paramA": {
  1121. "ContainerValue": null,
  1122. "StringValue": {
  1123. "Type": "STRING",
  1124. "Value": ""
  1125. },
  1126. "Type": "BTInputSlot"
  1127. },
  1128. "randomID": "8ylxGE91cl3u",
  1129. "redSelect": {
  1130. "DisplayName": "用户_火箭节点(程序调用)",
  1131. "Type": "OBJ",
  1132. "Value": "Qz8nNS5Klk0S"
  1133. },
  1134. "stepSlot": {
  1135. "ContainerValue": {
  1136. "Type": "BTNotifiSceneNodeToCoderAction",
  1137. "baseSelect": {
  1138. "DisplayName": "二级计分板",
  1139. "Type": "Action",
  1140. "Value": "q76Cz6NHk20V"
  1141. },
  1142. "conditionA": {
  1143. "ContainerValue": null,
  1144. "StringValue": {
  1145. "Type": "STRING",
  1146. "Value": "绑定计分板"
  1147. },
  1148. "Type": "BTInputSlot"
  1149. },
  1150. "isIllegal": true,
  1151. "paramA": {
  1152. "ContainerValue": null,
  1153. "StringValue": {
  1154. "Type": "STRING",
  1155. "Value": ""
  1156. },
  1157. "Type": "BTInputSlot"
  1158. },
  1159. "randomID": "yAD9YcU52UTc",
  1160. "redSelect": {
  1161. "DisplayName": "用户_火箭节点(程序调用)",
  1162. "Type": "OBJ",
  1163. "Value": "Qz8nNS5Klk0S"
  1164. },
  1165. "stepSlot": {
  1166. "ContainerValue": {
  1167. "Type": "BTIFControlAction",
  1168. "conditionA": {
  1169. "ContainerValue": {
  1170. "Type": "BTStringEqualOperatorAction",
  1171. "conditionA": {
  1172. "ContainerValue": {
  1173. "Type": "BTCoderVariableAction",
  1174. "VarScope": "Scene",
  1175. "isIllegal": true,
  1176. "randomID": "BbEPMQNDm8Xb",
  1177. "titleLabel": {
  1178. "Type": "STRING",
  1179. "Value": "P-玩家进度",
  1180. "displayName": ""
  1181. }
  1182. },
  1183. "StringValue": {
  1184. "Type": "STRING",
  1185. "Value": "Red"
  1186. },
  1187. "Type": "BTInputSlot"
  1188. },
  1189. "conditionB": {
  1190. "ContainerValue": null,
  1191. "StringValue": {
  1192. "Type": "STRING",
  1193. "Value": "0"
  1194. },
  1195. "Type": "BTInputSlot"
  1196. },
  1197. "isIllegal": true,
  1198. "randomID": "yRwRajwK3cZX"
  1199. },
  1200. "Type": "BTBoolSlot"
  1201. },
  1202. "isIllegal": true,
  1203. "randomID": "C7XvhY9ctcFs",
  1204. "sectionA": {
  1205. "ContainerValue": {
  1206. "Type": "BTSceneNodeHiddenAction",
  1207. "baseSelect": {
  1208. "DisplayName": "二级计分板",
  1209. "Type": "Action",
  1210. "Value": "q76Cz6NHk20V"
  1211. },
  1212. "isIllegal": true,
  1213. "randomID": "au7rQ5896VaA",
  1214. "redSelect": {
  1215. "DisplayName": "用户_火箭节点(程序调用)",
  1216. "Type": "OBJ",
  1217. "Value": "Qz8nNS5Klk0S"
  1218. },
  1219. "stepSlot": {
  1220. "ContainerValue": null,
  1221. "Type": "BTStepSlot"
  1222. }
  1223. },
  1224. "Type": "BTSectionSlot"
  1225. },
  1226. "stepSlot": {
  1227. "ContainerValue": {
  1228. "Type": "BTSceneNodeShowAction",
  1229. "baseSelect": {
  1230. "DisplayName": "银宝箱",
  1231. "Type": "Action",
  1232. "Value": "MaXAlAKMlk5i"
  1233. },
  1234. "isIllegal": true,
  1235. "randomID": "t7DxWDZ4M6XE",
  1236. "redSelect": {
  1237. "DisplayName": "用户_目标弹板(程序调用)",
  1238. "Type": "OBJ",
  1239. "Value": "kYADGMJ3YJtL"
  1240. },
  1241. "stepSlot": {
  1242. "ContainerValue": {
  1243. "Type": "BTSceneNodeHiddenAction",
  1244. "baseSelect": {
  1245. "DisplayName": "金宝箱",
  1246. "Type": "Action",
  1247. "Value": "lDK2HRAj0onM"
  1248. },
  1249. "isIllegal": true,
  1250. "randomID": "tI9Z7ijvZA6c",
  1251. "redSelect": {
  1252. "DisplayName": "用户_目标弹板(程序调用)",
  1253. "Type": "OBJ",
  1254. "Value": "kYADGMJ3YJtL"
  1255. },
  1256. "stepSlot": {
  1257. "ContainerValue": {
  1258. "Type": "BTSceneNodeHiddenAction",
  1259. "baseSelect": {
  1260. "DisplayName": "铜宝箱",
  1261. "Type": "Action",
  1262. "Value": "T2JoPGzKDOZO"
  1263. },
  1264. "isIllegal": true,
  1265. "randomID": "b8YaQzu3HUFn",
  1266. "redSelect": {
  1267. "DisplayName": "用户_目标弹板(程序调用)",
  1268. "Type": "OBJ",
  1269. "Value": "kYADGMJ3YJtL"
  1270. },
  1271. "stepSlot": {
  1272. "ContainerValue": null,
  1273. "Type": "BTStepSlot"
  1274. }
  1275. },
  1276. "Type": "BTStepSlot"
  1277. }
  1278. },
  1279. "Type": "BTStepSlot"
  1280. }
  1281. },
  1282. "Type": "BTStepSlot"
  1283. }
  1284. },
  1285. "Type": "BTStepSlot"
  1286. }
  1287. },
  1288. "Type": "BTStepSlot"
  1289. }
  1290. },
  1291. "Type": "BTStepSlot"
  1292. }
  1293. },
  1294. "Type": "BTSectionSlot"
  1295. },
  1296. "sectionB": {
  1297. "ContainerValue": {
  1298. "Type": "BTPlaySceneTimeLineAction",
  1299. "baseSelect": {
  1300. "DisplayName": "正常状态_三级火箭",
  1301. "Type": "Action",
  1302. "Value": "4"
  1303. },
  1304. "isIllegal": true,
  1305. "randomID": "qtPP0FhAyO4H",
  1306. "redSelect": {
  1307. "DisplayName": "用户_火箭节点(程序调用)",
  1308. "Type": "OBJ",
  1309. "Value": "Qz8nNS5Klk0S"
  1310. },
  1311. "stepSlot": {
  1312. "ContainerValue": {
  1313. "Type": "BTNotifiSceneNodeToCoderAction",
  1314. "baseSelect": {
  1315. "DisplayName": "三级分数",
  1316. "Type": "Action",
  1317. "Value": "xrfgdjD5TkPP"
  1318. },
  1319. "conditionA": {
  1320. "ContainerValue": null,
  1321. "StringValue": {
  1322. "Type": "STRING",
  1323. "Value": "绑定阶段数字"
  1324. },
  1325. "Type": "BTInputSlot"
  1326. },
  1327. "isIllegal": true,
  1328. "paramA": {
  1329. "ContainerValue": null,
  1330. "StringValue": {
  1331. "Type": "STRING",
  1332. "Value": ""
  1333. },
  1334. "Type": "BTInputSlot"
  1335. },
  1336. "randomID": "nkXghcVVlXYT",
  1337. "redSelect": {
  1338. "DisplayName": "用户_火箭节点(程序调用)",
  1339. "Type": "OBJ",
  1340. "Value": "Qz8nNS5Klk0S"
  1341. },
  1342. "stepSlot": {
  1343. "ContainerValue": {
  1344. "Type": "BTNotifiSceneNodeToCoderAction",
  1345. "baseSelect": {
  1346. "DisplayName": "三级计分板",
  1347. "Type": "Action",
  1348. "Value": "phMzB0qERVfz"
  1349. },
  1350. "conditionA": {
  1351. "ContainerValue": null,
  1352. "StringValue": {
  1353. "Type": "STRING",
  1354. "Value": "绑定计分板"
  1355. },
  1356. "Type": "BTInputSlot"
  1357. },
  1358. "isIllegal": true,
  1359. "paramA": {
  1360. "ContainerValue": null,
  1361. "StringValue": {
  1362. "Type": "STRING",
  1363. "Value": ""
  1364. },
  1365. "Type": "BTInputSlot"
  1366. },
  1367. "randomID": "bbXSk6zMrkLM",
  1368. "redSelect": {
  1369. "DisplayName": "用户_火箭节点(程序调用)",
  1370. "Type": "OBJ",
  1371. "Value": "Qz8nNS5Klk0S"
  1372. },
  1373. "stepSlot": {
  1374. "ContainerValue": {
  1375. "Type": "BTIFControlAction",
  1376. "conditionA": {
  1377. "ContainerValue": {
  1378. "Type": "BTStringEqualOperatorAction",
  1379. "conditionA": {
  1380. "ContainerValue": {
  1381. "Type": "BTCoderVariableAction",
  1382. "VarScope": "Scene",
  1383. "isIllegal": true,
  1384. "randomID": "hBZZ2oyQUzP9",
  1385. "titleLabel": {
  1386. "Type": "STRING",
  1387. "Value": "P-玩家进度",
  1388. "displayName": ""
  1389. }
  1390. },
  1391. "StringValue": {
  1392. "Type": "STRING",
  1393. "Value": "Red"
  1394. },
  1395. "Type": "BTInputSlot"
  1396. },
  1397. "conditionB": {
  1398. "ContainerValue": null,
  1399. "StringValue": {
  1400. "Type": "STRING",
  1401. "Value": "0"
  1402. },
  1403. "Type": "BTInputSlot"
  1404. },
  1405. "isIllegal": true,
  1406. "randomID": "dI7M8oqh2IbL"
  1407. },
  1408. "Type": "BTBoolSlot"
  1409. },
  1410. "isIllegal": true,
  1411. "randomID": "EOUlCx1K291S",
  1412. "sectionA": {
  1413. "ContainerValue": {
  1414. "Type": "BTSceneNodeHiddenAction",
  1415. "baseSelect": {
  1416. "DisplayName": "三级计分板",
  1417. "Type": "Action",
  1418. "Value": "phMzB0qERVfz"
  1419. },
  1420. "isIllegal": true,
  1421. "randomID": "8L4mx2iKUGG6",
  1422. "redSelect": {
  1423. "DisplayName": "用户_火箭节点(程序调用)",
  1424. "Type": "OBJ",
  1425. "Value": "Qz8nNS5Klk0S"
  1426. },
  1427. "stepSlot": {
  1428. "ContainerValue": null,
  1429. "Type": "BTStepSlot"
  1430. }
  1431. },
  1432. "Type": "BTSectionSlot"
  1433. },
  1434. "stepSlot": {
  1435. "ContainerValue": {
  1436. "Type": "BTSceneNodeShowAction",
  1437. "baseSelect": {
  1438. "DisplayName": "金宝箱",
  1439. "Type": "Action",
  1440. "Value": "lDK2HRAj0onM"
  1441. },
  1442. "isIllegal": true,
  1443. "randomID": "YDusmTvZT7sP",
  1444. "redSelect": {
  1445. "DisplayName": "用户_目标弹板(程序调用)",
  1446. "Type": "OBJ",
  1447. "Value": "kYADGMJ3YJtL"
  1448. },
  1449. "stepSlot": {
  1450. "ContainerValue": {
  1451. "Type": "BTSceneNodeHiddenAction",
  1452. "baseSelect": {
  1453. "DisplayName": "银宝箱",
  1454. "Type": "Action",
  1455. "Value": "MaXAlAKMlk5i"
  1456. },
  1457. "isIllegal": true,
  1458. "randomID": "0rS1I3msxZIA",
  1459. "redSelect": {
  1460. "DisplayName": "用户_目标弹板(程序调用)",
  1461. "Type": "OBJ",
  1462. "Value": "kYADGMJ3YJtL"
  1463. },
  1464. "stepSlot": {
  1465. "ContainerValue": {
  1466. "Type": "BTSceneNodeHiddenAction",
  1467. "baseSelect": {
  1468. "DisplayName": "铜宝箱",
  1469. "Type": "Action",
  1470. "Value": "T2JoPGzKDOZO"
  1471. },
  1472. "isIllegal": true,
  1473. "randomID": "oGhB12DkfsFk",
  1474. "redSelect": {
  1475. "DisplayName": "用户_目标弹板(程序调用)",
  1476. "Type": "OBJ",
  1477. "Value": "kYADGMJ3YJtL"
  1478. },
  1479. "stepSlot": {
  1480. "ContainerValue": null,
  1481. "Type": "BTStepSlot"
  1482. }
  1483. },
  1484. "Type": "BTStepSlot"
  1485. }
  1486. },
  1487. "Type": "BTStepSlot"
  1488. }
  1489. },
  1490. "Type": "BTStepSlot"
  1491. }
  1492. },
  1493. "Type": "BTStepSlot"
  1494. }
  1495. },
  1496. "Type": "BTStepSlot"
  1497. }
  1498. },
  1499. "Type": "BTStepSlot"
  1500. }
  1501. },
  1502. "Type": "BTSectionSlot"
  1503. },
  1504. "stepSlot": {
  1505. "ContainerValue": null,
  1506. "Type": "BTStepSlot"
  1507. }
  1508. },
  1509. "Type": "BTSectionSlot"
  1510. },
  1511. "stepSlot": {
  1512. "ContainerValue": {
  1513. "Type": "BTIFElseControlAction",
  1514. "conditionA": {
  1515. "ContainerValue": {
  1516. "Type": "BTStringEqualOperatorAction",
  1517. "conditionA": {
  1518. "ContainerValue": {
  1519. "Type": "BTCoderVariableAction",
  1520. "VarScope": "Scene",
  1521. "isIllegal": true,
  1522. "randomID": "NVk2IFlMqSAV",
  1523. "titleLabel": {
  1524. "Type": "STRING",
  1525. "Value": "P-已获得奖励",
  1526. "displayName": ""
  1527. }
  1528. },
  1529. "StringValue": {
  1530. "Type": "STRING",
  1531. "Value": "Red"
  1532. },
  1533. "Type": "BTInputSlot"
  1534. },
  1535. "conditionB": {
  1536. "ContainerValue": null,
  1537. "StringValue": {
  1538. "Type": "STRING",
  1539. "Value": "Yes"
  1540. },
  1541. "Type": "BTInputSlot"
  1542. },
  1543. "isIllegal": true,
  1544. "randomID": "h8CgStK9cLMv"
  1545. },
  1546. "Type": "BTBoolSlot"
  1547. },
  1548. "isIllegal": true,
  1549. "randomID": "GtK2yjUhmMhA",
  1550. "sectionA": {
  1551. "ContainerValue": {
  1552. "Type": "BTPlaySceneTimeLineAction",
  1553. "baseSelect": {
  1554. "DisplayName": "常态_已获得",
  1555. "Type": "Action",
  1556. "Value": "1"
  1557. },
  1558. "isIllegal": true,
  1559. "randomID": "nMHZGtbLIvk",
  1560. "redSelect": {
  1561. "DisplayName": "用户_目标弹板(程序调用)",
  1562. "Type": "OBJ",
  1563. "Value": "kYADGMJ3YJtL"
  1564. },
  1565. "stepSlot": {
  1566. "ContainerValue": null,
  1567. "Type": "BTStepSlot"
  1568. }
  1569. },
  1570. "Type": "BTSectionSlot"
  1571. },
  1572. "sectionB": {
  1573. "ContainerValue": {
  1574. "Type": "BTIFElseControlAction",
  1575. "conditionA": {
  1576. "ContainerValue": {
  1577. "Type": "BTStringEqualOperatorAction",
  1578. "conditionA": {
  1579. "ContainerValue": {
  1580. "Type": "BTCoderVariableAction",
  1581. "VarScope": "Scene",
  1582. "isIllegal": true,
  1583. "randomID": "AUXNvBnbQSgm",
  1584. "titleLabel": {
  1585. "Type": "STRING",
  1586. "Value": "P-玩家排名",
  1587. "displayName": ""
  1588. }
  1589. },
  1590. "StringValue": {
  1591. "Type": "STRING",
  1592. "Value": "Red"
  1593. },
  1594. "Type": "BTInputSlot"
  1595. },
  1596. "conditionB": {
  1597. "ContainerValue": null,
  1598. "StringValue": {
  1599. "Type": "STRING",
  1600. "Value": "1"
  1601. },
  1602. "Type": "BTInputSlot"
  1603. },
  1604. "isIllegal": true,
  1605. "randomID": "oAbK9DoeuGlJ"
  1606. },
  1607. "Type": "BTBoolSlot"
  1608. },
  1609. "isIllegal": true,
  1610. "randomID": "BvBHUdVtCyjy",
  1611. "sectionA": {
  1612. "ContainerValue": {
  1613. "Type": "BTPlaySceneTimeLineAction",
  1614. "baseSelect": {
  1615. "DisplayName": "常态_未获得",
  1616. "Type": "Action",
  1617. "Value": "0"
  1618. },
  1619. "isIllegal": true,
  1620. "randomID": "oBdSs76Wbhfa",
  1621. "redSelect": {
  1622. "DisplayName": "用户_目标弹板(程序调用)",
  1623. "Type": "OBJ",
  1624. "Value": "kYADGMJ3YJtL"
  1625. },
  1626. "stepSlot": {
  1627. "ContainerValue": null,
  1628. "Type": "BTStepSlot"
  1629. }
  1630. },
  1631. "Type": "BTSectionSlot"
  1632. },
  1633. "sectionB": {
  1634. "ContainerValue": {
  1635. "Type": "BTNodeHiddenAction",
  1636. "baseSelect": {
  1637. "DisplayName": "用户_目标弹板(程序调用)",
  1638. "Type": "Action",
  1639. "Value": "kYADGMJ3YJtL"
  1640. },
  1641. "isIllegal": true,
  1642. "randomID": "u0FbPYrMrGFV",
  1643. "stepSlot": {
  1644. "ContainerValue": null,
  1645. "Type": "BTStepSlot"
  1646. }
  1647. },
  1648. "Type": "BTSectionSlot"
  1649. },
  1650. "stepSlot": {
  1651. "ContainerValue": null,
  1652. "Type": "BTStepSlot"
  1653. }
  1654. },
  1655. "Type": "BTSectionSlot"
  1656. },
  1657. "stepSlot": {
  1658. "ContainerValue": null,
  1659. "Type": "BTStepSlot"
  1660. }
  1661. },
  1662. "Type": "BTStepSlot"
  1663. }
  1664. },
  1665. "Type": "BTStepSlot"
  1666. }
  1667. },
  1668. "Type": "BTStepSlot"
  1669. }
  1670. },
  1671. "Type": "BTStepSlot"
  1672. }
  1673. },
  1674. "Type": "BTStepSlot"
  1675. }
  1676. },
  1677. "Type": "BTStepSlot"
  1678. }
  1679. },
  1680. "Type": "BTStepSlot"
  1681. }
  1682. },
  1683. "Type": "BTStepSlot"
  1684. }
  1685. },
  1686. "Type": "BTSectionSlot"
  1687. },
  1688. "sectionB": {
  1689. "ContainerValue": {
  1690. "Type": "BTNodeShowAction",
  1691. "baseSelect": {
  1692. "DisplayName": "其他用户_火箭节点",
  1693. "Type": "Action",
  1694. "Value": "9TSiP1mOXIWh"
  1695. },
  1696. "isIllegal": true,
  1697. "randomID": "LTx2shVFFwHD",
  1698. "stepSlot": {
  1699. "ContainerValue": {
  1700. "Type": "BTNodeShowAction",
  1701. "baseSelect": {
  1702. "DisplayName": "其他用户_目标弹板",
  1703. "Type": "Action",
  1704. "Value": "OGW51Z8Im1qf"
  1705. },
  1706. "isIllegal": true,
  1707. "randomID": "rsXhVXqz78Vi",
  1708. "stepSlot": {
  1709. "ContainerValue": {
  1710. "Type": "BTNodeHiddenAction",
  1711. "baseSelect": {
  1712. "DisplayName": "用户_火箭节点(程序调用)",
  1713. "Type": "Action",
  1714. "Value": "Qz8nNS5Klk0S"
  1715. },
  1716. "isIllegal": true,
  1717. "randomID": "q4y2humhoRI",
  1718. "stepSlot": {
  1719. "ContainerValue": {
  1720. "Type": "BTNodeHiddenAction",
  1721. "baseSelect": {
  1722. "DisplayName": "用户_目标弹板(程序调用)",
  1723. "Type": "Action",
  1724. "Value": "kYADGMJ3YJtL"
  1725. },
  1726. "isIllegal": true,
  1727. "randomID": "n4C6cSUUiVaQ",
  1728. "stepSlot": {
  1729. "ContainerValue": {
  1730. "Type": "BTNodeHiddenAction",
  1731. "baseSelect": {
  1732. "DisplayName": "头像底板",
  1733. "Type": "Action",
  1734. "Value": "uycVRaED625j"
  1735. },
  1736. "isIllegal": true,
  1737. "randomID": "qsOzEs7G2YS2",
  1738. "stepSlot": {
  1739. "ContainerValue": {
  1740. "Type": "BTNodeShowAction",
  1741. "baseSelect": {
  1742. "DisplayName": "其他玩家头像底板",
  1743. "Type": "Action",
  1744. "Value": "vFMpXQirUmtK"
  1745. },
  1746. "isIllegal": true,
  1747. "randomID": "xeQiSELLmJ6H",
  1748. "stepSlot": {
  1749. "ContainerValue": {
  1750. "Type": "BTIFElseControlAction",
  1751. "conditionA": {
  1752. "ContainerValue": {
  1753. "Type": "BTStringEqualOperatorAction",
  1754. "conditionA": {
  1755. "ContainerValue": {
  1756. "Type": "BTCoderVariableAction",
  1757. "VarScope": "Scene",
  1758. "isIllegal": true,
  1759. "randomID": "ZRzZii0ZnFnI",
  1760. "titleLabel": {
  1761. "Type": "STRING",
  1762. "Value": "P-当前阶段",
  1763. "displayName": ""
  1764. }
  1765. },
  1766. "StringValue": {
  1767. "Type": "STRING",
  1768. "Value": "Red"
  1769. },
  1770. "Type": "BTInputSlot"
  1771. },
  1772. "conditionB": {
  1773. "ContainerValue": null,
  1774. "StringValue": {
  1775. "Type": "STRING",
  1776. "Value": "1"
  1777. },
  1778. "Type": "BTInputSlot"
  1779. },
  1780. "isIllegal": true,
  1781. "randomID": "Or9cDUMZf93o"
  1782. },
  1783. "Type": "BTBoolSlot"
  1784. },
  1785. "isIllegal": true,
  1786. "randomID": "tbouDgfXkbHm",
  1787. "sectionA": {
  1788. "ContainerValue": {
  1789. "Type": "BTPlaySceneTimeLineAction",
  1790. "baseSelect": {
  1791. "DisplayName": "正常状态_一级火箭",
  1792. "Type": "Action",
  1793. "Value": "0"
  1794. },
  1795. "isIllegal": true,
  1796. "randomID": "5niuX7vSX1Rc",
  1797. "redSelect": {
  1798. "DisplayName": "太空任务活动_其他_火箭节点",
  1799. "Type": "OBJ",
  1800. "Value": "9TSiP1mOXIWh"
  1801. },
  1802. "stepSlot": {
  1803. "ContainerValue": {
  1804. "TitleInput": {
  1805. "ContainerValue": {
  1806. "Type": "BTCoderVariableAction",
  1807. "VarScope": "Scene",
  1808. "isIllegal": true,
  1809. "randomID": "SxH2ZmSBYKwv",
  1810. "titleLabel": {
  1811. "Type": "STRING",
  1812. "Value": "P-玩家进度",
  1813. "displayName": ""
  1814. }
  1815. },
  1816. "StringValue": {
  1817. "Type": "STRING",
  1818. "Value": "填写标题内容"
  1819. },
  1820. "Type": "BTInputSlot"
  1821. },
  1822. "Type": "BTSceneLabelTitleAction",
  1823. "baseSelect": {
  1824. "DisplayName": "分数",
  1825. "Type": "Action",
  1826. "Value": "IiGk5ZPdQilv"
  1827. },
  1828. "isIllegal": true,
  1829. "randomID": "wngo8IQNkhwp",
  1830. "redSelect": {
  1831. "DisplayName": "太空任务活动_其他_火箭节点",
  1832. "Type": "OBJ",
  1833. "Value": "9TSiP1mOXIWh"
  1834. },
  1835. "stepSlot": {
  1836. "ContainerValue": {
  1837. "Type": "BTSceneNodeShowAction",
  1838. "baseSelect": {
  1839. "DisplayName": "铜宝箱",
  1840. "Type": "Action",
  1841. "Value": "jcpQj93ePJJt"
  1842. },
  1843. "isIllegal": true,
  1844. "randomID": "iYrR5e8qxcJF",
  1845. "redSelect": {
  1846. "DisplayName": "其他用户_目标弹板",
  1847. "Type": "OBJ",
  1848. "Value": "OGW51Z8Im1qf"
  1849. },
  1850. "stepSlot": {
  1851. "ContainerValue": {
  1852. "Type": "BTSceneNodeHiddenAction",
  1853. "baseSelect": {
  1854. "DisplayName": "金宝箱",
  1855. "Type": "Action",
  1856. "Value": "PTUgnM7LKd1a"
  1857. },
  1858. "isIllegal": true,
  1859. "randomID": "Rn9S4zIEzNVQ",
  1860. "redSelect": {
  1861. "DisplayName": "其他用户_目标弹板",
  1862. "Type": "OBJ",
  1863. "Value": "OGW51Z8Im1qf"
  1864. },
  1865. "stepSlot": {
  1866. "ContainerValue": {
  1867. "Type": "BTSceneNodeHiddenAction",
  1868. "baseSelect": {
  1869. "DisplayName": "银宝箱",
  1870. "Type": "Action",
  1871. "Value": "S7L66XupTe7T"
  1872. },
  1873. "isIllegal": true,
  1874. "randomID": "ExZZXrOexP0U",
  1875. "redSelect": {
  1876. "DisplayName": "其他用户_目标弹板",
  1877. "Type": "OBJ",
  1878. "Value": "OGW51Z8Im1qf"
  1879. },
  1880. "stepSlot": {
  1881. "ContainerValue": {
  1882. "Type": "BTNotifiSceneNodeToCoderAction",
  1883. "baseSelect": {
  1884. "DisplayName": "分数",
  1885. "Type": "Action",
  1886. "Value": "IiGk5ZPdQilv"
  1887. },
  1888. "conditionA": {
  1889. "ContainerValue": null,
  1890. "StringValue": {
  1891. "Type": "STRING",
  1892. "Value": "绑定阶段数字"
  1893. },
  1894. "Type": "BTInputSlot"
  1895. },
  1896. "isIllegal": true,
  1897. "paramA": {
  1898. "ContainerValue": null,
  1899. "StringValue": {
  1900. "Type": "STRING",
  1901. "Value": ""
  1902. },
  1903. "Type": "BTInputSlot"
  1904. },
  1905. "randomID": "YVf00iJItegF",
  1906. "redSelect": {
  1907. "DisplayName": "太空任务活动_其他_火箭节点",
  1908. "Type": "OBJ",
  1909. "Value": "9TSiP1mOXIWh"
  1910. },
  1911. "stepSlot": {
  1912. "ContainerValue": {
  1913. "Type": "BTNotifiSceneNodeToCoderAction",
  1914. "baseSelect": {
  1915. "DisplayName": "计分板",
  1916. "Type": "Action",
  1917. "Value": "ngfzGDtl5DO2"
  1918. },
  1919. "conditionA": {
  1920. "ContainerValue": null,
  1921. "StringValue": {
  1922. "Type": "STRING",
  1923. "Value": "绑定计分板"
  1924. },
  1925. "Type": "BTInputSlot"
  1926. },
  1927. "isIllegal": true,
  1928. "paramA": {
  1929. "ContainerValue": null,
  1930. "StringValue": {
  1931. "Type": "STRING",
  1932. "Value": ""
  1933. },
  1934. "Type": "BTInputSlot"
  1935. },
  1936. "randomID": "pH5cPlbv6nUl",
  1937. "redSelect": {
  1938. "DisplayName": "太空任务活动_其他_火箭节点",
  1939. "Type": "OBJ",
  1940. "Value": "9TSiP1mOXIWh"
  1941. },
  1942. "stepSlot": {
  1943. "ContainerValue": {
  1944. "Type": "BTIFControlAction",
  1945. "conditionA": {
  1946. "ContainerValue": {
  1947. "Type": "BTStringEqualOperatorAction",
  1948. "conditionA": {
  1949. "ContainerValue": {
  1950. "Type": "BTCoderVariableAction",
  1951. "VarScope": "Scene",
  1952. "isIllegal": true,
  1953. "randomID": "zM82XIFN4l7G",
  1954. "titleLabel": {
  1955. "Type": "STRING",
  1956. "Value": "P-玩家进度",
  1957. "displayName": ""
  1958. }
  1959. },
  1960. "StringValue": {
  1961. "Type": "STRING",
  1962. "Value": "Red"
  1963. },
  1964. "Type": "BTInputSlot"
  1965. },
  1966. "conditionB": {
  1967. "ContainerValue": null,
  1968. "StringValue": {
  1969. "Type": "STRING",
  1970. "Value": "0"
  1971. },
  1972. "Type": "BTInputSlot"
  1973. },
  1974. "isIllegal": true,
  1975. "randomID": "RDjoHK50bVk7"
  1976. },
  1977. "Type": "BTBoolSlot"
  1978. },
  1979. "isIllegal": true,
  1980. "randomID": "aPpzfuhVkLdm",
  1981. "sectionA": {
  1982. "ContainerValue": {
  1983. "Type": "BTSceneNodeHiddenAction",
  1984. "baseSelect": {
  1985. "DisplayName": "计分板",
  1986. "Type": "Action",
  1987. "Value": "ngfzGDtl5DO2"
  1988. },
  1989. "isIllegal": true,
  1990. "randomID": "VKhjcfrInFlr",
  1991. "redSelect": {
  1992. "DisplayName": "太空任务活动_其他_火箭节点",
  1993. "Type": "OBJ",
  1994. "Value": "9TSiP1mOXIWh"
  1995. },
  1996. "stepSlot": {
  1997. "ContainerValue": null,
  1998. "Type": "BTStepSlot"
  1999. }
  2000. },
  2001. "Type": "BTSectionSlot"
  2002. },
  2003. "stepSlot": {
  2004. "ContainerValue": null,
  2005. "Type": "BTStepSlot"
  2006. }
  2007. },
  2008. "Type": "BTStepSlot"
  2009. }
  2010. },
  2011. "Type": "BTStepSlot"
  2012. }
  2013. },
  2014. "Type": "BTStepSlot"
  2015. }
  2016. },
  2017. "Type": "BTStepSlot"
  2018. }
  2019. },
  2020. "Type": "BTStepSlot"
  2021. }
  2022. },
  2023. "Type": "BTStepSlot"
  2024. }
  2025. },
  2026. "Type": "BTStepSlot"
  2027. }
  2028. },
  2029. "Type": "BTSectionSlot"
  2030. },
  2031. "sectionB": {
  2032. "ContainerValue": {
  2033. "Type": "BTIFElseControlAction",
  2034. "conditionA": {
  2035. "ContainerValue": {
  2036. "Type": "BTStringEqualOperatorAction",
  2037. "conditionA": {
  2038. "ContainerValue": {
  2039. "Type": "BTCoderVariableAction",
  2040. "VarScope": "Scene",
  2041. "isIllegal": true,
  2042. "randomID": "4DlPqnwYvOjP",
  2043. "titleLabel": {
  2044. "Type": "STRING",
  2045. "Value": "P-当前阶段",
  2046. "displayName": ""
  2047. }
  2048. },
  2049. "StringValue": {
  2050. "Type": "STRING",
  2051. "Value": "Red"
  2052. },
  2053. "Type": "BTInputSlot"
  2054. },
  2055. "conditionB": {
  2056. "ContainerValue": null,
  2057. "StringValue": {
  2058. "Type": "STRING",
  2059. "Value": "2"
  2060. },
  2061. "Type": "BTInputSlot"
  2062. },
  2063. "isIllegal": true,
  2064. "randomID": "JrcgX2PMQwfO"
  2065. },
  2066. "Type": "BTBoolSlot"
  2067. },
  2068. "isIllegal": true,
  2069. "randomID": "zspoNajuSYJa",
  2070. "sectionA": {
  2071. "ContainerValue": {
  2072. "Type": "BTPlaySceneTimeLineAction",
  2073. "baseSelect": {
  2074. "DisplayName": "正常状态_二级火箭",
  2075. "Type": "Action",
  2076. "Value": "3"
  2077. },
  2078. "isIllegal": true,
  2079. "randomID": "niCDQ3wU3kT2",
  2080. "redSelect": {
  2081. "DisplayName": "太空任务活动_其他_火箭节点",
  2082. "Type": "OBJ",
  2083. "Value": "9TSiP1mOXIWh"
  2084. },
  2085. "stepSlot": {
  2086. "ContainerValue": {
  2087. "Type": "BTNotifiSceneNodeToCoderAction",
  2088. "baseSelect": {
  2089. "DisplayName": "二级分数",
  2090. "Type": "Action",
  2091. "Value": "nsiDpmbWPeg8"
  2092. },
  2093. "conditionA": {
  2094. "ContainerValue": null,
  2095. "StringValue": {
  2096. "Type": "STRING",
  2097. "Value": "绑定阶段数字"
  2098. },
  2099. "Type": "BTInputSlot"
  2100. },
  2101. "isIllegal": true,
  2102. "paramA": {
  2103. "ContainerValue": null,
  2104. "StringValue": {
  2105. "Type": "STRING",
  2106. "Value": ""
  2107. },
  2108. "Type": "BTInputSlot"
  2109. },
  2110. "randomID": "hFpMpGp2tC7",
  2111. "redSelect": {
  2112. "DisplayName": "太空任务活动_其他_火箭节点",
  2113. "Type": "OBJ",
  2114. "Value": "9TSiP1mOXIWh"
  2115. },
  2116. "stepSlot": {
  2117. "ContainerValue": {
  2118. "Type": "BTNotifiSceneNodeToCoderAction",
  2119. "baseSelect": {
  2120. "DisplayName": "二级计分板",
  2121. "Type": "Action",
  2122. "Value": "9U8u5wgBPOQ"
  2123. },
  2124. "conditionA": {
  2125. "ContainerValue": null,
  2126. "StringValue": {
  2127. "Type": "STRING",
  2128. "Value": "绑定计分板"
  2129. },
  2130. "Type": "BTInputSlot"
  2131. },
  2132. "isIllegal": true,
  2133. "paramA": {
  2134. "ContainerValue": null,
  2135. "StringValue": {
  2136. "Type": "STRING",
  2137. "Value": ""
  2138. },
  2139. "Type": "BTInputSlot"
  2140. },
  2141. "randomID": "VbRQirVSkzs",
  2142. "redSelect": {
  2143. "DisplayName": "太空任务活动_其他_火箭节点",
  2144. "Type": "OBJ",
  2145. "Value": "9TSiP1mOXIWh"
  2146. },
  2147. "stepSlot": {
  2148. "ContainerValue": {
  2149. "Type": "BTSceneNodeShowAction",
  2150. "baseSelect": {
  2151. "DisplayName": "银宝箱",
  2152. "Type": "Action",
  2153. "Value": "S7L66XupTe7T"
  2154. },
  2155. "isIllegal": true,
  2156. "randomID": "JsSoNBMAnG6x",
  2157. "redSelect": {
  2158. "DisplayName": "其他用户_目标弹板",
  2159. "Type": "OBJ",
  2160. "Value": "OGW51Z8Im1qf"
  2161. },
  2162. "stepSlot": {
  2163. "ContainerValue": {
  2164. "Type": "BTSceneNodeHiddenAction",
  2165. "baseSelect": {
  2166. "DisplayName": "铜宝箱",
  2167. "Type": "Action",
  2168. "Value": "jcpQj93ePJJt"
  2169. },
  2170. "isIllegal": true,
  2171. "randomID": "f9t2PkfMgPJs",
  2172. "redSelect": {
  2173. "DisplayName": "其他用户_目标弹板",
  2174. "Type": "OBJ",
  2175. "Value": "OGW51Z8Im1qf"
  2176. },
  2177. "stepSlot": {
  2178. "ContainerValue": {
  2179. "Type": "BTSceneNodeHiddenAction",
  2180. "baseSelect": {
  2181. "DisplayName": "金宝箱",
  2182. "Type": "Action",
  2183. "Value": "PTUgnM7LKd1a"
  2184. },
  2185. "isIllegal": true,
  2186. "randomID": "ma4Fq0bmytvq",
  2187. "redSelect": {
  2188. "DisplayName": "其他用户_目标弹板",
  2189. "Type": "OBJ",
  2190. "Value": "OGW51Z8Im1qf"
  2191. },
  2192. "stepSlot": {
  2193. "ContainerValue": {
  2194. "Type": "BTIFControlAction",
  2195. "conditionA": {
  2196. "ContainerValue": {
  2197. "Type": "BTStringEqualOperatorAction",
  2198. "conditionA": {
  2199. "ContainerValue": {
  2200. "Type": "BTCoderVariableAction",
  2201. "VarScope": "Scene",
  2202. "isIllegal": true,
  2203. "randomID": "BKY3EYjyiyJp",
  2204. "titleLabel": {
  2205. "Type": "STRING",
  2206. "Value": "P-玩家进度",
  2207. "displayName": ""
  2208. }
  2209. },
  2210. "StringValue": {
  2211. "Type": "STRING",
  2212. "Value": "Red"
  2213. },
  2214. "Type": "BTInputSlot"
  2215. },
  2216. "conditionB": {
  2217. "ContainerValue": null,
  2218. "StringValue": {
  2219. "Type": "STRING",
  2220. "Value": "0"
  2221. },
  2222. "Type": "BTInputSlot"
  2223. },
  2224. "isIllegal": true,
  2225. "randomID": "dGcKyByAjaVI"
  2226. },
  2227. "Type": "BTBoolSlot"
  2228. },
  2229. "isIllegal": true,
  2230. "randomID": "cFlsewHUrJQC",
  2231. "sectionA": {
  2232. "ContainerValue": {
  2233. "Type": "BTSceneNodeHiddenAction",
  2234. "baseSelect": {
  2235. "DisplayName": "二级计分板",
  2236. "Type": "Action",
  2237. "Value": "9U8u5wgBPOQ"
  2238. },
  2239. "isIllegal": true,
  2240. "randomID": "UWjWzuR9vPEl",
  2241. "redSelect": {
  2242. "DisplayName": "太空任务活动_其他_火箭节点",
  2243. "Type": "OBJ",
  2244. "Value": "9TSiP1mOXIWh"
  2245. },
  2246. "stepSlot": {
  2247. "ContainerValue": null,
  2248. "Type": "BTStepSlot"
  2249. }
  2250. },
  2251. "Type": "BTSectionSlot"
  2252. },
  2253. "stepSlot": {
  2254. "ContainerValue": null,
  2255. "Type": "BTStepSlot"
  2256. }
  2257. },
  2258. "Type": "BTStepSlot"
  2259. }
  2260. },
  2261. "Type": "BTStepSlot"
  2262. }
  2263. },
  2264. "Type": "BTStepSlot"
  2265. }
  2266. },
  2267. "Type": "BTStepSlot"
  2268. }
  2269. },
  2270. "Type": "BTStepSlot"
  2271. }
  2272. },
  2273. "Type": "BTStepSlot"
  2274. }
  2275. },
  2276. "Type": "BTSectionSlot"
  2277. },
  2278. "sectionB": {
  2279. "ContainerValue": {
  2280. "Type": "BTPlaySceneTimeLineAction",
  2281. "baseSelect": {
  2282. "DisplayName": "正常状态_三级火箭",
  2283. "Type": "Action",
  2284. "Value": "4"
  2285. },
  2286. "isIllegal": true,
  2287. "randomID": "BPGqt6JC3esS",
  2288. "redSelect": {
  2289. "DisplayName": "太空任务活动_其他_火箭节点",
  2290. "Type": "OBJ",
  2291. "Value": "9TSiP1mOXIWh"
  2292. },
  2293. "stepSlot": {
  2294. "ContainerValue": {
  2295. "Type": "BTSceneNodeShowAction",
  2296. "baseSelect": {
  2297. "DisplayName": "金宝箱",
  2298. "Type": "Action",
  2299. "Value": "PTUgnM7LKd1a"
  2300. },
  2301. "isIllegal": true,
  2302. "randomID": "PsiInIEffnL2",
  2303. "redSelect": {
  2304. "DisplayName": "其他用户_目标弹板",
  2305. "Type": "OBJ",
  2306. "Value": "OGW51Z8Im1qf"
  2307. },
  2308. "stepSlot": {
  2309. "ContainerValue": {
  2310. "Type": "BTSceneNodeHiddenAction",
  2311. "baseSelect": {
  2312. "DisplayName": "铜宝箱",
  2313. "Type": "Action",
  2314. "Value": "jcpQj93ePJJt"
  2315. },
  2316. "isIllegal": true,
  2317. "randomID": "tYmrUS5IBTU2",
  2318. "redSelect": {
  2319. "DisplayName": "其他用户_目标弹板",
  2320. "Type": "OBJ",
  2321. "Value": "OGW51Z8Im1qf"
  2322. },
  2323. "stepSlot": {
  2324. "ContainerValue": {
  2325. "Type": "BTSceneNodeHiddenAction",
  2326. "baseSelect": {
  2327. "DisplayName": "银宝箱",
  2328. "Type": "Action",
  2329. "Value": "S7L66XupTe7T"
  2330. },
  2331. "isIllegal": true,
  2332. "randomID": "sAAbWRc5HpxR",
  2333. "redSelect": {
  2334. "DisplayName": "其他用户_目标弹板",
  2335. "Type": "OBJ",
  2336. "Value": "OGW51Z8Im1qf"
  2337. },
  2338. "stepSlot": {
  2339. "ContainerValue": {
  2340. "Type": "BTNotifiSceneNodeToCoderAction",
  2341. "baseSelect": {
  2342. "DisplayName": "三级分数",
  2343. "Type": "Action",
  2344. "Value": "dscLJZjHC7vn"
  2345. },
  2346. "conditionA": {
  2347. "ContainerValue": null,
  2348. "StringValue": {
  2349. "Type": "STRING",
  2350. "Value": "绑定阶段数字"
  2351. },
  2352. "Type": "BTInputSlot"
  2353. },
  2354. "isIllegal": true,
  2355. "paramA": {
  2356. "ContainerValue": null,
  2357. "StringValue": {
  2358. "Type": "STRING",
  2359. "Value": ""
  2360. },
  2361. "Type": "BTInputSlot"
  2362. },
  2363. "randomID": "yZBUXpLSVgT1",
  2364. "redSelect": {
  2365. "DisplayName": "太空任务活动_其他_火箭节点",
  2366. "Type": "OBJ",
  2367. "Value": "9TSiP1mOXIWh"
  2368. },
  2369. "stepSlot": {
  2370. "ContainerValue": {
  2371. "Type": "BTNotifiSceneNodeToCoderAction",
  2372. "baseSelect": {
  2373. "DisplayName": "三级计分板",
  2374. "Type": "Action",
  2375. "Value": "d6ItovHtT7eV"
  2376. },
  2377. "conditionA": {
  2378. "ContainerValue": null,
  2379. "StringValue": {
  2380. "Type": "STRING",
  2381. "Value": "绑定计分板"
  2382. },
  2383. "Type": "BTInputSlot"
  2384. },
  2385. "isIllegal": true,
  2386. "paramA": {
  2387. "ContainerValue": null,
  2388. "StringValue": {
  2389. "Type": "STRING",
  2390. "Value": ""
  2391. },
  2392. "Type": "BTInputSlot"
  2393. },
  2394. "randomID": "Q7pzVCRkhr",
  2395. "redSelect": {
  2396. "DisplayName": "太空任务活动_其他_火箭节点",
  2397. "Type": "OBJ",
  2398. "Value": "9TSiP1mOXIWh"
  2399. },
  2400. "stepSlot": {
  2401. "ContainerValue": {
  2402. "Type": "BTIFControlAction",
  2403. "conditionA": {
  2404. "ContainerValue": {
  2405. "Type": "BTStringEqualOperatorAction",
  2406. "conditionA": {
  2407. "ContainerValue": {
  2408. "Type": "BTCoderVariableAction",
  2409. "VarScope": "Scene",
  2410. "isIllegal": true,
  2411. "randomID": "gY9AItO8eGwj",
  2412. "titleLabel": {
  2413. "Type": "STRING",
  2414. "Value": "P-玩家进度",
  2415. "displayName": ""
  2416. }
  2417. },
  2418. "StringValue": {
  2419. "Type": "STRING",
  2420. "Value": "Red"
  2421. },
  2422. "Type": "BTInputSlot"
  2423. },
  2424. "conditionB": {
  2425. "ContainerValue": null,
  2426. "StringValue": {
  2427. "Type": "STRING",
  2428. "Value": "0"
  2429. },
  2430. "Type": "BTInputSlot"
  2431. },
  2432. "isIllegal": true,
  2433. "randomID": "cmslAGE7IbFC"
  2434. },
  2435. "Type": "BTBoolSlot"
  2436. },
  2437. "isIllegal": true,
  2438. "randomID": "gsO86loUNpC0",
  2439. "sectionA": {
  2440. "ContainerValue": {
  2441. "Type": "BTSceneNodeHiddenAction",
  2442. "baseSelect": {
  2443. "DisplayName": "三级计分板",
  2444. "Type": "Action",
  2445. "Value": "d6ItovHtT7eV"
  2446. },
  2447. "isIllegal": true,
  2448. "randomID": "48sqfeRGCJoi",
  2449. "redSelect": {
  2450. "DisplayName": "太空任务活动_其他_火箭节点",
  2451. "Type": "OBJ",
  2452. "Value": "9TSiP1mOXIWh"
  2453. },
  2454. "stepSlot": {
  2455. "ContainerValue": null,
  2456. "Type": "BTStepSlot"
  2457. }
  2458. },
  2459. "Type": "BTSectionSlot"
  2460. },
  2461. "stepSlot": {
  2462. "ContainerValue": null,
  2463. "Type": "BTStepSlot"
  2464. }
  2465. },
  2466. "Type": "BTStepSlot"
  2467. }
  2468. },
  2469. "Type": "BTStepSlot"
  2470. }
  2471. },
  2472. "Type": "BTStepSlot"
  2473. }
  2474. },
  2475. "Type": "BTStepSlot"
  2476. }
  2477. },
  2478. "Type": "BTStepSlot"
  2479. }
  2480. },
  2481. "Type": "BTStepSlot"
  2482. }
  2483. },
  2484. "Type": "BTSectionSlot"
  2485. },
  2486. "stepSlot": {
  2487. "ContainerValue": null,
  2488. "Type": "BTStepSlot"
  2489. }
  2490. },
  2491. "Type": "BTSectionSlot"
  2492. },
  2493. "stepSlot": {
  2494. "ContainerValue": {
  2495. "Type": "BTIFElseControlAction",
  2496. "conditionA": {
  2497. "ContainerValue": {
  2498. "Type": "BTStringEqualOperatorAction",
  2499. "conditionA": {
  2500. "ContainerValue": {
  2501. "Type": "BTCoderVariableAction",
  2502. "VarScope": "Scene",
  2503. "isIllegal": true,
  2504. "randomID": "jWckcm5jfQuj",
  2505. "titleLabel": {
  2506. "Type": "STRING",
  2507. "Value": "P-已获得奖励",
  2508. "displayName": ""
  2509. }
  2510. },
  2511. "StringValue": {
  2512. "Type": "STRING",
  2513. "Value": "Red"
  2514. },
  2515. "Type": "BTInputSlot"
  2516. },
  2517. "conditionB": {
  2518. "ContainerValue": null,
  2519. "StringValue": {
  2520. "Type": "STRING",
  2521. "Value": "Yes"
  2522. },
  2523. "Type": "BTInputSlot"
  2524. },
  2525. "isIllegal": true,
  2526. "randomID": "rQ7qskTs04se"
  2527. },
  2528. "Type": "BTBoolSlot"
  2529. },
  2530. "isIllegal": true,
  2531. "randomID": "sfFovjEaiGNJ",
  2532. "sectionA": {
  2533. "ContainerValue": {
  2534. "Type": "BTPlaySceneTimeLineAction",
  2535. "baseSelect": {
  2536. "DisplayName": "常态_已获得",
  2537. "Type": "Action",
  2538. "Value": "1"
  2539. },
  2540. "isIllegal": true,
  2541. "randomID": "hLH4gwvYqKW",
  2542. "redSelect": {
  2543. "DisplayName": "其他用户_目标弹板",
  2544. "Type": "OBJ",
  2545. "Value": "OGW51Z8Im1qf"
  2546. },
  2547. "stepSlot": {
  2548. "ContainerValue": null,
  2549. "Type": "BTStepSlot"
  2550. }
  2551. },
  2552. "Type": "BTSectionSlot"
  2553. },
  2554. "sectionB": {
  2555. "ContainerValue": {
  2556. "Type": "BTIFElseControlAction",
  2557. "conditionA": {
  2558. "ContainerValue": {
  2559. "Type": "BTStringEqualOperatorAction",
  2560. "conditionA": {
  2561. "ContainerValue": {
  2562. "Type": "BTCoderVariableAction",
  2563. "VarScope": "Scene",
  2564. "isIllegal": true,
  2565. "randomID": "R64hERaDSZnA",
  2566. "titleLabel": {
  2567. "Type": "STRING",
  2568. "Value": "P-玩家排名",
  2569. "displayName": ""
  2570. }
  2571. },
  2572. "StringValue": {
  2573. "Type": "STRING",
  2574. "Value": "Red"
  2575. },
  2576. "Type": "BTInputSlot"
  2577. },
  2578. "conditionB": {
  2579. "ContainerValue": null,
  2580. "StringValue": {
  2581. "Type": "STRING",
  2582. "Value": "1"
  2583. },
  2584. "Type": "BTInputSlot"
  2585. },
  2586. "isIllegal": true,
  2587. "randomID": "0Cl3r68n8lzo"
  2588. },
  2589. "Type": "BTBoolSlot"
  2590. },
  2591. "isIllegal": true,
  2592. "randomID": "E7GvPN4N7iIB",
  2593. "sectionA": {
  2594. "ContainerValue": {
  2595. "Type": "BTPlaySceneTimeLineAction",
  2596. "baseSelect": {
  2597. "DisplayName": "常态_未获得",
  2598. "Type": "Action",
  2599. "Value": "0"
  2600. },
  2601. "isIllegal": true,
  2602. "randomID": "W3NFWxBQRu72",
  2603. "redSelect": {
  2604. "DisplayName": "其他用户_目标弹板",
  2605. "Type": "OBJ",
  2606. "Value": "OGW51Z8Im1qf"
  2607. },
  2608. "stepSlot": {
  2609. "ContainerValue": null,
  2610. "Type": "BTStepSlot"
  2611. }
  2612. },
  2613. "Type": "BTSectionSlot"
  2614. },
  2615. "sectionB": {
  2616. "ContainerValue": {
  2617. "Type": "BTNodeHiddenAction",
  2618. "baseSelect": {
  2619. "DisplayName": "其他用户_目标弹板",
  2620. "Type": "Action",
  2621. "Value": "OGW51Z8Im1qf"
  2622. },
  2623. "isIllegal": true,
  2624. "randomID": "3n2ECEmOxaB",
  2625. "stepSlot": {
  2626. "ContainerValue": null,
  2627. "Type": "BTStepSlot"
  2628. }
  2629. },
  2630. "Type": "BTSectionSlot"
  2631. },
  2632. "stepSlot": {
  2633. "ContainerValue": null,
  2634. "Type": "BTStepSlot"
  2635. }
  2636. },
  2637. "Type": "BTSectionSlot"
  2638. },
  2639. "stepSlot": {
  2640. "ContainerValue": null,
  2641. "Type": "BTStepSlot"
  2642. }
  2643. },
  2644. "Type": "BTStepSlot"
  2645. }
  2646. },
  2647. "Type": "BTStepSlot"
  2648. }
  2649. },
  2650. "Type": "BTStepSlot"
  2651. }
  2652. },
  2653. "Type": "BTStepSlot"
  2654. }
  2655. },
  2656. "Type": "BTStepSlot"
  2657. }
  2658. },
  2659. "Type": "BTStepSlot"
  2660. }
  2661. },
  2662. "Type": "BTStepSlot"
  2663. }
  2664. },
  2665. "Type": "BTSectionSlot"
  2666. },
  2667. "stepSlot": {
  2668. "ContainerValue": null,
  2669. "Type": "BTStepSlot"
  2670. }
  2671. },
  2672. "Type": "BTStepSlot"
  2673. }
  2674. },
  2675. "Type": "BTStepSlot"
  2676. }
  2677. },
  2678. "Type": "BTStepSlot"
  2679. }
  2680. },
  2681. "Type": "BTStepSlot"
  2682. }
  2683. },
  2684. "Type": "BTStepSlot"
  2685. },
  2686. "x": -215,
  2687. "y": 209
  2688. },
  2689. "Tree3": {
  2690. "ExportTree": true,
  2691. "ImageIndex": 5,
  2692. "Name": {
  2693. "Type": "STRING",
  2694. "Value": "获得奖励",
  2695. "displayName": ""
  2696. },
  2697. "Type": "BTCustomFuncHeadAction",
  2698. "VarJson": {
  2699. "boolJson": {
  2700. },
  2701. "numberJson": {
  2702. }
  2703. },
  2704. "isIllegal": false,
  2705. "randomID": "rrOwHE0K19g6",
  2706. "stepSlot": {
  2707. "ContainerValue": {
  2708. "Type": "BTIFElseControlAction",
  2709. "conditionA": {
  2710. "ContainerValue": {
  2711. "Type": "BTStringEqualOperatorAction",
  2712. "conditionA": {
  2713. "ContainerValue": {
  2714. "Type": "BTCoderVariableAction",
  2715. "VarScope": "Scene",
  2716. "isIllegal": true,
  2717. "randomID": "x20TJVtuJqEe",
  2718. "titleLabel": {
  2719. "Type": "STRING",
  2720. "Value": "P-是否是当前玩家",
  2721. "displayName": ""
  2722. }
  2723. },
  2724. "StringValue": {
  2725. "Type": "STRING",
  2726. "Value": "Red"
  2727. },
  2728. "Type": "BTInputSlot"
  2729. },
  2730. "conditionB": {
  2731. "ContainerValue": null,
  2732. "StringValue": {
  2733. "Type": "STRING",
  2734. "Value": "Yes"
  2735. },
  2736. "Type": "BTInputSlot"
  2737. },
  2738. "isIllegal": true,
  2739. "randomID": "Mb0CjdcC9cel"
  2740. },
  2741. "Type": "BTBoolSlot"
  2742. },
  2743. "isIllegal": true,
  2744. "randomID": "gskOp5LKO5rG",
  2745. "sectionA": {
  2746. "ContainerValue": {
  2747. "Type": "BTPlaySceneTimeLineAction",
  2748. "baseSelect": {
  2749. "DisplayName": "动画_未获得到已获得",
  2750. "Type": "Action",
  2751. "Value": "2"
  2752. },
  2753. "isIllegal": true,
  2754. "randomID": "tTcvLUtt9C0n",
  2755. "redSelect": {
  2756. "DisplayName": "用户_目标弹板(程序调用)",
  2757. "Type": "OBJ",
  2758. "Value": "kYADGMJ3YJtL"
  2759. },
  2760. "stepSlot": {
  2761. "ContainerValue": null,
  2762. "Type": "BTStepSlot"
  2763. }
  2764. },
  2765. "Type": "BTSectionSlot"
  2766. },
  2767. "sectionB": {
  2768. "ContainerValue": {
  2769. "Type": "BTPlaySceneTimeLineAction",
  2770. "baseSelect": {
  2771. "DisplayName": "动画_未获得到已获得",
  2772. "Type": "Action",
  2773. "Value": "2"
  2774. },
  2775. "isIllegal": true,
  2776. "randomID": "8st0S6QF0yuN",
  2777. "redSelect": {
  2778. "DisplayName": "其他用户_目标弹板",
  2779. "Type": "OBJ",
  2780. "Value": "OGW51Z8Im1qf"
  2781. },
  2782. "stepSlot": {
  2783. "ContainerValue": null,
  2784. "Type": "BTStepSlot"
  2785. }
  2786. },
  2787. "Type": "BTSectionSlot"
  2788. },
  2789. "stepSlot": {
  2790. "ContainerValue": null,
  2791. "Type": "BTStepSlot"
  2792. }
  2793. },
  2794. "Type": "BTStepSlot"
  2795. },
  2796. "x": 459,
  2797. "y": 7
  2798. },
  2799. "Tree4": {
  2800. "ExportTree": true,
  2801. "ImageIndex": 6,
  2802. "Name": {
  2803. "Type": "STRING",
  2804. "Value": "开始前进",
  2805. "displayName": ""
  2806. },
  2807. "Type": "BTCustomFuncHeadAction",
  2808. "VarJson": {
  2809. "boolJson": {
  2810. },
  2811. "numberJson": {
  2812. }
  2813. },
  2814. "isIllegal": false,
  2815. "randomID": "JnqF4l3QqwAl",
  2816. "stepSlot": {
  2817. "ContainerValue": {
  2818. "Type": "BTIFElseControlAction",
  2819. "conditionA": {
  2820. "ContainerValue": {
  2821. "Type": "BTStringEqualOperatorAction",
  2822. "conditionA": {
  2823. "ContainerValue": {
  2824. "Type": "BTCoderVariableAction",
  2825. "VarScope": "Scene",
  2826. "isIllegal": true,
  2827. "randomID": "LuDVFRRpctF2",
  2828. "titleLabel": {
  2829. "Type": "STRING",
  2830. "Value": "P-是否是当前玩家",
  2831. "displayName": ""
  2832. }
  2833. },
  2834. "StringValue": {
  2835. "Type": "STRING",
  2836. "Value": "Red"
  2837. },
  2838. "Type": "BTInputSlot"
  2839. },
  2840. "conditionB": {
  2841. "ContainerValue": null,
  2842. "StringValue": {
  2843. "Type": "STRING",
  2844. "Value": "Yes"
  2845. },
  2846. "Type": "BTInputSlot"
  2847. },
  2848. "isIllegal": true,
  2849. "randomID": "fUhz25OWT7fC"
  2850. },
  2851. "Type": "BTBoolSlot"
  2852. },
  2853. "isIllegal": true,
  2854. "randomID": "n96FXa8ZayV",
  2855. "sectionA": {
  2856. "ContainerValue": {
  2857. "Type": "BTIFElseControlAction",
  2858. "conditionA": {
  2859. "ContainerValue": {
  2860. "Type": "BTStringEqualOperatorAction",
  2861. "conditionA": {
  2862. "ContainerValue": {
  2863. "Type": "BTCoderVariableAction",
  2864. "VarScope": "Scene",
  2865. "isIllegal": true,
  2866. "randomID": "KcRvPH84Cizk",
  2867. "titleLabel": {
  2868. "Type": "STRING",
  2869. "Value": "P-当前阶段",
  2870. "displayName": ""
  2871. }
  2872. },
  2873. "StringValue": {
  2874. "Type": "STRING",
  2875. "Value": "Red"
  2876. },
  2877. "Type": "BTInputSlot"
  2878. },
  2879. "conditionB": {
  2880. "ContainerValue": null,
  2881. "StringValue": {
  2882. "Type": "STRING",
  2883. "Value": "1"
  2884. },
  2885. "Type": "BTInputSlot"
  2886. },
  2887. "isIllegal": true,
  2888. "randomID": "As4lXvyPP3lN"
  2889. },
  2890. "Type": "BTBoolSlot"
  2891. },
  2892. "isIllegal": true,
  2893. "randomID": "Hd93gBM2Mnl",
  2894. "sectionA": {
  2895. "ContainerValue": {
  2896. "Type": "BTPlaySceneTimeLineAction",
  2897. "baseSelect": {
  2898. "DisplayName": "飞行状态_一级火箭",
  2899. "Type": "Action",
  2900. "Value": "5"
  2901. },
  2902. "isIllegal": true,
  2903. "randomID": "kml7UHhCIq4D",
  2904. "redSelect": {
  2905. "DisplayName": "用户_火箭节点(程序调用)",
  2906. "Type": "OBJ",
  2907. "Value": "Qz8nNS5Klk0S"
  2908. },
  2909. "stepSlot": {
  2910. "ContainerValue": null,
  2911. "Type": "BTStepSlot"
  2912. }
  2913. },
  2914. "Type": "BTSectionSlot"
  2915. },
  2916. "sectionB": {
  2917. "ContainerValue": {
  2918. "Type": "BTIFElseControlAction",
  2919. "conditionA": {
  2920. "ContainerValue": {
  2921. "Type": "BTStringEqualOperatorAction",
  2922. "conditionA": {
  2923. "ContainerValue": {
  2924. "Type": "BTCoderVariableAction",
  2925. "VarScope": "Scene",
  2926. "isIllegal": true,
  2927. "randomID": "mxlQumdk0hLq",
  2928. "titleLabel": {
  2929. "Type": "STRING",
  2930. "Value": "P-当前阶段",
  2931. "displayName": ""
  2932. }
  2933. },
  2934. "StringValue": {
  2935. "Type": "STRING",
  2936. "Value": "Red"
  2937. },
  2938. "Type": "BTInputSlot"
  2939. },
  2940. "conditionB": {
  2941. "ContainerValue": null,
  2942. "StringValue": {
  2943. "Type": "STRING",
  2944. "Value": "2"
  2945. },
  2946. "Type": "BTInputSlot"
  2947. },
  2948. "isIllegal": true,
  2949. "randomID": "OphbLPO4XprL"
  2950. },
  2951. "Type": "BTBoolSlot"
  2952. },
  2953. "isIllegal": true,
  2954. "randomID": "qcyW6PEZITiP",
  2955. "sectionA": {
  2956. "ContainerValue": {
  2957. "Type": "BTPlaySceneTimeLineAction",
  2958. "baseSelect": {
  2959. "DisplayName": "飞行状态_二级火箭",
  2960. "Type": "Action",
  2961. "Value": "6"
  2962. },
  2963. "isIllegal": true,
  2964. "randomID": "t6V1uQbAXE86",
  2965. "redSelect": {
  2966. "DisplayName": "用户_火箭节点(程序调用)",
  2967. "Type": "OBJ",
  2968. "Value": "Qz8nNS5Klk0S"
  2969. },
  2970. "stepSlot": {
  2971. "ContainerValue": null,
  2972. "Type": "BTStepSlot"
  2973. }
  2974. },
  2975. "Type": "BTSectionSlot"
  2976. },
  2977. "sectionB": {
  2978. "ContainerValue": {
  2979. "Type": "BTPlaySceneTimeLineAction",
  2980. "baseSelect": {
  2981. "DisplayName": "飞行状态_三级火箭",
  2982. "Type": "Action",
  2983. "Value": "7"
  2984. },
  2985. "isIllegal": true,
  2986. "randomID": "IdWamFslLnta",
  2987. "redSelect": {
  2988. "DisplayName": "用户_火箭节点(程序调用)",
  2989. "Type": "OBJ",
  2990. "Value": "Qz8nNS5Klk0S"
  2991. },
  2992. "stepSlot": {
  2993. "ContainerValue": null,
  2994. "Type": "BTStepSlot"
  2995. }
  2996. },
  2997. "Type": "BTSectionSlot"
  2998. },
  2999. "stepSlot": {
  3000. "ContainerValue": null,
  3001. "Type": "BTStepSlot"
  3002. }
  3003. },
  3004. "Type": "BTSectionSlot"
  3005. },
  3006. "stepSlot": {
  3007. "ContainerValue": null,
  3008. "Type": "BTStepSlot"
  3009. }
  3010. },
  3011. "Type": "BTSectionSlot"
  3012. },
  3013. "sectionB": {
  3014. "ContainerValue": {
  3015. "Type": "BTIFElseControlAction",
  3016. "conditionA": {
  3017. "ContainerValue": {
  3018. "Type": "BTStringEqualOperatorAction",
  3019. "conditionA": {
  3020. "ContainerValue": {
  3021. "Type": "BTCoderVariableAction",
  3022. "VarScope": "Scene",
  3023. "isIllegal": true,
  3024. "randomID": "OhKxt7GZpoBI",
  3025. "titleLabel": {
  3026. "Type": "STRING",
  3027. "Value": "P-当前阶段",
  3028. "displayName": ""
  3029. }
  3030. },
  3031. "StringValue": {
  3032. "Type": "STRING",
  3033. "Value": "Red"
  3034. },
  3035. "Type": "BTInputSlot"
  3036. },
  3037. "conditionB": {
  3038. "ContainerValue": null,
  3039. "StringValue": {
  3040. "Type": "STRING",
  3041. "Value": "1"
  3042. },
  3043. "Type": "BTInputSlot"
  3044. },
  3045. "isIllegal": true,
  3046. "randomID": "DMlWomztNXCc"
  3047. },
  3048. "Type": "BTBoolSlot"
  3049. },
  3050. "isIllegal": true,
  3051. "randomID": "HZMYfcnqgc7",
  3052. "sectionA": {
  3053. "ContainerValue": {
  3054. "Type": "BTPlaySceneTimeLineAction",
  3055. "baseSelect": {
  3056. "DisplayName": "飞行状态_一级火箭",
  3057. "Type": "Action",
  3058. "Value": "5"
  3059. },
  3060. "isIllegal": true,
  3061. "randomID": "gXRMfeTY9hYd",
  3062. "redSelect": {
  3063. "DisplayName": "太空任务活动_其他_火箭节点",
  3064. "Type": "OBJ",
  3065. "Value": "9TSiP1mOXIWh"
  3066. },
  3067. "stepSlot": {
  3068. "ContainerValue": null,
  3069. "Type": "BTStepSlot"
  3070. }
  3071. },
  3072. "Type": "BTSectionSlot"
  3073. },
  3074. "sectionB": {
  3075. "ContainerValue": {
  3076. "Type": "BTIFElseControlAction",
  3077. "conditionA": {
  3078. "ContainerValue": {
  3079. "Type": "BTStringEqualOperatorAction",
  3080. "conditionA": {
  3081. "ContainerValue": {
  3082. "Type": "BTCoderVariableAction",
  3083. "VarScope": "Scene",
  3084. "isIllegal": true,
  3085. "randomID": "ePGgJTnvBLsz",
  3086. "titleLabel": {
  3087. "Type": "STRING",
  3088. "Value": "P-当前阶段",
  3089. "displayName": ""
  3090. }
  3091. },
  3092. "StringValue": {
  3093. "Type": "STRING",
  3094. "Value": "Red"
  3095. },
  3096. "Type": "BTInputSlot"
  3097. },
  3098. "conditionB": {
  3099. "ContainerValue": null,
  3100. "StringValue": {
  3101. "Type": "STRING",
  3102. "Value": "2"
  3103. },
  3104. "Type": "BTInputSlot"
  3105. },
  3106. "isIllegal": true,
  3107. "randomID": "MqUV4ICOUrMA"
  3108. },
  3109. "Type": "BTBoolSlot"
  3110. },
  3111. "isIllegal": true,
  3112. "randomID": "s5PJFLOJphK0",
  3113. "sectionA": {
  3114. "ContainerValue": {
  3115. "Type": "BTPlaySceneTimeLineAction",
  3116. "baseSelect": {
  3117. "DisplayName": "飞行状态_二级火箭",
  3118. "Type": "Action",
  3119. "Value": "6"
  3120. },
  3121. "isIllegal": true,
  3122. "randomID": "NxvH63DezI4C",
  3123. "redSelect": {
  3124. "DisplayName": "太空任务活动_其他_火箭节点",
  3125. "Type": "OBJ",
  3126. "Value": "9TSiP1mOXIWh"
  3127. },
  3128. "stepSlot": {
  3129. "ContainerValue": null,
  3130. "Type": "BTStepSlot"
  3131. }
  3132. },
  3133. "Type": "BTSectionSlot"
  3134. },
  3135. "sectionB": {
  3136. "ContainerValue": {
  3137. "Type": "BTPlaySceneTimeLineAction",
  3138. "baseSelect": {
  3139. "DisplayName": "飞行状态_三级火箭",
  3140. "Type": "Action",
  3141. "Value": "7"
  3142. },
  3143. "isIllegal": true,
  3144. "randomID": "QyZpEZnRl8GS",
  3145. "redSelect": {
  3146. "DisplayName": "太空任务活动_其他_火箭节点",
  3147. "Type": "OBJ",
  3148. "Value": "9TSiP1mOXIWh"
  3149. },
  3150. "stepSlot": {
  3151. "ContainerValue": null,
  3152. "Type": "BTStepSlot"
  3153. }
  3154. },
  3155. "Type": "BTSectionSlot"
  3156. },
  3157. "stepSlot": {
  3158. "ContainerValue": null,
  3159. "Type": "BTStepSlot"
  3160. }
  3161. },
  3162. "Type": "BTSectionSlot"
  3163. },
  3164. "stepSlot": {
  3165. "ContainerValue": null,
  3166. "Type": "BTStepSlot"
  3167. }
  3168. },
  3169. "Type": "BTSectionSlot"
  3170. },
  3171. "stepSlot": {
  3172. "ContainerValue": null,
  3173. "Type": "BTStepSlot"
  3174. }
  3175. },
  3176. "Type": "BTStepSlot"
  3177. },
  3178. "x": 593,
  3179. "y": 375
  3180. },
  3181. "Tree5": {
  3182. "ExportTree": true,
  3183. "ImageIndex": 8,
  3184. "Name": {
  3185. "Type": "STRING",
  3186. "Value": "开始后退",
  3187. "displayName": ""
  3188. },
  3189. "Type": "BTCustomFuncHeadAction",
  3190. "VarJson": {
  3191. "boolJson": {
  3192. },
  3193. "numberJson": {
  3194. }
  3195. },
  3196. "isIllegal": false,
  3197. "randomID": "jQg7frUQ6DXX",
  3198. "stepSlot": {
  3199. "ContainerValue": {
  3200. "Name": {
  3201. "Type": "STRING",
  3202. "Value": "开始前进",
  3203. "displayName": ""
  3204. },
  3205. "Type": "BTCustomFuncBodyAction",
  3206. "funcHeadID": "JnqF4l3QqwAl",
  3207. "isIllegal": true,
  3208. "paramArr": [
  3209. ],
  3210. "randomID": "qniyGtN0aqfW",
  3211. "stepSlot": {
  3212. "ContainerValue": null,
  3213. "Type": "BTStepSlot"
  3214. }
  3215. },
  3216. "Type": "BTStepSlot"
  3217. },
  3218. "x": 1332.3437711293802,
  3219. "y": -91.68749755527831
  3220. },
  3221. "Tree6": {
  3222. "ExportTree": true,
  3223. "ImageIndex": 7,
  3224. "Name": {
  3225. "Type": "STRING",
  3226. "Value": "停止前进",
  3227. "displayName": ""
  3228. },
  3229. "Type": "BTCustomFuncHeadAction",
  3230. "VarJson": {
  3231. "boolJson": {
  3232. },
  3233. "numberJson": {
  3234. }
  3235. },
  3236. "isIllegal": false,
  3237. "randomID": "he1OAKlI068m",
  3238. "stepSlot": {
  3239. "ContainerValue": {
  3240. "Type": "BTIFElseControlAction",
  3241. "conditionA": {
  3242. "ContainerValue": {
  3243. "Type": "BTStringEqualOperatorAction",
  3244. "conditionA": {
  3245. "ContainerValue": {
  3246. "Type": "BTCoderVariableAction",
  3247. "VarScope": "Scene",
  3248. "isIllegal": true,
  3249. "randomID": "iFdhXlgWN6PI",
  3250. "titleLabel": {
  3251. "Type": "STRING",
  3252. "Value": "P-是否是当前玩家",
  3253. "displayName": ""
  3254. }
  3255. },
  3256. "StringValue": {
  3257. "Type": "STRING",
  3258. "Value": "Red"
  3259. },
  3260. "Type": "BTInputSlot"
  3261. },
  3262. "conditionB": {
  3263. "ContainerValue": null,
  3264. "StringValue": {
  3265. "Type": "STRING",
  3266. "Value": "Yes"
  3267. },
  3268. "Type": "BTInputSlot"
  3269. },
  3270. "isIllegal": true,
  3271. "randomID": "x7U4yNewOx16"
  3272. },
  3273. "Type": "BTBoolSlot"
  3274. },
  3275. "isIllegal": true,
  3276. "randomID": "KIupDbx7IO2n",
  3277. "sectionA": {
  3278. "ContainerValue": {
  3279. "Type": "BTIFElseControlAction",
  3280. "conditionA": {
  3281. "ContainerValue": {
  3282. "Type": "BTStringEqualOperatorAction",
  3283. "conditionA": {
  3284. "ContainerValue": {
  3285. "Type": "BTCoderVariableAction",
  3286. "VarScope": "Scene",
  3287. "isIllegal": true,
  3288. "randomID": "4fQBL22gF9xB",
  3289. "titleLabel": {
  3290. "Type": "STRING",
  3291. "Value": "P-当前阶段",
  3292. "displayName": ""
  3293. }
  3294. },
  3295. "StringValue": {
  3296. "Type": "STRING",
  3297. "Value": "Red"
  3298. },
  3299. "Type": "BTInputSlot"
  3300. },
  3301. "conditionB": {
  3302. "ContainerValue": null,
  3303. "StringValue": {
  3304. "Type": "STRING",
  3305. "Value": "1"
  3306. },
  3307. "Type": "BTInputSlot"
  3308. },
  3309. "isIllegal": true,
  3310. "randomID": "Gv52DBErnDw0"
  3311. },
  3312. "Type": "BTBoolSlot"
  3313. },
  3314. "isIllegal": true,
  3315. "randomID": "zWTnowccbEe",
  3316. "sectionA": {
  3317. "ContainerValue": {
  3318. "Type": "BTPlaySceneTimeLineAction",
  3319. "baseSelect": {
  3320. "DisplayName": "正常状态_一级火箭",
  3321. "Type": "Action",
  3322. "Value": "0"
  3323. },
  3324. "isIllegal": true,
  3325. "randomID": "SJhEzS9rv2Z",
  3326. "redSelect": {
  3327. "DisplayName": "用户_火箭节点(程序调用)",
  3328. "Type": "OBJ",
  3329. "Value": "Qz8nNS5Klk0S"
  3330. },
  3331. "stepSlot": {
  3332. "ContainerValue": null,
  3333. "Type": "BTStepSlot"
  3334. }
  3335. },
  3336. "Type": "BTSectionSlot"
  3337. },
  3338. "sectionB": {
  3339. "ContainerValue": {
  3340. "Type": "BTIFElseControlAction",
  3341. "conditionA": {
  3342. "ContainerValue": {
  3343. "Type": "BTStringEqualOperatorAction",
  3344. "conditionA": {
  3345. "ContainerValue": {
  3346. "Type": "BTCoderVariableAction",
  3347. "VarScope": "Scene",
  3348. "isIllegal": true,
  3349. "randomID": "FnjtPQDMmmUx",
  3350. "titleLabel": {
  3351. "Type": "STRING",
  3352. "Value": "P-当前阶段",
  3353. "displayName": ""
  3354. }
  3355. },
  3356. "StringValue": {
  3357. "Type": "STRING",
  3358. "Value": "Red"
  3359. },
  3360. "Type": "BTInputSlot"
  3361. },
  3362. "conditionB": {
  3363. "ContainerValue": null,
  3364. "StringValue": {
  3365. "Type": "STRING",
  3366. "Value": "2"
  3367. },
  3368. "Type": "BTInputSlot"
  3369. },
  3370. "isIllegal": true,
  3371. "randomID": "LscoVctdVBkq"
  3372. },
  3373. "Type": "BTBoolSlot"
  3374. },
  3375. "isIllegal": true,
  3376. "randomID": "s0I32AuscmO3",
  3377. "sectionA": {
  3378. "ContainerValue": {
  3379. "Type": "BTPlaySceneTimeLineAction",
  3380. "baseSelect": {
  3381. "DisplayName": "正常状态_二级火箭",
  3382. "Type": "Action",
  3383. "Value": "3"
  3384. },
  3385. "isIllegal": true,
  3386. "randomID": "E3TpMYqR65r",
  3387. "redSelect": {
  3388. "DisplayName": "用户_火箭节点(程序调用)",
  3389. "Type": "OBJ",
  3390. "Value": "Qz8nNS5Klk0S"
  3391. },
  3392. "stepSlot": {
  3393. "ContainerValue": null,
  3394. "Type": "BTStepSlot"
  3395. }
  3396. },
  3397. "Type": "BTSectionSlot"
  3398. },
  3399. "sectionB": {
  3400. "ContainerValue": {
  3401. "Type": "BTPlaySceneTimeLineAction",
  3402. "baseSelect": {
  3403. "DisplayName": "正常状态_三级火箭",
  3404. "Type": "Action",
  3405. "Value": "4"
  3406. },
  3407. "isIllegal": true,
  3408. "randomID": "Vt6zSPIv3Kx8",
  3409. "redSelect": {
  3410. "DisplayName": "用户_火箭节点(程序调用)",
  3411. "Type": "OBJ",
  3412. "Value": "Qz8nNS5Klk0S"
  3413. },
  3414. "stepSlot": {
  3415. "ContainerValue": null,
  3416. "Type": "BTStepSlot"
  3417. }
  3418. },
  3419. "Type": "BTSectionSlot"
  3420. },
  3421. "stepSlot": {
  3422. "ContainerValue": null,
  3423. "Type": "BTStepSlot"
  3424. }
  3425. },
  3426. "Type": "BTSectionSlot"
  3427. },
  3428. "stepSlot": {
  3429. "ContainerValue": null,
  3430. "Type": "BTStepSlot"
  3431. }
  3432. },
  3433. "Type": "BTSectionSlot"
  3434. },
  3435. "sectionB": {
  3436. "ContainerValue": {
  3437. "Type": "BTIFElseControlAction",
  3438. "conditionA": {
  3439. "ContainerValue": {
  3440. "Type": "BTStringEqualOperatorAction",
  3441. "conditionA": {
  3442. "ContainerValue": {
  3443. "Type": "BTCoderVariableAction",
  3444. "VarScope": "Scene",
  3445. "isIllegal": true,
  3446. "randomID": "MKuVxfc9GhBD",
  3447. "titleLabel": {
  3448. "Type": "STRING",
  3449. "Value": "P-当前阶段",
  3450. "displayName": ""
  3451. }
  3452. },
  3453. "StringValue": {
  3454. "Type": "STRING",
  3455. "Value": "Red"
  3456. },
  3457. "Type": "BTInputSlot"
  3458. },
  3459. "conditionB": {
  3460. "ContainerValue": null,
  3461. "StringValue": {
  3462. "Type": "STRING",
  3463. "Value": "1"
  3464. },
  3465. "Type": "BTInputSlot"
  3466. },
  3467. "isIllegal": true,
  3468. "randomID": "6qR4KFCDmZdL"
  3469. },
  3470. "Type": "BTBoolSlot"
  3471. },
  3472. "isIllegal": true,
  3473. "randomID": "0bKIkeAf7fa",
  3474. "sectionA": {
  3475. "ContainerValue": {
  3476. "Type": "BTPlaySceneTimeLineAction",
  3477. "baseSelect": {
  3478. "DisplayName": "正常状态_一级火箭",
  3479. "Type": "Action",
  3480. "Value": "0"
  3481. },
  3482. "isIllegal": true,
  3483. "randomID": "jYo3YIWXddRz",
  3484. "redSelect": {
  3485. "DisplayName": "太空任务活动_其他_火箭节点",
  3486. "Type": "OBJ",
  3487. "Value": "9TSiP1mOXIWh"
  3488. },
  3489. "stepSlot": {
  3490. "ContainerValue": null,
  3491. "Type": "BTStepSlot"
  3492. }
  3493. },
  3494. "Type": "BTSectionSlot"
  3495. },
  3496. "sectionB": {
  3497. "ContainerValue": {
  3498. "Type": "BTIFElseControlAction",
  3499. "conditionA": {
  3500. "ContainerValue": {
  3501. "Type": "BTStringEqualOperatorAction",
  3502. "conditionA": {
  3503. "ContainerValue": {
  3504. "Type": "BTCoderVariableAction",
  3505. "VarScope": "Scene",
  3506. "isIllegal": true,
  3507. "randomID": "X95nvPMhbCJj",
  3508. "titleLabel": {
  3509. "Type": "STRING",
  3510. "Value": "P-当前阶段",
  3511. "displayName": ""
  3512. }
  3513. },
  3514. "StringValue": {
  3515. "Type": "STRING",
  3516. "Value": "Red"
  3517. },
  3518. "Type": "BTInputSlot"
  3519. },
  3520. "conditionB": {
  3521. "ContainerValue": null,
  3522. "StringValue": {
  3523. "Type": "STRING",
  3524. "Value": "2"
  3525. },
  3526. "Type": "BTInputSlot"
  3527. },
  3528. "isIllegal": true,
  3529. "randomID": "Hbm2yTLR0zXc"
  3530. },
  3531. "Type": "BTBoolSlot"
  3532. },
  3533. "isIllegal": true,
  3534. "randomID": "6gxUIfSL5P",
  3535. "sectionA": {
  3536. "ContainerValue": {
  3537. "Type": "BTPlaySceneTimeLineAction",
  3538. "baseSelect": {
  3539. "DisplayName": "正常状态_二级火箭",
  3540. "Type": "Action",
  3541. "Value": "3"
  3542. },
  3543. "isIllegal": true,
  3544. "randomID": "O1bRAneuW762",
  3545. "redSelect": {
  3546. "DisplayName": "太空任务活动_其他_火箭节点",
  3547. "Type": "OBJ",
  3548. "Value": "9TSiP1mOXIWh"
  3549. },
  3550. "stepSlot": {
  3551. "ContainerValue": null,
  3552. "Type": "BTStepSlot"
  3553. }
  3554. },
  3555. "Type": "BTSectionSlot"
  3556. },
  3557. "sectionB": {
  3558. "ContainerValue": {
  3559. "Type": "BTPlaySceneTimeLineAction",
  3560. "baseSelect": {
  3561. "DisplayName": "正常状态_三级火箭",
  3562. "Type": "Action",
  3563. "Value": "4"
  3564. },
  3565. "isIllegal": true,
  3566. "randomID": "c5WsAplTxbUP",
  3567. "redSelect": {
  3568. "DisplayName": "太空任务活动_其他_火箭节点",
  3569. "Type": "OBJ",
  3570. "Value": "9TSiP1mOXIWh"
  3571. },
  3572. "stepSlot": {
  3573. "ContainerValue": null,
  3574. "Type": "BTStepSlot"
  3575. }
  3576. },
  3577. "Type": "BTSectionSlot"
  3578. },
  3579. "stepSlot": {
  3580. "ContainerValue": null,
  3581. "Type": "BTStepSlot"
  3582. }
  3583. },
  3584. "Type": "BTSectionSlot"
  3585. },
  3586. "stepSlot": {
  3587. "ContainerValue": null,
  3588. "Type": "BTStepSlot"
  3589. }
  3590. },
  3591. "Type": "BTSectionSlot"
  3592. },
  3593. "stepSlot": {
  3594. "ContainerValue": null,
  3595. "Type": "BTStepSlot"
  3596. }
  3597. },
  3598. "Type": "BTStepSlot"
  3599. },
  3600. "x": 1297,
  3601. "y": 284
  3602. },
  3603. "Tree7": {
  3604. "ExportTree": true,
  3605. "ImageIndex": 10,
  3606. "Name": {
  3607. "Type": "STRING",
  3608. "Value": "停止后退",
  3609. "displayName": ""
  3610. },
  3611. "Type": "BTCustomFuncHeadAction",
  3612. "VarJson": {
  3613. "boolJson": {
  3614. },
  3615. "numberJson": {
  3616. }
  3617. },
  3618. "isIllegal": false,
  3619. "randomID": "P9Az2HFswbGP",
  3620. "stepSlot": {
  3621. "ContainerValue": {
  3622. "Name": {
  3623. "Type": "STRING",
  3624. "Value": "停止前进",
  3625. "displayName": ""
  3626. },
  3627. "Type": "BTCustomFuncBodyAction",
  3628. "funcHeadID": "he1OAKlI068m",
  3629. "isIllegal": true,
  3630. "paramArr": [
  3631. ],
  3632. "randomID": "wq6g5w2z9Il",
  3633. "stepSlot": {
  3634. "ContainerValue": null,
  3635. "Type": "BTStepSlot"
  3636. }
  3637. },
  3638. "Type": "BTStepSlot"
  3639. },
  3640. "x": 1610.8906490106597,
  3641. "y": -66.34374877763916
  3642. },
  3643. "Tree8": {
  3644. "ExportTree": false,
  3645. "ImageIndex": -1,
  3646. "Type": "BTTestFuncAction",
  3647. "VarJson": {
  3648. "boolJson": {
  3649. },
  3650. "numberJson": {
  3651. }
  3652. },
  3653. "VarScope": "Red",
  3654. "isIllegal": false,
  3655. "randomID": "V3DCLwGkG3E",
  3656. "stepSlot": {
  3657. "ContainerValue": {
  3658. "TitleInput": {
  3659. "ContainerValue": null,
  3660. "StringValue": {
  3661. "Type": "STRING",
  3662. "Value": "3"
  3663. },
  3664. "Type": "BTInputSlot"
  3665. },
  3666. "Type": "BTDataCoderVarSetAction",
  3667. "VarScope": "Scene",
  3668. "baseSelect": {
  3669. "DisplayName": "P-当前阶段",
  3670. "Type": "Action",
  3671. "Value": "P-当前阶段"
  3672. },
  3673. "isIllegal": true,
  3674. "randomID": "qwjaewcX9Ut",
  3675. "stepSlot": {
  3676. "ContainerValue": {
  3677. "TitleInput": {
  3678. "ContainerValue": null,
  3679. "StringValue": {
  3680. "Type": "STRING",
  3681. "Value": "0"
  3682. },
  3683. "Type": "BTInputSlot"
  3684. },
  3685. "Type": "BTDataCoderVarSetAction",
  3686. "VarScope": "Scene",
  3687. "baseSelect": {
  3688. "DisplayName": "P-玩家进度",
  3689. "Type": "Action",
  3690. "Value": "P-玩家进度"
  3691. },
  3692. "isIllegal": true,
  3693. "randomID": "pTsV54CwnX9m",
  3694. "stepSlot": {
  3695. "ContainerValue": {
  3696. "TitleInput": {
  3697. "ContainerValue": null,
  3698. "StringValue": {
  3699. "Type": "STRING",
  3700. "Value": "No"
  3701. },
  3702. "Type": "BTInputSlot"
  3703. },
  3704. "Type": "BTDataCoderVarSetAction",
  3705. "VarScope": "Scene",
  3706. "baseSelect": {
  3707. "DisplayName": "P-已获得奖励",
  3708. "Type": "Action",
  3709. "Value": "P-已获得奖励"
  3710. },
  3711. "isIllegal": true,
  3712. "randomID": "18zFmrxQv9q",
  3713. "stepSlot": {
  3714. "ContainerValue": {
  3715. "TitleInput": {
  3716. "ContainerValue": null,
  3717. "StringValue": {
  3718. "Type": "STRING",
  3719. "Value": "1"
  3720. },
  3721. "Type": "BTInputSlot"
  3722. },
  3723. "Type": "BTDataCoderVarSetAction",
  3724. "VarScope": "Scene",
  3725. "baseSelect": {
  3726. "DisplayName": "P-玩家排名",
  3727. "Type": "Action",
  3728. "Value": "P-玩家排名"
  3729. },
  3730. "isIllegal": true,
  3731. "randomID": "MQztCeJ1ocn",
  3732. "stepSlot": {
  3733. "ContainerValue": {
  3734. "TitleInput": {
  3735. "ContainerValue": null,
  3736. "StringValue": {
  3737. "Type": "STRING",
  3738. "Value": "No"
  3739. },
  3740. "Type": "BTInputSlot"
  3741. },
  3742. "Type": "BTDataCoderVarSetAction",
  3743. "VarScope": "Scene",
  3744. "baseSelect": {
  3745. "DisplayName": "P-是否是当前玩家",
  3746. "Type": "Action",
  3747. "Value": "P-是否是当前玩家"
  3748. },
  3749. "isIllegal": true,
  3750. "randomID": "BktbOiSWl52v",
  3751. "stepSlot": {
  3752. "ContainerValue": {
  3753. "Name": {
  3754. "Type": "STRING",
  3755. "Value": "刷新",
  3756. "displayName": ""
  3757. },
  3758. "Type": "BTCustomFuncBodyAction",
  3759. "funcHeadID": "64aB3P5hRULL",
  3760. "isIllegal": true,
  3761. "paramArr": [
  3762. ],
  3763. "randomID": "jMgYtbcTT4Fr",
  3764. "stepSlot": {
  3765. "ContainerValue": null,
  3766. "Type": "BTStepSlot"
  3767. }
  3768. },
  3769. "Type": "BTStepSlot"
  3770. }
  3771. },
  3772. "Type": "BTStepSlot"
  3773. }
  3774. },
  3775. "Type": "BTStepSlot"
  3776. }
  3777. },
  3778. "Type": "BTStepSlot"
  3779. }
  3780. },
  3781. "Type": "BTStepSlot"
  3782. }
  3783. },
  3784. "Type": "BTStepSlot"
  3785. },
  3786. "titleLabel": {
  3787. "Type": "STRING",
  3788. "Value": "t",
  3789. "displayName": ""
  3790. },
  3791. "x": -559,
  3792. "y": -56
  3793. }
  3794. }
  3795. }