SG_宝石.rebolt 81 KB

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