lyGame_outside_boost.rebolt 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481
  1. {
  2. "CustomFunc": {
  3. "初始化": [
  4. [
  5. "Name",
  6. "初始化",
  7. "DXIhQowOwmZQ",
  8. "/Users/lal/GitStore/TileManor/Resources/Res_TileMatch/ccb/ly/lyGame_outside_boost.red"
  9. ]
  10. ],
  11. "播放in": [
  12. [
  13. "Name",
  14. "播放in",
  15. "by3IgLcuAa9B",
  16. "/Users/lal/GitStore/TileManor/Resources/Res_TileMatch/ccb/ly/lyGame_outside_boost.red"
  17. ]
  18. ],
  19. "播放out": [
  20. [
  21. "Name",
  22. "播放out",
  23. "lbP5cNcZ8CSa",
  24. "/Users/lal/GitStore/TileManor/Resources/Res_TileMatch/ccb/ly/lyGame_outside_boost.red"
  25. ]
  26. ],
  27. "更新UI": [
  28. [
  29. "Name",
  30. "更新UI",
  31. "VgWnizBXRtbl",
  32. "/Users/lal/GitStore/TileManor/Resources/Res_TileMatch/ccb/ly/lyGame_outside_boost.red"
  33. ]
  34. ],
  35. "点击Play按钮": [
  36. [
  37. "Name",
  38. "点击Play按钮",
  39. "v8KJZtk74fMa",
  40. "/Users/lal/GitStore/TileManor/Resources/Res_TileMatch/ccb/ly/lyGame_outside_boost.red"
  41. ]
  42. ],
  43. "退出": [
  44. [
  45. "Name",
  46. "退出",
  47. "UdEYG739eJmE",
  48. "/Users/lal/GitStore/TileManor/Resources/Res_TileMatch/ccb/ly/lyGame_outside_boost.red"
  49. ]
  50. ],
  51. "通知程序节点绑定": [
  52. [
  53. "Name",
  54. "通知程序节点绑定",
  55. "uhGGTVDQynOm",
  56. "/Users/lal/GitStore/TileManor/Resources/Res_TileMatch/ccb/ly/lyGame_outside_boost.red"
  57. ]
  58. ]
  59. },
  60. "CustomList": {
  61. },
  62. "CustomMessage": {
  63. "Hello Red": 1
  64. },
  65. "CustomTestFunc": {
  66. },
  67. "CustomVar": {
  68. "P-关卡难度": 0,
  69. "P-已经开始": 0,
  70. "P-当前进度": 0,
  71. "P-显示倒计时": 0
  72. },
  73. "DisPlayName": "lyGame_outside_boost",
  74. "RedFileList": {
  75. },
  76. "RedNoteInfo": {
  77. },
  78. "TreeList": {
  79. "Tree0": {
  80. "ExportTree": true,
  81. "ImageIndex": -1,
  82. "Type": "BTButtonClickFuncAction",
  83. "VarJson": {
  84. "boolJson": {
  85. },
  86. "numberJson": {
  87. }
  88. },
  89. "isIllegal": false,
  90. "mathSelector": {
  91. "DisplayName": "btnPlay",
  92. "Type": "OBJ",
  93. "Value": "44mKkyMl3elg"
  94. },
  95. "randomID": "9eMZf3gs0HJs",
  96. "stepSlot": {
  97. "ContainerValue": {
  98. "Type": "BTNotificationToCoderAction",
  99. "conditionA": {
  100. "ContainerValue": null,
  101. "StringValue": {
  102. "Type": "STRING",
  103. "Value": "点击"
  104. },
  105. "Type": "BTInputSlot"
  106. },
  107. "isIllegal": true,
  108. "randomID": "DL7oFJaTv3x5",
  109. "stepSlot": {
  110. "ContainerValue": {
  111. "Type": "BTNotificationToCoderAction",
  112. "conditionA": {
  113. "ContainerValue": null,
  114. "StringValue": {
  115. "Type": "STRING",
  116. "Value": "点击Play按钮"
  117. },
  118. "Type": "BTInputSlot"
  119. },
  120. "isIllegal": true,
  121. "randomID": "rNTGfHkUWXuO",
  122. "stepSlot": {
  123. "ContainerValue": null,
  124. "Type": "BTStepSlot"
  125. }
  126. },
  127. "Type": "BTStepSlot"
  128. }
  129. },
  130. "Type": "BTStepSlot"
  131. },
  132. "x": 132.93750041909513,
  133. "y": -603.9999992549419
  134. },
  135. "Tree1": {
  136. "ExportTree": true,
  137. "ImageIndex": 1,
  138. "Name": {
  139. "Type": "STRING",
  140. "Value": "通知程序节点绑定",
  141. "displayName": ""
  142. },
  143. "Type": "BTCustomFuncHeadAction",
  144. "VarJson": {
  145. "boolJson": {
  146. },
  147. "numberJson": {
  148. }
  149. },
  150. "isIllegal": false,
  151. "randomID": "uhGGTVDQynOm",
  152. "stepSlot": {
  153. "ContainerValue": {
  154. "Type": "BTNotificationNodeToCoderAction",
  155. "baseSelect": {
  156. "DisplayName": "prop1",
  157. "Type": "Action",
  158. "Value": "PlvvHyBG0QYh"
  159. },
  160. "conditionA": {
  161. "ContainerValue": null,
  162. "StringValue": {
  163. "Type": "STRING",
  164. "Value": "绑定prop1"
  165. },
  166. "Type": "BTInputSlot"
  167. },
  168. "isIllegal": true,
  169. "paramA": {
  170. "ContainerValue": null,
  171. "StringValue": {
  172. "Type": "STRING",
  173. "Value": ""
  174. },
  175. "Type": "BTInputSlot"
  176. },
  177. "randomID": "mWw0R84dnjrw",
  178. "stepSlot": {
  179. "ContainerValue": {
  180. "Type": "BTNotificationNodeToCoderAction",
  181. "baseSelect": {
  182. "DisplayName": "prop2",
  183. "Type": "Action",
  184. "Value": "3NlKEq7AMRQk"
  185. },
  186. "conditionA": {
  187. "ContainerValue": null,
  188. "StringValue": {
  189. "Type": "STRING",
  190. "Value": "绑定prop2"
  191. },
  192. "Type": "BTInputSlot"
  193. },
  194. "isIllegal": true,
  195. "paramA": {
  196. "ContainerValue": null,
  197. "StringValue": {
  198. "Type": "STRING",
  199. "Value": ""
  200. },
  201. "Type": "BTInputSlot"
  202. },
  203. "randomID": "xAQAo8PN0Xc3",
  204. "stepSlot": {
  205. "ContainerValue": {
  206. "Type": "BTNotificationNodeToCoderAction",
  207. "baseSelect": {
  208. "DisplayName": "prop3",
  209. "Type": "Action",
  210. "Value": "sHd1OhwAGgbZ"
  211. },
  212. "conditionA": {
  213. "ContainerValue": null,
  214. "StringValue": {
  215. "Type": "STRING",
  216. "Value": "绑定prop3"
  217. },
  218. "Type": "BTInputSlot"
  219. },
  220. "isIllegal": true,
  221. "paramA": {
  222. "ContainerValue": null,
  223. "StringValue": {
  224. "Type": "STRING",
  225. "Value": ""
  226. },
  227. "Type": "BTInputSlot"
  228. },
  229. "randomID": "WImDRgw12GCf",
  230. "stepSlot": {
  231. "ContainerValue": {
  232. "Type": "BTNotificationNodeToCoderAction",
  233. "baseSelect": {
  234. "DisplayName": "lbProgress",
  235. "Type": "Action",
  236. "Value": "qQZHsnBrI5Df"
  237. },
  238. "conditionA": {
  239. "ContainerValue": null,
  240. "StringValue": {
  241. "Type": "STRING",
  242. "Value": "绑定lbProgress"
  243. },
  244. "Type": "BTInputSlot"
  245. },
  246. "isIllegal": true,
  247. "paramA": {
  248. "ContainerValue": null,
  249. "StringValue": {
  250. "Type": "STRING",
  251. "Value": ""
  252. },
  253. "Type": "BTInputSlot"
  254. },
  255. "randomID": "yTeseJu9j8xf",
  256. "stepSlot": {
  257. "ContainerValue": {
  258. "Type": "BTNotificationNodeToCoderAction",
  259. "baseSelect": {
  260. "DisplayName": "slider1",
  261. "Type": "Action",
  262. "Value": "orGQbYkwGQU3"
  263. },
  264. "conditionA": {
  265. "ContainerValue": null,
  266. "StringValue": {
  267. "Type": "STRING",
  268. "Value": "绑定slider1"
  269. },
  270. "Type": "BTInputSlot"
  271. },
  272. "isIllegal": true,
  273. "paramA": {
  274. "ContainerValue": null,
  275. "StringValue": {
  276. "Type": "STRING",
  277. "Value": ""
  278. },
  279. "Type": "BTInputSlot"
  280. },
  281. "randomID": "EfZQFpSWcPkH",
  282. "stepSlot": {
  283. "ContainerValue": {
  284. "Type": "BTNotificationNodeToCoderAction",
  285. "baseSelect": {
  286. "DisplayName": "slider2",
  287. "Type": "Action",
  288. "Value": "q9XPOrsI31t4"
  289. },
  290. "conditionA": {
  291. "ContainerValue": null,
  292. "StringValue": {
  293. "Type": "STRING",
  294. "Value": "绑定slider2"
  295. },
  296. "Type": "BTInputSlot"
  297. },
  298. "isIllegal": true,
  299. "paramA": {
  300. "ContainerValue": null,
  301. "StringValue": {
  302. "Type": "STRING",
  303. "Value": ""
  304. },
  305. "Type": "BTInputSlot"
  306. },
  307. "randomID": "IFf6gdBg6FJL",
  308. "stepSlot": {
  309. "ContainerValue": {
  310. "Type": "BTNotificationNodeToCoderAction",
  311. "baseSelect": {
  312. "DisplayName": "slider3",
  313. "Type": "Action",
  314. "Value": "bjnNgSFnccVu"
  315. },
  316. "conditionA": {
  317. "ContainerValue": null,
  318. "StringValue": {
  319. "Type": "STRING",
  320. "Value": "绑定slider3"
  321. },
  322. "Type": "BTInputSlot"
  323. },
  324. "isIllegal": true,
  325. "paramA": {
  326. "ContainerValue": null,
  327. "StringValue": {
  328. "Type": "STRING",
  329. "Value": ""
  330. },
  331. "Type": "BTInputSlot"
  332. },
  333. "randomID": "ZfyDnHMJLKyK",
  334. "stepSlot": {
  335. "ContainerValue": {
  336. "Type": "BTNotificationNodeToCoderAction",
  337. "baseSelect": {
  338. "DisplayName": "lbLevel",
  339. "Type": "Action",
  340. "Value": "Sbd4qvZb3AtB"
  341. },
  342. "conditionA": {
  343. "ContainerValue": null,
  344. "StringValue": {
  345. "Type": "STRING",
  346. "Value": "绑定lbLevel"
  347. },
  348. "Type": "BTInputSlot"
  349. },
  350. "isIllegal": true,
  351. "paramA": {
  352. "ContainerValue": null,
  353. "StringValue": {
  354. "Type": "STRING",
  355. "Value": ""
  356. },
  357. "Type": "BTInputSlot"
  358. },
  359. "randomID": "54pUMEdF37US",
  360. "stepSlot": {
  361. "ContainerValue": {
  362. "Type": "BTNotificationNodeToCoderAction",
  363. "baseSelect": {
  364. "DisplayName": "倍数1",
  365. "Type": "Action",
  366. "Value": "lNGy2N5yt74j"
  367. },
  368. "conditionA": {
  369. "ContainerValue": null,
  370. "StringValue": {
  371. "Type": "STRING",
  372. "Value": "绑定倍数1"
  373. },
  374. "Type": "BTInputSlot"
  375. },
  376. "isIllegal": true,
  377. "paramA": {
  378. "ContainerValue": null,
  379. "StringValue": {
  380. "Type": "STRING",
  381. "Value": ""
  382. },
  383. "Type": "BTInputSlot"
  384. },
  385. "randomID": "FW0lXt7rHyDw",
  386. "stepSlot": {
  387. "ContainerValue": {
  388. "Type": "BTNotificationNodeToCoderAction",
  389. "baseSelect": {
  390. "DisplayName": "倍数2",
  391. "Type": "Action",
  392. "Value": "KtUiMdkKrd0L"
  393. },
  394. "conditionA": {
  395. "ContainerValue": null,
  396. "StringValue": {
  397. "Type": "STRING",
  398. "Value": "绑定倍数2"
  399. },
  400. "Type": "BTInputSlot"
  401. },
  402. "isIllegal": true,
  403. "paramA": {
  404. "ContainerValue": null,
  405. "StringValue": {
  406. "Type": "STRING",
  407. "Value": ""
  408. },
  409. "Type": "BTInputSlot"
  410. },
  411. "randomID": "TcM2SXgiCRTK",
  412. "stepSlot": {
  413. "ContainerValue": {
  414. "Type": "BTNotificationNodeToCoderAction",
  415. "baseSelect": {
  416. "DisplayName": "双倍倒计时",
  417. "Type": "Action",
  418. "Value": "vFGOsiTvJdAR"
  419. },
  420. "conditionA": {
  421. "ContainerValue": null,
  422. "StringValue": {
  423. "Type": "STRING",
  424. "Value": "绑定双倍倒计时"
  425. },
  426. "Type": "BTInputSlot"
  427. },
  428. "isIllegal": true,
  429. "paramA": {
  430. "ContainerValue": null,
  431. "StringValue": {
  432. "Type": "STRING",
  433. "Value": ""
  434. },
  435. "Type": "BTInputSlot"
  436. },
  437. "randomID": "bTK4HuauP645",
  438. "stepSlot": {
  439. "ContainerValue": {
  440. "Type": "BTNotificationNodeToCoderAction",
  441. "baseSelect": {
  442. "DisplayName": "lbTitle",
  443. "Type": "Action",
  444. "Value": "4ZiJMoKVP5FK"
  445. },
  446. "conditionA": {
  447. "ContainerValue": null,
  448. "StringValue": {
  449. "Type": "STRING",
  450. "Value": "绑定lbTitle"
  451. },
  452. "Type": "BTInputSlot"
  453. },
  454. "isIllegal": true,
  455. "paramA": {
  456. "ContainerValue": null,
  457. "StringValue": {
  458. "Type": "STRING",
  459. "Value": ""
  460. },
  461. "Type": "BTInputSlot"
  462. },
  463. "randomID": "7Wm16gZ7TTlI",
  464. "stepSlot": {
  465. "ContainerValue": {
  466. "Type": "BTNotificationNodeToCoderAction",
  467. "baseSelect": {
  468. "DisplayName": "lbTitle2",
  469. "Type": "Action",
  470. "Value": "mmcPdBFnDlBF"
  471. },
  472. "conditionA": {
  473. "ContainerValue": null,
  474. "StringValue": {
  475. "Type": "STRING",
  476. "Value": "绑定lbTitle2"
  477. },
  478. "Type": "BTInputSlot"
  479. },
  480. "isIllegal": true,
  481. "paramA": {
  482. "ContainerValue": null,
  483. "StringValue": {
  484. "Type": "STRING",
  485. "Value": ""
  486. },
  487. "Type": "BTInputSlot"
  488. },
  489. "randomID": "mmZe6uXrc6AE",
  490. "stepSlot": {
  491. "ContainerValue": {
  492. "Type": "BTNotificationNodeToCoderAction",
  493. "baseSelect": {
  494. "DisplayName": "lbTitle3",
  495. "Type": "Action",
  496. "Value": "z593DLYP9XhL"
  497. },
  498. "conditionA": {
  499. "ContainerValue": null,
  500. "StringValue": {
  501. "Type": "STRING",
  502. "Value": "绑定lbTitle3"
  503. },
  504. "Type": "BTInputSlot"
  505. },
  506. "isIllegal": true,
  507. "paramA": {
  508. "ContainerValue": null,
  509. "StringValue": {
  510. "Type": "STRING",
  511. "Value": ""
  512. },
  513. "Type": "BTInputSlot"
  514. },
  515. "randomID": "cFLtVgM1dr4V",
  516. "stepSlot": {
  517. "ContainerValue": null,
  518. "Type": "BTStepSlot"
  519. }
  520. },
  521. "Type": "BTStepSlot"
  522. }
  523. },
  524. "Type": "BTStepSlot"
  525. }
  526. },
  527. "Type": "BTStepSlot"
  528. }
  529. },
  530. "Type": "BTStepSlot"
  531. }
  532. },
  533. "Type": "BTStepSlot"
  534. }
  535. },
  536. "Type": "BTStepSlot"
  537. }
  538. },
  539. "Type": "BTStepSlot"
  540. }
  541. },
  542. "Type": "BTStepSlot"
  543. }
  544. },
  545. "Type": "BTStepSlot"
  546. }
  547. },
  548. "Type": "BTStepSlot"
  549. }
  550. },
  551. "Type": "BTStepSlot"
  552. }
  553. },
  554. "Type": "BTStepSlot"
  555. }
  556. },
  557. "Type": "BTStepSlot"
  558. }
  559. },
  560. "Type": "BTStepSlot"
  561. },
  562. "x": -598.1484279655855,
  563. "y": -776.5194934092011
  564. },
  565. "Tree10": {
  566. "ExportTree": true,
  567. "ImageIndex": 6,
  568. "Name": {
  569. "Type": "STRING",
  570. "Value": "播放in",
  571. "displayName": ""
  572. },
  573. "Type": "BTCustomFuncHeadAction",
  574. "VarJson": {
  575. "boolJson": {
  576. },
  577. "numberJson": {
  578. }
  579. },
  580. "isIllegal": false,
  581. "randomID": "by3IgLcuAa9B",
  582. "stepSlot": {
  583. "ContainerValue": {
  584. "Type": "BTIFElseControlAction",
  585. "conditionA": {
  586. "ContainerValue": {
  587. "Type": "BTEqualOperatorAction",
  588. "conditionA": {
  589. "ContainerValue": {
  590. "Type": "BTCoderVariableAction",
  591. "VarScope": "Scene",
  592. "isIllegal": true,
  593. "randomID": "1bqPORGvdj5n",
  594. "titleLabel": {
  595. "Type": "STRING",
  596. "Value": "P-关卡难度",
  597. "displayName": ""
  598. }
  599. },
  600. "StringValue": {
  601. "Type": "FLOAT",
  602. "Value": 0
  603. },
  604. "Type": "BTInputSlot"
  605. },
  606. "conditionB": {
  607. "ContainerValue": null,
  608. "StringValue": {
  609. "Type": "FLOAT",
  610. "Value": 0
  611. },
  612. "Type": "BTInputSlot"
  613. },
  614. "isIllegal": true,
  615. "randomID": "MQuzqgYNma3d"
  616. },
  617. "Type": "BTBoolSlot"
  618. },
  619. "isIllegal": true,
  620. "randomID": "3dUkknm3eORm",
  621. "sectionA": {
  622. "ContainerValue": {
  623. "Type": "BTPlayTimeLineAction",
  624. "baseSelect": {
  625. "DisplayName": "模式_normal_in",
  626. "Type": "Action",
  627. "Value": "4"
  628. },
  629. "isIllegal": true,
  630. "randomID": "rE8epxoVUINO",
  631. "stepSlot": {
  632. "ContainerValue": null,
  633. "Type": "BTStepSlot"
  634. }
  635. },
  636. "Type": "BTSectionSlot"
  637. },
  638. "sectionB": {
  639. "ContainerValue": {
  640. "Type": "BTIFElseControlAction",
  641. "conditionA": {
  642. "ContainerValue": {
  643. "Type": "BTEqualOperatorAction",
  644. "conditionA": {
  645. "ContainerValue": {
  646. "Type": "BTCoderVariableAction",
  647. "VarScope": "Scene",
  648. "isIllegal": true,
  649. "randomID": "7c8Hj68fPCqn",
  650. "titleLabel": {
  651. "Type": "STRING",
  652. "Value": "P-关卡难度",
  653. "displayName": ""
  654. }
  655. },
  656. "StringValue": {
  657. "Type": "FLOAT",
  658. "Value": 0
  659. },
  660. "Type": "BTInputSlot"
  661. },
  662. "conditionB": {
  663. "ContainerValue": null,
  664. "StringValue": {
  665. "Type": "FLOAT",
  666. "Value": 1
  667. },
  668. "Type": "BTInputSlot"
  669. },
  670. "isIllegal": true,
  671. "randomID": "BxUT1OPDtlMo"
  672. },
  673. "Type": "BTBoolSlot"
  674. },
  675. "isIllegal": true,
  676. "randomID": "gXTi5yuDXwf0",
  677. "sectionA": {
  678. "ContainerValue": {
  679. "Type": "BTPlayTimeLineAction",
  680. "baseSelect": {
  681. "DisplayName": "模式_hard_in",
  682. "Type": "Action",
  683. "Value": "6"
  684. },
  685. "isIllegal": true,
  686. "randomID": "4SWIUBa9Dp1X",
  687. "stepSlot": {
  688. "ContainerValue": null,
  689. "Type": "BTStepSlot"
  690. }
  691. },
  692. "Type": "BTSectionSlot"
  693. },
  694. "sectionB": {
  695. "ContainerValue": {
  696. "Type": "BTPlayTimeLineAction",
  697. "baseSelect": {
  698. "DisplayName": "模式_super hard_in",
  699. "Type": "Action",
  700. "Value": "3"
  701. },
  702. "isIllegal": true,
  703. "randomID": "Kfqey6SKU0FQ",
  704. "stepSlot": {
  705. "ContainerValue": null,
  706. "Type": "BTStepSlot"
  707. }
  708. },
  709. "Type": "BTSectionSlot"
  710. },
  711. "stepSlot": {
  712. "ContainerValue": null,
  713. "Type": "BTStepSlot"
  714. }
  715. },
  716. "Type": "BTSectionSlot"
  717. },
  718. "stepSlot": {
  719. "ContainerValue": {
  720. "Type": "BTIFElseControlAction",
  721. "conditionA": {
  722. "ContainerValue": {
  723. "Type": "BTEqualOperatorAction",
  724. "conditionA": {
  725. "ContainerValue": {
  726. "Type": "BTCoderVariableAction",
  727. "VarScope": "Scene",
  728. "isIllegal": true,
  729. "randomID": "oYMjR995eCuF",
  730. "titleLabel": {
  731. "Type": "STRING",
  732. "Value": "P-当前进度",
  733. "displayName": ""
  734. }
  735. },
  736. "StringValue": {
  737. "Type": "FLOAT",
  738. "Value": 0
  739. },
  740. "Type": "BTInputSlot"
  741. },
  742. "conditionB": {
  743. "ContainerValue": null,
  744. "StringValue": {
  745. "Type": "FLOAT",
  746. "Value": 0
  747. },
  748. "Type": "BTInputSlot"
  749. },
  750. "isIllegal": true,
  751. "randomID": "3b8ijjkvbDKu"
  752. },
  753. "Type": "BTBoolSlot"
  754. },
  755. "isIllegal": true,
  756. "randomID": "rfYTKk05jRaG",
  757. "sectionA": {
  758. "ContainerValue": {
  759. "Type": "BTNodeShowAction",
  760. "baseSelect": {
  761. "DisplayName": "宝箱0",
  762. "Type": "Action",
  763. "Value": "5svlaN3nq8A8"
  764. },
  765. "isIllegal": true,
  766. "randomID": "Pr0SMlHOpplP",
  767. "stepSlot": {
  768. "ContainerValue": {
  769. "Type": "BTNodeHiddenAction",
  770. "baseSelect": {
  771. "DisplayName": "宝箱1",
  772. "Type": "Action",
  773. "Value": "OVzfFj5hhN1V"
  774. },
  775. "isIllegal": true,
  776. "randomID": "LoJMLtUe70JL",
  777. "stepSlot": {
  778. "ContainerValue": {
  779. "Type": "BTNodeHiddenAction",
  780. "baseSelect": {
  781. "DisplayName": "宝箱2",
  782. "Type": "Action",
  783. "Value": "1oHsOUPu61r9"
  784. },
  785. "isIllegal": true,
  786. "randomID": "VEHpyjRqlg65",
  787. "stepSlot": {
  788. "ContainerValue": {
  789. "Type": "BTNodeHiddenAction",
  790. "baseSelect": {
  791. "DisplayName": "宝箱3",
  792. "Type": "Action",
  793. "Value": "gI2bhH7IBXwY"
  794. },
  795. "isIllegal": true,
  796. "randomID": "paV7bfGRxYU2",
  797. "stepSlot": {
  798. "ContainerValue": null,
  799. "Type": "BTStepSlot"
  800. }
  801. },
  802. "Type": "BTStepSlot"
  803. }
  804. },
  805. "Type": "BTStepSlot"
  806. }
  807. },
  808. "Type": "BTStepSlot"
  809. }
  810. },
  811. "Type": "BTSectionSlot"
  812. },
  813. "sectionB": {
  814. "ContainerValue": {
  815. "Type": "BTIFElseControlAction",
  816. "conditionA": {
  817. "ContainerValue": {
  818. "Type": "BTEqualOperatorAction",
  819. "conditionA": {
  820. "ContainerValue": {
  821. "Type": "BTCoderVariableAction",
  822. "VarScope": "Scene",
  823. "isIllegal": true,
  824. "randomID": "4PDzxPSrKpXb",
  825. "titleLabel": {
  826. "Type": "STRING",
  827. "Value": "P-当前进度",
  828. "displayName": ""
  829. }
  830. },
  831. "StringValue": {
  832. "Type": "FLOAT",
  833. "Value": 0
  834. },
  835. "Type": "BTInputSlot"
  836. },
  837. "conditionB": {
  838. "ContainerValue": null,
  839. "StringValue": {
  840. "Type": "FLOAT",
  841. "Value": 1
  842. },
  843. "Type": "BTInputSlot"
  844. },
  845. "isIllegal": true,
  846. "randomID": "JtOMk3CHf3Qu"
  847. },
  848. "Type": "BTBoolSlot"
  849. },
  850. "isIllegal": true,
  851. "randomID": "cwlgOAKXsS3G",
  852. "sectionA": {
  853. "ContainerValue": {
  854. "Type": "BTNodeShowAction",
  855. "baseSelect": {
  856. "DisplayName": "宝箱1",
  857. "Type": "Action",
  858. "Value": "OVzfFj5hhN1V"
  859. },
  860. "isIllegal": true,
  861. "randomID": "ctTz21RCDguD",
  862. "stepSlot": {
  863. "ContainerValue": {
  864. "Type": "BTNodeHiddenAction",
  865. "baseSelect": {
  866. "DisplayName": "宝箱0",
  867. "Type": "Action",
  868. "Value": "5svlaN3nq8A8"
  869. },
  870. "isIllegal": true,
  871. "randomID": "xj4OIeZG5Dm7",
  872. "stepSlot": {
  873. "ContainerValue": {
  874. "Type": "BTNodeHiddenAction",
  875. "baseSelect": {
  876. "DisplayName": "宝箱2",
  877. "Type": "Action",
  878. "Value": "1oHsOUPu61r9"
  879. },
  880. "isIllegal": true,
  881. "randomID": "XVPQfXL5N7Gr",
  882. "stepSlot": {
  883. "ContainerValue": {
  884. "Type": "BTNodeHiddenAction",
  885. "baseSelect": {
  886. "DisplayName": "宝箱3",
  887. "Type": "Action",
  888. "Value": "gI2bhH7IBXwY"
  889. },
  890. "isIllegal": true,
  891. "randomID": "FfLEMQFbjqH8",
  892. "stepSlot": {
  893. "ContainerValue": null,
  894. "Type": "BTStepSlot"
  895. }
  896. },
  897. "Type": "BTStepSlot"
  898. }
  899. },
  900. "Type": "BTStepSlot"
  901. }
  902. },
  903. "Type": "BTStepSlot"
  904. }
  905. },
  906. "Type": "BTSectionSlot"
  907. },
  908. "sectionB": {
  909. "ContainerValue": {
  910. "Type": "BTIFElseControlAction",
  911. "conditionA": {
  912. "ContainerValue": {
  913. "Type": "BTEqualOperatorAction",
  914. "conditionA": {
  915. "ContainerValue": {
  916. "Type": "BTCoderVariableAction",
  917. "VarScope": "Scene",
  918. "isIllegal": true,
  919. "randomID": "67gvIjHM5qRE",
  920. "titleLabel": {
  921. "Type": "STRING",
  922. "Value": "P-当前进度",
  923. "displayName": ""
  924. }
  925. },
  926. "StringValue": {
  927. "Type": "FLOAT",
  928. "Value": 0
  929. },
  930. "Type": "BTInputSlot"
  931. },
  932. "conditionB": {
  933. "ContainerValue": null,
  934. "StringValue": {
  935. "Type": "FLOAT",
  936. "Value": 2
  937. },
  938. "Type": "BTInputSlot"
  939. },
  940. "isIllegal": true,
  941. "randomID": "5UplbfXiGQO9"
  942. },
  943. "Type": "BTBoolSlot"
  944. },
  945. "isIllegal": true,
  946. "randomID": "GPQiqOsQOXaG",
  947. "sectionA": {
  948. "ContainerValue": {
  949. "Type": "BTNodeShowAction",
  950. "baseSelect": {
  951. "DisplayName": "宝箱2",
  952. "Type": "Action",
  953. "Value": "1oHsOUPu61r9"
  954. },
  955. "isIllegal": true,
  956. "randomID": "6EGMvAQ6Im8G",
  957. "stepSlot": {
  958. "ContainerValue": {
  959. "Type": "BTNodeHiddenAction",
  960. "baseSelect": {
  961. "DisplayName": "宝箱1",
  962. "Type": "Action",
  963. "Value": "OVzfFj5hhN1V"
  964. },
  965. "isIllegal": true,
  966. "randomID": "Gnp9zLcH7dOx",
  967. "stepSlot": {
  968. "ContainerValue": {
  969. "Type": "BTNodeHiddenAction",
  970. "baseSelect": {
  971. "DisplayName": "宝箱0",
  972. "Type": "Action",
  973. "Value": "5svlaN3nq8A8"
  974. },
  975. "isIllegal": true,
  976. "randomID": "kFbuBMrm7qjY",
  977. "stepSlot": {
  978. "ContainerValue": {
  979. "Type": "BTNodeHiddenAction",
  980. "baseSelect": {
  981. "DisplayName": "宝箱3",
  982. "Type": "Action",
  983. "Value": "gI2bhH7IBXwY"
  984. },
  985. "isIllegal": true,
  986. "randomID": "SD3jU6RGU6w3",
  987. "stepSlot": {
  988. "ContainerValue": null,
  989. "Type": "BTStepSlot"
  990. }
  991. },
  992. "Type": "BTStepSlot"
  993. }
  994. },
  995. "Type": "BTStepSlot"
  996. }
  997. },
  998. "Type": "BTStepSlot"
  999. }
  1000. },
  1001. "Type": "BTSectionSlot"
  1002. },
  1003. "sectionB": {
  1004. "ContainerValue": {
  1005. "Type": "BTNodeShowAction",
  1006. "baseSelect": {
  1007. "DisplayName": "宝箱3",
  1008. "Type": "Action",
  1009. "Value": "gI2bhH7IBXwY"
  1010. },
  1011. "isIllegal": true,
  1012. "randomID": "ckePrJ2biu8a",
  1013. "stepSlot": {
  1014. "ContainerValue": {
  1015. "Type": "BTNodeHiddenAction",
  1016. "baseSelect": {
  1017. "DisplayName": "宝箱1",
  1018. "Type": "Action",
  1019. "Value": "OVzfFj5hhN1V"
  1020. },
  1021. "isIllegal": true,
  1022. "randomID": "x4F84r6WAAZZ",
  1023. "stepSlot": {
  1024. "ContainerValue": {
  1025. "Type": "BTNodeHiddenAction",
  1026. "baseSelect": {
  1027. "DisplayName": "宝箱2",
  1028. "Type": "Action",
  1029. "Value": "1oHsOUPu61r9"
  1030. },
  1031. "isIllegal": true,
  1032. "randomID": "qxYIsuqlNLP9",
  1033. "stepSlot": {
  1034. "ContainerValue": {
  1035. "Type": "BTNodeHiddenAction",
  1036. "baseSelect": {
  1037. "DisplayName": "宝箱0",
  1038. "Type": "Action",
  1039. "Value": "5svlaN3nq8A8"
  1040. },
  1041. "isIllegal": true,
  1042. "randomID": "OFQaajY1alrW",
  1043. "stepSlot": {
  1044. "ContainerValue": null,
  1045. "Type": "BTStepSlot"
  1046. }
  1047. },
  1048. "Type": "BTStepSlot"
  1049. }
  1050. },
  1051. "Type": "BTStepSlot"
  1052. }
  1053. },
  1054. "Type": "BTStepSlot"
  1055. }
  1056. },
  1057. "Type": "BTSectionSlot"
  1058. },
  1059. "stepSlot": {
  1060. "ContainerValue": null,
  1061. "Type": "BTStepSlot"
  1062. }
  1063. },
  1064. "Type": "BTSectionSlot"
  1065. },
  1066. "stepSlot": {
  1067. "ContainerValue": null,
  1068. "Type": "BTStepSlot"
  1069. }
  1070. },
  1071. "Type": "BTSectionSlot"
  1072. },
  1073. "stepSlot": {
  1074. "ContainerValue": null,
  1075. "Type": "BTStepSlot"
  1076. }
  1077. },
  1078. "Type": "BTStepSlot"
  1079. }
  1080. },
  1081. "Type": "BTStepSlot"
  1082. },
  1083. "x": -292.5,
  1084. "y": 168
  1085. },
  1086. "Tree11": {
  1087. "ExportTree": true,
  1088. "ImageIndex": 10,
  1089. "Name": {
  1090. "Type": "STRING",
  1091. "Value": "播放out",
  1092. "displayName": ""
  1093. },
  1094. "Type": "BTCustomFuncHeadAction",
  1095. "VarJson": {
  1096. "boolJson": {
  1097. },
  1098. "numberJson": {
  1099. }
  1100. },
  1101. "isIllegal": false,
  1102. "randomID": "lbP5cNcZ8CSa",
  1103. "stepSlot": {
  1104. "ContainerValue": {
  1105. "Type": "BTIFElseControlAction",
  1106. "conditionA": {
  1107. "ContainerValue": {
  1108. "Type": "BTEqualOperatorAction",
  1109. "conditionA": {
  1110. "ContainerValue": {
  1111. "Type": "BTCoderVariableAction",
  1112. "VarScope": "Scene",
  1113. "isIllegal": true,
  1114. "randomID": "1DJmU8giafj3",
  1115. "titleLabel": {
  1116. "Type": "STRING",
  1117. "Value": "P-关卡难度",
  1118. "displayName": ""
  1119. }
  1120. },
  1121. "StringValue": {
  1122. "Type": "FLOAT",
  1123. "Value": 0
  1124. },
  1125. "Type": "BTInputSlot"
  1126. },
  1127. "conditionB": {
  1128. "ContainerValue": null,
  1129. "StringValue": {
  1130. "Type": "FLOAT",
  1131. "Value": 0
  1132. },
  1133. "Type": "BTInputSlot"
  1134. },
  1135. "isIllegal": true,
  1136. "randomID": "K29DBJMSPNuO"
  1137. },
  1138. "Type": "BTBoolSlot"
  1139. },
  1140. "isIllegal": true,
  1141. "randomID": "v71l7kKy8YRp",
  1142. "sectionA": {
  1143. "ContainerValue": {
  1144. "Type": "BTPlayTimeLineWaitAction",
  1145. "baseSelect": {
  1146. "DisplayName": "模式_normal_out",
  1147. "Type": "Action",
  1148. "Value": "7"
  1149. },
  1150. "isIllegal": true,
  1151. "randomID": "DGfwLm3KB0Nj",
  1152. "stepSlot": {
  1153. "ContainerValue": null,
  1154. "Type": "BTStepSlot"
  1155. }
  1156. },
  1157. "Type": "BTSectionSlot"
  1158. },
  1159. "sectionB": {
  1160. "ContainerValue": {
  1161. "Type": "BTIFElseControlAction",
  1162. "conditionA": {
  1163. "ContainerValue": {
  1164. "Type": "BTEqualOperatorAction",
  1165. "conditionA": {
  1166. "ContainerValue": {
  1167. "Type": "BTCoderVariableAction",
  1168. "VarScope": "Scene",
  1169. "isIllegal": true,
  1170. "randomID": "6DoBkHwotd7q",
  1171. "titleLabel": {
  1172. "Type": "STRING",
  1173. "Value": "P-关卡难度",
  1174. "displayName": ""
  1175. }
  1176. },
  1177. "StringValue": {
  1178. "Type": "FLOAT",
  1179. "Value": 0
  1180. },
  1181. "Type": "BTInputSlot"
  1182. },
  1183. "conditionB": {
  1184. "ContainerValue": null,
  1185. "StringValue": {
  1186. "Type": "FLOAT",
  1187. "Value": 1
  1188. },
  1189. "Type": "BTInputSlot"
  1190. },
  1191. "isIllegal": true,
  1192. "randomID": "XOe2h0chqEjp"
  1193. },
  1194. "Type": "BTBoolSlot"
  1195. },
  1196. "isIllegal": true,
  1197. "randomID": "REFIofjiF8o0",
  1198. "sectionA": {
  1199. "ContainerValue": {
  1200. "Type": "BTPlayTimeLineWaitAction",
  1201. "baseSelect": {
  1202. "DisplayName": "模式_hard_out",
  1203. "Type": "Action",
  1204. "Value": "2"
  1205. },
  1206. "isIllegal": true,
  1207. "randomID": "uDQFD2p1YCnN",
  1208. "stepSlot": {
  1209. "ContainerValue": null,
  1210. "Type": "BTStepSlot"
  1211. }
  1212. },
  1213. "Type": "BTSectionSlot"
  1214. },
  1215. "sectionB": {
  1216. "ContainerValue": {
  1217. "Type": "BTPlayTimeLineWaitAction",
  1218. "baseSelect": {
  1219. "DisplayName": "模式_super hard_out",
  1220. "Type": "Action",
  1221. "Value": "5"
  1222. },
  1223. "isIllegal": true,
  1224. "randomID": "BVadan2uC8vD",
  1225. "stepSlot": {
  1226. "ContainerValue": null,
  1227. "Type": "BTStepSlot"
  1228. }
  1229. },
  1230. "Type": "BTSectionSlot"
  1231. },
  1232. "stepSlot": {
  1233. "ContainerValue": null,
  1234. "Type": "BTStepSlot"
  1235. }
  1236. },
  1237. "Type": "BTSectionSlot"
  1238. },
  1239. "stepSlot": {
  1240. "ContainerValue": {
  1241. "Type": "BTNotificationToCoderAction",
  1242. "conditionA": {
  1243. "ContainerValue": null,
  1244. "StringValue": {
  1245. "Type": "STRING",
  1246. "Value": "已经关闭"
  1247. },
  1248. "Type": "BTInputSlot"
  1249. },
  1250. "isIllegal": true,
  1251. "randomID": "jzSGJsQbDeqs",
  1252. "stepSlot": {
  1253. "ContainerValue": null,
  1254. "Type": "BTStepSlot"
  1255. }
  1256. },
  1257. "Type": "BTStepSlot"
  1258. }
  1259. },
  1260. "Type": "BTStepSlot"
  1261. },
  1262. "x": 64,
  1263. "y": 148
  1264. },
  1265. "Tree12": {
  1266. "ExportTree": true,
  1267. "ImageIndex": -1,
  1268. "Type": "BTButtonClickFuncAction",
  1269. "VarJson": {
  1270. "boolJson": {
  1271. },
  1272. "numberJson": {
  1273. }
  1274. },
  1275. "isIllegal": false,
  1276. "mathSelector": {
  1277. "DisplayName": "提示按钮",
  1278. "Type": "OBJ",
  1279. "Value": "k2J6Y6rUmWXt"
  1280. },
  1281. "randomID": "fW0NpDd36QCA",
  1282. "stepSlot": {
  1283. "ContainerValue": {
  1284. "Type": "BTNotificationToCoderAction",
  1285. "conditionA": {
  1286. "ContainerValue": null,
  1287. "StringValue": {
  1288. "Type": "STRING",
  1289. "Value": "点击"
  1290. },
  1291. "Type": "BTInputSlot"
  1292. },
  1293. "isIllegal": true,
  1294. "randomID": "8aEBBK40jQYk",
  1295. "stepSlot": {
  1296. "ContainerValue": {
  1297. "Type": "BTNotificationToCoderAction",
  1298. "conditionA": {
  1299. "ContainerValue": null,
  1300. "StringValue": {
  1301. "Type": "STRING",
  1302. "Value": "点击提示按钮"
  1303. },
  1304. "Type": "BTInputSlot"
  1305. },
  1306. "isIllegal": true,
  1307. "randomID": "PBEGPYHimEBT",
  1308. "stepSlot": {
  1309. "ContainerValue": null,
  1310. "Type": "BTStepSlot"
  1311. }
  1312. },
  1313. "Type": "BTStepSlot"
  1314. }
  1315. },
  1316. "Type": "BTStepSlot"
  1317. },
  1318. "x": 99.31376317717422,
  1319. "y": -1046.3102006791885
  1320. },
  1321. "Tree13": {
  1322. "ExportTree": true,
  1323. "ImageIndex": 4,
  1324. "Name": {
  1325. "Type": "STRING",
  1326. "Value": "点击Play按钮",
  1327. "displayName": ""
  1328. },
  1329. "Type": "BTCustomFuncHeadAction",
  1330. "VarJson": {
  1331. "boolJson": {
  1332. },
  1333. "numberJson": {
  1334. }
  1335. },
  1336. "isIllegal": true,
  1337. "randomID": "v8KJZtk74fMa",
  1338. "stepSlot": {
  1339. "ContainerValue": null,
  1340. "Type": "BTStepSlot"
  1341. },
  1342. "x": 375.96871362021466,
  1343. "y": -1076.9864378522075
  1344. },
  1345. "Tree2": {
  1346. "ExportTree": true,
  1347. "ImageIndex": -1,
  1348. "Type": "BTButtonClickFuncAction",
  1349. "VarJson": {
  1350. "boolJson": {
  1351. },
  1352. "numberJson": {
  1353. }
  1354. },
  1355. "isIllegal": false,
  1356. "mathSelector": {
  1357. "DisplayName": "btnClose",
  1358. "Type": "OBJ",
  1359. "Value": "iD2UHG6XoUWu"
  1360. },
  1361. "randomID": "yqRsp2Z2lwyH",
  1362. "stepSlot": {
  1363. "ContainerValue": {
  1364. "Type": "BTButtonEnableAction",
  1365. "baseSelect": {
  1366. "DisplayName": "btnClose",
  1367. "Type": "Action",
  1368. "Value": "iD2UHG6XoUWu"
  1369. },
  1370. "enableButton": {
  1371. "Type": "BTCheckBox",
  1372. "isEnable": false
  1373. },
  1374. "isIllegal": true,
  1375. "randomID": "tyGANwEYMd7I",
  1376. "stepSlot": {
  1377. "ContainerValue": {
  1378. "Type": "BTNotificationToCoderAction",
  1379. "conditionA": {
  1380. "ContainerValue": null,
  1381. "StringValue": {
  1382. "Type": "STRING",
  1383. "Value": "点击"
  1384. },
  1385. "Type": "BTInputSlot"
  1386. },
  1387. "isIllegal": true,
  1388. "randomID": "FgL2NYo31Klt",
  1389. "stepSlot": {
  1390. "ContainerValue": {
  1391. "Type": "BTNotificationToCoderAction",
  1392. "conditionA": {
  1393. "ContainerValue": null,
  1394. "StringValue": {
  1395. "Type": "STRING",
  1396. "Value": "点击关闭"
  1397. },
  1398. "Type": "BTInputSlot"
  1399. },
  1400. "isIllegal": true,
  1401. "randomID": "nolsexXsWH5E",
  1402. "stepSlot": {
  1403. "ContainerValue": {
  1404. "Name": {
  1405. "Type": "STRING",
  1406. "Value": "退出",
  1407. "displayName": ""
  1408. },
  1409. "Type": "BTCustomFuncBodyAction",
  1410. "funcHeadID": "UdEYG739eJmE",
  1411. "isIllegal": true,
  1412. "paramArr": [
  1413. ],
  1414. "randomID": "Uv94NDS8J8pa",
  1415. "stepSlot": {
  1416. "ContainerValue": null,
  1417. "Type": "BTStepSlot"
  1418. }
  1419. },
  1420. "Type": "BTStepSlot"
  1421. }
  1422. },
  1423. "Type": "BTStepSlot"
  1424. }
  1425. },
  1426. "Type": "BTStepSlot"
  1427. }
  1428. },
  1429. "Type": "BTStepSlot"
  1430. },
  1431. "x": 130.85685908891418,
  1432. "y": -419.740649026659
  1433. },
  1434. "Tree3": {
  1435. "ExportTree": true,
  1436. "ImageIndex": 2,
  1437. "Name": {
  1438. "Type": "STRING",
  1439. "Value": "退出",
  1440. "displayName": ""
  1441. },
  1442. "Type": "BTCustomFuncHeadAction",
  1443. "VarJson": {
  1444. "boolJson": {
  1445. },
  1446. "numberJson": {
  1447. }
  1448. },
  1449. "isIllegal": false,
  1450. "randomID": "UdEYG739eJmE",
  1451. "stepSlot": {
  1452. "ContainerValue": {
  1453. "Name": {
  1454. "Type": "STRING",
  1455. "Value": "播放out",
  1456. "displayName": ""
  1457. },
  1458. "Type": "BTCustomFuncBodyAction",
  1459. "funcHeadID": "lbP5cNcZ8CSa",
  1460. "isIllegal": true,
  1461. "paramArr": [
  1462. ],
  1463. "randomID": "jh0YS9KdJ1Rj",
  1464. "stepSlot": {
  1465. "ContainerValue": null,
  1466. "Type": "BTStepSlot"
  1467. }
  1468. },
  1469. "Type": "BTStepSlot"
  1470. },
  1471. "x": -238.71527750082763,
  1472. "y": -190.94567834746746
  1473. },
  1474. "Tree4": {
  1475. "ExportTree": true,
  1476. "ImageIndex": 3,
  1477. "Name": {
  1478. "Type": "STRING",
  1479. "Value": "初始化",
  1480. "displayName": ""
  1481. },
  1482. "Type": "BTCustomFuncHeadAction",
  1483. "VarJson": {
  1484. "boolJson": {
  1485. },
  1486. "numberJson": {
  1487. }
  1488. },
  1489. "isIllegal": false,
  1490. "randomID": "DXIhQowOwmZQ",
  1491. "stepSlot": {
  1492. "ContainerValue": {
  1493. "Name": {
  1494. "Type": "STRING",
  1495. "Value": "通知程序节点绑定",
  1496. "displayName": ""
  1497. },
  1498. "Type": "BTCustomFuncBodyAction",
  1499. "funcHeadID": "uhGGTVDQynOm",
  1500. "isIllegal": true,
  1501. "paramArr": [
  1502. ],
  1503. "randomID": "h3DgsMaZSIaW",
  1504. "stepSlot": {
  1505. "ContainerValue": {
  1506. "Name": {
  1507. "Type": "STRING",
  1508. "Value": "播放in",
  1509. "displayName": ""
  1510. },
  1511. "Type": "BTCustomFuncBodyAction",
  1512. "funcHeadID": "by3IgLcuAa9B",
  1513. "isIllegal": true,
  1514. "paramArr": [
  1515. ],
  1516. "randomID": "2wlxns277ma3",
  1517. "stepSlot": {
  1518. "ContainerValue": {
  1519. "Name": {
  1520. "Type": "STRING",
  1521. "Value": "更新UI",
  1522. "displayName": ""
  1523. },
  1524. "Type": "BTCustomFuncBodyAction",
  1525. "funcHeadID": "VgWnizBXRtbl",
  1526. "isIllegal": true,
  1527. "paramArr": [
  1528. ],
  1529. "randomID": "GQb14VpHdVQd",
  1530. "stepSlot": {
  1531. "ContainerValue": null,
  1532. "Type": "BTStepSlot"
  1533. }
  1534. },
  1535. "Type": "BTStepSlot"
  1536. }
  1537. },
  1538. "Type": "BTStepSlot"
  1539. }
  1540. },
  1541. "Type": "BTStepSlot"
  1542. },
  1543. "x": -216.65663970717867,
  1544. "y": -32.67948476485765
  1545. },
  1546. "Tree5": {
  1547. "ExportTree": false,
  1548. "Type": "BTNotificationToCoderAction",
  1549. "conditionA": {
  1550. "ContainerValue": null,
  1551. "StringValue": {
  1552. "Type": "STRING",
  1553. "Value": "点击"
  1554. },
  1555. "Type": "BTInputSlot"
  1556. },
  1557. "isIllegal": true,
  1558. "randomID": "8pZ35i1zW1Nj",
  1559. "stepSlot": {
  1560. "ContainerValue": null,
  1561. "Type": "BTStepSlot"
  1562. },
  1563. "x": 224.93750041909516,
  1564. "y": -774.9999992549419
  1565. },
  1566. "Tree6": {
  1567. "ExportTree": false,
  1568. "Type": "BTNotificationToCoderAction",
  1569. "conditionA": {
  1570. "ContainerValue": null,
  1571. "StringValue": {
  1572. "Type": "STRING",
  1573. "Value": "点击关闭"
  1574. },
  1575. "Type": "BTInputSlot"
  1576. },
  1577. "isIllegal": true,
  1578. "randomID": "5Ycp872arQ4t",
  1579. "stepSlot": {
  1580. "ContainerValue": {
  1581. "Type": "BTIFElseControlAction",
  1582. "conditionA": {
  1583. "ContainerValue": {
  1584. "Type": "BTEqualOperatorAction",
  1585. "conditionA": {
  1586. "ContainerValue": {
  1587. "Type": "BTCoderVariableAction",
  1588. "VarScope": "Scene",
  1589. "isIllegal": true,
  1590. "randomID": "db7vsviLHhL6",
  1591. "titleLabel": {
  1592. "Type": "STRING",
  1593. "Value": "P-关卡难度",
  1594. "displayName": ""
  1595. }
  1596. },
  1597. "StringValue": {
  1598. "Type": "FLOAT",
  1599. "Value": 0
  1600. },
  1601. "Type": "BTInputSlot"
  1602. },
  1603. "conditionB": {
  1604. "ContainerValue": null,
  1605. "StringValue": {
  1606. "Type": "FLOAT",
  1607. "Value": 0
  1608. },
  1609. "Type": "BTInputSlot"
  1610. },
  1611. "isIllegal": true,
  1612. "randomID": "RcUHArgwPWUx"
  1613. },
  1614. "Type": "BTBoolSlot"
  1615. },
  1616. "isIllegal": true,
  1617. "randomID": "pkZqanwW5Jn8",
  1618. "sectionA": {
  1619. "ContainerValue": {
  1620. "Type": "BTPlayTimeLineWaitAction",
  1621. "baseSelect": {
  1622. "DisplayName": "模式_normal_out",
  1623. "Type": "Action",
  1624. "Value": "7"
  1625. },
  1626. "isIllegal": true,
  1627. "randomID": "366kbU7KaM0q",
  1628. "stepSlot": {
  1629. "ContainerValue": null,
  1630. "Type": "BTStepSlot"
  1631. }
  1632. },
  1633. "Type": "BTSectionSlot"
  1634. },
  1635. "sectionB": {
  1636. "ContainerValue": {
  1637. "Type": "BTIFElseControlAction",
  1638. "conditionA": {
  1639. "ContainerValue": {
  1640. "Type": "BTEqualOperatorAction",
  1641. "conditionA": {
  1642. "ContainerValue": {
  1643. "Type": "BTCoderVariableAction",
  1644. "VarScope": "Scene",
  1645. "isIllegal": true,
  1646. "randomID": "PzRMQ5HiA6Gc",
  1647. "titleLabel": {
  1648. "Type": "STRING",
  1649. "Value": "P-关卡难度",
  1650. "displayName": ""
  1651. }
  1652. },
  1653. "StringValue": {
  1654. "Type": "FLOAT",
  1655. "Value": 0
  1656. },
  1657. "Type": "BTInputSlot"
  1658. },
  1659. "conditionB": {
  1660. "ContainerValue": null,
  1661. "StringValue": {
  1662. "Type": "FLOAT",
  1663. "Value": 1
  1664. },
  1665. "Type": "BTInputSlot"
  1666. },
  1667. "isIllegal": true,
  1668. "randomID": "tSuGyLigueyC"
  1669. },
  1670. "Type": "BTBoolSlot"
  1671. },
  1672. "isIllegal": true,
  1673. "randomID": "ngy5VfZJnHR1",
  1674. "sectionA": {
  1675. "ContainerValue": {
  1676. "Type": "BTPlayTimeLineWaitAction",
  1677. "baseSelect": {
  1678. "DisplayName": "模式_hard_out",
  1679. "Type": "Action",
  1680. "Value": "2"
  1681. },
  1682. "isIllegal": true,
  1683. "randomID": "IfgBJIp74Dwk",
  1684. "stepSlot": {
  1685. "ContainerValue": null,
  1686. "Type": "BTStepSlot"
  1687. }
  1688. },
  1689. "Type": "BTSectionSlot"
  1690. },
  1691. "sectionB": {
  1692. "ContainerValue": {
  1693. "Type": "BTPlayTimeLineWaitAction",
  1694. "baseSelect": {
  1695. "DisplayName": "模式_super hard_out",
  1696. "Type": "Action",
  1697. "Value": "5"
  1698. },
  1699. "isIllegal": true,
  1700. "randomID": "KX3WzRVa8DJa",
  1701. "stepSlot": {
  1702. "ContainerValue": null,
  1703. "Type": "BTStepSlot"
  1704. }
  1705. },
  1706. "Type": "BTSectionSlot"
  1707. },
  1708. "stepSlot": {
  1709. "ContainerValue": null,
  1710. "Type": "BTStepSlot"
  1711. }
  1712. },
  1713. "Type": "BTSectionSlot"
  1714. },
  1715. "stepSlot": {
  1716. "ContainerValue": {
  1717. "Type": "BTNotificationToCoderAction",
  1718. "conditionA": {
  1719. "ContainerValue": null,
  1720. "StringValue": {
  1721. "Type": "STRING",
  1722. "Value": "开始游戏"
  1723. },
  1724. "Type": "BTInputSlot"
  1725. },
  1726. "isIllegal": true,
  1727. "randomID": "7EMn7eFA8zTJ",
  1728. "stepSlot": {
  1729. "ContainerValue": {
  1730. "Type": "BTNotificationToCoderAction",
  1731. "conditionA": {
  1732. "ContainerValue": null,
  1733. "StringValue": {
  1734. "Type": "STRING",
  1735. "Value": "已经关闭"
  1736. },
  1737. "Type": "BTInputSlot"
  1738. },
  1739. "isIllegal": true,
  1740. "randomID": "1PARLRitt9Id",
  1741. "stepSlot": {
  1742. "ContainerValue": null,
  1743. "Type": "BTStepSlot"
  1744. }
  1745. },
  1746. "Type": "BTStepSlot"
  1747. }
  1748. },
  1749. "Type": "BTStepSlot"
  1750. }
  1751. },
  1752. "Type": "BTStepSlot"
  1753. },
  1754. "x": 524.9687136202147,
  1755. "y": -873.9864378522074
  1756. },
  1757. "Tree7": {
  1758. "ExportTree": false,
  1759. "Name": {
  1760. "Type": "STRING",
  1761. "Value": "点击Play按钮",
  1762. "displayName": ""
  1763. },
  1764. "Type": "BTCustomFuncBodyAction",
  1765. "funcHeadID": "v8KJZtk74fMa",
  1766. "isIllegal": true,
  1767. "paramArr": [
  1768. ],
  1769. "randomID": "IfGO4jYpHNFh",
  1770. "stepSlot": {
  1771. "ContainerValue": null,
  1772. "Type": "BTStepSlot"
  1773. },
  1774. "x": 356.43750041909516,
  1775. "y": -964.9999992549419
  1776. },
  1777. "Tree8": {
  1778. "ExportTree": true,
  1779. "ImageIndex": -1,
  1780. "Type": "BTButtonClickFuncAction",
  1781. "VarJson": {
  1782. "boolJson": {
  1783. },
  1784. "numberJson": {
  1785. }
  1786. },
  1787. "isIllegal": false,
  1788. "mathSelector": {
  1789. "DisplayName": "btnCloseBlack",
  1790. "Type": "OBJ",
  1791. "Value": "7YanrRGqD2JH"
  1792. },
  1793. "randomID": "krTcLGsm8kTt",
  1794. "stepSlot": {
  1795. "ContainerValue": {
  1796. "Type": "BTNotificationToCoderAction",
  1797. "conditionA": {
  1798. "ContainerValue": null,
  1799. "StringValue": {
  1800. "Type": "STRING",
  1801. "Value": "点击"
  1802. },
  1803. "Type": "BTInputSlot"
  1804. },
  1805. "isIllegal": true,
  1806. "randomID": "4MFtupsv0Rq2",
  1807. "stepSlot": {
  1808. "ContainerValue": {
  1809. "Type": "BTButtonEnableAction",
  1810. "baseSelect": {
  1811. "DisplayName": "btnCloseBlack",
  1812. "Type": "Action",
  1813. "Value": "7YanrRGqD2JH"
  1814. },
  1815. "enableButton": {
  1816. "Type": "BTCheckBox",
  1817. "isEnable": false
  1818. },
  1819. "isIllegal": true,
  1820. "randomID": "wvcWoZ0axYOI",
  1821. "stepSlot": {
  1822. "ContainerValue": {
  1823. "Type": "BTNotificationToCoderAction",
  1824. "conditionA": {
  1825. "ContainerValue": null,
  1826. "StringValue": {
  1827. "Type": "STRING",
  1828. "Value": "点击关闭"
  1829. },
  1830. "Type": "BTInputSlot"
  1831. },
  1832. "isIllegal": true,
  1833. "randomID": "uHuxBoYOL7Cw",
  1834. "stepSlot": {
  1835. "ContainerValue": {
  1836. "Name": {
  1837. "Type": "STRING",
  1838. "Value": "退出",
  1839. "displayName": ""
  1840. },
  1841. "Type": "BTCustomFuncBodyAction",
  1842. "funcHeadID": "UdEYG739eJmE",
  1843. "isIllegal": true,
  1844. "paramArr": [
  1845. ],
  1846. "randomID": "RFgX7MjtDnq3",
  1847. "stepSlot": {
  1848. "ContainerValue": null,
  1849. "Type": "BTStepSlot"
  1850. }
  1851. },
  1852. "Type": "BTStepSlot"
  1853. }
  1854. },
  1855. "Type": "BTStepSlot"
  1856. }
  1857. },
  1858. "Type": "BTStepSlot"
  1859. }
  1860. },
  1861. "Type": "BTStepSlot"
  1862. },
  1863. "x": 143.6321378318124,
  1864. "y": -232.08923908064833
  1865. },
  1866. "Tree9": {
  1867. "ExportTree": true,
  1868. "ImageIndex": 5,
  1869. "Name": {
  1870. "Type": "STRING",
  1871. "Value": "更新UI",
  1872. "displayName": ""
  1873. },
  1874. "Type": "BTCustomFuncHeadAction",
  1875. "VarJson": {
  1876. "boolJson": {
  1877. },
  1878. "numberJson": {
  1879. }
  1880. },
  1881. "isIllegal": false,
  1882. "randomID": "VgWnizBXRtbl",
  1883. "stepSlot": {
  1884. "ContainerValue": {
  1885. "Type": "BTNotificationToCoderAction",
  1886. "conditionA": {
  1887. "ContainerValue": null,
  1888. "StringValue": {
  1889. "Type": "STRING",
  1890. "Value": "更新UI"
  1891. },
  1892. "Type": "BTInputSlot"
  1893. },
  1894. "isIllegal": true,
  1895. "randomID": "z8I2mbQfK4cO",
  1896. "stepSlot": {
  1897. "ContainerValue": {
  1898. "Type": "BTIFElseControlAction",
  1899. "conditionA": {
  1900. "ContainerValue": {
  1901. "Type": "BTEqualOperatorAction",
  1902. "conditionA": {
  1903. "ContainerValue": {
  1904. "Type": "BTCoderVariableAction",
  1905. "VarScope": "Scene",
  1906. "isIllegal": true,
  1907. "randomID": "KnOFDUS6tGI7",
  1908. "titleLabel": {
  1909. "Type": "STRING",
  1910. "Value": "P-已经开始",
  1911. "displayName": ""
  1912. }
  1913. },
  1914. "StringValue": {
  1915. "Type": "FLOAT",
  1916. "Value": 0
  1917. },
  1918. "Type": "BTInputSlot"
  1919. },
  1920. "conditionB": {
  1921. "ContainerValue": null,
  1922. "StringValue": {
  1923. "Type": "FLOAT",
  1924. "Value": 1
  1925. },
  1926. "Type": "BTInputSlot"
  1927. },
  1928. "isIllegal": true,
  1929. "randomID": "18XR71mrG0hZ"
  1930. },
  1931. "Type": "BTBoolSlot"
  1932. },
  1933. "isIllegal": true,
  1934. "randomID": "LlldDg2DXQG5",
  1935. "sectionA": {
  1936. "ContainerValue": {
  1937. "Type": "BTNodeShowAction",
  1938. "baseSelect": {
  1939. "DisplayName": "ndStartPanel",
  1940. "Type": "Action",
  1941. "Value": "uhucHEpIUR6P"
  1942. },
  1943. "isIllegal": true,
  1944. "randomID": "HUaGYSB7o0dt",
  1945. "stepSlot": {
  1946. "ContainerValue": {
  1947. "Type": "BTNodeHiddenAction",
  1948. "baseSelect": {
  1949. "DisplayName": "ndClosePanel",
  1950. "Type": "Action",
  1951. "Value": "3ipTSeXqdODv"
  1952. },
  1953. "isIllegal": true,
  1954. "randomID": "p6Y3NE1uYM8L",
  1955. "stepSlot": {
  1956. "ContainerValue": null,
  1957. "Type": "BTStepSlot"
  1958. }
  1959. },
  1960. "Type": "BTStepSlot"
  1961. }
  1962. },
  1963. "Type": "BTSectionSlot"
  1964. },
  1965. "sectionB": {
  1966. "ContainerValue": {
  1967. "Type": "BTNodeShowAction",
  1968. "baseSelect": {
  1969. "DisplayName": "ndClosePanel",
  1970. "Type": "Action",
  1971. "Value": "3ipTSeXqdODv"
  1972. },
  1973. "isIllegal": true,
  1974. "randomID": "n2T8a6t57MjK",
  1975. "stepSlot": {
  1976. "ContainerValue": {
  1977. "Type": "BTNodeHiddenAction",
  1978. "baseSelect": {
  1979. "DisplayName": "ndStartPanel",
  1980. "Type": "Action",
  1981. "Value": "uhucHEpIUR6P"
  1982. },
  1983. "isIllegal": true,
  1984. "randomID": "7LbJbTmC5fdM",
  1985. "stepSlot": {
  1986. "ContainerValue": null,
  1987. "Type": "BTStepSlot"
  1988. }
  1989. },
  1990. "Type": "BTStepSlot"
  1991. }
  1992. },
  1993. "Type": "BTSectionSlot"
  1994. },
  1995. "stepSlot": {
  1996. "ContainerValue": {
  1997. "Type": "BTIFElseControlAction",
  1998. "conditionA": {
  1999. "ContainerValue": {
  2000. "Type": "BTEqualOperatorAction",
  2001. "conditionA": {
  2002. "ContainerValue": {
  2003. "Type": "BTCoderVariableAction",
  2004. "VarScope": "Scene",
  2005. "isIllegal": true,
  2006. "randomID": "TwRWwAg738Y9",
  2007. "titleLabel": {
  2008. "Type": "STRING",
  2009. "Value": "P-显示倒计时",
  2010. "displayName": ""
  2011. }
  2012. },
  2013. "StringValue": {
  2014. "Type": "FLOAT",
  2015. "Value": 0
  2016. },
  2017. "Type": "BTInputSlot"
  2018. },
  2019. "conditionB": {
  2020. "ContainerValue": null,
  2021. "StringValue": {
  2022. "Type": "FLOAT",
  2023. "Value": 1
  2024. },
  2025. "Type": "BTInputSlot"
  2026. },
  2027. "isIllegal": true,
  2028. "randomID": "8d38QCwWtGah"
  2029. },
  2030. "Type": "BTBoolSlot"
  2031. },
  2032. "isIllegal": true,
  2033. "randomID": "6lyXZIe8NpJ1",
  2034. "sectionA": {
  2035. "ContainerValue": {
  2036. "Type": "BTNodeShowAction",
  2037. "baseSelect": {
  2038. "DisplayName": "有倒计时",
  2039. "Type": "Action",
  2040. "Value": "u3G3DhQcrABC"
  2041. },
  2042. "isIllegal": true,
  2043. "randomID": "uN8RzYBs4hpK",
  2044. "stepSlot": {
  2045. "ContainerValue": {
  2046. "Type": "BTNodeHiddenAction",
  2047. "baseSelect": {
  2048. "DisplayName": "无倒计时",
  2049. "Type": "Action",
  2050. "Value": "FP3aMfy6qSzX"
  2051. },
  2052. "isIllegal": true,
  2053. "randomID": "ytJ4rnK1jKCK",
  2054. "stepSlot": {
  2055. "ContainerValue": null,
  2056. "Type": "BTStepSlot"
  2057. }
  2058. },
  2059. "Type": "BTStepSlot"
  2060. }
  2061. },
  2062. "Type": "BTSectionSlot"
  2063. },
  2064. "sectionB": {
  2065. "ContainerValue": {
  2066. "Type": "BTNodeShowAction",
  2067. "baseSelect": {
  2068. "DisplayName": "无倒计时",
  2069. "Type": "Action",
  2070. "Value": "FP3aMfy6qSzX"
  2071. },
  2072. "isIllegal": true,
  2073. "randomID": "yrf1qO3Ow1Qs",
  2074. "stepSlot": {
  2075. "ContainerValue": {
  2076. "Type": "BTNodeHiddenAction",
  2077. "baseSelect": {
  2078. "DisplayName": "有倒计时",
  2079. "Type": "Action",
  2080. "Value": "u3G3DhQcrABC"
  2081. },
  2082. "isIllegal": true,
  2083. "randomID": "9ztGpa0wCCIc",
  2084. "stepSlot": {
  2085. "ContainerValue": null,
  2086. "Type": "BTStepSlot"
  2087. }
  2088. },
  2089. "Type": "BTStepSlot"
  2090. }
  2091. },
  2092. "Type": "BTSectionSlot"
  2093. },
  2094. "stepSlot": {
  2095. "ContainerValue": {
  2096. "Type": "BTIFElseControlAction",
  2097. "conditionA": {
  2098. "ContainerValue": {
  2099. "Type": "BTBoolAndAction",
  2100. "conditionA": {
  2101. "ContainerValue": {
  2102. "Type": "BTEqualOperatorAction",
  2103. "conditionA": {
  2104. "ContainerValue": {
  2105. "Type": "BTCoderVariableAction",
  2106. "VarScope": "Scene",
  2107. "isIllegal": true,
  2108. "randomID": "BS6fcPGEKLkh",
  2109. "titleLabel": {
  2110. "Type": "STRING",
  2111. "Value": "P-关卡难度",
  2112. "displayName": ""
  2113. }
  2114. },
  2115. "StringValue": {
  2116. "Type": "FLOAT",
  2117. "Value": 0
  2118. },
  2119. "Type": "BTInputSlot"
  2120. },
  2121. "conditionB": {
  2122. "ContainerValue": null,
  2123. "StringValue": {
  2124. "Type": "FLOAT",
  2125. "Value": 0
  2126. },
  2127. "Type": "BTInputSlot"
  2128. },
  2129. "isIllegal": true,
  2130. "randomID": "Mm56yLjWswOa"
  2131. },
  2132. "Type": "BTBoolSlot"
  2133. },
  2134. "conditionB": {
  2135. "ContainerValue": {
  2136. "Type": "BTEqualOperatorAction",
  2137. "conditionA": {
  2138. "ContainerValue": {
  2139. "Type": "BTCoderVariableAction",
  2140. "VarScope": "Scene",
  2141. "isIllegal": true,
  2142. "randomID": "pAEB6dyKPvUn",
  2143. "titleLabel": {
  2144. "Type": "STRING",
  2145. "Value": "P-显示倒计时",
  2146. "displayName": ""
  2147. }
  2148. },
  2149. "StringValue": {
  2150. "Type": "FLOAT",
  2151. "Value": 0
  2152. },
  2153. "Type": "BTInputSlot"
  2154. },
  2155. "conditionB": {
  2156. "ContainerValue": null,
  2157. "StringValue": {
  2158. "Type": "FLOAT",
  2159. "Value": 0
  2160. },
  2161. "Type": "BTInputSlot"
  2162. },
  2163. "isIllegal": true,
  2164. "randomID": "0NX4XNWUuW7n"
  2165. },
  2166. "Type": "BTBoolSlot"
  2167. },
  2168. "isIllegal": true,
  2169. "randomID": "UjnSW5cPjwBX"
  2170. },
  2171. "Type": "BTBoolSlot"
  2172. },
  2173. "isIllegal": true,
  2174. "randomID": "1tuf76QUSWJx",
  2175. "sectionA": {
  2176. "ContainerValue": {
  2177. "Type": "BTNodeHiddenAction",
  2178. "baseSelect": {
  2179. "DisplayName": "挂件",
  2180. "Type": "Action",
  2181. "Value": "E8Z5metfL2QV"
  2182. },
  2183. "isIllegal": true,
  2184. "randomID": "ngPikCGQ0K5a",
  2185. "stepSlot": {
  2186. "ContainerValue": null,
  2187. "Type": "BTStepSlot"
  2188. }
  2189. },
  2190. "Type": "BTSectionSlot"
  2191. },
  2192. "sectionB": {
  2193. "ContainerValue": {
  2194. "Type": "BTNodeShowAction",
  2195. "baseSelect": {
  2196. "DisplayName": "挂件",
  2197. "Type": "Action",
  2198. "Value": "E8Z5metfL2QV"
  2199. },
  2200. "isIllegal": true,
  2201. "randomID": "vd1IDtfkuzO4",
  2202. "stepSlot": {
  2203. "ContainerValue": null,
  2204. "Type": "BTStepSlot"
  2205. }
  2206. },
  2207. "Type": "BTSectionSlot"
  2208. },
  2209. "stepSlot": {
  2210. "ContainerValue": {
  2211. "Type": "BTIFElseControlAction",
  2212. "conditionA": {
  2213. "ContainerValue": {
  2214. "Type": "BTBiggerThanAction",
  2215. "conditionA": {
  2216. "ContainerValue": {
  2217. "Type": "BTCoderVariableAction",
  2218. "VarScope": "Scene",
  2219. "isIllegal": true,
  2220. "randomID": "tfYQT147ID3u",
  2221. "titleLabel": {
  2222. "Type": "STRING",
  2223. "Value": "P-关卡难度",
  2224. "displayName": ""
  2225. }
  2226. },
  2227. "StringValue": {
  2228. "Type": "FLOAT",
  2229. "Value": 0
  2230. },
  2231. "Type": "BTInputSlot"
  2232. },
  2233. "conditionB": {
  2234. "ContainerValue": null,
  2235. "StringValue": {
  2236. "Type": "FLOAT",
  2237. "Value": 0
  2238. },
  2239. "Type": "BTInputSlot"
  2240. },
  2241. "isIllegal": true,
  2242. "randomID": "s0rEwvUjsFHh"
  2243. },
  2244. "Type": "BTBoolSlot"
  2245. },
  2246. "isIllegal": true,
  2247. "randomID": "6x3r0qu2xs2f",
  2248. "sectionA": {
  2249. "ContainerValue": {
  2250. "Type": "BTNodeShowAction",
  2251. "baseSelect": {
  2252. "DisplayName": "ndCoin",
  2253. "Type": "Action",
  2254. "Value": "cRk8kVrHP5r4"
  2255. },
  2256. "isIllegal": true,
  2257. "randomID": "KY47kFtrE2H0",
  2258. "stepSlot": {
  2259. "ContainerValue": {
  2260. "TitleInput": {
  2261. "ContainerValue": null,
  2262. "StringValue": {
  2263. "Type": "STRING",
  2264. "Value": "50"
  2265. },
  2266. "Type": "BTInputSlot"
  2267. },
  2268. "Type": "BTLabelTitleAction",
  2269. "baseSelect": {
  2270. "DisplayName": "lbCoin1",
  2271. "Type": "Action",
  2272. "Value": "tW0m4isTo1Ci"
  2273. },
  2274. "isIllegal": true,
  2275. "randomID": "7LsQ7CthxWky",
  2276. "stepSlot": {
  2277. "ContainerValue": {
  2278. "TitleInput": {
  2279. "ContainerValue": null,
  2280. "StringValue": {
  2281. "Type": "STRING",
  2282. "Value": "50"
  2283. },
  2284. "Type": "BTInputSlot"
  2285. },
  2286. "Type": "BTLabelTitleAction",
  2287. "baseSelect": {
  2288. "DisplayName": "lbCoin2",
  2289. "Type": "Action",
  2290. "Value": "aJNid6nYLh7X"
  2291. },
  2292. "isIllegal": true,
  2293. "randomID": "dKQvuUT3y8b4",
  2294. "stepSlot": {
  2295. "ContainerValue": {
  2296. "Type": "BTIFElseControlAction",
  2297. "conditionA": {
  2298. "ContainerValue": {
  2299. "Type": "BTEqualOperatorAction",
  2300. "conditionA": {
  2301. "ContainerValue": {
  2302. "Type": "BTCoderVariableAction",
  2303. "VarScope": "Scene",
  2304. "isIllegal": true,
  2305. "randomID": "yxpAaSDuInL6",
  2306. "titleLabel": {
  2307. "Type": "STRING",
  2308. "Value": "P-关卡难度",
  2309. "displayName": ""
  2310. }
  2311. },
  2312. "StringValue": {
  2313. "Type": "FLOAT",
  2314. "Value": 0
  2315. },
  2316. "Type": "BTInputSlot"
  2317. },
  2318. "conditionB": {
  2319. "ContainerValue": null,
  2320. "StringValue": {
  2321. "Type": "FLOAT",
  2322. "Value": 1
  2323. },
  2324. "Type": "BTInputSlot"
  2325. },
  2326. "isIllegal": true,
  2327. "randomID": "8lrOSsjeBmbL"
  2328. },
  2329. "Type": "BTBoolSlot"
  2330. },
  2331. "isIllegal": true,
  2332. "randomID": "5eQPuQ411Fvj",
  2333. "sectionA": {
  2334. "ContainerValue": {
  2335. "TitleInput": {
  2336. "ContainerValue": null,
  2337. "StringValue": {
  2338. "Type": "STRING",
  2339. "Value": "150"
  2340. },
  2341. "Type": "BTInputSlot"
  2342. },
  2343. "Type": "BTLabelTitleAction",
  2344. "baseSelect": {
  2345. "DisplayName": "lbCoin1",
  2346. "Type": "Action",
  2347. "Value": "tW0m4isTo1Ci"
  2348. },
  2349. "isIllegal": true,
  2350. "randomID": "aLmX2LKfQZwb",
  2351. "stepSlot": {
  2352. "ContainerValue": {
  2353. "TitleInput": {
  2354. "ContainerValue": null,
  2355. "StringValue": {
  2356. "Type": "STRING",
  2357. "Value": "150"
  2358. },
  2359. "Type": "BTInputSlot"
  2360. },
  2361. "Type": "BTLabelTitleAction",
  2362. "baseSelect": {
  2363. "DisplayName": "lbCoin2",
  2364. "Type": "Action",
  2365. "Value": "aJNid6nYLh7X"
  2366. },
  2367. "isIllegal": true,
  2368. "randomID": "hsnH6IEpj3K3",
  2369. "stepSlot": {
  2370. "ContainerValue": null,
  2371. "Type": "BTStepSlot"
  2372. }
  2373. },
  2374. "Type": "BTStepSlot"
  2375. }
  2376. },
  2377. "Type": "BTSectionSlot"
  2378. },
  2379. "sectionB": {
  2380. "ContainerValue": {
  2381. "TitleInput": {
  2382. "ContainerValue": null,
  2383. "StringValue": {
  2384. "Type": "STRING",
  2385. "Value": "250"
  2386. },
  2387. "Type": "BTInputSlot"
  2388. },
  2389. "Type": "BTLabelTitleAction",
  2390. "baseSelect": {
  2391. "DisplayName": "lbCoin1",
  2392. "Type": "Action",
  2393. "Value": "tW0m4isTo1Ci"
  2394. },
  2395. "isIllegal": true,
  2396. "randomID": "AhDBFXOOFyDG",
  2397. "stepSlot": {
  2398. "ContainerValue": {
  2399. "TitleInput": {
  2400. "ContainerValue": null,
  2401. "StringValue": {
  2402. "Type": "STRING",
  2403. "Value": "250"
  2404. },
  2405. "Type": "BTInputSlot"
  2406. },
  2407. "Type": "BTLabelTitleAction",
  2408. "baseSelect": {
  2409. "DisplayName": "lbCoin2",
  2410. "Type": "Action",
  2411. "Value": "aJNid6nYLh7X"
  2412. },
  2413. "isIllegal": true,
  2414. "randomID": "IhFOEow0dQhf",
  2415. "stepSlot": {
  2416. "ContainerValue": null,
  2417. "Type": "BTStepSlot"
  2418. }
  2419. },
  2420. "Type": "BTStepSlot"
  2421. }
  2422. },
  2423. "Type": "BTSectionSlot"
  2424. },
  2425. "stepSlot": {
  2426. "ContainerValue": null,
  2427. "Type": "BTStepSlot"
  2428. }
  2429. },
  2430. "Type": "BTStepSlot"
  2431. }
  2432. },
  2433. "Type": "BTStepSlot"
  2434. }
  2435. },
  2436. "Type": "BTStepSlot"
  2437. }
  2438. },
  2439. "Type": "BTSectionSlot"
  2440. },
  2441. "sectionB": {
  2442. "ContainerValue": {
  2443. "Type": "BTNodeHiddenAction",
  2444. "baseSelect": {
  2445. "DisplayName": "ndCoin",
  2446. "Type": "Action",
  2447. "Value": "cRk8kVrHP5r4"
  2448. },
  2449. "isIllegal": true,
  2450. "randomID": "YqBqZpyqIVvu",
  2451. "stepSlot": {
  2452. "ContainerValue": null,
  2453. "Type": "BTStepSlot"
  2454. }
  2455. },
  2456. "Type": "BTSectionSlot"
  2457. },
  2458. "stepSlot": {
  2459. "ContainerValue": null,
  2460. "Type": "BTStepSlot"
  2461. }
  2462. },
  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. "x": 401.5,
  2478. "y": -167
  2479. }
  2480. }
  2481. }