魔药课活动_置物架.rebolt 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. {
  2. "CustomFunc": {
  3. "初始化": [
  4. [
  5. "Name",
  6. "初始化",
  7. "vqDZRFv9xJSR",
  8. "/Users/lal/GitStore/TileManor/Resources/res_ActivityLib/MagicCauldron/ccb/魔药课活动_置物架.red"
  9. ],
  10. [
  11. "BTInputSlot",
  12. "index"
  13. ]
  14. ],
  15. "刷新": [
  16. [
  17. "Name",
  18. "刷新",
  19. "5gGHzVT8Pq7Z",
  20. "/Users/lal/GitStore/TileManor/Resources/res_ActivityLib/MagicCauldron/ccb/魔药课活动_置物架.red"
  21. ]
  22. ],
  23. "放置状态": [
  24. [
  25. "Name",
  26. "放置状态",
  27. "lr4lROHYBS63",
  28. "/Users/lal/GitStore/TileManorV2/Resources/res_ActivityLib/MagicCauldron/ccb/魔药课活动_置物架.red"
  29. ]
  30. ],
  31. "架子初始化": [
  32. [
  33. "Name",
  34. "架子初始化",
  35. "RTLovBSolqBJ",
  36. "/Users/lal/GitStore/TileManorV2/Resources/res_ActivityLib/MagicCauldron/ccb/魔药课活动_置物架.red"
  37. ]
  38. ],
  39. "设置奇偶值": [
  40. [
  41. "Name",
  42. "设置奇偶值",
  43. "1JyQo2a28SqI",
  44. "/Users/lal/GitStore/TileManorV2/Resources/res_ActivityLib/MagicCauldron/ccb/魔药课活动_置物架.red"
  45. ],
  46. [
  47. "BTInputSlot",
  48. "evenNum"
  49. ]
  50. ]
  51. },
  52. "CustomList": {
  53. },
  54. "CustomMessage": {
  55. "Hello Red": 1
  56. },
  57. "CustomTestFunc": {
  58. },
  59. "CustomVar": {
  60. "P-delay": 0,
  61. "P-index": 0,
  62. "P-偶数组": 0,
  63. "P-验证成功": 0,
  64. "evenNum": 0,
  65. "index": 0
  66. },
  67. "DisPlayName": "魔药课活动_置物架",
  68. "RedFileList": {
  69. },
  70. "RedNoteInfo": {
  71. },
  72. "TreeList": {
  73. "Tree0": {
  74. "ExportTree": true,
  75. "ImageIndex": 1,
  76. "Name": {
  77. "Type": "STRING",
  78. "Value": "初始化",
  79. "displayName": ""
  80. },
  81. "Type": "BTCustomFuncHeadAction",
  82. "VarJson": {
  83. "boolJson": {
  84. },
  85. "numberJson": {
  86. "index": "Number"
  87. }
  88. },
  89. "isIllegal": false,
  90. "randomID": "vqDZRFv9xJSR",
  91. "stepSlot": {
  92. "ContainerValue": {
  93. "Type": "BTNotificationNodeToCoderAction",
  94. "baseSelect": {
  95. "DisplayName": "总节点",
  96. "Type": "Action",
  97. "Value": "31TmubzXRIRc"
  98. },
  99. "conditionA": {
  100. "ContainerValue": null,
  101. "StringValue": {
  102. "Type": "STRING",
  103. "Value": "绑定置物架"
  104. },
  105. "Type": "BTInputSlot"
  106. },
  107. "isIllegal": true,
  108. "paramA": {
  109. "ContainerValue": null,
  110. "StringValue": {
  111. "Type": "STRING",
  112. "Value": ""
  113. },
  114. "Type": "BTInputSlot"
  115. },
  116. "randomID": "6E0WYgUuyqM",
  117. "stepSlot": {
  118. "ContainerValue": {
  119. "TitleInput": {
  120. "ContainerValue": {
  121. "Type": "BTFuncVariableAction",
  122. "colorName": "More",
  123. "currentStr": "index",
  124. "fatherFuncID": "vqDZRFv9xJSR",
  125. "isIllegal": true,
  126. "randomID": "FIA4UsPG18cd",
  127. "titleLabel": {
  128. "Type": "STRING",
  129. "Value": "index",
  130. "displayName": ""
  131. }
  132. },
  133. "StringValue": {
  134. "Type": "STRING",
  135. "Value": "0"
  136. },
  137. "Type": "BTInputSlot"
  138. },
  139. "Type": "BTDataVarSetAction",
  140. "VarScope": "Scene",
  141. "baseSelect": {
  142. "DisplayName": "index",
  143. "Type": "Action",
  144. "Value": "index"
  145. },
  146. "isIllegal": true,
  147. "randomID": "tKQZkTtAxHn9",
  148. "stepSlot": {
  149. "ContainerValue": {
  150. "Name": {
  151. "Type": "STRING",
  152. "Value": "架子初始化",
  153. "displayName": ""
  154. },
  155. "Type": "BTCustomFuncBodyAction",
  156. "funcHeadID": "RTLovBSolqBJ",
  157. "isIllegal": true,
  158. "paramArr": [
  159. ],
  160. "randomID": "Pbf0HQaUY9CR",
  161. "stepSlot": {
  162. "ContainerValue": null,
  163. "Type": "BTStepSlot"
  164. }
  165. },
  166. "Type": "BTStepSlot"
  167. }
  168. },
  169. "Type": "BTStepSlot"
  170. }
  171. },
  172. "Type": "BTStepSlot"
  173. },
  174. "x": -79,
  175. "y": -631
  176. },
  177. "Tree1": {
  178. "ExportTree": true,
  179. "ImageIndex": 3,
  180. "Name": {
  181. "Type": "STRING",
  182. "Value": "刷新",
  183. "displayName": ""
  184. },
  185. "Type": "BTCustomFuncHeadAction",
  186. "VarJson": {
  187. "boolJson": {
  188. },
  189. "numberJson": {
  190. }
  191. },
  192. "isIllegal": false,
  193. "randomID": "5gGHzVT8Pq7Z",
  194. "stepSlot": {
  195. "ContainerValue": {
  196. "Type": "BTIFElseControlAction",
  197. "conditionA": {
  198. "ContainerValue": {
  199. "Type": "BTEqualOperatorAction",
  200. "conditionA": {
  201. "ContainerValue": {
  202. "Type": "BTCoderVariableAction",
  203. "VarScope": "Scene",
  204. "isIllegal": true,
  205. "randomID": "kUZN3DWVPz1H",
  206. "titleLabel": {
  207. "Type": "STRING",
  208. "Value": "P-验证成功",
  209. "displayName": ""
  210. }
  211. },
  212. "StringValue": {
  213. "Type": "FLOAT",
  214. "Value": 0
  215. },
  216. "Type": "BTInputSlot"
  217. },
  218. "conditionB": {
  219. "ContainerValue": null,
  220. "StringValue": {
  221. "Type": "FLOAT",
  222. "Value": 1
  223. },
  224. "Type": "BTInputSlot"
  225. },
  226. "isIllegal": true,
  227. "randomID": "WVJ0KUjiucyl"
  228. },
  229. "Type": "BTBoolSlot"
  230. },
  231. "isIllegal": true,
  232. "randomID": "onU7mESuIYoi",
  233. "sectionA": {
  234. "ContainerValue": {
  235. "Type": "BTWaitTimeAction",
  236. "conditionA": {
  237. "ContainerValue": {
  238. "Type": "BTCoderVariableAction",
  239. "VarScope": "Scene",
  240. "isIllegal": true,
  241. "randomID": "S0wFAxvytgwI",
  242. "titleLabel": {
  243. "Type": "STRING",
  244. "Value": "P-delay",
  245. "displayName": ""
  246. }
  247. },
  248. "StringValue": {
  249. "Type": "FLOAT",
  250. "Value": 3
  251. },
  252. "Type": "BTInputSlot"
  253. },
  254. "isIllegal": true,
  255. "randomID": "sA6qqZysYPJX",
  256. "stepSlot": {
  257. "ContainerValue": {
  258. "Name": {
  259. "Type": "STRING",
  260. "Value": "放置状态",
  261. "displayName": ""
  262. },
  263. "Type": "BTCustomFuncBodyAction",
  264. "funcHeadID": "lr4lROHYBS63",
  265. "isIllegal": true,
  266. "paramArr": [
  267. ],
  268. "randomID": "XnKzt8oEGouc",
  269. "stepSlot": {
  270. "ContainerValue": null,
  271. "Type": "BTStepSlot"
  272. }
  273. },
  274. "Type": "BTStepSlot"
  275. }
  276. },
  277. "Type": "BTSectionSlot"
  278. },
  279. "sectionB": {
  280. "ContainerValue": {
  281. "Name": {
  282. "Type": "STRING",
  283. "Value": "架子初始化",
  284. "displayName": ""
  285. },
  286. "Type": "BTCustomFuncBodyAction",
  287. "funcHeadID": "RTLovBSolqBJ",
  288. "isIllegal": true,
  289. "paramArr": [
  290. ],
  291. "randomID": "6FKukuF8cP1i",
  292. "stepSlot": {
  293. "ContainerValue": null,
  294. "Type": "BTStepSlot"
  295. }
  296. },
  297. "Type": "BTSectionSlot"
  298. },
  299. "stepSlot": {
  300. "ContainerValue": null,
  301. "Type": "BTStepSlot"
  302. }
  303. },
  304. "Type": "BTStepSlot"
  305. },
  306. "x": -77,
  307. "y": -413
  308. },
  309. "Tree2": {
  310. "ExportTree": true,
  311. "ImageIndex": -1,
  312. "Type": "BTButtonClickFuncAction",
  313. "VarJson": {
  314. "boolJson": {
  315. },
  316. "numberJson": {
  317. }
  318. },
  319. "isIllegal": false,
  320. "mathSelector": {
  321. "DisplayName": "置物架按钮",
  322. "Type": "OBJ",
  323. "Value": "6jDmKdgTyfab"
  324. },
  325. "randomID": "iXlZx3c5LnIr",
  326. "stepSlot": {
  327. "ContainerValue": {
  328. "Type": "BTNotificationNodeToCoderAction",
  329. "baseSelect": {
  330. "DisplayName": "置物架按钮",
  331. "Type": "Action",
  332. "Value": "6jDmKdgTyfab"
  333. },
  334. "conditionA": {
  335. "ContainerValue": null,
  336. "StringValue": {
  337. "Type": "STRING",
  338. "Value": "点击置物架按钮"
  339. },
  340. "Type": "BTInputSlot"
  341. },
  342. "isIllegal": true,
  343. "paramA": {
  344. "ContainerValue": {
  345. "Type": "BTVariableAction",
  346. "VarScope": "Scene",
  347. "isIllegal": true,
  348. "randomID": "5ecEnzkx0rnq",
  349. "titleLabel": {
  350. "Type": "STRING",
  351. "Value": "index",
  352. "displayName": ""
  353. }
  354. },
  355. "StringValue": {
  356. "Type": "STRING",
  357. "Value": ""
  358. },
  359. "Type": "BTInputSlot"
  360. },
  361. "randomID": "2joqEgP5lK9F",
  362. "stepSlot": {
  363. "ContainerValue": null,
  364. "Type": "BTStepSlot"
  365. }
  366. },
  367. "Type": "BTStepSlot"
  368. },
  369. "x": -7,
  370. "y": -123
  371. },
  372. "Tree3": {
  373. "ExportTree": true,
  374. "ImageIndex": 5,
  375. "Name": {
  376. "Type": "STRING",
  377. "Value": "架子初始化",
  378. "displayName": ""
  379. },
  380. "Type": "BTCustomFuncHeadAction",
  381. "VarJson": {
  382. "boolJson": {
  383. },
  384. "numberJson": {
  385. }
  386. },
  387. "isIllegal": false,
  388. "randomID": "RTLovBSolqBJ",
  389. "stepSlot": {
  390. "ContainerValue": {
  391. "Type": "BTIFElseControlAction",
  392. "conditionA": {
  393. "ContainerValue": {
  394. "Type": "BTEqualOperatorAction",
  395. "conditionA": {
  396. "ContainerValue": {
  397. "Type": "BTVariableAction",
  398. "VarScope": "Scene",
  399. "isIllegal": true,
  400. "randomID": "m5aC51HeJOpS",
  401. "titleLabel": {
  402. "Type": "STRING",
  403. "Value": "evenNum",
  404. "displayName": ""
  405. }
  406. },
  407. "StringValue": {
  408. "Type": "FLOAT",
  409. "Value": 0
  410. },
  411. "Type": "BTInputSlot"
  412. },
  413. "conditionB": {
  414. "ContainerValue": null,
  415. "StringValue": {
  416. "Type": "FLOAT",
  417. "Value": 1
  418. },
  419. "Type": "BTInputSlot"
  420. },
  421. "isIllegal": true,
  422. "randomID": "VeMOZiHukUmC"
  423. },
  424. "Type": "BTBoolSlot"
  425. },
  426. "isIllegal": true,
  427. "randomID": "xL85YCPzK4NV",
  428. "sectionA": {
  429. "ContainerValue": {
  430. "Type": "BTIFElseControlAction",
  431. "conditionA": {
  432. "ContainerValue": {
  433. "Type": "BTEqualOperatorAction",
  434. "conditionA": {
  435. "ContainerValue": {
  436. "Type": "BTVariableAction",
  437. "VarScope": "Scene",
  438. "isIllegal": true,
  439. "randomID": "DYNd1ghz9Olh",
  440. "titleLabel": {
  441. "Type": "STRING",
  442. "Value": "index",
  443. "displayName": ""
  444. }
  445. },
  446. "StringValue": {
  447. "Type": "FLOAT",
  448. "Value": 0
  449. },
  450. "Type": "BTInputSlot"
  451. },
  452. "conditionB": {
  453. "ContainerValue": null,
  454. "StringValue": {
  455. "Type": "FLOAT",
  456. "Value": 1
  457. },
  458. "Type": "BTInputSlot"
  459. },
  460. "isIllegal": true,
  461. "randomID": "k2lomxmD5ThV"
  462. },
  463. "Type": "BTBoolSlot"
  464. },
  465. "isIllegal": true,
  466. "randomID": "p8urEsf2FnsB",
  467. "sectionA": {
  468. "ContainerValue": {
  469. "Type": "BTPlayTimeLineAction",
  470. "baseSelect": {
  471. "DisplayName": "偶数组1_空置状态",
  472. "Type": "Action",
  473. "Value": "0"
  474. },
  475. "isIllegal": true,
  476. "randomID": "Y1M9emgU1mc",
  477. "stepSlot": {
  478. "ContainerValue": null,
  479. "Type": "BTStepSlot"
  480. }
  481. },
  482. "Type": "BTSectionSlot"
  483. },
  484. "sectionB": {
  485. "ContainerValue": {
  486. "Type": "BTIFElseControlAction",
  487. "conditionA": {
  488. "ContainerValue": {
  489. "Type": "BTEqualOperatorAction",
  490. "conditionA": {
  491. "ContainerValue": {
  492. "Type": "BTVariableAction",
  493. "VarScope": "Scene",
  494. "isIllegal": true,
  495. "randomID": "VpEBfZ4BifMo",
  496. "titleLabel": {
  497. "Type": "STRING",
  498. "Value": "index",
  499. "displayName": ""
  500. }
  501. },
  502. "StringValue": {
  503. "Type": "FLOAT",
  504. "Value": 0
  505. },
  506. "Type": "BTInputSlot"
  507. },
  508. "conditionB": {
  509. "ContainerValue": null,
  510. "StringValue": {
  511. "Type": "FLOAT",
  512. "Value": 2
  513. },
  514. "Type": "BTInputSlot"
  515. },
  516. "isIllegal": true,
  517. "randomID": "AxeYCrW2y7Fg"
  518. },
  519. "Type": "BTBoolSlot"
  520. },
  521. "isIllegal": true,
  522. "randomID": "Sk55gdUFoVU",
  523. "sectionA": {
  524. "ContainerValue": {
  525. "Type": "BTPlayTimeLineAction",
  526. "baseSelect": {
  527. "DisplayName": "偶数组2_空置状态",
  528. "Type": "Action",
  529. "Value": "2"
  530. },
  531. "isIllegal": true,
  532. "randomID": "jEUOxKyFoZZt",
  533. "stepSlot": {
  534. "ContainerValue": null,
  535. "Type": "BTStepSlot"
  536. }
  537. },
  538. "Type": "BTSectionSlot"
  539. },
  540. "sectionB": {
  541. "ContainerValue": {
  542. "Type": "BTIFElseControlAction",
  543. "conditionA": {
  544. "ContainerValue": {
  545. "Type": "BTEqualOperatorAction",
  546. "conditionA": {
  547. "ContainerValue": {
  548. "Type": "BTVariableAction",
  549. "VarScope": "Scene",
  550. "isIllegal": true,
  551. "randomID": "DTiuUanhQybt",
  552. "titleLabel": {
  553. "Type": "STRING",
  554. "Value": "index",
  555. "displayName": ""
  556. }
  557. },
  558. "StringValue": {
  559. "Type": "FLOAT",
  560. "Value": 0
  561. },
  562. "Type": "BTInputSlot"
  563. },
  564. "conditionB": {
  565. "ContainerValue": null,
  566. "StringValue": {
  567. "Type": "FLOAT",
  568. "Value": 3
  569. },
  570. "Type": "BTInputSlot"
  571. },
  572. "isIllegal": true,
  573. "randomID": "BhnwV7gV4Xnf"
  574. },
  575. "Type": "BTBoolSlot"
  576. },
  577. "isIllegal": true,
  578. "randomID": "tjuLGMqBQjeI",
  579. "sectionA": {
  580. "ContainerValue": {
  581. "Type": "BTPlayTimeLineAction",
  582. "baseSelect": {
  583. "DisplayName": "偶数组3_空置状态",
  584. "Type": "Action",
  585. "Value": "4"
  586. },
  587. "isIllegal": true,
  588. "randomID": "PkuEkGSiElp",
  589. "stepSlot": {
  590. "ContainerValue": null,
  591. "Type": "BTStepSlot"
  592. }
  593. },
  594. "Type": "BTSectionSlot"
  595. },
  596. "sectionB": {
  597. "ContainerValue": {
  598. "Type": "BTIFElseControlAction",
  599. "conditionA": {
  600. "ContainerValue": {
  601. "Type": "BTEqualOperatorAction",
  602. "conditionA": {
  603. "ContainerValue": {
  604. "Type": "BTVariableAction",
  605. "VarScope": "Scene",
  606. "isIllegal": true,
  607. "randomID": "g79PtowMkPpf",
  608. "titleLabel": {
  609. "Type": "STRING",
  610. "Value": "index",
  611. "displayName": ""
  612. }
  613. },
  614. "StringValue": {
  615. "Type": "FLOAT",
  616. "Value": 0
  617. },
  618. "Type": "BTInputSlot"
  619. },
  620. "conditionB": {
  621. "ContainerValue": null,
  622. "StringValue": {
  623. "Type": "FLOAT",
  624. "Value": 4
  625. },
  626. "Type": "BTInputSlot"
  627. },
  628. "isIllegal": true,
  629. "randomID": "Bs3ZBIbAGsav"
  630. },
  631. "Type": "BTBoolSlot"
  632. },
  633. "isIllegal": true,
  634. "randomID": "ZyRpffCSIGxQ",
  635. "sectionA": {
  636. "ContainerValue": {
  637. "Type": "BTPlayTimeLineAction",
  638. "baseSelect": {
  639. "DisplayName": "偶数组4_空置状态",
  640. "Type": "Action",
  641. "Value": "6"
  642. },
  643. "isIllegal": true,
  644. "randomID": "XSA4sIG0QUW",
  645. "stepSlot": {
  646. "ContainerValue": null,
  647. "Type": "BTStepSlot"
  648. }
  649. },
  650. "Type": "BTSectionSlot"
  651. },
  652. "sectionB": {
  653. "ContainerValue": {
  654. "Type": "BTIFElseControlAction",
  655. "conditionA": {
  656. "ContainerValue": {
  657. "Type": "BTEqualOperatorAction",
  658. "conditionA": {
  659. "ContainerValue": {
  660. "Type": "BTVariableAction",
  661. "VarScope": "Scene",
  662. "isIllegal": true,
  663. "randomID": "CCk2o4CZyYpA",
  664. "titleLabel": {
  665. "Type": "STRING",
  666. "Value": "index",
  667. "displayName": ""
  668. }
  669. },
  670. "StringValue": {
  671. "Type": "FLOAT",
  672. "Value": 0
  673. },
  674. "Type": "BTInputSlot"
  675. },
  676. "conditionB": {
  677. "ContainerValue": null,
  678. "StringValue": {
  679. "Type": "FLOAT",
  680. "Value": 5
  681. },
  682. "Type": "BTInputSlot"
  683. },
  684. "isIllegal": true,
  685. "randomID": "Bd2hY2u75JWo"
  686. },
  687. "Type": "BTBoolSlot"
  688. },
  689. "isIllegal": true,
  690. "randomID": "ez8wlkZ46Il",
  691. "sectionA": {
  692. "ContainerValue": {
  693. "Type": "BTPlayTimeLineAction",
  694. "baseSelect": {
  695. "DisplayName": "偶数组5_空置状态",
  696. "Type": "Action",
  697. "Value": "8"
  698. },
  699. "isIllegal": true,
  700. "randomID": "4keTWnjj4aud",
  701. "stepSlot": {
  702. "ContainerValue": null,
  703. "Type": "BTStepSlot"
  704. }
  705. },
  706. "Type": "BTSectionSlot"
  707. },
  708. "sectionB": {
  709. "ContainerValue": {
  710. "Type": "BTIFElseControlAction",
  711. "conditionA": {
  712. "ContainerValue": {
  713. "Type": "BTEqualOperatorAction",
  714. "conditionA": {
  715. "ContainerValue": {
  716. "Type": "BTVariableAction",
  717. "VarScope": "Scene",
  718. "isIllegal": true,
  719. "randomID": "N8AOTqIMrAFq",
  720. "titleLabel": {
  721. "Type": "STRING",
  722. "Value": "index",
  723. "displayName": ""
  724. }
  725. },
  726. "StringValue": {
  727. "Type": "FLOAT",
  728. "Value": 0
  729. },
  730. "Type": "BTInputSlot"
  731. },
  732. "conditionB": {
  733. "ContainerValue": null,
  734. "StringValue": {
  735. "Type": "FLOAT",
  736. "Value": 6
  737. },
  738. "Type": "BTInputSlot"
  739. },
  740. "isIllegal": true,
  741. "randomID": "UeaeBuknd9ve"
  742. },
  743. "Type": "BTBoolSlot"
  744. },
  745. "isIllegal": true,
  746. "randomID": "mi79Giw8uWyP",
  747. "sectionA": {
  748. "ContainerValue": {
  749. "Type": "BTPlayTimeLineAction",
  750. "baseSelect": {
  751. "DisplayName": "偶数组6_空置状态",
  752. "Type": "Action",
  753. "Value": "10"
  754. },
  755. "isIllegal": true,
  756. "randomID": "yjc0bUItAq69",
  757. "stepSlot": {
  758. "ContainerValue": null,
  759. "Type": "BTStepSlot"
  760. }
  761. },
  762. "Type": "BTSectionSlot"
  763. },
  764. "sectionB": {
  765. "ContainerValue": null,
  766. "Type": "BTSectionSlot"
  767. },
  768. "stepSlot": {
  769. "ContainerValue": null,
  770. "Type": "BTStepSlot"
  771. }
  772. },
  773. "Type": "BTSectionSlot"
  774. },
  775. "stepSlot": {
  776. "ContainerValue": null,
  777. "Type": "BTStepSlot"
  778. }
  779. },
  780. "Type": "BTSectionSlot"
  781. },
  782. "stepSlot": {
  783. "ContainerValue": null,
  784. "Type": "BTStepSlot"
  785. }
  786. },
  787. "Type": "BTSectionSlot"
  788. },
  789. "stepSlot": {
  790. "ContainerValue": null,
  791. "Type": "BTStepSlot"
  792. }
  793. },
  794. "Type": "BTSectionSlot"
  795. },
  796. "stepSlot": {
  797. "ContainerValue": null,
  798. "Type": "BTStepSlot"
  799. }
  800. },
  801. "Type": "BTSectionSlot"
  802. },
  803. "stepSlot": {
  804. "ContainerValue": null,
  805. "Type": "BTStepSlot"
  806. }
  807. },
  808. "Type": "BTSectionSlot"
  809. },
  810. "sectionB": {
  811. "ContainerValue": {
  812. "Type": "BTIFElseControlAction",
  813. "conditionA": {
  814. "ContainerValue": {
  815. "Type": "BTEqualOperatorAction",
  816. "conditionA": {
  817. "ContainerValue": {
  818. "Type": "BTVariableAction",
  819. "VarScope": "Scene",
  820. "isIllegal": true,
  821. "randomID": "jLhzscuAD0KT",
  822. "titleLabel": {
  823. "Type": "STRING",
  824. "Value": "index",
  825. "displayName": ""
  826. }
  827. },
  828. "StringValue": {
  829. "Type": "FLOAT",
  830. "Value": 0
  831. },
  832. "Type": "BTInputSlot"
  833. },
  834. "conditionB": {
  835. "ContainerValue": null,
  836. "StringValue": {
  837. "Type": "FLOAT",
  838. "Value": 1
  839. },
  840. "Type": "BTInputSlot"
  841. },
  842. "isIllegal": true,
  843. "randomID": "wyq8JsOip1cQ"
  844. },
  845. "Type": "BTBoolSlot"
  846. },
  847. "isIllegal": true,
  848. "randomID": "eX2DpBMjKKF",
  849. "sectionA": {
  850. "ContainerValue": {
  851. "Type": "BTPlayTimeLineAction",
  852. "baseSelect": {
  853. "DisplayName": "奇数组1_空置状态",
  854. "Type": "Action",
  855. "Value": "12"
  856. },
  857. "isIllegal": true,
  858. "randomID": "UloRj1GdSC4y",
  859. "stepSlot": {
  860. "ContainerValue": null,
  861. "Type": "BTStepSlot"
  862. }
  863. },
  864. "Type": "BTSectionSlot"
  865. },
  866. "sectionB": {
  867. "ContainerValue": {
  868. "Type": "BTIFElseControlAction",
  869. "conditionA": {
  870. "ContainerValue": {
  871. "Type": "BTEqualOperatorAction",
  872. "conditionA": {
  873. "ContainerValue": {
  874. "Type": "BTVariableAction",
  875. "VarScope": "Scene",
  876. "isIllegal": true,
  877. "randomID": "tdCXYShbj1NY",
  878. "titleLabel": {
  879. "Type": "STRING",
  880. "Value": "index",
  881. "displayName": ""
  882. }
  883. },
  884. "StringValue": {
  885. "Type": "FLOAT",
  886. "Value": 0
  887. },
  888. "Type": "BTInputSlot"
  889. },
  890. "conditionB": {
  891. "ContainerValue": null,
  892. "StringValue": {
  893. "Type": "FLOAT",
  894. "Value": 2
  895. },
  896. "Type": "BTInputSlot"
  897. },
  898. "isIllegal": true,
  899. "randomID": "qF0uxXTHP53m"
  900. },
  901. "Type": "BTBoolSlot"
  902. },
  903. "isIllegal": true,
  904. "randomID": "dTzaqijUDTPt",
  905. "sectionA": {
  906. "ContainerValue": {
  907. "Type": "BTPlayTimeLineAction",
  908. "baseSelect": {
  909. "DisplayName": "奇数组2_空置状态",
  910. "Type": "Action",
  911. "Value": "14"
  912. },
  913. "isIllegal": true,
  914. "randomID": "2uw7SOTTKnaE",
  915. "stepSlot": {
  916. "ContainerValue": null,
  917. "Type": "BTStepSlot"
  918. }
  919. },
  920. "Type": "BTSectionSlot"
  921. },
  922. "sectionB": {
  923. "ContainerValue": {
  924. "Type": "BTIFElseControlAction",
  925. "conditionA": {
  926. "ContainerValue": {
  927. "Type": "BTEqualOperatorAction",
  928. "conditionA": {
  929. "ContainerValue": {
  930. "Type": "BTVariableAction",
  931. "VarScope": "Scene",
  932. "isIllegal": true,
  933. "randomID": "TmPIGK98S9fL",
  934. "titleLabel": {
  935. "Type": "STRING",
  936. "Value": "index",
  937. "displayName": ""
  938. }
  939. },
  940. "StringValue": {
  941. "Type": "FLOAT",
  942. "Value": 0
  943. },
  944. "Type": "BTInputSlot"
  945. },
  946. "conditionB": {
  947. "ContainerValue": null,
  948. "StringValue": {
  949. "Type": "FLOAT",
  950. "Value": 3
  951. },
  952. "Type": "BTInputSlot"
  953. },
  954. "isIllegal": true,
  955. "randomID": "2GG8RzSsJYSu"
  956. },
  957. "Type": "BTBoolSlot"
  958. },
  959. "isIllegal": true,
  960. "randomID": "GpdBQaso6Py1",
  961. "sectionA": {
  962. "ContainerValue": {
  963. "Type": "BTPlayTimeLineAction",
  964. "baseSelect": {
  965. "DisplayName": "奇数组3_空置状态",
  966. "Type": "Action",
  967. "Value": "16"
  968. },
  969. "isIllegal": true,
  970. "randomID": "pQRT33gCCJeP",
  971. "stepSlot": {
  972. "ContainerValue": null,
  973. "Type": "BTStepSlot"
  974. }
  975. },
  976. "Type": "BTSectionSlot"
  977. },
  978. "sectionB": {
  979. "ContainerValue": {
  980. "Type": "BTIFElseControlAction",
  981. "conditionA": {
  982. "ContainerValue": {
  983. "Type": "BTEqualOperatorAction",
  984. "conditionA": {
  985. "ContainerValue": {
  986. "Type": "BTVariableAction",
  987. "VarScope": "Scene",
  988. "isIllegal": true,
  989. "randomID": "A98Xzpm6VLcu",
  990. "titleLabel": {
  991. "Type": "STRING",
  992. "Value": "index",
  993. "displayName": ""
  994. }
  995. },
  996. "StringValue": {
  997. "Type": "FLOAT",
  998. "Value": 0
  999. },
  1000. "Type": "BTInputSlot"
  1001. },
  1002. "conditionB": {
  1003. "ContainerValue": null,
  1004. "StringValue": {
  1005. "Type": "FLOAT",
  1006. "Value": 4
  1007. },
  1008. "Type": "BTInputSlot"
  1009. },
  1010. "isIllegal": true,
  1011. "randomID": "aqfKBew94RiY"
  1012. },
  1013. "Type": "BTBoolSlot"
  1014. },
  1015. "isIllegal": true,
  1016. "randomID": "hO5OsrnkYo3",
  1017. "sectionA": {
  1018. "ContainerValue": {
  1019. "Type": "BTPlayTimeLineAction",
  1020. "baseSelect": {
  1021. "DisplayName": "奇数组4_空置状态",
  1022. "Type": "Action",
  1023. "Value": "18"
  1024. },
  1025. "isIllegal": true,
  1026. "randomID": "XU1AJCq8puXx",
  1027. "stepSlot": {
  1028. "ContainerValue": null,
  1029. "Type": "BTStepSlot"
  1030. }
  1031. },
  1032. "Type": "BTSectionSlot"
  1033. },
  1034. "sectionB": {
  1035. "ContainerValue": {
  1036. "Type": "BTIFElseControlAction",
  1037. "conditionA": {
  1038. "ContainerValue": {
  1039. "Type": "BTEqualOperatorAction",
  1040. "conditionA": {
  1041. "ContainerValue": {
  1042. "Type": "BTVariableAction",
  1043. "VarScope": "Scene",
  1044. "isIllegal": true,
  1045. "randomID": "XMriV3xEfxtm",
  1046. "titleLabel": {
  1047. "Type": "STRING",
  1048. "Value": "index",
  1049. "displayName": ""
  1050. }
  1051. },
  1052. "StringValue": {
  1053. "Type": "FLOAT",
  1054. "Value": 0
  1055. },
  1056. "Type": "BTInputSlot"
  1057. },
  1058. "conditionB": {
  1059. "ContainerValue": null,
  1060. "StringValue": {
  1061. "Type": "FLOAT",
  1062. "Value": 5
  1063. },
  1064. "Type": "BTInputSlot"
  1065. },
  1066. "isIllegal": true,
  1067. "randomID": "YcZ1f9SU8852"
  1068. },
  1069. "Type": "BTBoolSlot"
  1070. },
  1071. "isIllegal": true,
  1072. "randomID": "KiVflKrGQO4f",
  1073. "sectionA": {
  1074. "ContainerValue": {
  1075. "Type": "BTPlayTimeLineAction",
  1076. "baseSelect": {
  1077. "DisplayName": "奇数组5_空置状态",
  1078. "Type": "Action",
  1079. "Value": "20"
  1080. },
  1081. "isIllegal": true,
  1082. "randomID": "JpgM72L2JYE",
  1083. "stepSlot": {
  1084. "ContainerValue": null,
  1085. "Type": "BTStepSlot"
  1086. }
  1087. },
  1088. "Type": "BTSectionSlot"
  1089. },
  1090. "sectionB": {
  1091. "ContainerValue": {
  1092. "Type": "BTIFElseControlAction",
  1093. "conditionA": {
  1094. "ContainerValue": {
  1095. "Type": "BTEqualOperatorAction",
  1096. "conditionA": {
  1097. "ContainerValue": {
  1098. "Type": "BTVariableAction",
  1099. "VarScope": "Scene",
  1100. "isIllegal": true,
  1101. "randomID": "kQAX6BUoLGcj",
  1102. "titleLabel": {
  1103. "Type": "STRING",
  1104. "Value": "index",
  1105. "displayName": ""
  1106. }
  1107. },
  1108. "StringValue": {
  1109. "Type": "FLOAT",
  1110. "Value": 0
  1111. },
  1112. "Type": "BTInputSlot"
  1113. },
  1114. "conditionB": {
  1115. "ContainerValue": null,
  1116. "StringValue": {
  1117. "Type": "FLOAT",
  1118. "Value": 6
  1119. },
  1120. "Type": "BTInputSlot"
  1121. },
  1122. "isIllegal": true,
  1123. "randomID": "cDBmrRsFC5N4"
  1124. },
  1125. "Type": "BTBoolSlot"
  1126. },
  1127. "isIllegal": true,
  1128. "randomID": "Bt50jw5PtSCU",
  1129. "sectionA": {
  1130. "ContainerValue": {
  1131. "Type": "BTPlayTimeLineAction",
  1132. "baseSelect": {
  1133. "DisplayName": "奇数组6_空置状态",
  1134. "Type": "Action",
  1135. "Value": "22"
  1136. },
  1137. "isIllegal": true,
  1138. "randomID": "TFs0jAIQlfRz",
  1139. "stepSlot": {
  1140. "ContainerValue": null,
  1141. "Type": "BTStepSlot"
  1142. }
  1143. },
  1144. "Type": "BTSectionSlot"
  1145. },
  1146. "sectionB": {
  1147. "ContainerValue": {
  1148. "Type": "BTPlayTimeLineAction",
  1149. "baseSelect": {
  1150. "DisplayName": "奇数组7_空置状态",
  1151. "Type": "Action",
  1152. "Value": "24"
  1153. },
  1154. "isIllegal": true,
  1155. "randomID": "WfVLPXod4zmE",
  1156. "stepSlot": {
  1157. "ContainerValue": null,
  1158. "Type": "BTStepSlot"
  1159. }
  1160. },
  1161. "Type": "BTSectionSlot"
  1162. },
  1163. "stepSlot": {
  1164. "ContainerValue": null,
  1165. "Type": "BTStepSlot"
  1166. }
  1167. },
  1168. "Type": "BTSectionSlot"
  1169. },
  1170. "stepSlot": {
  1171. "ContainerValue": null,
  1172. "Type": "BTStepSlot"
  1173. }
  1174. },
  1175. "Type": "BTSectionSlot"
  1176. },
  1177. "stepSlot": {
  1178. "ContainerValue": null,
  1179. "Type": "BTStepSlot"
  1180. }
  1181. },
  1182. "Type": "BTSectionSlot"
  1183. },
  1184. "stepSlot": {
  1185. "ContainerValue": null,
  1186. "Type": "BTStepSlot"
  1187. }
  1188. },
  1189. "Type": "BTSectionSlot"
  1190. },
  1191. "stepSlot": {
  1192. "ContainerValue": null,
  1193. "Type": "BTStepSlot"
  1194. }
  1195. },
  1196. "Type": "BTSectionSlot"
  1197. },
  1198. "stepSlot": {
  1199. "ContainerValue": null,
  1200. "Type": "BTStepSlot"
  1201. }
  1202. },
  1203. "Type": "BTSectionSlot"
  1204. },
  1205. "stepSlot": {
  1206. "ContainerValue": null,
  1207. "Type": "BTStepSlot"
  1208. }
  1209. },
  1210. "Type": "BTStepSlot"
  1211. },
  1212. "x": -481,
  1213. "y": -448
  1214. },
  1215. "Tree4": {
  1216. "ExportTree": true,
  1217. "ImageIndex": 2,
  1218. "Name": {
  1219. "Type": "STRING",
  1220. "Value": "设置奇偶值",
  1221. "displayName": ""
  1222. },
  1223. "Type": "BTCustomFuncHeadAction",
  1224. "VarJson": {
  1225. "boolJson": {
  1226. },
  1227. "numberJson": {
  1228. "evenNum": "Number"
  1229. }
  1230. },
  1231. "isIllegal": false,
  1232. "randomID": "1JyQo2a28SqI",
  1233. "stepSlot": {
  1234. "ContainerValue": {
  1235. "TitleInput": {
  1236. "ContainerValue": {
  1237. "Type": "BTFuncVariableAction",
  1238. "colorName": "More",
  1239. "currentStr": "evenNum",
  1240. "fatherFuncID": "1JyQo2a28SqI",
  1241. "isIllegal": true,
  1242. "randomID": "0bK7gnqrZJoV",
  1243. "titleLabel": {
  1244. "Type": "STRING",
  1245. "Value": "evenNum",
  1246. "displayName": ""
  1247. }
  1248. },
  1249. "StringValue": {
  1250. "Type": "STRING",
  1251. "Value": "0"
  1252. },
  1253. "Type": "BTInputSlot"
  1254. },
  1255. "Type": "BTDataVarSetAction",
  1256. "VarScope": "Scene",
  1257. "baseSelect": {
  1258. "DisplayName": "evenNum",
  1259. "Type": "Action",
  1260. "Value": "evenNum"
  1261. },
  1262. "isIllegal": true,
  1263. "randomID": "Ph2454J29r3t",
  1264. "stepSlot": {
  1265. "ContainerValue": null,
  1266. "Type": "BTStepSlot"
  1267. }
  1268. },
  1269. "Type": "BTStepSlot"
  1270. },
  1271. "x": 365,
  1272. "y": -539
  1273. },
  1274. "Tree5": {
  1275. "ExportTree": true,
  1276. "ImageIndex": 4,
  1277. "Name": {
  1278. "Type": "STRING",
  1279. "Value": "放置状态",
  1280. "displayName": ""
  1281. },
  1282. "Type": "BTCustomFuncHeadAction",
  1283. "VarJson": {
  1284. "boolJson": {
  1285. },
  1286. "numberJson": {
  1287. }
  1288. },
  1289. "isIllegal": false,
  1290. "randomID": "lr4lROHYBS63",
  1291. "stepSlot": {
  1292. "ContainerValue": {
  1293. "Type": "BTIFElseControlAction",
  1294. "conditionA": {
  1295. "ContainerValue": {
  1296. "Type": "BTEqualOperatorAction",
  1297. "conditionA": {
  1298. "ContainerValue": {
  1299. "Type": "BTVariableAction",
  1300. "VarScope": "Scene",
  1301. "isIllegal": true,
  1302. "randomID": "fx11bVo2Z1Ma",
  1303. "titleLabel": {
  1304. "Type": "STRING",
  1305. "Value": "evenNum",
  1306. "displayName": ""
  1307. }
  1308. },
  1309. "StringValue": {
  1310. "Type": "FLOAT",
  1311. "Value": 0
  1312. },
  1313. "Type": "BTInputSlot"
  1314. },
  1315. "conditionB": {
  1316. "ContainerValue": null,
  1317. "StringValue": {
  1318. "Type": "FLOAT",
  1319. "Value": 1
  1320. },
  1321. "Type": "BTInputSlot"
  1322. },
  1323. "isIllegal": true,
  1324. "randomID": "nJXdTmAxSlvd"
  1325. },
  1326. "Type": "BTBoolSlot"
  1327. },
  1328. "isIllegal": true,
  1329. "randomID": "7lwy0a3JSl9T",
  1330. "sectionA": {
  1331. "ContainerValue": {
  1332. "Type": "BTIFElseControlAction",
  1333. "conditionA": {
  1334. "ContainerValue": {
  1335. "Type": "BTEqualOperatorAction",
  1336. "conditionA": {
  1337. "ContainerValue": {
  1338. "Type": "BTVariableAction",
  1339. "VarScope": "Scene",
  1340. "isIllegal": true,
  1341. "randomID": "v25UyVKUk8nK",
  1342. "titleLabel": {
  1343. "Type": "STRING",
  1344. "Value": "index",
  1345. "displayName": ""
  1346. }
  1347. },
  1348. "StringValue": {
  1349. "Type": "FLOAT",
  1350. "Value": 0
  1351. },
  1352. "Type": "BTInputSlot"
  1353. },
  1354. "conditionB": {
  1355. "ContainerValue": null,
  1356. "StringValue": {
  1357. "Type": "FLOAT",
  1358. "Value": 1
  1359. },
  1360. "Type": "BTInputSlot"
  1361. },
  1362. "isIllegal": true,
  1363. "randomID": "woU7IdGbk0bO"
  1364. },
  1365. "Type": "BTBoolSlot"
  1366. },
  1367. "isIllegal": true,
  1368. "randomID": "eQt9yDOMhbEe",
  1369. "sectionA": {
  1370. "ContainerValue": {
  1371. "Type": "BTPlayTimeLineAction",
  1372. "baseSelect": {
  1373. "DisplayName": "偶数组1_放置状态",
  1374. "Type": "Action",
  1375. "Value": "1"
  1376. },
  1377. "isIllegal": true,
  1378. "randomID": "sGOw6FlxLW7l",
  1379. "stepSlot": {
  1380. "ContainerValue": null,
  1381. "Type": "BTStepSlot"
  1382. }
  1383. },
  1384. "Type": "BTSectionSlot"
  1385. },
  1386. "sectionB": {
  1387. "ContainerValue": {
  1388. "Type": "BTIFElseControlAction",
  1389. "conditionA": {
  1390. "ContainerValue": {
  1391. "Type": "BTEqualOperatorAction",
  1392. "conditionA": {
  1393. "ContainerValue": {
  1394. "Type": "BTVariableAction",
  1395. "VarScope": "Scene",
  1396. "isIllegal": true,
  1397. "randomID": "QpxySMAHM705",
  1398. "titleLabel": {
  1399. "Type": "STRING",
  1400. "Value": "index",
  1401. "displayName": ""
  1402. }
  1403. },
  1404. "StringValue": {
  1405. "Type": "FLOAT",
  1406. "Value": 0
  1407. },
  1408. "Type": "BTInputSlot"
  1409. },
  1410. "conditionB": {
  1411. "ContainerValue": null,
  1412. "StringValue": {
  1413. "Type": "FLOAT",
  1414. "Value": 2
  1415. },
  1416. "Type": "BTInputSlot"
  1417. },
  1418. "isIllegal": true,
  1419. "randomID": "E8deSOTJOI46"
  1420. },
  1421. "Type": "BTBoolSlot"
  1422. },
  1423. "isIllegal": true,
  1424. "randomID": "MtPOdbLHbe8g",
  1425. "sectionA": {
  1426. "ContainerValue": {
  1427. "Type": "BTPlayTimeLineAction",
  1428. "baseSelect": {
  1429. "DisplayName": "偶数组2_放置状态",
  1430. "Type": "Action",
  1431. "Value": "3"
  1432. },
  1433. "isIllegal": true,
  1434. "randomID": "T4K90S2DNr2y",
  1435. "stepSlot": {
  1436. "ContainerValue": null,
  1437. "Type": "BTStepSlot"
  1438. }
  1439. },
  1440. "Type": "BTSectionSlot"
  1441. },
  1442. "sectionB": {
  1443. "ContainerValue": {
  1444. "Type": "BTIFElseControlAction",
  1445. "conditionA": {
  1446. "ContainerValue": {
  1447. "Type": "BTEqualOperatorAction",
  1448. "conditionA": {
  1449. "ContainerValue": {
  1450. "Type": "BTVariableAction",
  1451. "VarScope": "Scene",
  1452. "isIllegal": true,
  1453. "randomID": "gvWGHYMU4Vmo",
  1454. "titleLabel": {
  1455. "Type": "STRING",
  1456. "Value": "index",
  1457. "displayName": ""
  1458. }
  1459. },
  1460. "StringValue": {
  1461. "Type": "FLOAT",
  1462. "Value": 0
  1463. },
  1464. "Type": "BTInputSlot"
  1465. },
  1466. "conditionB": {
  1467. "ContainerValue": null,
  1468. "StringValue": {
  1469. "Type": "FLOAT",
  1470. "Value": 3
  1471. },
  1472. "Type": "BTInputSlot"
  1473. },
  1474. "isIllegal": true,
  1475. "randomID": "3T9wpxgHGw44"
  1476. },
  1477. "Type": "BTBoolSlot"
  1478. },
  1479. "isIllegal": true,
  1480. "randomID": "afL69XJrBjYd",
  1481. "sectionA": {
  1482. "ContainerValue": {
  1483. "Type": "BTPlayTimeLineAction",
  1484. "baseSelect": {
  1485. "DisplayName": "偶数组3_放置状态",
  1486. "Type": "Action",
  1487. "Value": "5"
  1488. },
  1489. "isIllegal": true,
  1490. "randomID": "o7HGy7IDSyRa",
  1491. "stepSlot": {
  1492. "ContainerValue": null,
  1493. "Type": "BTStepSlot"
  1494. }
  1495. },
  1496. "Type": "BTSectionSlot"
  1497. },
  1498. "sectionB": {
  1499. "ContainerValue": {
  1500. "Type": "BTIFElseControlAction",
  1501. "conditionA": {
  1502. "ContainerValue": {
  1503. "Type": "BTEqualOperatorAction",
  1504. "conditionA": {
  1505. "ContainerValue": {
  1506. "Type": "BTVariableAction",
  1507. "VarScope": "Scene",
  1508. "isIllegal": true,
  1509. "randomID": "n3zqDxLxS8kl",
  1510. "titleLabel": {
  1511. "Type": "STRING",
  1512. "Value": "index",
  1513. "displayName": ""
  1514. }
  1515. },
  1516. "StringValue": {
  1517. "Type": "FLOAT",
  1518. "Value": 0
  1519. },
  1520. "Type": "BTInputSlot"
  1521. },
  1522. "conditionB": {
  1523. "ContainerValue": null,
  1524. "StringValue": {
  1525. "Type": "FLOAT",
  1526. "Value": 4
  1527. },
  1528. "Type": "BTInputSlot"
  1529. },
  1530. "isIllegal": true,
  1531. "randomID": "6LnVesvzrLIt"
  1532. },
  1533. "Type": "BTBoolSlot"
  1534. },
  1535. "isIllegal": true,
  1536. "randomID": "uWPFrqqXkXmJ",
  1537. "sectionA": {
  1538. "ContainerValue": {
  1539. "Type": "BTPlayTimeLineAction",
  1540. "baseSelect": {
  1541. "DisplayName": "偶数组4_放置状态",
  1542. "Type": "Action",
  1543. "Value": "7"
  1544. },
  1545. "isIllegal": true,
  1546. "randomID": "XbPii7qv3aY5",
  1547. "stepSlot": {
  1548. "ContainerValue": null,
  1549. "Type": "BTStepSlot"
  1550. }
  1551. },
  1552. "Type": "BTSectionSlot"
  1553. },
  1554. "sectionB": {
  1555. "ContainerValue": {
  1556. "Type": "BTIFElseControlAction",
  1557. "conditionA": {
  1558. "ContainerValue": {
  1559. "Type": "BTEqualOperatorAction",
  1560. "conditionA": {
  1561. "ContainerValue": {
  1562. "Type": "BTVariableAction",
  1563. "VarScope": "Scene",
  1564. "isIllegal": true,
  1565. "randomID": "PnwCrAMitHwh",
  1566. "titleLabel": {
  1567. "Type": "STRING",
  1568. "Value": "index",
  1569. "displayName": ""
  1570. }
  1571. },
  1572. "StringValue": {
  1573. "Type": "FLOAT",
  1574. "Value": 0
  1575. },
  1576. "Type": "BTInputSlot"
  1577. },
  1578. "conditionB": {
  1579. "ContainerValue": null,
  1580. "StringValue": {
  1581. "Type": "FLOAT",
  1582. "Value": 5
  1583. },
  1584. "Type": "BTInputSlot"
  1585. },
  1586. "isIllegal": true,
  1587. "randomID": "jjuNwb8dcho9"
  1588. },
  1589. "Type": "BTBoolSlot"
  1590. },
  1591. "isIllegal": true,
  1592. "randomID": "3lVDdwrgN4dw",
  1593. "sectionA": {
  1594. "ContainerValue": {
  1595. "Type": "BTPlayTimeLineAction",
  1596. "baseSelect": {
  1597. "DisplayName": "偶数组5_放置状态",
  1598. "Type": "Action",
  1599. "Value": "9"
  1600. },
  1601. "isIllegal": true,
  1602. "randomID": "E4XDI9rw6HBK",
  1603. "stepSlot": {
  1604. "ContainerValue": null,
  1605. "Type": "BTStepSlot"
  1606. }
  1607. },
  1608. "Type": "BTSectionSlot"
  1609. },
  1610. "sectionB": {
  1611. "ContainerValue": {
  1612. "Type": "BTIFElseControlAction",
  1613. "conditionA": {
  1614. "ContainerValue": {
  1615. "Type": "BTEqualOperatorAction",
  1616. "conditionA": {
  1617. "ContainerValue": {
  1618. "Type": "BTVariableAction",
  1619. "VarScope": "Scene",
  1620. "isIllegal": true,
  1621. "randomID": "mRINKx1kU4PQ",
  1622. "titleLabel": {
  1623. "Type": "STRING",
  1624. "Value": "index",
  1625. "displayName": ""
  1626. }
  1627. },
  1628. "StringValue": {
  1629. "Type": "FLOAT",
  1630. "Value": 0
  1631. },
  1632. "Type": "BTInputSlot"
  1633. },
  1634. "conditionB": {
  1635. "ContainerValue": null,
  1636. "StringValue": {
  1637. "Type": "FLOAT",
  1638. "Value": 6
  1639. },
  1640. "Type": "BTInputSlot"
  1641. },
  1642. "isIllegal": true,
  1643. "randomID": "WeYrD87cwQ5v"
  1644. },
  1645. "Type": "BTBoolSlot"
  1646. },
  1647. "isIllegal": true,
  1648. "randomID": "DZJNI7C4A11Q",
  1649. "sectionA": {
  1650. "ContainerValue": {
  1651. "Type": "BTPlayTimeLineAction",
  1652. "baseSelect": {
  1653. "DisplayName": "偶数组6_放置状态",
  1654. "Type": "Action",
  1655. "Value": "11"
  1656. },
  1657. "isIllegal": true,
  1658. "randomID": "aePr7fQhCvZb",
  1659. "stepSlot": {
  1660. "ContainerValue": null,
  1661. "Type": "BTStepSlot"
  1662. }
  1663. },
  1664. "Type": "BTSectionSlot"
  1665. },
  1666. "sectionB": {
  1667. "ContainerValue": null,
  1668. "Type": "BTSectionSlot"
  1669. },
  1670. "stepSlot": {
  1671. "ContainerValue": null,
  1672. "Type": "BTStepSlot"
  1673. }
  1674. },
  1675. "Type": "BTSectionSlot"
  1676. },
  1677. "stepSlot": {
  1678. "ContainerValue": null,
  1679. "Type": "BTStepSlot"
  1680. }
  1681. },
  1682. "Type": "BTSectionSlot"
  1683. },
  1684. "stepSlot": {
  1685. "ContainerValue": null,
  1686. "Type": "BTStepSlot"
  1687. }
  1688. },
  1689. "Type": "BTSectionSlot"
  1690. },
  1691. "stepSlot": {
  1692. "ContainerValue": null,
  1693. "Type": "BTStepSlot"
  1694. }
  1695. },
  1696. "Type": "BTSectionSlot"
  1697. },
  1698. "stepSlot": {
  1699. "ContainerValue": null,
  1700. "Type": "BTStepSlot"
  1701. }
  1702. },
  1703. "Type": "BTSectionSlot"
  1704. },
  1705. "stepSlot": {
  1706. "ContainerValue": null,
  1707. "Type": "BTStepSlot"
  1708. }
  1709. },
  1710. "Type": "BTSectionSlot"
  1711. },
  1712. "sectionB": {
  1713. "ContainerValue": {
  1714. "Type": "BTIFElseControlAction",
  1715. "conditionA": {
  1716. "ContainerValue": {
  1717. "Type": "BTEqualOperatorAction",
  1718. "conditionA": {
  1719. "ContainerValue": {
  1720. "Type": "BTVariableAction",
  1721. "VarScope": "Scene",
  1722. "isIllegal": true,
  1723. "randomID": "RwwuTAkJs4Zg",
  1724. "titleLabel": {
  1725. "Type": "STRING",
  1726. "Value": "index",
  1727. "displayName": ""
  1728. }
  1729. },
  1730. "StringValue": {
  1731. "Type": "FLOAT",
  1732. "Value": 0
  1733. },
  1734. "Type": "BTInputSlot"
  1735. },
  1736. "conditionB": {
  1737. "ContainerValue": null,
  1738. "StringValue": {
  1739. "Type": "FLOAT",
  1740. "Value": 1
  1741. },
  1742. "Type": "BTInputSlot"
  1743. },
  1744. "isIllegal": true,
  1745. "randomID": "1a0szi1CzaXP"
  1746. },
  1747. "Type": "BTBoolSlot"
  1748. },
  1749. "isIllegal": true,
  1750. "randomID": "URz8H7eXIo7b",
  1751. "sectionA": {
  1752. "ContainerValue": {
  1753. "Type": "BTPlayTimeLineAction",
  1754. "baseSelect": {
  1755. "DisplayName": "奇数组1_放置状态",
  1756. "Type": "Action",
  1757. "Value": "13"
  1758. },
  1759. "isIllegal": true,
  1760. "randomID": "GjPSKaTo3Uvt",
  1761. "stepSlot": {
  1762. "ContainerValue": null,
  1763. "Type": "BTStepSlot"
  1764. }
  1765. },
  1766. "Type": "BTSectionSlot"
  1767. },
  1768. "sectionB": {
  1769. "ContainerValue": {
  1770. "Type": "BTIFElseControlAction",
  1771. "conditionA": {
  1772. "ContainerValue": {
  1773. "Type": "BTEqualOperatorAction",
  1774. "conditionA": {
  1775. "ContainerValue": {
  1776. "Type": "BTVariableAction",
  1777. "VarScope": "Scene",
  1778. "isIllegal": true,
  1779. "randomID": "ILqGkMAZrlHB",
  1780. "titleLabel": {
  1781. "Type": "STRING",
  1782. "Value": "index",
  1783. "displayName": ""
  1784. }
  1785. },
  1786. "StringValue": {
  1787. "Type": "FLOAT",
  1788. "Value": 0
  1789. },
  1790. "Type": "BTInputSlot"
  1791. },
  1792. "conditionB": {
  1793. "ContainerValue": null,
  1794. "StringValue": {
  1795. "Type": "FLOAT",
  1796. "Value": 2
  1797. },
  1798. "Type": "BTInputSlot"
  1799. },
  1800. "isIllegal": true,
  1801. "randomID": "LK3nZjojxBXd"
  1802. },
  1803. "Type": "BTBoolSlot"
  1804. },
  1805. "isIllegal": true,
  1806. "randomID": "6JNMgVhUcIln",
  1807. "sectionA": {
  1808. "ContainerValue": {
  1809. "Type": "BTPlayTimeLineAction",
  1810. "baseSelect": {
  1811. "DisplayName": "奇数组2_放置状态",
  1812. "Type": "Action",
  1813. "Value": "15"
  1814. },
  1815. "isIllegal": true,
  1816. "randomID": "v8ll5E7FeCBk",
  1817. "stepSlot": {
  1818. "ContainerValue": null,
  1819. "Type": "BTStepSlot"
  1820. }
  1821. },
  1822. "Type": "BTSectionSlot"
  1823. },
  1824. "sectionB": {
  1825. "ContainerValue": {
  1826. "Type": "BTIFElseControlAction",
  1827. "conditionA": {
  1828. "ContainerValue": {
  1829. "Type": "BTEqualOperatorAction",
  1830. "conditionA": {
  1831. "ContainerValue": {
  1832. "Type": "BTVariableAction",
  1833. "VarScope": "Scene",
  1834. "isIllegal": true,
  1835. "randomID": "0YXLX92mmDmc",
  1836. "titleLabel": {
  1837. "Type": "STRING",
  1838. "Value": "index",
  1839. "displayName": ""
  1840. }
  1841. },
  1842. "StringValue": {
  1843. "Type": "FLOAT",
  1844. "Value": 0
  1845. },
  1846. "Type": "BTInputSlot"
  1847. },
  1848. "conditionB": {
  1849. "ContainerValue": null,
  1850. "StringValue": {
  1851. "Type": "FLOAT",
  1852. "Value": 3
  1853. },
  1854. "Type": "BTInputSlot"
  1855. },
  1856. "isIllegal": true,
  1857. "randomID": "3OjL9Au2wPoP"
  1858. },
  1859. "Type": "BTBoolSlot"
  1860. },
  1861. "isIllegal": true,
  1862. "randomID": "K0La2ldBmLO",
  1863. "sectionA": {
  1864. "ContainerValue": {
  1865. "Type": "BTPlayTimeLineAction",
  1866. "baseSelect": {
  1867. "DisplayName": "奇数组3_放置状态",
  1868. "Type": "Action",
  1869. "Value": "17"
  1870. },
  1871. "isIllegal": true,
  1872. "randomID": "DqMhHOqhEGR",
  1873. "stepSlot": {
  1874. "ContainerValue": null,
  1875. "Type": "BTStepSlot"
  1876. }
  1877. },
  1878. "Type": "BTSectionSlot"
  1879. },
  1880. "sectionB": {
  1881. "ContainerValue": {
  1882. "Type": "BTIFElseControlAction",
  1883. "conditionA": {
  1884. "ContainerValue": {
  1885. "Type": "BTEqualOperatorAction",
  1886. "conditionA": {
  1887. "ContainerValue": {
  1888. "Type": "BTVariableAction",
  1889. "VarScope": "Scene",
  1890. "isIllegal": true,
  1891. "randomID": "YDeQAEs6YG53",
  1892. "titleLabel": {
  1893. "Type": "STRING",
  1894. "Value": "index",
  1895. "displayName": ""
  1896. }
  1897. },
  1898. "StringValue": {
  1899. "Type": "FLOAT",
  1900. "Value": 0
  1901. },
  1902. "Type": "BTInputSlot"
  1903. },
  1904. "conditionB": {
  1905. "ContainerValue": null,
  1906. "StringValue": {
  1907. "Type": "FLOAT",
  1908. "Value": 4
  1909. },
  1910. "Type": "BTInputSlot"
  1911. },
  1912. "isIllegal": true,
  1913. "randomID": "4rtkBXtA8zqI"
  1914. },
  1915. "Type": "BTBoolSlot"
  1916. },
  1917. "isIllegal": true,
  1918. "randomID": "SOuNVBLftqj7",
  1919. "sectionA": {
  1920. "ContainerValue": {
  1921. "Type": "BTPlayTimeLineAction",
  1922. "baseSelect": {
  1923. "DisplayName": "奇数组4_放置状态",
  1924. "Type": "Action",
  1925. "Value": "19"
  1926. },
  1927. "isIllegal": true,
  1928. "randomID": "U2Qr3OPB7ZDG",
  1929. "stepSlot": {
  1930. "ContainerValue": null,
  1931. "Type": "BTStepSlot"
  1932. }
  1933. },
  1934. "Type": "BTSectionSlot"
  1935. },
  1936. "sectionB": {
  1937. "ContainerValue": {
  1938. "Type": "BTIFElseControlAction",
  1939. "conditionA": {
  1940. "ContainerValue": {
  1941. "Type": "BTEqualOperatorAction",
  1942. "conditionA": {
  1943. "ContainerValue": {
  1944. "Type": "BTVariableAction",
  1945. "VarScope": "Scene",
  1946. "isIllegal": true,
  1947. "randomID": "o19zXAumY6MT",
  1948. "titleLabel": {
  1949. "Type": "STRING",
  1950. "Value": "index",
  1951. "displayName": ""
  1952. }
  1953. },
  1954. "StringValue": {
  1955. "Type": "FLOAT",
  1956. "Value": 0
  1957. },
  1958. "Type": "BTInputSlot"
  1959. },
  1960. "conditionB": {
  1961. "ContainerValue": null,
  1962. "StringValue": {
  1963. "Type": "FLOAT",
  1964. "Value": 5
  1965. },
  1966. "Type": "BTInputSlot"
  1967. },
  1968. "isIllegal": true,
  1969. "randomID": "Z2oLLDBqjM6S"
  1970. },
  1971. "Type": "BTBoolSlot"
  1972. },
  1973. "isIllegal": true,
  1974. "randomID": "CWrZpqhyjDn",
  1975. "sectionA": {
  1976. "ContainerValue": {
  1977. "Type": "BTPlayTimeLineAction",
  1978. "baseSelect": {
  1979. "DisplayName": "奇数组5_放置状态",
  1980. "Type": "Action",
  1981. "Value": "21"
  1982. },
  1983. "isIllegal": true,
  1984. "randomID": "sofJf4Ykg178",
  1985. "stepSlot": {
  1986. "ContainerValue": null,
  1987. "Type": "BTStepSlot"
  1988. }
  1989. },
  1990. "Type": "BTSectionSlot"
  1991. },
  1992. "sectionB": {
  1993. "ContainerValue": {
  1994. "Type": "BTIFElseControlAction",
  1995. "conditionA": {
  1996. "ContainerValue": {
  1997. "Type": "BTEqualOperatorAction",
  1998. "conditionA": {
  1999. "ContainerValue": {
  2000. "Type": "BTVariableAction",
  2001. "VarScope": "Scene",
  2002. "isIllegal": true,
  2003. "randomID": "pllEg4L7iN3g",
  2004. "titleLabel": {
  2005. "Type": "STRING",
  2006. "Value": "index",
  2007. "displayName": ""
  2008. }
  2009. },
  2010. "StringValue": {
  2011. "Type": "FLOAT",
  2012. "Value": 0
  2013. },
  2014. "Type": "BTInputSlot"
  2015. },
  2016. "conditionB": {
  2017. "ContainerValue": null,
  2018. "StringValue": {
  2019. "Type": "FLOAT",
  2020. "Value": 6
  2021. },
  2022. "Type": "BTInputSlot"
  2023. },
  2024. "isIllegal": true,
  2025. "randomID": "niXI4kZpRvK0"
  2026. },
  2027. "Type": "BTBoolSlot"
  2028. },
  2029. "isIllegal": true,
  2030. "randomID": "aoos6toPKSAx",
  2031. "sectionA": {
  2032. "ContainerValue": {
  2033. "Type": "BTPlayTimeLineAction",
  2034. "baseSelect": {
  2035. "DisplayName": "奇数组6_放置状态",
  2036. "Type": "Action",
  2037. "Value": "23"
  2038. },
  2039. "isIllegal": true,
  2040. "randomID": "qTm5mqJ6cEz",
  2041. "stepSlot": {
  2042. "ContainerValue": null,
  2043. "Type": "BTStepSlot"
  2044. }
  2045. },
  2046. "Type": "BTSectionSlot"
  2047. },
  2048. "sectionB": {
  2049. "ContainerValue": {
  2050. "Type": "BTPlayTimeLineAction",
  2051. "baseSelect": {
  2052. "DisplayName": "奇数组7_放置状态",
  2053. "Type": "Action",
  2054. "Value": "25"
  2055. },
  2056. "isIllegal": true,
  2057. "randomID": "vFTDeTjfZzz7",
  2058. "stepSlot": {
  2059. "ContainerValue": null,
  2060. "Type": "BTStepSlot"
  2061. }
  2062. },
  2063. "Type": "BTSectionSlot"
  2064. },
  2065. "stepSlot": {
  2066. "ContainerValue": null,
  2067. "Type": "BTStepSlot"
  2068. }
  2069. },
  2070. "Type": "BTSectionSlot"
  2071. },
  2072. "stepSlot": {
  2073. "ContainerValue": null,
  2074. "Type": "BTStepSlot"
  2075. }
  2076. },
  2077. "Type": "BTSectionSlot"
  2078. },
  2079. "stepSlot": {
  2080. "ContainerValue": null,
  2081. "Type": "BTStepSlot"
  2082. }
  2083. },
  2084. "Type": "BTSectionSlot"
  2085. },
  2086. "stepSlot": {
  2087. "ContainerValue": null,
  2088. "Type": "BTStepSlot"
  2089. }
  2090. },
  2091. "Type": "BTSectionSlot"
  2092. },
  2093. "stepSlot": {
  2094. "ContainerValue": null,
  2095. "Type": "BTStepSlot"
  2096. }
  2097. },
  2098. "Type": "BTSectionSlot"
  2099. },
  2100. "stepSlot": {
  2101. "ContainerValue": null,
  2102. "Type": "BTStepSlot"
  2103. }
  2104. },
  2105. "Type": "BTSectionSlot"
  2106. },
  2107. "stepSlot": {
  2108. "ContainerValue": null,
  2109. "Type": "BTStepSlot"
  2110. }
  2111. },
  2112. "Type": "BTStepSlot"
  2113. },
  2114. "x": -43,
  2115. "y": 16
  2116. }
  2117. }
  2118. }