卡片收集系统_浮层界面_卡包暂存界面.rebolt 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138
  1. {
  2. "CustomFunc": {
  3. "初始化按钮": [
  4. [
  5. "Name",
  6. "初始化按钮",
  7. "PrajrrK2Jk8V",
  8. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/主工程/卡片收集系统_浮层界面_卡包暂存界面.red"
  9. ]
  10. ],
  11. "卡包暂存界面": [
  12. [
  13. "Name",
  14. "卡包暂存界面",
  15. "3ngz9M77GJAP",
  16. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/主工程/卡片收集系统_浮层界面_卡包暂存界面.red"
  17. ]
  18. ],
  19. "更新普通卡包信息": [
  20. [
  21. "Name",
  22. "更新普通卡包信息",
  23. "Zn8XgwVwQG9L",
  24. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/主工程/卡片收集系统_浮层界面_卡包暂存界面.red"
  25. ]
  26. ],
  27. "更新超级卡包信息": [
  28. [
  29. "Name",
  30. "更新超级卡包信息",
  31. "lZAkH0UMbDrT",
  32. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/主工程/卡片收集系统_浮层界面_卡包暂存界面.red"
  33. ]
  34. ],
  35. "更新高级卡包信息": [
  36. [
  37. "Name",
  38. "更新高级卡包信息",
  39. "vOAV2BpqLp9g",
  40. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/主工程/卡片收集系统_浮层界面_卡包暂存界面.red"
  41. ]
  42. ]
  43. },
  44. "CustomList": {
  45. },
  46. "CustomMessage": {
  47. "Hello Red": 1
  48. },
  49. "CustomTestFunc": {
  50. },
  51. "CustomVar": {
  52. "P-普通卡包数量": 0,
  53. "P-超级卡包数量": 0,
  54. "P-高级卡包数量": 0
  55. },
  56. "DisPlayName": "卡片收集系统_浮层界面_卡包暂存界面",
  57. "RedFileList": {
  58. "91pZ3dn4rcsU": {
  59. "CustomFunc": {
  60. },
  61. "CustomList": {
  62. },
  63. "CustomTestFunc": {
  64. },
  65. "CustomVar": {
  66. },
  67. "DisPlayName": "普通卡包节点",
  68. "RedNoteInfo": {
  69. },
  70. "TreeList": {
  71. }
  72. },
  73. "C7z4NgSQx3ru": {
  74. "CustomFunc": {
  75. },
  76. "CustomList": {
  77. },
  78. "CustomTestFunc": {
  79. },
  80. "CustomVar": {
  81. },
  82. "DisPlayName": "气泡弹框_超级卡包详情",
  83. "RedNoteInfo": {
  84. },
  85. "TreeList": {
  86. }
  87. },
  88. "I2QkoinH0Nyb": {
  89. "CustomFunc": {
  90. },
  91. "CustomList": {
  92. },
  93. "CustomTestFunc": {
  94. },
  95. "CustomVar": {
  96. },
  97. "DisPlayName": "气泡弹框_普通卡包详情",
  98. "RedNoteInfo": {
  99. },
  100. "TreeList": {
  101. }
  102. },
  103. "JQeIGjIDnlWF": {
  104. "CustomFunc": {
  105. },
  106. "CustomList": {
  107. },
  108. "CustomTestFunc": {
  109. },
  110. "CustomVar": {
  111. },
  112. "DisPlayName": "超级卡包节点",
  113. "RedNoteInfo": {
  114. },
  115. "TreeList": {
  116. }
  117. },
  118. "tbfIHOxzm4oB": {
  119. "CustomFunc": {
  120. },
  121. "CustomList": {
  122. },
  123. "CustomTestFunc": {
  124. },
  125. "CustomVar": {
  126. },
  127. "DisPlayName": "气泡弹框_高级卡包详情",
  128. "RedNoteInfo": {
  129. },
  130. "TreeList": {
  131. }
  132. },
  133. "vFXnKwk5C1vl": {
  134. "CustomFunc": {
  135. },
  136. "CustomList": {
  137. },
  138. "CustomTestFunc": {
  139. },
  140. "CustomVar": {
  141. },
  142. "DisPlayName": "高级卡包节点",
  143. "RedNoteInfo": {
  144. },
  145. "TreeList": {
  146. }
  147. }
  148. },
  149. "RedNoteInfo": {
  150. },
  151. "TreeList": {
  152. "Tree0": {
  153. "ExportTree": true,
  154. "ImageIndex": 1,
  155. "Name": {
  156. "Type": "STRING",
  157. "Value": "",
  158. "displayName": ""
  159. },
  160. "Type": "BTMessageReciverAction",
  161. "VarJson": {
  162. "boolJson": {
  163. },
  164. "numberJson": {
  165. "消息参数": "Number"
  166. }
  167. },
  168. "isIllegal": false,
  169. "mathSelector": {
  170. "DisplayName": "打开卡包暂存界面",
  171. "Type": "Action",
  172. "Value": "glWvggY1A2y8"
  173. },
  174. "randomID": "eWmptjAU60zt",
  175. "stepSlot": {
  176. "ContainerValue": {
  177. "Type": "BTNotificationToCoderAction",
  178. "conditionA": {
  179. "ContainerValue": null,
  180. "StringValue": {
  181. "Type": "STRING",
  182. "Value": "测试_打开卡包暂存界面"
  183. },
  184. "Type": "BTInputSlot"
  185. },
  186. "isIllegal": true,
  187. "randomID": "oLIofbjQnvft",
  188. "stepSlot": {
  189. "ContainerValue": null,
  190. "Type": "BTStepSlot"
  191. }
  192. },
  193. "Type": "BTStepSlot"
  194. },
  195. "x": 182.73436589585023,
  196. "y": -1025.0489617281455
  197. },
  198. "Tree1": {
  199. "ExportTree": false,
  200. "ImageIndex": 2,
  201. "Name": {
  202. "Type": "STRING",
  203. "Value": "模拟程序执行",
  204. "displayName": ""
  205. },
  206. "Type": "BTSimulatorAction",
  207. "VarJson": {
  208. "boolJson": {
  209. },
  210. "numberJson": {
  211. "参数": "Number",
  212. "通知名": "Number"
  213. }
  214. },
  215. "isIllegal": false,
  216. "randomID": "PysS7vaFlO7E",
  217. "stepSlot": {
  218. "ContainerValue": {
  219. "Type": "BTIFControlAction",
  220. "conditionA": {
  221. "ContainerValue": {
  222. "Type": "BTStringEqualOperatorAction",
  223. "conditionA": {
  224. "ContainerValue": {
  225. "Type": "BTFuncVariableAction",
  226. "colorName": "Disable",
  227. "currentStr": "通知名",
  228. "fatherFuncID": "PysS7vaFlO7E",
  229. "isIllegal": true,
  230. "randomID": "pmtuzPR6BD8u",
  231. "titleLabel": {
  232. "Type": "STRING",
  233. "Value": "通知名",
  234. "displayName": ""
  235. }
  236. },
  237. "StringValue": {
  238. "Type": "STRING",
  239. "Value": "Red"
  240. },
  241. "Type": "BTInputSlot"
  242. },
  243. "conditionB": {
  244. "ContainerValue": null,
  245. "StringValue": {
  246. "Type": "STRING",
  247. "Value": "测试_打开卡包暂存界面"
  248. },
  249. "Type": "BTInputSlot"
  250. },
  251. "isIllegal": true,
  252. "randomID": "UT46l2IGKcfq"
  253. },
  254. "Type": "BTBoolSlot"
  255. },
  256. "isIllegal": true,
  257. "randomID": "uLwgF47Nkv9Q",
  258. "sectionA": {
  259. "ContainerValue": {
  260. "TitleInput": {
  261. "ContainerValue": null,
  262. "StringValue": {
  263. "Type": "STRING",
  264. "Value": "4"
  265. },
  266. "Type": "BTInputSlot"
  267. },
  268. "Type": "BTDataCoderVarSetAction",
  269. "VarScope": "Scene",
  270. "baseSelect": {
  271. "DisplayName": "P-普通卡包数量",
  272. "Type": "Action",
  273. "Value": "P-普通卡包数量"
  274. },
  275. "isIllegal": true,
  276. "randomID": "iQoGn3dSTIol",
  277. "stepSlot": {
  278. "ContainerValue": {
  279. "TitleInput": {
  280. "ContainerValue": null,
  281. "StringValue": {
  282. "Type": "STRING",
  283. "Value": "7"
  284. },
  285. "Type": "BTInputSlot"
  286. },
  287. "Type": "BTDataCoderVarSetAction",
  288. "VarScope": "Scene",
  289. "baseSelect": {
  290. "DisplayName": "P-高级卡包数量",
  291. "Type": "Action",
  292. "Value": "P-高级卡包数量"
  293. },
  294. "isIllegal": true,
  295. "randomID": "qL1mg2nmgxPO",
  296. "stepSlot": {
  297. "ContainerValue": {
  298. "TitleInput": {
  299. "ContainerValue": null,
  300. "StringValue": {
  301. "Type": "STRING",
  302. "Value": "9"
  303. },
  304. "Type": "BTInputSlot"
  305. },
  306. "Type": "BTDataCoderVarSetAction",
  307. "VarScope": "Scene",
  308. "baseSelect": {
  309. "DisplayName": "P-超级卡包数量",
  310. "Type": "Action",
  311. "Value": "P-超级卡包数量"
  312. },
  313. "isIllegal": true,
  314. "randomID": "EwIfbo4M3Snj",
  315. "stepSlot": {
  316. "ContainerValue": {
  317. "Name": {
  318. "Type": "STRING",
  319. "Value": "卡包暂存界面",
  320. "displayName": ""
  321. },
  322. "Type": "BTCustomFuncBodyAction",
  323. "funcHeadID": "3ngz9M77GJAP",
  324. "isIllegal": true,
  325. "paramArr": [
  326. ],
  327. "randomID": "YAVNrOgcw1hy",
  328. "stepSlot": {
  329. "ContainerValue": null,
  330. "Type": "BTStepSlot"
  331. }
  332. },
  333. "Type": "BTStepSlot"
  334. }
  335. },
  336. "Type": "BTStepSlot"
  337. }
  338. },
  339. "Type": "BTStepSlot"
  340. }
  341. },
  342. "Type": "BTSectionSlot"
  343. },
  344. "stepSlot": {
  345. "ContainerValue": null,
  346. "Type": "BTStepSlot"
  347. }
  348. },
  349. "Type": "BTStepSlot"
  350. },
  351. "x": 666.6122822337675,
  352. "y": -1020.3920091442352
  353. },
  354. "Tree10": {
  355. "ExportTree": true,
  356. "ImageIndex": -1,
  357. "Type": "BTSceneBtnClickFuncAction",
  358. "VarJson": {
  359. "boolJson": {
  360. },
  361. "numberJson": {
  362. }
  363. },
  364. "baseSelect": {
  365. "DisplayName": "全部解锁按钮",
  366. "Type": "Action",
  367. "Value": "1lTNMVBZhqGX"
  368. },
  369. "isIllegal": false,
  370. "randomID": "GWOmYwB96qCI",
  371. "redSelect": {
  372. "DisplayName": "超级卡包节点",
  373. "Type": "OBJ",
  374. "Value": "JQeIGjIDnlWF"
  375. },
  376. "stepSlot": {
  377. "ContainerValue": {
  378. "Type": "BTSceneButtonEnableAction",
  379. "baseSelect": {
  380. "DisplayName": "全部解锁按钮",
  381. "Type": "Action",
  382. "Value": "1lTNMVBZhqGX"
  383. },
  384. "enableButton": {
  385. "Type": "BTCheckBox",
  386. "isEnable": false
  387. },
  388. "isIllegal": true,
  389. "randomID": "K2NLPHUzxOPj",
  390. "redSelect": {
  391. "DisplayName": "超级卡包节点",
  392. "Type": "OBJ",
  393. "Value": "JQeIGjIDnlWF"
  394. },
  395. "stepSlot": {
  396. "ContainerValue": {
  397. "Type": "BTPlaySceneTimeLineAction",
  398. "baseSelect": {
  399. "DisplayName": "气泡弹框_退出动画",
  400. "Type": "Action",
  401. "Value": "3"
  402. },
  403. "isIllegal": true,
  404. "randomID": "5UqQL475ZgcR",
  405. "redSelect": {
  406. "DisplayName": "气泡弹框_普通卡包详情",
  407. "Type": "OBJ",
  408. "Value": "I2QkoinH0Nyb"
  409. },
  410. "stepSlot": {
  411. "ContainerValue": {
  412. "Type": "BTPlaySceneTimeLineAction",
  413. "baseSelect": {
  414. "DisplayName": "气泡弹框_退出动画",
  415. "Type": "Action",
  416. "Value": "3"
  417. },
  418. "isIllegal": true,
  419. "randomID": "xcMaYlTnOnuR",
  420. "redSelect": {
  421. "DisplayName": "气泡弹框_高级卡包详情",
  422. "Type": "OBJ",
  423. "Value": "tbfIHOxzm4oB"
  424. },
  425. "stepSlot": {
  426. "ContainerValue": {
  427. "Type": "BTPlaySceneTimeLineAction",
  428. "baseSelect": {
  429. "DisplayName": "气泡弹框_退出动画",
  430. "Type": "Action",
  431. "Value": "3"
  432. },
  433. "isIllegal": true,
  434. "randomID": "4x8PhRhIPS6M",
  435. "redSelect": {
  436. "DisplayName": "气泡弹框_超级卡包详情",
  437. "Type": "OBJ",
  438. "Value": "C7z4NgSQx3ru"
  439. },
  440. "stepSlot": {
  441. "ContainerValue": {
  442. "Type": "BTPlayTimeLineWaitAction",
  443. "baseSelect": {
  444. "DisplayName": "退出动画",
  445. "Type": "Action",
  446. "Value": "1"
  447. },
  448. "isIllegal": true,
  449. "randomID": "ezy5c5gFONt3",
  450. "stepSlot": {
  451. "ContainerValue": {
  452. "Type": "BTMessageSendAction",
  453. "baseSelect": {
  454. "DisplayName": "关闭卡包暂存界面",
  455. "Type": "Action",
  456. "Value": "Telfqb9olDHd"
  457. },
  458. "conditionA": {
  459. "ContainerValue": null,
  460. "StringValue": {
  461. "Type": "STRING",
  462. "Value": "参数"
  463. },
  464. "Type": "BTInputSlot"
  465. },
  466. "isIllegal": true,
  467. "randomID": "aaUsg1RMOFWz",
  468. "stepSlot": {
  469. "ContainerValue": {
  470. "Type": "BTNotificationToCoderAction",
  471. "conditionA": {
  472. "ContainerValue": null,
  473. "StringValue": {
  474. "Type": "STRING",
  475. "Value": "关闭卡包暂存界面"
  476. },
  477. "Type": "BTInputSlot"
  478. },
  479. "isIllegal": true,
  480. "randomID": "dJEhGYG9512F",
  481. "stepSlot": {
  482. "ContainerValue": {
  483. "Type": "BTNotificationToCoderAction",
  484. "conditionA": {
  485. "ContainerValue": null,
  486. "StringValue": {
  487. "Type": "STRING",
  488. "Value": "超级卡包全部解锁按钮被点击"
  489. },
  490. "Type": "BTInputSlot"
  491. },
  492. "isIllegal": true,
  493. "randomID": "hXxrkdaWLhvq",
  494. "stepSlot": {
  495. "ContainerValue": {
  496. "Type": "BTRedHiddenAction",
  497. "baseSelect": {
  498. "DisplayName": "进入动画",
  499. "Type": "Action",
  500. "Value": "0"
  501. },
  502. "isIllegal": true,
  503. "randomID": "8B5TSNrRNgaN",
  504. "stepSlot": {
  505. "ContainerValue": null,
  506. "Type": "BTStepSlot"
  507. }
  508. },
  509. "Type": "BTStepSlot"
  510. }
  511. },
  512. "Type": "BTStepSlot"
  513. }
  514. },
  515. "Type": "BTStepSlot"
  516. }
  517. },
  518. "Type": "BTStepSlot"
  519. }
  520. },
  521. "Type": "BTStepSlot"
  522. }
  523. },
  524. "Type": "BTStepSlot"
  525. }
  526. },
  527. "Type": "BTStepSlot"
  528. }
  529. },
  530. "Type": "BTStepSlot"
  531. }
  532. },
  533. "Type": "BTStepSlot"
  534. },
  535. "x": 1614.147402514991,
  536. "y": -359.85380945477567
  537. },
  538. "Tree11": {
  539. "ExportTree": true,
  540. "ImageIndex": -1,
  541. "Type": "BTSceneBtnClickFuncAction",
  542. "VarJson": {
  543. "boolJson": {
  544. },
  545. "numberJson": {
  546. }
  547. },
  548. "baseSelect": {
  549. "DisplayName": "卡包详情按钮",
  550. "Type": "Action",
  551. "Value": "NfCQlelKf9Ur"
  552. },
  553. "isIllegal": false,
  554. "randomID": "DXobYAmVjEiR",
  555. "redSelect": {
  556. "DisplayName": "高级卡包节点",
  557. "Type": "OBJ",
  558. "Value": "vFXnKwk5C1vl"
  559. },
  560. "stepSlot": {
  561. "ContainerValue": {
  562. "Type": "BTPlaySceneTimeLineAction",
  563. "baseSelect": {
  564. "DisplayName": "气泡弹框_退出动画",
  565. "Type": "Action",
  566. "Value": "3"
  567. },
  568. "isIllegal": true,
  569. "randomID": "ApVkTXjrrt7L",
  570. "redSelect": {
  571. "DisplayName": "气泡弹框_普通卡包详情",
  572. "Type": "OBJ",
  573. "Value": "I2QkoinH0Nyb"
  574. },
  575. "stepSlot": {
  576. "ContainerValue": {
  577. "Type": "BTPlaySceneTimeLineAction",
  578. "baseSelect": {
  579. "DisplayName": "气泡弹框_高级卡牌详情",
  580. "Type": "Action",
  581. "Value": "1"
  582. },
  583. "isIllegal": true,
  584. "randomID": "330bRtmDFlro",
  585. "redSelect": {
  586. "DisplayName": "气泡弹框_高级卡包详情",
  587. "Type": "OBJ",
  588. "Value": "tbfIHOxzm4oB"
  589. },
  590. "stepSlot": {
  591. "ContainerValue": {
  592. "Type": "BTPlaySceneTimeLineAction",
  593. "baseSelect": {
  594. "DisplayName": "气泡弹框_退出动画",
  595. "Type": "Action",
  596. "Value": "3"
  597. },
  598. "isIllegal": true,
  599. "randomID": "oAuC6EUMBoeI",
  600. "redSelect": {
  601. "DisplayName": "气泡弹框_超级卡包详情",
  602. "Type": "OBJ",
  603. "Value": "C7z4NgSQx3ru"
  604. },
  605. "stepSlot": {
  606. "ContainerValue": null,
  607. "Type": "BTStepSlot"
  608. }
  609. },
  610. "Type": "BTStepSlot"
  611. }
  612. },
  613. "Type": "BTStepSlot"
  614. }
  615. },
  616. "Type": "BTStepSlot"
  617. },
  618. "x": 204.56264776929282,
  619. "y": -384.2568952215345
  620. },
  621. "Tree12": {
  622. "ExportTree": true,
  623. "ImageIndex": -1,
  624. "Type": "BTSceneBtnClickFuncAction",
  625. "VarJson": {
  626. "boolJson": {
  627. },
  628. "numberJson": {
  629. }
  630. },
  631. "baseSelect": {
  632. "DisplayName": "卡包详情按钮",
  633. "Type": "Action",
  634. "Value": "NfCQlelKf9Ur"
  635. },
  636. "isIllegal": false,
  637. "randomID": "QkiBFgaqPUkb",
  638. "redSelect": {
  639. "DisplayName": "超级卡包节点",
  640. "Type": "OBJ",
  641. "Value": "JQeIGjIDnlWF"
  642. },
  643. "stepSlot": {
  644. "ContainerValue": {
  645. "Type": "BTPlaySceneTimeLineAction",
  646. "baseSelect": {
  647. "DisplayName": "气泡弹框_退出动画",
  648. "Type": "Action",
  649. "Value": "3"
  650. },
  651. "isIllegal": true,
  652. "randomID": "eFOATLWqiUzk",
  653. "redSelect": {
  654. "DisplayName": "气泡弹框_普通卡包详情",
  655. "Type": "OBJ",
  656. "Value": "I2QkoinH0Nyb"
  657. },
  658. "stepSlot": {
  659. "ContainerValue": {
  660. "Type": "BTPlaySceneTimeLineAction",
  661. "baseSelect": {
  662. "DisplayName": "气泡弹框_退出动画",
  663. "Type": "Action",
  664. "Value": "3"
  665. },
  666. "isIllegal": true,
  667. "randomID": "cEhWg5vGHsj1",
  668. "redSelect": {
  669. "DisplayName": "气泡弹框_高级卡包详情",
  670. "Type": "OBJ",
  671. "Value": "tbfIHOxzm4oB"
  672. },
  673. "stepSlot": {
  674. "ContainerValue": {
  675. "Type": "BTPlaySceneTimeLineAction",
  676. "baseSelect": {
  677. "DisplayName": "气泡弹框_超级卡牌详情",
  678. "Type": "Action",
  679. "Value": "2"
  680. },
  681. "isIllegal": true,
  682. "randomID": "IwGpSwIqfOBP",
  683. "redSelect": {
  684. "DisplayName": "气泡弹框_超级卡包详情",
  685. "Type": "OBJ",
  686. "Value": "C7z4NgSQx3ru"
  687. },
  688. "stepSlot": {
  689. "ContainerValue": null,
  690. "Type": "BTStepSlot"
  691. }
  692. },
  693. "Type": "BTStepSlot"
  694. }
  695. },
  696. "Type": "BTStepSlot"
  697. }
  698. },
  699. "Type": "BTStepSlot"
  700. },
  701. "x": 214.18912531137727,
  702. "y": -209.3758865403351
  703. },
  704. "Tree13": {
  705. "ExportTree": true,
  706. "ImageIndex": -1,
  707. "Type": "BTButtonClickFuncAction",
  708. "VarJson": {
  709. "boolJson": {
  710. },
  711. "numberJson": {
  712. }
  713. },
  714. "isIllegal": false,
  715. "mathSelector": {
  716. "DisplayName": "全屏关闭按钮",
  717. "Type": "OBJ",
  718. "Value": "c5H7RcGVkkFm"
  719. },
  720. "randomID": "ncDWvvKh3vcp",
  721. "stepSlot": {
  722. "ContainerValue": {
  723. "Type": "BTButtonEnableAction",
  724. "baseSelect": {
  725. "DisplayName": "全屏关闭按钮",
  726. "Type": "Action",
  727. "Value": "c5H7RcGVkkFm"
  728. },
  729. "enableButton": {
  730. "Type": "BTCheckBox",
  731. "isEnable": false
  732. },
  733. "isIllegal": true,
  734. "randomID": "odbkpf2g0hji",
  735. "stepSlot": {
  736. "ContainerValue": {
  737. "Type": "BTPlaySceneTimeLineAction",
  738. "baseSelect": {
  739. "DisplayName": "气泡弹框_退出动画",
  740. "Type": "Action",
  741. "Value": "3"
  742. },
  743. "isIllegal": true,
  744. "randomID": "Tt4DtBmJE0Nf",
  745. "redSelect": {
  746. "DisplayName": "气泡弹框_普通卡包详情",
  747. "Type": "OBJ",
  748. "Value": "I2QkoinH0Nyb"
  749. },
  750. "stepSlot": {
  751. "ContainerValue": {
  752. "Type": "BTPlaySceneTimeLineAction",
  753. "baseSelect": {
  754. "DisplayName": "气泡弹框_退出动画",
  755. "Type": "Action",
  756. "Value": "3"
  757. },
  758. "isIllegal": true,
  759. "randomID": "ERK2d596A31r",
  760. "redSelect": {
  761. "DisplayName": "气泡弹框_高级卡包详情",
  762. "Type": "OBJ",
  763. "Value": "tbfIHOxzm4oB"
  764. },
  765. "stepSlot": {
  766. "ContainerValue": {
  767. "Type": "BTPlaySceneTimeLineAction",
  768. "baseSelect": {
  769. "DisplayName": "气泡弹框_退出动画",
  770. "Type": "Action",
  771. "Value": "3"
  772. },
  773. "isIllegal": true,
  774. "randomID": "X9AFnsV7T6da",
  775. "redSelect": {
  776. "DisplayName": "气泡弹框_超级卡包详情",
  777. "Type": "OBJ",
  778. "Value": "C7z4NgSQx3ru"
  779. },
  780. "stepSlot": {
  781. "ContainerValue": {
  782. "Type": "BTPlayTimeLineWaitAction",
  783. "baseSelect": {
  784. "DisplayName": "退出动画",
  785. "Type": "Action",
  786. "Value": "1"
  787. },
  788. "isIllegal": true,
  789. "randomID": "zUvFtN1rEbK5",
  790. "stepSlot": {
  791. "ContainerValue": {
  792. "Type": "BTMessageSendAction",
  793. "baseSelect": {
  794. "DisplayName": "关闭卡包暂存界面",
  795. "Type": "Action",
  796. "Value": "Telfqb9olDHd"
  797. },
  798. "conditionA": {
  799. "ContainerValue": null,
  800. "StringValue": {
  801. "Type": "STRING",
  802. "Value": "参数"
  803. },
  804. "Type": "BTInputSlot"
  805. },
  806. "isIllegal": true,
  807. "randomID": "2f71z1r0uMjB",
  808. "stepSlot": {
  809. "ContainerValue": {
  810. "Type": "BTNotificationToCoderAction",
  811. "conditionA": {
  812. "ContainerValue": null,
  813. "StringValue": {
  814. "Type": "STRING",
  815. "Value": "关闭卡包暂存界面"
  816. },
  817. "Type": "BTInputSlot"
  818. },
  819. "isIllegal": true,
  820. "randomID": "Py1xIOOrwv5u",
  821. "stepSlot": {
  822. "ContainerValue": {
  823. "Type": "BTRedHiddenAction",
  824. "baseSelect": {
  825. "DisplayName": "进入动画",
  826. "Type": "Action",
  827. "Value": "0"
  828. },
  829. "isIllegal": true,
  830. "randomID": "eJ5jF1fKDE8a",
  831. "stepSlot": {
  832. "ContainerValue": null,
  833. "Type": "BTStepSlot"
  834. }
  835. },
  836. "Type": "BTStepSlot"
  837. }
  838. },
  839. "Type": "BTStepSlot"
  840. }
  841. },
  842. "Type": "BTStepSlot"
  843. }
  844. },
  845. "Type": "BTStepSlot"
  846. }
  847. },
  848. "Type": "BTStepSlot"
  849. }
  850. },
  851. "Type": "BTStepSlot"
  852. }
  853. },
  854. "Type": "BTStepSlot"
  855. }
  856. },
  857. "Type": "BTStepSlot"
  858. },
  859. "x": 148.57289205102154,
  860. "y": -23.263987393370567
  861. },
  862. "Tree14": {
  863. "ExportTree": true,
  864. "ImageIndex": -1,
  865. "Type": "BTButtonClickFuncAction",
  866. "VarJson": {
  867. "boolJson": {
  868. },
  869. "numberJson": {
  870. }
  871. },
  872. "isIllegal": false,
  873. "mathSelector": {
  874. "DisplayName": "关闭按钮",
  875. "Type": "OBJ",
  876. "Value": "SR1SGsjN5LDp"
  877. },
  878. "randomID": "ZYOHTPYW9gCm",
  879. "stepSlot": {
  880. "ContainerValue": {
  881. "Type": "BTButtonEnableAction",
  882. "baseSelect": {
  883. "DisplayName": "关闭按钮",
  884. "Type": "Action",
  885. "Value": "SR1SGsjN5LDp"
  886. },
  887. "enableButton": {
  888. "Type": "BTCheckBox",
  889. "isEnable": false
  890. },
  891. "isIllegal": true,
  892. "randomID": "1UM8LKrCjJPq",
  893. "stepSlot": {
  894. "ContainerValue": {
  895. "Type": "BTPlaySceneTimeLineAction",
  896. "baseSelect": {
  897. "DisplayName": "气泡弹框_退出动画",
  898. "Type": "Action",
  899. "Value": "3"
  900. },
  901. "isIllegal": true,
  902. "randomID": "rwUvH6CTSeTH",
  903. "redSelect": {
  904. "DisplayName": "气泡弹框_普通卡包详情",
  905. "Type": "OBJ",
  906. "Value": "I2QkoinH0Nyb"
  907. },
  908. "stepSlot": {
  909. "ContainerValue": {
  910. "Type": "BTPlaySceneTimeLineAction",
  911. "baseSelect": {
  912. "DisplayName": "气泡弹框_退出动画",
  913. "Type": "Action",
  914. "Value": "3"
  915. },
  916. "isIllegal": true,
  917. "randomID": "xTIwoZHsEEWl",
  918. "redSelect": {
  919. "DisplayName": "气泡弹框_高级卡包详情",
  920. "Type": "OBJ",
  921. "Value": "tbfIHOxzm4oB"
  922. },
  923. "stepSlot": {
  924. "ContainerValue": {
  925. "Type": "BTPlaySceneTimeLineAction",
  926. "baseSelect": {
  927. "DisplayName": "气泡弹框_退出动画",
  928. "Type": "Action",
  929. "Value": "3"
  930. },
  931. "isIllegal": true,
  932. "randomID": "aJqH3cTrToX2",
  933. "redSelect": {
  934. "DisplayName": "气泡弹框_超级卡包详情",
  935. "Type": "OBJ",
  936. "Value": "C7z4NgSQx3ru"
  937. },
  938. "stepSlot": {
  939. "ContainerValue": {
  940. "Type": "BTPlayTimeLineWaitAction",
  941. "baseSelect": {
  942. "DisplayName": "退出动画",
  943. "Type": "Action",
  944. "Value": "1"
  945. },
  946. "isIllegal": true,
  947. "randomID": "C65Rcph24OHo",
  948. "stepSlot": {
  949. "ContainerValue": {
  950. "Type": "BTMessageSendAction",
  951. "baseSelect": {
  952. "DisplayName": "关闭卡包暂存界面",
  953. "Type": "Action",
  954. "Value": "Telfqb9olDHd"
  955. },
  956. "conditionA": {
  957. "ContainerValue": null,
  958. "StringValue": {
  959. "Type": "STRING",
  960. "Value": "参数"
  961. },
  962. "Type": "BTInputSlot"
  963. },
  964. "isIllegal": true,
  965. "randomID": "1Zz7Ij2lY5IT",
  966. "stepSlot": {
  967. "ContainerValue": {
  968. "Type": "BTNotificationToCoderAction",
  969. "conditionA": {
  970. "ContainerValue": null,
  971. "StringValue": {
  972. "Type": "STRING",
  973. "Value": "关闭卡包暂存界面"
  974. },
  975. "Type": "BTInputSlot"
  976. },
  977. "isIllegal": true,
  978. "randomID": "GRm6TeN5uJTh",
  979. "stepSlot": {
  980. "ContainerValue": {
  981. "Type": "BTRedHiddenAction",
  982. "baseSelect": {
  983. "DisplayName": "进入动画",
  984. "Type": "Action",
  985. "Value": "0"
  986. },
  987. "isIllegal": true,
  988. "randomID": "K344L8jPAkYV",
  989. "stepSlot": {
  990. "ContainerValue": null,
  991. "Type": "BTStepSlot"
  992. }
  993. },
  994. "Type": "BTStepSlot"
  995. }
  996. },
  997. "Type": "BTStepSlot"
  998. }
  999. },
  1000. "Type": "BTStepSlot"
  1001. }
  1002. },
  1003. "Type": "BTStepSlot"
  1004. }
  1005. },
  1006. "Type": "BTStepSlot"
  1007. }
  1008. },
  1009. "Type": "BTStepSlot"
  1010. }
  1011. },
  1012. "Type": "BTStepSlot"
  1013. }
  1014. },
  1015. "Type": "BTStepSlot"
  1016. },
  1017. "x": 654.7866538200964,
  1018. "y": 102.05113749809492
  1019. },
  1020. "Tree15": {
  1021. "ExportTree": true,
  1022. "ImageIndex": 6,
  1023. "Name": {
  1024. "Type": "STRING",
  1025. "Value": "初始化按钮",
  1026. "displayName": ""
  1027. },
  1028. "Type": "BTCustomFuncHeadAction",
  1029. "VarJson": {
  1030. "boolJson": {
  1031. },
  1032. "numberJson": {
  1033. }
  1034. },
  1035. "isIllegal": false,
  1036. "randomID": "PrajrrK2Jk8V",
  1037. "stepSlot": {
  1038. "ContainerValue": {
  1039. "Type": "BTButtonEnableAction",
  1040. "baseSelect": {
  1041. "DisplayName": "全屏关闭按钮",
  1042. "Type": "Action",
  1043. "Value": "c5H7RcGVkkFm"
  1044. },
  1045. "enableButton": {
  1046. "Type": "BTCheckBox",
  1047. "isEnable": true
  1048. },
  1049. "isIllegal": true,
  1050. "randomID": "naVvb4BG1MO7",
  1051. "stepSlot": {
  1052. "ContainerValue": {
  1053. "Type": "BTButtonEnableAction",
  1054. "baseSelect": {
  1055. "DisplayName": "关闭按钮",
  1056. "Type": "Action",
  1057. "Value": "SR1SGsjN5LDp"
  1058. },
  1059. "enableButton": {
  1060. "Type": "BTCheckBox",
  1061. "isEnable": true
  1062. },
  1063. "isIllegal": true,
  1064. "randomID": "KsfFa7IuCJzr",
  1065. "stepSlot": {
  1066. "ContainerValue": {
  1067. "Type": "BTSceneButtonEnableAction",
  1068. "baseSelect": {
  1069. "DisplayName": "单个解锁按钮",
  1070. "Type": "Action",
  1071. "Value": "BBqPADR0Eeih"
  1072. },
  1073. "enableButton": {
  1074. "Type": "BTCheckBox",
  1075. "isEnable": true
  1076. },
  1077. "isIllegal": true,
  1078. "randomID": "LA90q7son1BU",
  1079. "redSelect": {
  1080. "DisplayName": "普通卡包节点",
  1081. "Type": "OBJ",
  1082. "Value": "91pZ3dn4rcsU"
  1083. },
  1084. "stepSlot": {
  1085. "ContainerValue": {
  1086. "Type": "BTSceneButtonEnableAction",
  1087. "baseSelect": {
  1088. "DisplayName": "全部解锁按钮",
  1089. "Type": "Action",
  1090. "Value": "1lTNMVBZhqGX"
  1091. },
  1092. "enableButton": {
  1093. "Type": "BTCheckBox",
  1094. "isEnable": true
  1095. },
  1096. "isIllegal": true,
  1097. "randomID": "HV0EXxaCQRuh",
  1098. "redSelect": {
  1099. "DisplayName": "普通卡包节点",
  1100. "Type": "OBJ",
  1101. "Value": "91pZ3dn4rcsU"
  1102. },
  1103. "stepSlot": {
  1104. "ContainerValue": {
  1105. "Type": "BTSceneButtonEnableAction",
  1106. "baseSelect": {
  1107. "DisplayName": "单个解锁按钮",
  1108. "Type": "Action",
  1109. "Value": "BBqPADR0Eeih"
  1110. },
  1111. "enableButton": {
  1112. "Type": "BTCheckBox",
  1113. "isEnable": true
  1114. },
  1115. "isIllegal": true,
  1116. "randomID": "kCCQqL2Y0bqP",
  1117. "redSelect": {
  1118. "DisplayName": "高级卡包节点",
  1119. "Type": "OBJ",
  1120. "Value": "vFXnKwk5C1vl"
  1121. },
  1122. "stepSlot": {
  1123. "ContainerValue": {
  1124. "Type": "BTSceneButtonEnableAction",
  1125. "baseSelect": {
  1126. "DisplayName": "全部解锁按钮",
  1127. "Type": "Action",
  1128. "Value": "1lTNMVBZhqGX"
  1129. },
  1130. "enableButton": {
  1131. "Type": "BTCheckBox",
  1132. "isEnable": true
  1133. },
  1134. "isIllegal": true,
  1135. "randomID": "JydYQyIBz0lz",
  1136. "redSelect": {
  1137. "DisplayName": "高级卡包节点",
  1138. "Type": "OBJ",
  1139. "Value": "vFXnKwk5C1vl"
  1140. },
  1141. "stepSlot": {
  1142. "ContainerValue": {
  1143. "Type": "BTSceneButtonEnableAction",
  1144. "baseSelect": {
  1145. "DisplayName": "单个解锁按钮",
  1146. "Type": "Action",
  1147. "Value": "BBqPADR0Eeih"
  1148. },
  1149. "enableButton": {
  1150. "Type": "BTCheckBox",
  1151. "isEnable": true
  1152. },
  1153. "isIllegal": true,
  1154. "randomID": "NdEhyladtqHQ",
  1155. "redSelect": {
  1156. "DisplayName": "超级卡包节点",
  1157. "Type": "OBJ",
  1158. "Value": "JQeIGjIDnlWF"
  1159. },
  1160. "stepSlot": {
  1161. "ContainerValue": {
  1162. "Type": "BTSceneButtonEnableAction",
  1163. "baseSelect": {
  1164. "DisplayName": "全部解锁按钮",
  1165. "Type": "Action",
  1166. "Value": "1lTNMVBZhqGX"
  1167. },
  1168. "enableButton": {
  1169. "Type": "BTCheckBox",
  1170. "isEnable": true
  1171. },
  1172. "isIllegal": true,
  1173. "randomID": "kPv9lz2rysha",
  1174. "redSelect": {
  1175. "DisplayName": "超级卡包节点",
  1176. "Type": "OBJ",
  1177. "Value": "JQeIGjIDnlWF"
  1178. },
  1179. "stepSlot": {
  1180. "ContainerValue": null,
  1181. "Type": "BTStepSlot"
  1182. }
  1183. },
  1184. "Type": "BTStepSlot"
  1185. }
  1186. },
  1187. "Type": "BTStepSlot"
  1188. }
  1189. },
  1190. "Type": "BTStepSlot"
  1191. }
  1192. },
  1193. "Type": "BTStepSlot"
  1194. }
  1195. },
  1196. "Type": "BTStepSlot"
  1197. }
  1198. },
  1199. "Type": "BTStepSlot"
  1200. }
  1201. },
  1202. "Type": "BTStepSlot"
  1203. }
  1204. },
  1205. "Type": "BTStepSlot"
  1206. },
  1207. "x": -495.31030715383946,
  1208. "y": 466.73702222860635
  1209. },
  1210. "Tree16": {
  1211. "ExportTree": true,
  1212. "ImageIndex": 3,
  1213. "Name": {
  1214. "Type": "STRING",
  1215. "Value": "卡包暂存界面",
  1216. "displayName": ""
  1217. },
  1218. "Type": "BTCustomFuncHeadAction",
  1219. "VarJson": {
  1220. "boolJson": {
  1221. },
  1222. "numberJson": {
  1223. }
  1224. },
  1225. "isIllegal": false,
  1226. "randomID": "3ngz9M77GJAP",
  1227. "stepSlot": {
  1228. "ContainerValue": {
  1229. "Name": {
  1230. "Type": "STRING",
  1231. "Value": "初始化按钮",
  1232. "displayName": ""
  1233. },
  1234. "Type": "BTCustomFuncBodyAction",
  1235. "funcHeadID": "PrajrrK2Jk8V",
  1236. "isIllegal": true,
  1237. "paramArr": [
  1238. ],
  1239. "randomID": "1NV1aGllEbdg",
  1240. "stepSlot": {
  1241. "ContainerValue": {
  1242. "Name": {
  1243. "Type": "STRING",
  1244. "Value": "更新普通卡包信息",
  1245. "displayName": ""
  1246. },
  1247. "Type": "BTCustomFuncBodyAction",
  1248. "funcHeadID": "Zn8XgwVwQG9L",
  1249. "isIllegal": true,
  1250. "paramArr": [
  1251. ],
  1252. "randomID": "gg7ZHKqE9EB7",
  1253. "stepSlot": {
  1254. "ContainerValue": {
  1255. "Name": {
  1256. "Type": "STRING",
  1257. "Value": "更新高级卡包信息",
  1258. "displayName": ""
  1259. },
  1260. "Type": "BTCustomFuncBodyAction",
  1261. "funcHeadID": "vOAV2BpqLp9g",
  1262. "isIllegal": true,
  1263. "paramArr": [
  1264. ],
  1265. "randomID": "vVVVHrZz03s7",
  1266. "stepSlot": {
  1267. "ContainerValue": {
  1268. "Name": {
  1269. "Type": "STRING",
  1270. "Value": "更新超级卡包信息",
  1271. "displayName": ""
  1272. },
  1273. "Type": "BTCustomFuncBodyAction",
  1274. "funcHeadID": "lZAkH0UMbDrT",
  1275. "isIllegal": true,
  1276. "paramArr": [
  1277. ],
  1278. "randomID": "wxahCzuGIPAR",
  1279. "stepSlot": {
  1280. "ContainerValue": {
  1281. "Type": "BTRedShowAction",
  1282. "baseSelect": {
  1283. "DisplayName": "进入动画",
  1284. "Type": "Action",
  1285. "Value": "0"
  1286. },
  1287. "isIllegal": true,
  1288. "randomID": "iP2JEMkc2JH1",
  1289. "stepSlot": {
  1290. "ContainerValue": {
  1291. "Type": "BTPlayTimeLineAction",
  1292. "baseSelect": {
  1293. "DisplayName": "进入动画",
  1294. "Type": "Action",
  1295. "Value": "0"
  1296. },
  1297. "isIllegal": true,
  1298. "randomID": "djySY6fzFcLx",
  1299. "stepSlot": {
  1300. "ContainerValue": null,
  1301. "Type": "BTStepSlot"
  1302. }
  1303. },
  1304. "Type": "BTStepSlot"
  1305. }
  1306. },
  1307. "Type": "BTStepSlot"
  1308. }
  1309. },
  1310. "Type": "BTStepSlot"
  1311. }
  1312. },
  1313. "Type": "BTStepSlot"
  1314. }
  1315. },
  1316. "Type": "BTStepSlot"
  1317. }
  1318. },
  1319. "Type": "BTStepSlot"
  1320. },
  1321. "x": 73.49243963094544,
  1322. "y": -880.7494854342498
  1323. },
  1324. "Tree17": {
  1325. "ExportTree": true,
  1326. "ImageIndex": 8,
  1327. "Name": {
  1328. "Type": "STRING",
  1329. "Value": "更新普通卡包信息",
  1330. "displayName": ""
  1331. },
  1332. "Type": "BTCustomFuncHeadAction",
  1333. "VarJson": {
  1334. "boolJson": {
  1335. },
  1336. "numberJson": {
  1337. }
  1338. },
  1339. "isIllegal": false,
  1340. "randomID": "Zn8XgwVwQG9L",
  1341. "stepSlot": {
  1342. "ContainerValue": {
  1343. "TitleInput": {
  1344. "ContainerValue": {
  1345. "Type": "BTStringLinkOperatorAction",
  1346. "conditionA": {
  1347. "ContainerValue": null,
  1348. "StringValue": {
  1349. "Type": "STRING",
  1350. "Value": "x"
  1351. },
  1352. "Type": "BTInputSlot"
  1353. },
  1354. "conditionB": {
  1355. "ContainerValue": {
  1356. "Type": "BTCoderVariableAction",
  1357. "VarScope": "Scene",
  1358. "isIllegal": true,
  1359. "randomID": "kiG7FUZwjwDR",
  1360. "titleLabel": {
  1361. "Type": "STRING",
  1362. "Value": "P-普通卡包数量",
  1363. "displayName": ""
  1364. }
  1365. },
  1366. "StringValue": {
  1367. "Type": "STRING",
  1368. "Value": "Banana"
  1369. },
  1370. "Type": "BTInputSlot"
  1371. },
  1372. "isIllegal": true,
  1373. "randomID": "EcGrzK7XJ3sy"
  1374. },
  1375. "StringValue": {
  1376. "Type": "STRING",
  1377. "Value": "填写标题内容"
  1378. },
  1379. "Type": "BTInputSlot"
  1380. },
  1381. "Type": "BTSceneLabelTitleAction",
  1382. "baseSelect": {
  1383. "DisplayName": "卡包数量",
  1384. "Type": "Action",
  1385. "Value": "gaGIgErrDudP"
  1386. },
  1387. "isIllegal": true,
  1388. "randomID": "IQn64QLBBKyh",
  1389. "redSelect": {
  1390. "DisplayName": "普通卡包节点",
  1391. "Type": "OBJ",
  1392. "Value": "91pZ3dn4rcsU"
  1393. },
  1394. "stepSlot": {
  1395. "ContainerValue": {
  1396. "Type": "BTIFControlAction",
  1397. "conditionA": {
  1398. "ContainerValue": {
  1399. "Type": "BTBiggerThanAction",
  1400. "conditionA": {
  1401. "ContainerValue": {
  1402. "Type": "BTCoderVariableAction",
  1403. "VarScope": "Scene",
  1404. "isIllegal": true,
  1405. "randomID": "HxyzS61RnGmr",
  1406. "titleLabel": {
  1407. "Type": "STRING",
  1408. "Value": "P-普通卡包数量",
  1409. "displayName": ""
  1410. }
  1411. },
  1412. "StringValue": {
  1413. "Type": "FLOAT",
  1414. "Value": 0
  1415. },
  1416. "Type": "BTInputSlot"
  1417. },
  1418. "conditionB": {
  1419. "ContainerValue": null,
  1420. "StringValue": {
  1421. "Type": "FLOAT",
  1422. "Value": 0
  1423. },
  1424. "Type": "BTInputSlot"
  1425. },
  1426. "isIllegal": true,
  1427. "randomID": "WFVlx0233XtD"
  1428. },
  1429. "Type": "BTBoolSlot"
  1430. },
  1431. "isIllegal": true,
  1432. "randomID": "AJ2hdcY5ROFU",
  1433. "sectionA": {
  1434. "ContainerValue": {
  1435. "Type": "BTSceneNodeShowAction",
  1436. "baseSelect": {
  1437. "DisplayName": "全部解锁按钮",
  1438. "Type": "Action",
  1439. "Value": "1lTNMVBZhqGX"
  1440. },
  1441. "isIllegal": true,
  1442. "randomID": "tv5wMessJ1sn",
  1443. "redSelect": {
  1444. "DisplayName": "普通卡包节点",
  1445. "Type": "OBJ",
  1446. "Value": "91pZ3dn4rcsU"
  1447. },
  1448. "stepSlot": {
  1449. "ContainerValue": {
  1450. "Type": "BTSceneNodeShowAction",
  1451. "baseSelect": {
  1452. "DisplayName": "单个解锁按钮",
  1453. "Type": "Action",
  1454. "Value": "BBqPADR0Eeih"
  1455. },
  1456. "isIllegal": true,
  1457. "randomID": "lid5MFFjzfvd",
  1458. "redSelect": {
  1459. "DisplayName": "普通卡包节点",
  1460. "Type": "OBJ",
  1461. "Value": "91pZ3dn4rcsU"
  1462. },
  1463. "stepSlot": {
  1464. "ContainerValue": null,
  1465. "Type": "BTStepSlot"
  1466. }
  1467. },
  1468. "Type": "BTStepSlot"
  1469. }
  1470. },
  1471. "Type": "BTSectionSlot"
  1472. },
  1473. "stepSlot": {
  1474. "ContainerValue": {
  1475. "Type": "BTIFControlAction",
  1476. "conditionA": {
  1477. "ContainerValue": {
  1478. "Type": "BTEqualOperatorAction",
  1479. "conditionA": {
  1480. "ContainerValue": {
  1481. "Type": "BTCoderVariableAction",
  1482. "VarScope": "Scene",
  1483. "isIllegal": true,
  1484. "randomID": "mGgzXYD21bMe",
  1485. "titleLabel": {
  1486. "Type": "STRING",
  1487. "Value": "P-普通卡包数量",
  1488. "displayName": ""
  1489. }
  1490. },
  1491. "StringValue": {
  1492. "Type": "FLOAT",
  1493. "Value": 0
  1494. },
  1495. "Type": "BTInputSlot"
  1496. },
  1497. "conditionB": {
  1498. "ContainerValue": null,
  1499. "StringValue": {
  1500. "Type": "FLOAT",
  1501. "Value": 0
  1502. },
  1503. "Type": "BTInputSlot"
  1504. },
  1505. "isIllegal": true,
  1506. "randomID": "ta9zViwwpivj"
  1507. },
  1508. "Type": "BTBoolSlot"
  1509. },
  1510. "isIllegal": true,
  1511. "randomID": "fHYPvkFpJbTv",
  1512. "sectionA": {
  1513. "ContainerValue": {
  1514. "Type": "BTSceneNodeShowAction",
  1515. "baseSelect": {
  1516. "DisplayName": "单个解锁灰态按钮",
  1517. "Type": "Action",
  1518. "Value": "9hd30pvoWud5"
  1519. },
  1520. "isIllegal": true,
  1521. "randomID": "3gQOXHWDTf26",
  1522. "redSelect": {
  1523. "DisplayName": "普通卡包节点",
  1524. "Type": "OBJ",
  1525. "Value": "91pZ3dn4rcsU"
  1526. },
  1527. "stepSlot": {
  1528. "ContainerValue": {
  1529. "Type": "BTSceneNodeShowAction",
  1530. "baseSelect": {
  1531. "DisplayName": "全部解锁灰态按钮",
  1532. "Type": "Action",
  1533. "Value": "SSztx7me3EEE"
  1534. },
  1535. "isIllegal": true,
  1536. "randomID": "BnJEe6ylIub7",
  1537. "redSelect": {
  1538. "DisplayName": "普通卡包节点",
  1539. "Type": "OBJ",
  1540. "Value": "91pZ3dn4rcsU"
  1541. },
  1542. "stepSlot": {
  1543. "ContainerValue": null,
  1544. "Type": "BTStepSlot"
  1545. }
  1546. },
  1547. "Type": "BTStepSlot"
  1548. }
  1549. },
  1550. "Type": "BTSectionSlot"
  1551. },
  1552. "stepSlot": {
  1553. "ContainerValue": null,
  1554. "Type": "BTStepSlot"
  1555. }
  1556. },
  1557. "Type": "BTStepSlot"
  1558. }
  1559. },
  1560. "Type": "BTStepSlot"
  1561. }
  1562. },
  1563. "Type": "BTStepSlot"
  1564. },
  1565. "x": -487.41565629706685,
  1566. "y": -690.894941479825
  1567. },
  1568. "Tree18": {
  1569. "ExportTree": true,
  1570. "ImageIndex": 4,
  1571. "Name": {
  1572. "Type": "STRING",
  1573. "Value": "更新高级卡包信息",
  1574. "displayName": ""
  1575. },
  1576. "Type": "BTCustomFuncHeadAction",
  1577. "VarJson": {
  1578. "boolJson": {
  1579. },
  1580. "numberJson": {
  1581. }
  1582. },
  1583. "isIllegal": false,
  1584. "randomID": "vOAV2BpqLp9g",
  1585. "stepSlot": {
  1586. "ContainerValue": {
  1587. "TitleInput": {
  1588. "ContainerValue": {
  1589. "Type": "BTStringLinkOperatorAction",
  1590. "conditionA": {
  1591. "ContainerValue": null,
  1592. "StringValue": {
  1593. "Type": "STRING",
  1594. "Value": "x"
  1595. },
  1596. "Type": "BTInputSlot"
  1597. },
  1598. "conditionB": {
  1599. "ContainerValue": {
  1600. "Type": "BTCoderVariableAction",
  1601. "VarScope": "Scene",
  1602. "isIllegal": true,
  1603. "randomID": "q3durW5Z9uhW",
  1604. "titleLabel": {
  1605. "Type": "STRING",
  1606. "Value": "P-高级卡包数量",
  1607. "displayName": ""
  1608. }
  1609. },
  1610. "StringValue": {
  1611. "Type": "STRING",
  1612. "Value": "Banana"
  1613. },
  1614. "Type": "BTInputSlot"
  1615. },
  1616. "isIllegal": true,
  1617. "randomID": "FwCmFgmbCoYL"
  1618. },
  1619. "StringValue": {
  1620. "Type": "STRING",
  1621. "Value": "填写标题内容"
  1622. },
  1623. "Type": "BTInputSlot"
  1624. },
  1625. "Type": "BTSceneLabelTitleAction",
  1626. "baseSelect": {
  1627. "DisplayName": "卡包数量",
  1628. "Type": "Action",
  1629. "Value": "gaGIgErrDudP"
  1630. },
  1631. "isIllegal": true,
  1632. "randomID": "0SVdAAZWhORY",
  1633. "redSelect": {
  1634. "DisplayName": "高级卡包节点",
  1635. "Type": "OBJ",
  1636. "Value": "vFXnKwk5C1vl"
  1637. },
  1638. "stepSlot": {
  1639. "ContainerValue": {
  1640. "Type": "BTIFControlAction",
  1641. "conditionA": {
  1642. "ContainerValue": {
  1643. "Type": "BTBiggerThanAction",
  1644. "conditionA": {
  1645. "ContainerValue": {
  1646. "Type": "BTCoderVariableAction",
  1647. "VarScope": "Scene",
  1648. "isIllegal": true,
  1649. "randomID": "8rp0ZwmFKSMH",
  1650. "titleLabel": {
  1651. "Type": "STRING",
  1652. "Value": "P-高级卡包数量",
  1653. "displayName": ""
  1654. }
  1655. },
  1656. "StringValue": {
  1657. "Type": "FLOAT",
  1658. "Value": 0
  1659. },
  1660. "Type": "BTInputSlot"
  1661. },
  1662. "conditionB": {
  1663. "ContainerValue": null,
  1664. "StringValue": {
  1665. "Type": "FLOAT",
  1666. "Value": 0
  1667. },
  1668. "Type": "BTInputSlot"
  1669. },
  1670. "isIllegal": true,
  1671. "randomID": "DCsNCf7dh6xQ"
  1672. },
  1673. "Type": "BTBoolSlot"
  1674. },
  1675. "isIllegal": true,
  1676. "randomID": "cXZ8hut3z3TA",
  1677. "sectionA": {
  1678. "ContainerValue": {
  1679. "Type": "BTSceneNodeShowAction",
  1680. "baseSelect": {
  1681. "DisplayName": "单个解锁按钮",
  1682. "Type": "Action",
  1683. "Value": "BBqPADR0Eeih"
  1684. },
  1685. "isIllegal": true,
  1686. "randomID": "RfWzEPN38Jfs",
  1687. "redSelect": {
  1688. "DisplayName": "高级卡包节点",
  1689. "Type": "OBJ",
  1690. "Value": "vFXnKwk5C1vl"
  1691. },
  1692. "stepSlot": {
  1693. "ContainerValue": {
  1694. "Type": "BTSceneNodeShowAction",
  1695. "baseSelect": {
  1696. "DisplayName": "全部解锁按钮",
  1697. "Type": "Action",
  1698. "Value": "1lTNMVBZhqGX"
  1699. },
  1700. "isIllegal": true,
  1701. "randomID": "23ppcPyLhSKf",
  1702. "redSelect": {
  1703. "DisplayName": "高级卡包节点",
  1704. "Type": "OBJ",
  1705. "Value": "vFXnKwk5C1vl"
  1706. },
  1707. "stepSlot": {
  1708. "ContainerValue": null,
  1709. "Type": "BTStepSlot"
  1710. }
  1711. },
  1712. "Type": "BTStepSlot"
  1713. }
  1714. },
  1715. "Type": "BTSectionSlot"
  1716. },
  1717. "stepSlot": {
  1718. "ContainerValue": {
  1719. "Type": "BTIFControlAction",
  1720. "conditionA": {
  1721. "ContainerValue": {
  1722. "Type": "BTEqualOperatorAction",
  1723. "conditionA": {
  1724. "ContainerValue": {
  1725. "Type": "BTCoderVariableAction",
  1726. "VarScope": "Scene",
  1727. "isIllegal": true,
  1728. "randomID": "XJ2kkjcnjT7T",
  1729. "titleLabel": {
  1730. "Type": "STRING",
  1731. "Value": "P-高级卡包数量",
  1732. "displayName": ""
  1733. }
  1734. },
  1735. "StringValue": {
  1736. "Type": "FLOAT",
  1737. "Value": 0
  1738. },
  1739. "Type": "BTInputSlot"
  1740. },
  1741. "conditionB": {
  1742. "ContainerValue": null,
  1743. "StringValue": {
  1744. "Type": "FLOAT",
  1745. "Value": 0
  1746. },
  1747. "Type": "BTInputSlot"
  1748. },
  1749. "isIllegal": true,
  1750. "randomID": "pumzHpHj8byb"
  1751. },
  1752. "Type": "BTBoolSlot"
  1753. },
  1754. "isIllegal": true,
  1755. "randomID": "UVZChdAqScKF",
  1756. "sectionA": {
  1757. "ContainerValue": {
  1758. "Type": "BTSceneNodeShowAction",
  1759. "baseSelect": {
  1760. "DisplayName": "单个解锁灰态按钮",
  1761. "Type": "Action",
  1762. "Value": "9hd30pvoWud5"
  1763. },
  1764. "isIllegal": true,
  1765. "randomID": "IXAEHBEHVTSy",
  1766. "redSelect": {
  1767. "DisplayName": "高级卡包节点",
  1768. "Type": "OBJ",
  1769. "Value": "vFXnKwk5C1vl"
  1770. },
  1771. "stepSlot": {
  1772. "ContainerValue": {
  1773. "Type": "BTSceneNodeShowAction",
  1774. "baseSelect": {
  1775. "DisplayName": "全部解锁灰态按钮",
  1776. "Type": "Action",
  1777. "Value": "SSztx7me3EEE"
  1778. },
  1779. "isIllegal": true,
  1780. "randomID": "S78VfaYTwApB",
  1781. "redSelect": {
  1782. "DisplayName": "高级卡包节点",
  1783. "Type": "OBJ",
  1784. "Value": "vFXnKwk5C1vl"
  1785. },
  1786. "stepSlot": {
  1787. "ContainerValue": null,
  1788. "Type": "BTStepSlot"
  1789. }
  1790. },
  1791. "Type": "BTStepSlot"
  1792. }
  1793. },
  1794. "Type": "BTSectionSlot"
  1795. },
  1796. "stepSlot": {
  1797. "ContainerValue": null,
  1798. "Type": "BTStepSlot"
  1799. }
  1800. },
  1801. "Type": "BTStepSlot"
  1802. }
  1803. },
  1804. "Type": "BTStepSlot"
  1805. }
  1806. },
  1807. "Type": "BTStepSlot"
  1808. },
  1809. "x": -484.53142888187665,
  1810. "y": -305.75276654006046
  1811. },
  1812. "Tree2": {
  1813. "ExportTree": true,
  1814. "ImageIndex": -1,
  1815. "Type": "BTButtonClickFuncAction",
  1816. "VarJson": {
  1817. "boolJson": {
  1818. },
  1819. "numberJson": {
  1820. }
  1821. },
  1822. "isIllegal": false,
  1823. "mathSelector": {
  1824. "DisplayName": "卡包组点击屏蔽按钮",
  1825. "Type": "OBJ",
  1826. "Value": "nhFC1KZcSX9C"
  1827. },
  1828. "randomID": "iYSiouufh1y1",
  1829. "stepSlot": {
  1830. "ContainerValue": {
  1831. "Type": "BTPlaySceneTimeLineAction",
  1832. "baseSelect": {
  1833. "DisplayName": "气泡弹框_退出动画",
  1834. "Type": "Action",
  1835. "Value": "3"
  1836. },
  1837. "isIllegal": true,
  1838. "randomID": "zp4xeMD8OGMW",
  1839. "redSelect": {
  1840. "DisplayName": "气泡弹框_普通卡包详情",
  1841. "Type": "OBJ",
  1842. "Value": "I2QkoinH0Nyb"
  1843. },
  1844. "stepSlot": {
  1845. "ContainerValue": {
  1846. "Type": "BTPlaySceneTimeLineAction",
  1847. "baseSelect": {
  1848. "DisplayName": "气泡弹框_退出动画",
  1849. "Type": "Action",
  1850. "Value": "3"
  1851. },
  1852. "isIllegal": true,
  1853. "randomID": "SKuNahssyCRf",
  1854. "redSelect": {
  1855. "DisplayName": "气泡弹框_高级卡包详情",
  1856. "Type": "OBJ",
  1857. "Value": "tbfIHOxzm4oB"
  1858. },
  1859. "stepSlot": {
  1860. "ContainerValue": {
  1861. "Type": "BTPlaySceneTimeLineAction",
  1862. "baseSelect": {
  1863. "DisplayName": "气泡弹框_退出动画",
  1864. "Type": "Action",
  1865. "Value": "3"
  1866. },
  1867. "isIllegal": true,
  1868. "randomID": "AlzCs9VRP901",
  1869. "redSelect": {
  1870. "DisplayName": "气泡弹框_超级卡包详情",
  1871. "Type": "OBJ",
  1872. "Value": "C7z4NgSQx3ru"
  1873. },
  1874. "stepSlot": {
  1875. "ContainerValue": null,
  1876. "Type": "BTStepSlot"
  1877. }
  1878. },
  1879. "Type": "BTStepSlot"
  1880. }
  1881. },
  1882. "Type": "BTStepSlot"
  1883. }
  1884. },
  1885. "Type": "BTStepSlot"
  1886. },
  1887. "x": 166.2316810079804,
  1888. "y": 334.35235839105144
  1889. },
  1890. "Tree3": {
  1891. "ExportTree": true,
  1892. "ImageIndex": -1,
  1893. "Type": "BTSceneBtnClickFuncAction",
  1894. "VarJson": {
  1895. "boolJson": {
  1896. },
  1897. "numberJson": {
  1898. }
  1899. },
  1900. "baseSelect": {
  1901. "DisplayName": "单个解锁按钮",
  1902. "Type": "Action",
  1903. "Value": "BBqPADR0Eeih"
  1904. },
  1905. "isIllegal": false,
  1906. "randomID": "yy9zhczI0VMo",
  1907. "redSelect": {
  1908. "DisplayName": "普通卡包节点",
  1909. "Type": "OBJ",
  1910. "Value": "91pZ3dn4rcsU"
  1911. },
  1912. "stepSlot": {
  1913. "ContainerValue": {
  1914. "Type": "BTSceneButtonEnableAction",
  1915. "baseSelect": {
  1916. "DisplayName": "单个解锁按钮",
  1917. "Type": "Action",
  1918. "Value": "BBqPADR0Eeih"
  1919. },
  1920. "enableButton": {
  1921. "Type": "BTCheckBox",
  1922. "isEnable": false
  1923. },
  1924. "isIllegal": true,
  1925. "randomID": "e2RlFiY1828W",
  1926. "redSelect": {
  1927. "DisplayName": "普通卡包节点",
  1928. "Type": "OBJ",
  1929. "Value": "91pZ3dn4rcsU"
  1930. },
  1931. "stepSlot": {
  1932. "ContainerValue": {
  1933. "Type": "BTPlaySceneTimeLineAction",
  1934. "baseSelect": {
  1935. "DisplayName": "气泡弹框_退出动画",
  1936. "Type": "Action",
  1937. "Value": "3"
  1938. },
  1939. "isIllegal": true,
  1940. "randomID": "4ACcLwPORtBv",
  1941. "redSelect": {
  1942. "DisplayName": "气泡弹框_普通卡包详情",
  1943. "Type": "OBJ",
  1944. "Value": "I2QkoinH0Nyb"
  1945. },
  1946. "stepSlot": {
  1947. "ContainerValue": {
  1948. "Type": "BTPlaySceneTimeLineAction",
  1949. "baseSelect": {
  1950. "DisplayName": "气泡弹框_退出动画",
  1951. "Type": "Action",
  1952. "Value": "3"
  1953. },
  1954. "isIllegal": true,
  1955. "randomID": "pFBwYuzmyyhV",
  1956. "redSelect": {
  1957. "DisplayName": "气泡弹框_高级卡包详情",
  1958. "Type": "OBJ",
  1959. "Value": "tbfIHOxzm4oB"
  1960. },
  1961. "stepSlot": {
  1962. "ContainerValue": {
  1963. "Type": "BTPlaySceneTimeLineAction",
  1964. "baseSelect": {
  1965. "DisplayName": "气泡弹框_退出动画",
  1966. "Type": "Action",
  1967. "Value": "3"
  1968. },
  1969. "isIllegal": true,
  1970. "randomID": "Oi9FrS2ltwSa",
  1971. "redSelect": {
  1972. "DisplayName": "气泡弹框_超级卡包详情",
  1973. "Type": "OBJ",
  1974. "Value": "C7z4NgSQx3ru"
  1975. },
  1976. "stepSlot": {
  1977. "ContainerValue": {
  1978. "Type": "BTPlayTimeLineWaitAction",
  1979. "baseSelect": {
  1980. "DisplayName": "退出动画",
  1981. "Type": "Action",
  1982. "Value": "1"
  1983. },
  1984. "isIllegal": true,
  1985. "randomID": "lKnmn0SG4YK1",
  1986. "stepSlot": {
  1987. "ContainerValue": {
  1988. "Type": "BTMessageSendAction",
  1989. "baseSelect": {
  1990. "DisplayName": "关闭卡包暂存界面",
  1991. "Type": "Action",
  1992. "Value": "Telfqb9olDHd"
  1993. },
  1994. "conditionA": {
  1995. "ContainerValue": null,
  1996. "StringValue": {
  1997. "Type": "STRING",
  1998. "Value": "参数"
  1999. },
  2000. "Type": "BTInputSlot"
  2001. },
  2002. "isIllegal": true,
  2003. "randomID": "g5HLltCvbYJm",
  2004. "stepSlot": {
  2005. "ContainerValue": {
  2006. "Type": "BTNotificationToCoderAction",
  2007. "conditionA": {
  2008. "ContainerValue": null,
  2009. "StringValue": {
  2010. "Type": "STRING",
  2011. "Value": "关闭卡包暂存界面"
  2012. },
  2013. "Type": "BTInputSlot"
  2014. },
  2015. "isIllegal": true,
  2016. "randomID": "5Af8000vVK58",
  2017. "stepSlot": {
  2018. "ContainerValue": {
  2019. "Type": "BTNotificationToCoderAction",
  2020. "conditionA": {
  2021. "ContainerValue": null,
  2022. "StringValue": {
  2023. "Type": "STRING",
  2024. "Value": "普通卡包单个解锁按钮被点击"
  2025. },
  2026. "Type": "BTInputSlot"
  2027. },
  2028. "isIllegal": true,
  2029. "randomID": "6Qb35whd69SM",
  2030. "stepSlot": {
  2031. "ContainerValue": {
  2032. "Type": "BTRedHiddenAction",
  2033. "baseSelect": {
  2034. "DisplayName": "进入动画",
  2035. "Type": "Action",
  2036. "Value": "0"
  2037. },
  2038. "isIllegal": true,
  2039. "randomID": "vqXkqFiDAedH",
  2040. "stepSlot": {
  2041. "ContainerValue": null,
  2042. "Type": "BTStepSlot"
  2043. }
  2044. },
  2045. "Type": "BTStepSlot"
  2046. }
  2047. },
  2048. "Type": "BTStepSlot"
  2049. }
  2050. },
  2051. "Type": "BTStepSlot"
  2052. }
  2053. },
  2054. "Type": "BTStepSlot"
  2055. }
  2056. },
  2057. "Type": "BTStepSlot"
  2058. }
  2059. },
  2060. "Type": "BTStepSlot"
  2061. }
  2062. },
  2063. "Type": "BTStepSlot"
  2064. }
  2065. },
  2066. "Type": "BTStepSlot"
  2067. }
  2068. },
  2069. "Type": "BTStepSlot"
  2070. },
  2071. "x": 731.4648015576579,
  2072. "y": -721.9442557198096
  2073. },
  2074. "Tree4": {
  2075. "ExportTree": true,
  2076. "ImageIndex": 5,
  2077. "Name": {
  2078. "Type": "STRING",
  2079. "Value": "更新超级卡包信息",
  2080. "displayName": ""
  2081. },
  2082. "Type": "BTCustomFuncHeadAction",
  2083. "VarJson": {
  2084. "boolJson": {
  2085. },
  2086. "numberJson": {
  2087. }
  2088. },
  2089. "isIllegal": false,
  2090. "randomID": "lZAkH0UMbDrT",
  2091. "stepSlot": {
  2092. "ContainerValue": {
  2093. "TitleInput": {
  2094. "ContainerValue": {
  2095. "Type": "BTStringLinkOperatorAction",
  2096. "conditionA": {
  2097. "ContainerValue": null,
  2098. "StringValue": {
  2099. "Type": "STRING",
  2100. "Value": "x"
  2101. },
  2102. "Type": "BTInputSlot"
  2103. },
  2104. "conditionB": {
  2105. "ContainerValue": {
  2106. "Type": "BTCoderVariableAction",
  2107. "VarScope": "Scene",
  2108. "isIllegal": true,
  2109. "randomID": "Z22X6WfcayHx",
  2110. "titleLabel": {
  2111. "Type": "STRING",
  2112. "Value": "P-超级卡包数量",
  2113. "displayName": ""
  2114. }
  2115. },
  2116. "StringValue": {
  2117. "Type": "STRING",
  2118. "Value": "Banana"
  2119. },
  2120. "Type": "BTInputSlot"
  2121. },
  2122. "isIllegal": true,
  2123. "randomID": "2ShBn98sdaiv"
  2124. },
  2125. "StringValue": {
  2126. "Type": "STRING",
  2127. "Value": "填写标题内容"
  2128. },
  2129. "Type": "BTInputSlot"
  2130. },
  2131. "Type": "BTSceneLabelTitleAction",
  2132. "baseSelect": {
  2133. "DisplayName": "卡包数量",
  2134. "Type": "Action",
  2135. "Value": "gaGIgErrDudP"
  2136. },
  2137. "isIllegal": true,
  2138. "randomID": "flfsWbEVbIg8",
  2139. "redSelect": {
  2140. "DisplayName": "超级卡包节点",
  2141. "Type": "OBJ",
  2142. "Value": "JQeIGjIDnlWF"
  2143. },
  2144. "stepSlot": {
  2145. "ContainerValue": {
  2146. "Type": "BTIFControlAction",
  2147. "conditionA": {
  2148. "ContainerValue": {
  2149. "Type": "BTBiggerThanAction",
  2150. "conditionA": {
  2151. "ContainerValue": {
  2152. "Type": "BTCoderVariableAction",
  2153. "VarScope": "Scene",
  2154. "isIllegal": true,
  2155. "randomID": "scVH5Mbhw0AX",
  2156. "titleLabel": {
  2157. "Type": "STRING",
  2158. "Value": "P-超级卡包数量",
  2159. "displayName": ""
  2160. }
  2161. },
  2162. "StringValue": {
  2163. "Type": "FLOAT",
  2164. "Value": 0
  2165. },
  2166. "Type": "BTInputSlot"
  2167. },
  2168. "conditionB": {
  2169. "ContainerValue": null,
  2170. "StringValue": {
  2171. "Type": "FLOAT",
  2172. "Value": 0
  2173. },
  2174. "Type": "BTInputSlot"
  2175. },
  2176. "isIllegal": true,
  2177. "randomID": "J4o0aD9azqD4"
  2178. },
  2179. "Type": "BTBoolSlot"
  2180. },
  2181. "isIllegal": true,
  2182. "randomID": "hR5jUO6Ju9Xw",
  2183. "sectionA": {
  2184. "ContainerValue": {
  2185. "Type": "BTSceneNodeShowAction",
  2186. "baseSelect": {
  2187. "DisplayName": "单个解锁按钮",
  2188. "Type": "Action",
  2189. "Value": "BBqPADR0Eeih"
  2190. },
  2191. "isIllegal": true,
  2192. "randomID": "C6NOc6yBRmzH",
  2193. "redSelect": {
  2194. "DisplayName": "超级卡包节点",
  2195. "Type": "OBJ",
  2196. "Value": "JQeIGjIDnlWF"
  2197. },
  2198. "stepSlot": {
  2199. "ContainerValue": {
  2200. "Type": "BTSceneNodeShowAction",
  2201. "baseSelect": {
  2202. "DisplayName": "全部解锁按钮",
  2203. "Type": "Action",
  2204. "Value": "1lTNMVBZhqGX"
  2205. },
  2206. "isIllegal": true,
  2207. "randomID": "RgIQFIeMtoa1",
  2208. "redSelect": {
  2209. "DisplayName": "超级卡包节点",
  2210. "Type": "OBJ",
  2211. "Value": "JQeIGjIDnlWF"
  2212. },
  2213. "stepSlot": {
  2214. "ContainerValue": null,
  2215. "Type": "BTStepSlot"
  2216. }
  2217. },
  2218. "Type": "BTStepSlot"
  2219. }
  2220. },
  2221. "Type": "BTSectionSlot"
  2222. },
  2223. "stepSlot": {
  2224. "ContainerValue": {
  2225. "Type": "BTIFControlAction",
  2226. "conditionA": {
  2227. "ContainerValue": {
  2228. "Type": "BTEqualOperatorAction",
  2229. "conditionA": {
  2230. "ContainerValue": {
  2231. "Type": "BTCoderVariableAction",
  2232. "VarScope": "Scene",
  2233. "isIllegal": true,
  2234. "randomID": "LPXfEapEVBRB",
  2235. "titleLabel": {
  2236. "Type": "STRING",
  2237. "Value": "P-超级卡包数量",
  2238. "displayName": ""
  2239. }
  2240. },
  2241. "StringValue": {
  2242. "Type": "FLOAT",
  2243. "Value": 0
  2244. },
  2245. "Type": "BTInputSlot"
  2246. },
  2247. "conditionB": {
  2248. "ContainerValue": null,
  2249. "StringValue": {
  2250. "Type": "FLOAT",
  2251. "Value": 0
  2252. },
  2253. "Type": "BTInputSlot"
  2254. },
  2255. "isIllegal": true,
  2256. "randomID": "ZIaNrk6wPkvr"
  2257. },
  2258. "Type": "BTBoolSlot"
  2259. },
  2260. "isIllegal": true,
  2261. "randomID": "qCfQ4rAUTd8q",
  2262. "sectionA": {
  2263. "ContainerValue": {
  2264. "Type": "BTSceneNodeShowAction",
  2265. "baseSelect": {
  2266. "DisplayName": "单个解锁灰态按钮",
  2267. "Type": "Action",
  2268. "Value": "9hd30pvoWud5"
  2269. },
  2270. "isIllegal": true,
  2271. "randomID": "FzfMpoTwBYNo",
  2272. "redSelect": {
  2273. "DisplayName": "超级卡包节点",
  2274. "Type": "OBJ",
  2275. "Value": "JQeIGjIDnlWF"
  2276. },
  2277. "stepSlot": {
  2278. "ContainerValue": {
  2279. "Type": "BTSceneNodeShowAction",
  2280. "baseSelect": {
  2281. "DisplayName": "全部解锁灰态按钮",
  2282. "Type": "Action",
  2283. "Value": "SSztx7me3EEE"
  2284. },
  2285. "isIllegal": true,
  2286. "randomID": "V5bnCt1CjLkj",
  2287. "redSelect": {
  2288. "DisplayName": "超级卡包节点",
  2289. "Type": "OBJ",
  2290. "Value": "JQeIGjIDnlWF"
  2291. },
  2292. "stepSlot": {
  2293. "ContainerValue": null,
  2294. "Type": "BTStepSlot"
  2295. }
  2296. },
  2297. "Type": "BTStepSlot"
  2298. }
  2299. },
  2300. "Type": "BTSectionSlot"
  2301. },
  2302. "stepSlot": {
  2303. "ContainerValue": null,
  2304. "Type": "BTStepSlot"
  2305. }
  2306. },
  2307. "Type": "BTStepSlot"
  2308. }
  2309. },
  2310. "Type": "BTStepSlot"
  2311. }
  2312. },
  2313. "Type": "BTStepSlot"
  2314. },
  2315. "x": -480.7928335859549,
  2316. "y": 85.26633545771764
  2317. },
  2318. "Tree5": {
  2319. "ExportTree": true,
  2320. "ImageIndex": -1,
  2321. "Type": "BTSceneBtnClickFuncAction",
  2322. "VarJson": {
  2323. "boolJson": {
  2324. },
  2325. "numberJson": {
  2326. }
  2327. },
  2328. "baseSelect": {
  2329. "DisplayName": "卡包详情按钮",
  2330. "Type": "Action",
  2331. "Value": "NfCQlelKf9Ur"
  2332. },
  2333. "isIllegal": false,
  2334. "randomID": "ULLggQazeNwd",
  2335. "redSelect": {
  2336. "DisplayName": "普通卡包节点",
  2337. "Type": "OBJ",
  2338. "Value": "91pZ3dn4rcsU"
  2339. },
  2340. "stepSlot": {
  2341. "ContainerValue": {
  2342. "Type": "BTPlaySceneTimeLineAction",
  2343. "baseSelect": {
  2344. "DisplayName": "气泡弹框_普通卡牌详情",
  2345. "Type": "Action",
  2346. "Value": "0"
  2347. },
  2348. "isIllegal": true,
  2349. "randomID": "SmKbc9fRN5wk",
  2350. "redSelect": {
  2351. "DisplayName": "气泡弹框_普通卡包详情",
  2352. "Type": "OBJ",
  2353. "Value": "I2QkoinH0Nyb"
  2354. },
  2355. "stepSlot": {
  2356. "ContainerValue": {
  2357. "Type": "BTPlaySceneTimeLineAction",
  2358. "baseSelect": {
  2359. "DisplayName": "气泡弹框_退出动画",
  2360. "Type": "Action",
  2361. "Value": "3"
  2362. },
  2363. "isIllegal": true,
  2364. "randomID": "G2uhbyzHNawf",
  2365. "redSelect": {
  2366. "DisplayName": "气泡弹框_高级卡包详情",
  2367. "Type": "OBJ",
  2368. "Value": "tbfIHOxzm4oB"
  2369. },
  2370. "stepSlot": {
  2371. "ContainerValue": {
  2372. "Type": "BTPlaySceneTimeLineAction",
  2373. "baseSelect": {
  2374. "DisplayName": "气泡弹框_退出动画",
  2375. "Type": "Action",
  2376. "Value": "3"
  2377. },
  2378. "isIllegal": true,
  2379. "randomID": "pjid1Q9quItV",
  2380. "redSelect": {
  2381. "DisplayName": "气泡弹框_超级卡包详情",
  2382. "Type": "OBJ",
  2383. "Value": "C7z4NgSQx3ru"
  2384. },
  2385. "stepSlot": {
  2386. "ContainerValue": null,
  2387. "Type": "BTStepSlot"
  2388. }
  2389. },
  2390. "Type": "BTStepSlot"
  2391. }
  2392. },
  2393. "Type": "BTStepSlot"
  2394. }
  2395. },
  2396. "Type": "BTStepSlot"
  2397. },
  2398. "x": 202.8876826503294,
  2399. "y": -555.4542232225405
  2400. },
  2401. "Tree6": {
  2402. "ExportTree": true,
  2403. "ImageIndex": -1,
  2404. "Type": "BTSceneBtnClickFuncAction",
  2405. "VarJson": {
  2406. "boolJson": {
  2407. },
  2408. "numberJson": {
  2409. }
  2410. },
  2411. "baseSelect": {
  2412. "DisplayName": "全部解锁按钮",
  2413. "Type": "Action",
  2414. "Value": "1lTNMVBZhqGX"
  2415. },
  2416. "isIllegal": false,
  2417. "randomID": "NcNCvcpleeDT",
  2418. "redSelect": {
  2419. "DisplayName": "普通卡包节点",
  2420. "Type": "OBJ",
  2421. "Value": "91pZ3dn4rcsU"
  2422. },
  2423. "stepSlot": {
  2424. "ContainerValue": {
  2425. "Type": "BTSceneButtonEnableAction",
  2426. "baseSelect": {
  2427. "DisplayName": "全部解锁按钮",
  2428. "Type": "Action",
  2429. "Value": "1lTNMVBZhqGX"
  2430. },
  2431. "enableButton": {
  2432. "Type": "BTCheckBox",
  2433. "isEnable": false
  2434. },
  2435. "isIllegal": true,
  2436. "randomID": "4ajWBOGGzQD7",
  2437. "redSelect": {
  2438. "DisplayName": "普通卡包节点",
  2439. "Type": "OBJ",
  2440. "Value": "91pZ3dn4rcsU"
  2441. },
  2442. "stepSlot": {
  2443. "ContainerValue": {
  2444. "Type": "BTPlaySceneTimeLineAction",
  2445. "baseSelect": {
  2446. "DisplayName": "气泡弹框_退出动画",
  2447. "Type": "Action",
  2448. "Value": "3"
  2449. },
  2450. "isIllegal": true,
  2451. "randomID": "u6xmi1ynMPjD",
  2452. "redSelect": {
  2453. "DisplayName": "气泡弹框_普通卡包详情",
  2454. "Type": "OBJ",
  2455. "Value": "I2QkoinH0Nyb"
  2456. },
  2457. "stepSlot": {
  2458. "ContainerValue": {
  2459. "Type": "BTPlaySceneTimeLineAction",
  2460. "baseSelect": {
  2461. "DisplayName": "气泡弹框_退出动画",
  2462. "Type": "Action",
  2463. "Value": "3"
  2464. },
  2465. "isIllegal": true,
  2466. "randomID": "I7JUB94hAwYb",
  2467. "redSelect": {
  2468. "DisplayName": "气泡弹框_高级卡包详情",
  2469. "Type": "OBJ",
  2470. "Value": "tbfIHOxzm4oB"
  2471. },
  2472. "stepSlot": {
  2473. "ContainerValue": {
  2474. "Type": "BTPlaySceneTimeLineAction",
  2475. "baseSelect": {
  2476. "DisplayName": "气泡弹框_退出动画",
  2477. "Type": "Action",
  2478. "Value": "3"
  2479. },
  2480. "isIllegal": true,
  2481. "randomID": "Fa5s9zbPNuEL",
  2482. "redSelect": {
  2483. "DisplayName": "气泡弹框_超级卡包详情",
  2484. "Type": "OBJ",
  2485. "Value": "C7z4NgSQx3ru"
  2486. },
  2487. "stepSlot": {
  2488. "ContainerValue": {
  2489. "Type": "BTPlayTimeLineWaitAction",
  2490. "baseSelect": {
  2491. "DisplayName": "退出动画",
  2492. "Type": "Action",
  2493. "Value": "1"
  2494. },
  2495. "isIllegal": true,
  2496. "randomID": "xPb4by8T3bLi",
  2497. "stepSlot": {
  2498. "ContainerValue": {
  2499. "Type": "BTMessageSendAction",
  2500. "baseSelect": {
  2501. "DisplayName": "关闭卡包暂存界面",
  2502. "Type": "Action",
  2503. "Value": "Telfqb9olDHd"
  2504. },
  2505. "conditionA": {
  2506. "ContainerValue": null,
  2507. "StringValue": {
  2508. "Type": "STRING",
  2509. "Value": "参数"
  2510. },
  2511. "Type": "BTInputSlot"
  2512. },
  2513. "isIllegal": true,
  2514. "randomID": "froBbT4ElCEK",
  2515. "stepSlot": {
  2516. "ContainerValue": {
  2517. "Type": "BTNotificationToCoderAction",
  2518. "conditionA": {
  2519. "ContainerValue": null,
  2520. "StringValue": {
  2521. "Type": "STRING",
  2522. "Value": "关闭卡包暂存界面"
  2523. },
  2524. "Type": "BTInputSlot"
  2525. },
  2526. "isIllegal": true,
  2527. "randomID": "dsfVHMZUNGpa",
  2528. "stepSlot": {
  2529. "ContainerValue": {
  2530. "Type": "BTNotificationToCoderAction",
  2531. "conditionA": {
  2532. "ContainerValue": null,
  2533. "StringValue": {
  2534. "Type": "STRING",
  2535. "Value": "普通卡包全部解锁按钮被点击"
  2536. },
  2537. "Type": "BTInputSlot"
  2538. },
  2539. "isIllegal": true,
  2540. "randomID": "CSr5ggQiX4VY",
  2541. "stepSlot": {
  2542. "ContainerValue": {
  2543. "Type": "BTRedHiddenAction",
  2544. "baseSelect": {
  2545. "DisplayName": "进入动画",
  2546. "Type": "Action",
  2547. "Value": "0"
  2548. },
  2549. "isIllegal": true,
  2550. "randomID": "VqTA62BCWOAU",
  2551. "stepSlot": {
  2552. "ContainerValue": null,
  2553. "Type": "BTStepSlot"
  2554. }
  2555. },
  2556. "Type": "BTStepSlot"
  2557. }
  2558. },
  2559. "Type": "BTStepSlot"
  2560. }
  2561. },
  2562. "Type": "BTStepSlot"
  2563. }
  2564. },
  2565. "Type": "BTStepSlot"
  2566. }
  2567. },
  2568. "Type": "BTStepSlot"
  2569. }
  2570. },
  2571. "Type": "BTStepSlot"
  2572. }
  2573. },
  2574. "Type": "BTStepSlot"
  2575. }
  2576. },
  2577. "Type": "BTStepSlot"
  2578. }
  2579. },
  2580. "Type": "BTStepSlot"
  2581. },
  2582. "x": 724.4301098472782,
  2583. "y": -338.1303511412328
  2584. },
  2585. "Tree7": {
  2586. "ExportTree": true,
  2587. "ImageIndex": -1,
  2588. "Type": "BTSceneBtnClickFuncAction",
  2589. "VarJson": {
  2590. "boolJson": {
  2591. },
  2592. "numberJson": {
  2593. }
  2594. },
  2595. "baseSelect": {
  2596. "DisplayName": "单个解锁按钮",
  2597. "Type": "Action",
  2598. "Value": "BBqPADR0Eeih"
  2599. },
  2600. "isIllegal": false,
  2601. "randomID": "5oxIrfILmKtM",
  2602. "redSelect": {
  2603. "DisplayName": "高级卡包节点",
  2604. "Type": "OBJ",
  2605. "Value": "vFXnKwk5C1vl"
  2606. },
  2607. "stepSlot": {
  2608. "ContainerValue": {
  2609. "Type": "BTSceneButtonEnableAction",
  2610. "baseSelect": {
  2611. "DisplayName": "单个解锁按钮",
  2612. "Type": "Action",
  2613. "Value": "BBqPADR0Eeih"
  2614. },
  2615. "enableButton": {
  2616. "Type": "BTCheckBox",
  2617. "isEnable": false
  2618. },
  2619. "isIllegal": true,
  2620. "randomID": "Cs3EXZLeBiU2",
  2621. "redSelect": {
  2622. "DisplayName": "高级卡包节点",
  2623. "Type": "OBJ",
  2624. "Value": "vFXnKwk5C1vl"
  2625. },
  2626. "stepSlot": {
  2627. "ContainerValue": {
  2628. "Type": "BTPlaySceneTimeLineAction",
  2629. "baseSelect": {
  2630. "DisplayName": "气泡弹框_退出动画",
  2631. "Type": "Action",
  2632. "Value": "3"
  2633. },
  2634. "isIllegal": true,
  2635. "randomID": "SIWPcyT99sRY",
  2636. "redSelect": {
  2637. "DisplayName": "气泡弹框_普通卡包详情",
  2638. "Type": "OBJ",
  2639. "Value": "I2QkoinH0Nyb"
  2640. },
  2641. "stepSlot": {
  2642. "ContainerValue": {
  2643. "Type": "BTPlaySceneTimeLineAction",
  2644. "baseSelect": {
  2645. "DisplayName": "气泡弹框_退出动画",
  2646. "Type": "Action",
  2647. "Value": "3"
  2648. },
  2649. "isIllegal": true,
  2650. "randomID": "ExqZZKmL4qz8",
  2651. "redSelect": {
  2652. "DisplayName": "气泡弹框_高级卡包详情",
  2653. "Type": "OBJ",
  2654. "Value": "tbfIHOxzm4oB"
  2655. },
  2656. "stepSlot": {
  2657. "ContainerValue": {
  2658. "Type": "BTPlaySceneTimeLineAction",
  2659. "baseSelect": {
  2660. "DisplayName": "气泡弹框_退出动画",
  2661. "Type": "Action",
  2662. "Value": "3"
  2663. },
  2664. "isIllegal": true,
  2665. "randomID": "ykVsywJEEqDi",
  2666. "redSelect": {
  2667. "DisplayName": "气泡弹框_超级卡包详情",
  2668. "Type": "OBJ",
  2669. "Value": "C7z4NgSQx3ru"
  2670. },
  2671. "stepSlot": {
  2672. "ContainerValue": {
  2673. "Type": "BTPlayTimeLineWaitAction",
  2674. "baseSelect": {
  2675. "DisplayName": "退出动画",
  2676. "Type": "Action",
  2677. "Value": "1"
  2678. },
  2679. "isIllegal": true,
  2680. "randomID": "oyhPjz49CwwN",
  2681. "stepSlot": {
  2682. "ContainerValue": {
  2683. "Type": "BTMessageSendAction",
  2684. "baseSelect": {
  2685. "DisplayName": "关闭卡包暂存界面",
  2686. "Type": "Action",
  2687. "Value": "Telfqb9olDHd"
  2688. },
  2689. "conditionA": {
  2690. "ContainerValue": null,
  2691. "StringValue": {
  2692. "Type": "STRING",
  2693. "Value": "参数"
  2694. },
  2695. "Type": "BTInputSlot"
  2696. },
  2697. "isIllegal": true,
  2698. "randomID": "BHEiepMiklOt",
  2699. "stepSlot": {
  2700. "ContainerValue": {
  2701. "Type": "BTNotificationToCoderAction",
  2702. "conditionA": {
  2703. "ContainerValue": null,
  2704. "StringValue": {
  2705. "Type": "STRING",
  2706. "Value": "关闭卡包暂存界面"
  2707. },
  2708. "Type": "BTInputSlot"
  2709. },
  2710. "isIllegal": true,
  2711. "randomID": "9u5LPKlAKWPO",
  2712. "stepSlot": {
  2713. "ContainerValue": {
  2714. "Type": "BTNotificationToCoderAction",
  2715. "conditionA": {
  2716. "ContainerValue": null,
  2717. "StringValue": {
  2718. "Type": "STRING",
  2719. "Value": "高级卡包单个解锁按钮被点击"
  2720. },
  2721. "Type": "BTInputSlot"
  2722. },
  2723. "isIllegal": true,
  2724. "randomID": "JH9Tp59keLB6",
  2725. "stepSlot": {
  2726. "ContainerValue": {
  2727. "Type": "BTRedHiddenAction",
  2728. "baseSelect": {
  2729. "DisplayName": "进入动画",
  2730. "Type": "Action",
  2731. "Value": "0"
  2732. },
  2733. "isIllegal": true,
  2734. "randomID": "KxntNNIgOgei",
  2735. "stepSlot": {
  2736. "ContainerValue": null,
  2737. "Type": "BTStepSlot"
  2738. }
  2739. },
  2740. "Type": "BTStepSlot"
  2741. }
  2742. },
  2743. "Type": "BTStepSlot"
  2744. }
  2745. },
  2746. "Type": "BTStepSlot"
  2747. }
  2748. },
  2749. "Type": "BTStepSlot"
  2750. }
  2751. },
  2752. "Type": "BTStepSlot"
  2753. }
  2754. },
  2755. "Type": "BTStepSlot"
  2756. }
  2757. },
  2758. "Type": "BTStepSlot"
  2759. }
  2760. },
  2761. "Type": "BTStepSlot"
  2762. }
  2763. },
  2764. "Type": "BTStepSlot"
  2765. },
  2766. "x": 1165.5107634309531,
  2767. "y": -740.4865790355489
  2768. },
  2769. "Tree8": {
  2770. "ExportTree": true,
  2771. "ImageIndex": -1,
  2772. "Type": "BTSceneBtnClickFuncAction",
  2773. "VarJson": {
  2774. "boolJson": {
  2775. },
  2776. "numberJson": {
  2777. }
  2778. },
  2779. "baseSelect": {
  2780. "DisplayName": "全部解锁按钮",
  2781. "Type": "Action",
  2782. "Value": "1lTNMVBZhqGX"
  2783. },
  2784. "isIllegal": false,
  2785. "randomID": "2GgIB9AFzi8U",
  2786. "redSelect": {
  2787. "DisplayName": "高级卡包节点",
  2788. "Type": "OBJ",
  2789. "Value": "vFXnKwk5C1vl"
  2790. },
  2791. "stepSlot": {
  2792. "ContainerValue": {
  2793. "Type": "BTSceneButtonEnableAction",
  2794. "baseSelect": {
  2795. "DisplayName": "全部解锁按钮",
  2796. "Type": "Action",
  2797. "Value": "1lTNMVBZhqGX"
  2798. },
  2799. "enableButton": {
  2800. "Type": "BTCheckBox",
  2801. "isEnable": false
  2802. },
  2803. "isIllegal": true,
  2804. "randomID": "jhWInIj4QYSf",
  2805. "redSelect": {
  2806. "DisplayName": "高级卡包节点",
  2807. "Type": "OBJ",
  2808. "Value": "vFXnKwk5C1vl"
  2809. },
  2810. "stepSlot": {
  2811. "ContainerValue": {
  2812. "Type": "BTPlaySceneTimeLineAction",
  2813. "baseSelect": {
  2814. "DisplayName": "气泡弹框_退出动画",
  2815. "Type": "Action",
  2816. "Value": "3"
  2817. },
  2818. "isIllegal": true,
  2819. "randomID": "SYAu8V96rXmV",
  2820. "redSelect": {
  2821. "DisplayName": "气泡弹框_普通卡包详情",
  2822. "Type": "OBJ",
  2823. "Value": "I2QkoinH0Nyb"
  2824. },
  2825. "stepSlot": {
  2826. "ContainerValue": {
  2827. "Type": "BTPlaySceneTimeLineAction",
  2828. "baseSelect": {
  2829. "DisplayName": "气泡弹框_退出动画",
  2830. "Type": "Action",
  2831. "Value": "3"
  2832. },
  2833. "isIllegal": true,
  2834. "randomID": "xYyhRXQ2M1QO",
  2835. "redSelect": {
  2836. "DisplayName": "气泡弹框_高级卡包详情",
  2837. "Type": "OBJ",
  2838. "Value": "tbfIHOxzm4oB"
  2839. },
  2840. "stepSlot": {
  2841. "ContainerValue": {
  2842. "Type": "BTPlaySceneTimeLineAction",
  2843. "baseSelect": {
  2844. "DisplayName": "气泡弹框_退出动画",
  2845. "Type": "Action",
  2846. "Value": "3"
  2847. },
  2848. "isIllegal": true,
  2849. "randomID": "UCvTKGSwUoDk",
  2850. "redSelect": {
  2851. "DisplayName": "气泡弹框_超级卡包详情",
  2852. "Type": "OBJ",
  2853. "Value": "C7z4NgSQx3ru"
  2854. },
  2855. "stepSlot": {
  2856. "ContainerValue": {
  2857. "Type": "BTPlayTimeLineWaitAction",
  2858. "baseSelect": {
  2859. "DisplayName": "退出动画",
  2860. "Type": "Action",
  2861. "Value": "1"
  2862. },
  2863. "isIllegal": true,
  2864. "randomID": "uMlMxZdgduac",
  2865. "stepSlot": {
  2866. "ContainerValue": {
  2867. "Type": "BTMessageSendAction",
  2868. "baseSelect": {
  2869. "DisplayName": "关闭卡包暂存界面",
  2870. "Type": "Action",
  2871. "Value": "Telfqb9olDHd"
  2872. },
  2873. "conditionA": {
  2874. "ContainerValue": null,
  2875. "StringValue": {
  2876. "Type": "STRING",
  2877. "Value": "参数"
  2878. },
  2879. "Type": "BTInputSlot"
  2880. },
  2881. "isIllegal": true,
  2882. "randomID": "sHFost9N0aYe",
  2883. "stepSlot": {
  2884. "ContainerValue": {
  2885. "Type": "BTNotificationToCoderAction",
  2886. "conditionA": {
  2887. "ContainerValue": null,
  2888. "StringValue": {
  2889. "Type": "STRING",
  2890. "Value": "关闭卡包暂存界面"
  2891. },
  2892. "Type": "BTInputSlot"
  2893. },
  2894. "isIllegal": true,
  2895. "randomID": "FDIqUEaEoZ2B",
  2896. "stepSlot": {
  2897. "ContainerValue": {
  2898. "Type": "BTNotificationToCoderAction",
  2899. "conditionA": {
  2900. "ContainerValue": null,
  2901. "StringValue": {
  2902. "Type": "STRING",
  2903. "Value": "高级卡包全部解锁按钮被点击"
  2904. },
  2905. "Type": "BTInputSlot"
  2906. },
  2907. "isIllegal": true,
  2908. "randomID": "cywDz52FhlTm",
  2909. "stepSlot": {
  2910. "ContainerValue": {
  2911. "Type": "BTRedHiddenAction",
  2912. "baseSelect": {
  2913. "DisplayName": "进入动画",
  2914. "Type": "Action",
  2915. "Value": "0"
  2916. },
  2917. "isIllegal": true,
  2918. "randomID": "9msKydQpwYhs",
  2919. "stepSlot": {
  2920. "ContainerValue": null,
  2921. "Type": "BTStepSlot"
  2922. }
  2923. },
  2924. "Type": "BTStepSlot"
  2925. }
  2926. },
  2927. "Type": "BTStepSlot"
  2928. }
  2929. },
  2930. "Type": "BTStepSlot"
  2931. }
  2932. },
  2933. "Type": "BTStepSlot"
  2934. }
  2935. },
  2936. "Type": "BTStepSlot"
  2937. }
  2938. },
  2939. "Type": "BTStepSlot"
  2940. }
  2941. },
  2942. "Type": "BTStepSlot"
  2943. }
  2944. },
  2945. "Type": "BTStepSlot"
  2946. }
  2947. },
  2948. "Type": "BTStepSlot"
  2949. },
  2950. "x": 1187.2342217444962,
  2951. "y": -353.2423221419583
  2952. },
  2953. "Tree9": {
  2954. "ExportTree": true,
  2955. "ImageIndex": -1,
  2956. "Type": "BTSceneBtnClickFuncAction",
  2957. "VarJson": {
  2958. "boolJson": {
  2959. },
  2960. "numberJson": {
  2961. }
  2962. },
  2963. "baseSelect": {
  2964. "DisplayName": "单个解锁按钮",
  2965. "Type": "Action",
  2966. "Value": "BBqPADR0Eeih"
  2967. },
  2968. "isIllegal": false,
  2969. "randomID": "aOtw93xf5fMS",
  2970. "redSelect": {
  2971. "DisplayName": "超级卡包节点",
  2972. "Type": "OBJ",
  2973. "Value": "JQeIGjIDnlWF"
  2974. },
  2975. "stepSlot": {
  2976. "ContainerValue": {
  2977. "Type": "BTSceneButtonEnableAction",
  2978. "baseSelect": {
  2979. "DisplayName": "单个解锁按钮",
  2980. "Type": "Action",
  2981. "Value": "BBqPADR0Eeih"
  2982. },
  2983. "enableButton": {
  2984. "Type": "BTCheckBox",
  2985. "isEnable": false
  2986. },
  2987. "isIllegal": true,
  2988. "randomID": "NttYHAMcmWbP",
  2989. "redSelect": {
  2990. "DisplayName": "超级卡包节点",
  2991. "Type": "OBJ",
  2992. "Value": "JQeIGjIDnlWF"
  2993. },
  2994. "stepSlot": {
  2995. "ContainerValue": {
  2996. "Type": "BTPlaySceneTimeLineAction",
  2997. "baseSelect": {
  2998. "DisplayName": "气泡弹框_退出动画",
  2999. "Type": "Action",
  3000. "Value": "3"
  3001. },
  3002. "isIllegal": true,
  3003. "randomID": "IaPKur4A1Ps1",
  3004. "redSelect": {
  3005. "DisplayName": "气泡弹框_普通卡包详情",
  3006. "Type": "OBJ",
  3007. "Value": "I2QkoinH0Nyb"
  3008. },
  3009. "stepSlot": {
  3010. "ContainerValue": {
  3011. "Type": "BTPlaySceneTimeLineAction",
  3012. "baseSelect": {
  3013. "DisplayName": "气泡弹框_退出动画",
  3014. "Type": "Action",
  3015. "Value": "3"
  3016. },
  3017. "isIllegal": true,
  3018. "randomID": "c1bIbRpXcMIW",
  3019. "redSelect": {
  3020. "DisplayName": "气泡弹框_高级卡包详情",
  3021. "Type": "OBJ",
  3022. "Value": "tbfIHOxzm4oB"
  3023. },
  3024. "stepSlot": {
  3025. "ContainerValue": {
  3026. "Type": "BTPlaySceneTimeLineAction",
  3027. "baseSelect": {
  3028. "DisplayName": "气泡弹框_退出动画",
  3029. "Type": "Action",
  3030. "Value": "3"
  3031. },
  3032. "isIllegal": true,
  3033. "randomID": "C4lfmWDO6bZZ",
  3034. "redSelect": {
  3035. "DisplayName": "气泡弹框_超级卡包详情",
  3036. "Type": "OBJ",
  3037. "Value": "C7z4NgSQx3ru"
  3038. },
  3039. "stepSlot": {
  3040. "ContainerValue": {
  3041. "Type": "BTPlayTimeLineWaitAction",
  3042. "baseSelect": {
  3043. "DisplayName": "退出动画",
  3044. "Type": "Action",
  3045. "Value": "1"
  3046. },
  3047. "isIllegal": true,
  3048. "randomID": "mpMBk7pIVF5O",
  3049. "stepSlot": {
  3050. "ContainerValue": {
  3051. "Type": "BTMessageSendAction",
  3052. "baseSelect": {
  3053. "DisplayName": "关闭卡包暂存界面",
  3054. "Type": "Action",
  3055. "Value": "Telfqb9olDHd"
  3056. },
  3057. "conditionA": {
  3058. "ContainerValue": null,
  3059. "StringValue": {
  3060. "Type": "STRING",
  3061. "Value": "参数"
  3062. },
  3063. "Type": "BTInputSlot"
  3064. },
  3065. "isIllegal": true,
  3066. "randomID": "8h9QfGzCt1f4",
  3067. "stepSlot": {
  3068. "ContainerValue": {
  3069. "Type": "BTNotificationToCoderAction",
  3070. "conditionA": {
  3071. "ContainerValue": null,
  3072. "StringValue": {
  3073. "Type": "STRING",
  3074. "Value": "关闭卡包暂存界面"
  3075. },
  3076. "Type": "BTInputSlot"
  3077. },
  3078. "isIllegal": true,
  3079. "randomID": "3Kde0auiUJUy",
  3080. "stepSlot": {
  3081. "ContainerValue": {
  3082. "Type": "BTNotificationToCoderAction",
  3083. "conditionA": {
  3084. "ContainerValue": null,
  3085. "StringValue": {
  3086. "Type": "STRING",
  3087. "Value": "超级卡包单个解锁按钮被点击"
  3088. },
  3089. "Type": "BTInputSlot"
  3090. },
  3091. "isIllegal": true,
  3092. "randomID": "IGphbGHLiPzj",
  3093. "stepSlot": {
  3094. "ContainerValue": {
  3095. "Type": "BTRedHiddenAction",
  3096. "baseSelect": {
  3097. "DisplayName": "进入动画",
  3098. "Type": "Action",
  3099. "Value": "0"
  3100. },
  3101. "isIllegal": true,
  3102. "randomID": "DQ3fSX9wzUK1",
  3103. "stepSlot": {
  3104. "ContainerValue": null,
  3105. "Type": "BTStepSlot"
  3106. }
  3107. },
  3108. "Type": "BTStepSlot"
  3109. }
  3110. },
  3111. "Type": "BTStepSlot"
  3112. }
  3113. },
  3114. "Type": "BTStepSlot"
  3115. }
  3116. },
  3117. "Type": "BTStepSlot"
  3118. }
  3119. },
  3120. "Type": "BTStepSlot"
  3121. }
  3122. },
  3123. "Type": "BTStepSlot"
  3124. }
  3125. },
  3126. "Type": "BTStepSlot"
  3127. }
  3128. },
  3129. "Type": "BTStepSlot"
  3130. }
  3131. },
  3132. "Type": "BTStepSlot"
  3133. },
  3134. "x": 1616.0363988900817,
  3135. "y": -739.5420808480036
  3136. }
  3137. }
  3138. }