公会系统_聊天界面_其他人礼包通知.rebolt 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  1. {
  2. "CustomFunc": {
  3. "刷新礼包类型": [
  4. [
  5. "Name",
  6. "刷新礼包类型",
  7. "2ok0yihOVkWK",
  8. "/Users/puzzle12/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_聊天界面_其他人礼包通知.red"
  9. ]
  10. ],
  11. "展示界面": [
  12. [
  13. "Name",
  14. "展示界面",
  15. "yxUMdrSulacK",
  16. "/Users/gaohenan/Documents/gitWork/res_guild/team/ccb/ui/公会系统_聊天界面_其他人礼包通知.red"
  17. ]
  18. ],
  19. "播放已领取动画": [
  20. [
  21. "Name",
  22. "播放已领取动画",
  23. "H9zMmz9Q9Tbp",
  24. "/Users/puzzle12/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_聊天界面_其他人礼包通知.red"
  25. ]
  26. ],
  27. "测试": [
  28. [
  29. "Name",
  30. "测试",
  31. "Vr3RdJdUgsPQ",
  32. "/Users/gaohenan/Documents/gitWork/res_guild/team/ccb/ui/公会系统_聊天界面_其他人礼包通知.red"
  33. ]
  34. ],
  35. "礼包状态": [
  36. [
  37. "Name",
  38. "礼包状态",
  39. "jA2iLGWVKaa6",
  40. "/Users/gaohenan/Documents/gitWork/res_guild/team/ccb/ui/公会系统_聊天界面_其他人礼包通知.red"
  41. ]
  42. ],
  43. "获取领取按钮位置": [
  44. [
  45. "Name",
  46. "获取领取按钮位置",
  47. "PqADseci7HSI",
  48. "/Users/kong/GoodsStory/Resources/res_guild_new/team/ccb/ui/公会系统_聊天界面_其他人礼包通知.red"
  49. ]
  50. ],
  51. "设置程序节点": [
  52. [
  53. "Name",
  54. "设置程序节点",
  55. "KDzDziI9Lek4",
  56. "/Users/puzzle12/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_聊天界面_其他人礼包通知.red"
  57. ]
  58. ]
  59. },
  60. "CustomList": {
  61. },
  62. "CustomMessage": {
  63. "Hello Red": 1
  64. },
  65. "CustomTestFunc": {
  66. },
  67. "CustomVar": {
  68. "P-无限体力时长": 0,
  69. "P-是否领取礼包": 0,
  70. "P-是否首次进入": 0,
  71. "P-玩家名称": 0,
  72. "P-白银奖励文本": 0,
  73. "P-礼包类型": 0,
  74. "P-青铜奖励文本": 0,
  75. "P-黄金奖励文本": 0
  76. },
  77. "DisPlayName": "公会系统_聊天界面_其他人礼包通知",
  78. "RedFileList": {
  79. "LFB6c54VjyXD": {
  80. "CustomFunc": {
  81. "展示页面": [
  82. [
  83. "Name",
  84. "展示页面",
  85. "mjYk4qtkWqBN",
  86. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_礼包内容_体力包.red"
  87. ]
  88. ],
  89. "测试-普通礼包": [
  90. [
  91. "Name",
  92. "测试-普通礼包",
  93. "Ym2YrvHSGbis",
  94. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_礼包内容_体力包.red"
  95. ]
  96. ],
  97. "测试-金色礼包": [
  98. [
  99. "Name",
  100. "测试-金色礼包",
  101. "SoqvVz0Mot4g",
  102. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_礼包内容_体力包.red"
  103. ]
  104. ],
  105. "测试-铜色礼包": [
  106. [
  107. "Name",
  108. "测试-铜色礼包",
  109. "3WSHoujgYRyw",
  110. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_礼包内容_体力包.red"
  111. ]
  112. ],
  113. "测试-银色礼包": [
  114. [
  115. "Name",
  116. "测试-银色礼包",
  117. "KAGJgNH780sb",
  118. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_礼包内容_体力包.red"
  119. ]
  120. ],
  121. "设置程序变量": [
  122. [
  123. "Name",
  124. "设置程序变量",
  125. "g3z4OFWbEIPx",
  126. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_礼包内容_体力包.red"
  127. ]
  128. ]
  129. },
  130. "CustomList": {
  131. },
  132. "CustomTestFunc": {
  133. },
  134. "CustomVar": {
  135. "P-礼包类型": 0
  136. },
  137. "DisPlayName": "公会折扣礼包_礼包内容_体力包",
  138. "RedNoteInfo": {
  139. },
  140. "TreeList": {
  141. "Tree0": {
  142. "ExportTree": true,
  143. "ImageIndex": 3,
  144. "Name": {
  145. "Type": "STRING",
  146. "Value": "展示页面",
  147. "displayName": ""
  148. },
  149. "Type": "BTCustomFuncHeadAction",
  150. "VarJson": {
  151. "boolJson": {
  152. },
  153. "numberJson": {
  154. }
  155. },
  156. "isIllegal": false,
  157. "randomID": "mjYk4qtkWqBN",
  158. "stepSlot": {
  159. "ContainerValue": {
  160. "Type": "BTCallRedCustomFuncBodyAction",
  161. "baseSelect": {
  162. "DisplayName": "展示页面",
  163. "Type": "Action",
  164. "Value": "展示页面"
  165. },
  166. "funcHeadID": "QYmYtbmGM1RT",
  167. "isIllegal": true,
  168. "paramArr": [
  169. ],
  170. "randomID": "CmTieMUJ9I7N",
  171. "redId": "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_公会图标.red",
  172. "redSelect": {
  173. "DisplayName": "公会系统_公会图标",
  174. "Type": "OBJ",
  175. "Value": "q42mFeWgMvjw"
  176. },
  177. "stepSlot": {
  178. "ContainerValue": {
  179. "Type": "BTIFControlAction",
  180. "conditionA": {
  181. "ContainerValue": {
  182. "Type": "BTStringEqualOperatorAction",
  183. "conditionA": {
  184. "ContainerValue": {
  185. "Type": "BTCoderVariableAction",
  186. "VarScope": "Scene",
  187. "isIllegal": true,
  188. "randomID": "fncwAbEvg277",
  189. "titleLabel": {
  190. "Type": "STRING",
  191. "Value": "P-礼包类型",
  192. "displayName": ""
  193. }
  194. },
  195. "StringValue": {
  196. "Type": "STRING",
  197. "Value": "Red"
  198. },
  199. "Type": "BTInputSlot"
  200. },
  201. "conditionB": {
  202. "ContainerValue": null,
  203. "StringValue": {
  204. "Type": "STRING",
  205. "Value": "金色"
  206. },
  207. "Type": "BTInputSlot"
  208. },
  209. "isIllegal": true,
  210. "randomID": "dW4c6sBUXQXU"
  211. },
  212. "Type": "BTBoolSlot"
  213. },
  214. "isIllegal": true,
  215. "randomID": "g0tzbVyuXW65",
  216. "sectionA": {
  217. "ContainerValue": {
  218. "Type": "BTPlayTimeLineAction",
  219. "baseSelect": {
  220. "DisplayName": "金色_常态",
  221. "Type": "Action",
  222. "Value": "1"
  223. },
  224. "isIllegal": true,
  225. "randomID": "j98ZarfsVUX9",
  226. "stepSlot": {
  227. "ContainerValue": null,
  228. "Type": "BTStepSlot"
  229. }
  230. },
  231. "Type": "BTSectionSlot"
  232. },
  233. "stepSlot": {
  234. "ContainerValue": {
  235. "Type": "BTIFControlAction",
  236. "conditionA": {
  237. "ContainerValue": {
  238. "Type": "BTStringEqualOperatorAction",
  239. "conditionA": {
  240. "ContainerValue": {
  241. "Type": "BTCoderVariableAction",
  242. "VarScope": "Scene",
  243. "isIllegal": true,
  244. "randomID": "5qKO3cPUW7rc",
  245. "titleLabel": {
  246. "Type": "STRING",
  247. "Value": "P-礼包类型",
  248. "displayName": ""
  249. }
  250. },
  251. "StringValue": {
  252. "Type": "STRING",
  253. "Value": "Red"
  254. },
  255. "Type": "BTInputSlot"
  256. },
  257. "conditionB": {
  258. "ContainerValue": null,
  259. "StringValue": {
  260. "Type": "STRING",
  261. "Value": "银色"
  262. },
  263. "Type": "BTInputSlot"
  264. },
  265. "isIllegal": true,
  266. "randomID": "OuSuQppISnhf"
  267. },
  268. "Type": "BTBoolSlot"
  269. },
  270. "isIllegal": true,
  271. "randomID": "jTxniliOu6wc",
  272. "sectionA": {
  273. "ContainerValue": {
  274. "Type": "BTPlayTimeLineAction",
  275. "baseSelect": {
  276. "DisplayName": "银色_常态",
  277. "Type": "Action",
  278. "Value": "2"
  279. },
  280. "isIllegal": true,
  281. "randomID": "ZCBiUOqQ15bL",
  282. "stepSlot": {
  283. "ContainerValue": null,
  284. "Type": "BTStepSlot"
  285. }
  286. },
  287. "Type": "BTSectionSlot"
  288. },
  289. "stepSlot": {
  290. "ContainerValue": {
  291. "Type": "BTIFControlAction",
  292. "conditionA": {
  293. "ContainerValue": {
  294. "Type": "BTStringEqualOperatorAction",
  295. "conditionA": {
  296. "ContainerValue": {
  297. "Type": "BTCoderVariableAction",
  298. "VarScope": "Scene",
  299. "isIllegal": true,
  300. "randomID": "eqEzlScsN25c",
  301. "titleLabel": {
  302. "Type": "STRING",
  303. "Value": "P-礼包类型",
  304. "displayName": ""
  305. }
  306. },
  307. "StringValue": {
  308. "Type": "STRING",
  309. "Value": "Red"
  310. },
  311. "Type": "BTInputSlot"
  312. },
  313. "conditionB": {
  314. "ContainerValue": null,
  315. "StringValue": {
  316. "Type": "STRING",
  317. "Value": "铜色"
  318. },
  319. "Type": "BTInputSlot"
  320. },
  321. "isIllegal": true,
  322. "randomID": "vToDkkyawwuw"
  323. },
  324. "Type": "BTBoolSlot"
  325. },
  326. "isIllegal": true,
  327. "randomID": "Cbel2zxRHSq3",
  328. "sectionA": {
  329. "ContainerValue": {
  330. "Type": "BTPlayTimeLineAction",
  331. "baseSelect": {
  332. "DisplayName": "铜色_常态",
  333. "Type": "Action",
  334. "Value": "3"
  335. },
  336. "isIllegal": true,
  337. "randomID": "0aHts5WXBzN3",
  338. "stepSlot": {
  339. "ContainerValue": null,
  340. "Type": "BTStepSlot"
  341. }
  342. },
  343. "Type": "BTSectionSlot"
  344. },
  345. "stepSlot": {
  346. "ContainerValue": {
  347. "Type": "BTIFControlAction",
  348. "conditionA": {
  349. "ContainerValue": {
  350. "Type": "BTStringEqualOperatorAction",
  351. "conditionA": {
  352. "ContainerValue": {
  353. "Type": "BTCoderVariableAction",
  354. "VarScope": "Scene",
  355. "isIllegal": true,
  356. "randomID": "ckd4XuKZOyPm",
  357. "titleLabel": {
  358. "Type": "STRING",
  359. "Value": "P-礼包类型",
  360. "displayName": ""
  361. }
  362. },
  363. "StringValue": {
  364. "Type": "STRING",
  365. "Value": "Red"
  366. },
  367. "Type": "BTInputSlot"
  368. },
  369. "conditionB": {
  370. "ContainerValue": null,
  371. "StringValue": {
  372. "Type": "STRING",
  373. "Value": "普通"
  374. },
  375. "Type": "BTInputSlot"
  376. },
  377. "isIllegal": true,
  378. "randomID": "75nwXJ7ul0Ng"
  379. },
  380. "Type": "BTBoolSlot"
  381. },
  382. "isIllegal": true,
  383. "randomID": "qUK7hDi9Stc7",
  384. "sectionA": {
  385. "ContainerValue": {
  386. "Type": "BTPlayTimeLineAction",
  387. "baseSelect": {
  388. "DisplayName": "图标_常态",
  389. "Type": "Action",
  390. "Value": "4"
  391. },
  392. "isIllegal": true,
  393. "randomID": "Yb4FufdIQgPM",
  394. "stepSlot": {
  395. "ContainerValue": null,
  396. "Type": "BTStepSlot"
  397. }
  398. },
  399. "Type": "BTSectionSlot"
  400. },
  401. "stepSlot": {
  402. "ContainerValue": null,
  403. "Type": "BTStepSlot"
  404. }
  405. },
  406. "Type": "BTStepSlot"
  407. }
  408. },
  409. "Type": "BTStepSlot"
  410. }
  411. },
  412. "Type": "BTStepSlot"
  413. }
  414. },
  415. "Type": "BTStepSlot"
  416. }
  417. },
  418. "Type": "BTStepSlot"
  419. },
  420. "x": -140,
  421. "y": -679
  422. },
  423. "Tree1": {
  424. "ExportTree": false,
  425. "ImageIndex": 4,
  426. "Name": {
  427. "Type": "STRING",
  428. "Value": "模拟程序执行",
  429. "displayName": ""
  430. },
  431. "Type": "BTSimulatorAction",
  432. "VarJson": {
  433. "boolJson": {
  434. },
  435. "numberJson": {
  436. "参数": "Number",
  437. "通知名": "Number"
  438. }
  439. },
  440. "isIllegal": false,
  441. "randomID": "XrDjYemGqRAf",
  442. "stepSlot": {
  443. "ContainerValue": {
  444. "Type": "BTIFControlAction",
  445. "conditionA": {
  446. "ContainerValue": {
  447. "Type": "BTStringEqualOperatorAction",
  448. "conditionA": {
  449. "ContainerValue": {
  450. "Type": "BTFuncVariableAction",
  451. "colorName": "Disable",
  452. "currentStr": "通知名",
  453. "fatherFuncID": "XrDjYemGqRAf",
  454. "isIllegal": true,
  455. "randomID": "mg4MgYGbZYed",
  456. "titleLabel": {
  457. "Type": "STRING",
  458. "Value": "通知名",
  459. "displayName": ""
  460. }
  461. },
  462. "StringValue": {
  463. "Type": "STRING",
  464. "Value": "Red"
  465. },
  466. "Type": "BTInputSlot"
  467. },
  468. "conditionB": {
  469. "ContainerValue": null,
  470. "StringValue": {
  471. "Type": "STRING",
  472. "Value": "金色礼包"
  473. },
  474. "Type": "BTInputSlot"
  475. },
  476. "isIllegal": true,
  477. "randomID": "mNS0qO2iE3cP"
  478. },
  479. "Type": "BTBoolSlot"
  480. },
  481. "isIllegal": true,
  482. "randomID": "JjpUJ4RLKsON",
  483. "sectionA": {
  484. "ContainerValue": {
  485. "TitleInput": {
  486. "ContainerValue": null,
  487. "StringValue": {
  488. "Type": "STRING",
  489. "Value": "金色"
  490. },
  491. "Type": "BTInputSlot"
  492. },
  493. "Type": "BTDataCoderVarSetAction",
  494. "VarScope": "Scene",
  495. "baseSelect": {
  496. "DisplayName": "P-礼包类型",
  497. "Type": "Action",
  498. "Value": "P-礼包类型"
  499. },
  500. "isIllegal": true,
  501. "randomID": "04qiGyHFNCmd",
  502. "stepSlot": {
  503. "ContainerValue": null,
  504. "Type": "BTStepSlot"
  505. }
  506. },
  507. "Type": "BTSectionSlot"
  508. },
  509. "stepSlot": {
  510. "ContainerValue": {
  511. "Type": "BTIFControlAction",
  512. "conditionA": {
  513. "ContainerValue": {
  514. "Type": "BTStringEqualOperatorAction",
  515. "conditionA": {
  516. "ContainerValue": {
  517. "Type": "BTFuncVariableAction",
  518. "colorName": "Disable",
  519. "currentStr": "通知名",
  520. "fatherFuncID": "XrDjYemGqRAf",
  521. "isIllegal": true,
  522. "randomID": "2DtQl9Bro52X",
  523. "titleLabel": {
  524. "Type": "STRING",
  525. "Value": "通知名",
  526. "displayName": ""
  527. }
  528. },
  529. "StringValue": {
  530. "Type": "STRING",
  531. "Value": "Red"
  532. },
  533. "Type": "BTInputSlot"
  534. },
  535. "conditionB": {
  536. "ContainerValue": null,
  537. "StringValue": {
  538. "Type": "STRING",
  539. "Value": "银色礼包"
  540. },
  541. "Type": "BTInputSlot"
  542. },
  543. "isIllegal": true,
  544. "randomID": "ZJnjoloIFvmS"
  545. },
  546. "Type": "BTBoolSlot"
  547. },
  548. "isIllegal": true,
  549. "randomID": "jcm0EnDGBTsr",
  550. "sectionA": {
  551. "ContainerValue": {
  552. "TitleInput": {
  553. "ContainerValue": null,
  554. "StringValue": {
  555. "Type": "STRING",
  556. "Value": "银色"
  557. },
  558. "Type": "BTInputSlot"
  559. },
  560. "Type": "BTDataCoderVarSetAction",
  561. "VarScope": "Scene",
  562. "baseSelect": {
  563. "DisplayName": "P-礼包类型",
  564. "Type": "Action",
  565. "Value": "P-礼包类型"
  566. },
  567. "isIllegal": true,
  568. "randomID": "vRzAH6L8Ce3n",
  569. "stepSlot": {
  570. "ContainerValue": null,
  571. "Type": "BTStepSlot"
  572. }
  573. },
  574. "Type": "BTSectionSlot"
  575. },
  576. "stepSlot": {
  577. "ContainerValue": {
  578. "Type": "BTIFControlAction",
  579. "conditionA": {
  580. "ContainerValue": {
  581. "Type": "BTStringEqualOperatorAction",
  582. "conditionA": {
  583. "ContainerValue": {
  584. "Type": "BTFuncVariableAction",
  585. "colorName": "Disable",
  586. "currentStr": "通知名",
  587. "fatherFuncID": "XrDjYemGqRAf",
  588. "isIllegal": true,
  589. "randomID": "od7Ow2nfEwAa",
  590. "titleLabel": {
  591. "Type": "STRING",
  592. "Value": "通知名",
  593. "displayName": ""
  594. }
  595. },
  596. "StringValue": {
  597. "Type": "STRING",
  598. "Value": "Red"
  599. },
  600. "Type": "BTInputSlot"
  601. },
  602. "conditionB": {
  603. "ContainerValue": null,
  604. "StringValue": {
  605. "Type": "STRING",
  606. "Value": "铜色礼包"
  607. },
  608. "Type": "BTInputSlot"
  609. },
  610. "isIllegal": true,
  611. "randomID": "eqfcxGotAuwT"
  612. },
  613. "Type": "BTBoolSlot"
  614. },
  615. "isIllegal": true,
  616. "randomID": "hY3b1bG2Pcz3",
  617. "sectionA": {
  618. "ContainerValue": {
  619. "TitleInput": {
  620. "ContainerValue": null,
  621. "StringValue": {
  622. "Type": "STRING",
  623. "Value": "铜色"
  624. },
  625. "Type": "BTInputSlot"
  626. },
  627. "Type": "BTDataCoderVarSetAction",
  628. "VarScope": "Scene",
  629. "baseSelect": {
  630. "DisplayName": "P-礼包类型",
  631. "Type": "Action",
  632. "Value": "P-礼包类型"
  633. },
  634. "isIllegal": true,
  635. "randomID": "Km8rlGLFURdb",
  636. "stepSlot": {
  637. "ContainerValue": null,
  638. "Type": "BTStepSlot"
  639. }
  640. },
  641. "Type": "BTSectionSlot"
  642. },
  643. "stepSlot": {
  644. "ContainerValue": {
  645. "Type": "BTIFControlAction",
  646. "conditionA": {
  647. "ContainerValue": {
  648. "Type": "BTStringEqualOperatorAction",
  649. "conditionA": {
  650. "ContainerValue": {
  651. "Type": "BTFuncVariableAction",
  652. "colorName": "Disable",
  653. "currentStr": "通知名",
  654. "fatherFuncID": "XrDjYemGqRAf",
  655. "isIllegal": true,
  656. "randomID": "HqARZAyfgOB9",
  657. "titleLabel": {
  658. "Type": "STRING",
  659. "Value": "通知名",
  660. "displayName": ""
  661. }
  662. },
  663. "StringValue": {
  664. "Type": "STRING",
  665. "Value": "Red"
  666. },
  667. "Type": "BTInputSlot"
  668. },
  669. "conditionB": {
  670. "ContainerValue": null,
  671. "StringValue": {
  672. "Type": "STRING",
  673. "Value": "普通礼包"
  674. },
  675. "Type": "BTInputSlot"
  676. },
  677. "isIllegal": true,
  678. "randomID": "Luoy5oUs0GR8"
  679. },
  680. "Type": "BTBoolSlot"
  681. },
  682. "isIllegal": true,
  683. "randomID": "ODBzXXNtoqk0",
  684. "sectionA": {
  685. "ContainerValue": {
  686. "TitleInput": {
  687. "ContainerValue": null,
  688. "StringValue": {
  689. "Type": "STRING",
  690. "Value": "普通"
  691. },
  692. "Type": "BTInputSlot"
  693. },
  694. "Type": "BTDataCoderVarSetAction",
  695. "VarScope": "Scene",
  696. "baseSelect": {
  697. "DisplayName": "P-礼包类型",
  698. "Type": "Action",
  699. "Value": "P-礼包类型"
  700. },
  701. "isIllegal": true,
  702. "randomID": "FXBeUhFyYPEA",
  703. "stepSlot": {
  704. "ContainerValue": null,
  705. "Type": "BTStepSlot"
  706. }
  707. },
  708. "Type": "BTSectionSlot"
  709. },
  710. "stepSlot": {
  711. "ContainerValue": null,
  712. "Type": "BTStepSlot"
  713. }
  714. },
  715. "Type": "BTStepSlot"
  716. }
  717. },
  718. "Type": "BTStepSlot"
  719. }
  720. },
  721. "Type": "BTStepSlot"
  722. }
  723. },
  724. "Type": "BTStepSlot"
  725. },
  726. "x": 484,
  727. "y": -484
  728. },
  729. "Tree2": {
  730. "ExportTree": true,
  731. "ImageIndex": 2,
  732. "Name": {
  733. "Type": "STRING",
  734. "Value": "测试-金色礼包",
  735. "displayName": ""
  736. },
  737. "Type": "BTCustomFuncHeadAction",
  738. "VarJson": {
  739. "boolJson": {
  740. },
  741. "numberJson": {
  742. }
  743. },
  744. "isIllegal": false,
  745. "randomID": "SoqvVz0Mot4g",
  746. "stepSlot": {
  747. "ContainerValue": {
  748. "Type": "BTNotificationToCoderAction",
  749. "conditionA": {
  750. "ContainerValue": null,
  751. "StringValue": {
  752. "Type": "STRING",
  753. "Value": "金色礼包"
  754. },
  755. "Type": "BTInputSlot"
  756. },
  757. "isIllegal": true,
  758. "randomID": "YsJBegWWDBlz",
  759. "stepSlot": {
  760. "ContainerValue": {
  761. "Name": {
  762. "Type": "STRING",
  763. "Value": "展示页面",
  764. "displayName": ""
  765. },
  766. "Type": "BTCustomFuncBodyAction",
  767. "funcHeadID": "mjYk4qtkWqBN",
  768. "isIllegal": true,
  769. "paramArr": [
  770. ],
  771. "randomID": "En4QvqSOOQVF",
  772. "stepSlot": {
  773. "ContainerValue": {
  774. "Type": "BTCallRedCustomFuncBodyAction",
  775. "baseSelect": {
  776. "DisplayName": "测试_展示页面",
  777. "Type": "Action",
  778. "Value": "测试_展示页面"
  779. },
  780. "funcHeadID": "s532r48coQsF",
  781. "isIllegal": true,
  782. "paramArr": [
  783. ],
  784. "randomID": "izbndugyl1NR",
  785. "redId": "/Users/yujizhu/Documents/Git/RedTools/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_公会图标.red",
  786. "redSelect": {
  787. "DisplayName": "公会系统_公会图标",
  788. "Type": "OBJ",
  789. "Value": "q42mFeWgMvjw"
  790. },
  791. "stepSlot": {
  792. "ContainerValue": null,
  793. "Type": "BTStepSlot"
  794. }
  795. },
  796. "Type": "BTStepSlot"
  797. }
  798. },
  799. "Type": "BTStepSlot"
  800. }
  801. },
  802. "Type": "BTStepSlot"
  803. },
  804. "x": 320.5,
  805. "y": -889
  806. },
  807. "Tree3": {
  808. "ExportTree": true,
  809. "ImageIndex": 1,
  810. "Name": {
  811. "Type": "STRING",
  812. "Value": "测试-银色礼包",
  813. "displayName": ""
  814. },
  815. "Type": "BTCustomFuncHeadAction",
  816. "VarJson": {
  817. "boolJson": {
  818. },
  819. "numberJson": {
  820. }
  821. },
  822. "isIllegal": false,
  823. "randomID": "KAGJgNH780sb",
  824. "stepSlot": {
  825. "ContainerValue": {
  826. "Type": "BTNotificationToCoderAction",
  827. "conditionA": {
  828. "ContainerValue": null,
  829. "StringValue": {
  830. "Type": "STRING",
  831. "Value": "银色礼包"
  832. },
  833. "Type": "BTInputSlot"
  834. },
  835. "isIllegal": true,
  836. "randomID": "GokGGFnq1vyu",
  837. "stepSlot": {
  838. "ContainerValue": {
  839. "Name": {
  840. "Type": "STRING",
  841. "Value": "展示页面",
  842. "displayName": ""
  843. },
  844. "Type": "BTCustomFuncBodyAction",
  845. "funcHeadID": "mjYk4qtkWqBN",
  846. "isIllegal": true,
  847. "paramArr": [
  848. ],
  849. "randomID": "JRYo52wHdiMS",
  850. "stepSlot": {
  851. "ContainerValue": {
  852. "Type": "BTCallRedCustomFuncBodyAction",
  853. "baseSelect": {
  854. "DisplayName": "测试_展示页面",
  855. "Type": "Action",
  856. "Value": "测试_展示页面"
  857. },
  858. "funcHeadID": "s532r48coQsF",
  859. "isIllegal": true,
  860. "paramArr": [
  861. ],
  862. "randomID": "GrZoDf1OrnxM",
  863. "redId": "/Users/yujizhu/Documents/Git/RedTools/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_公会图标.red",
  864. "redSelect": {
  865. "DisplayName": "公会系统_公会图标",
  866. "Type": "OBJ",
  867. "Value": "q42mFeWgMvjw"
  868. },
  869. "stepSlot": {
  870. "ContainerValue": null,
  871. "Type": "BTStepSlot"
  872. }
  873. },
  874. "Type": "BTStepSlot"
  875. }
  876. },
  877. "Type": "BTStepSlot"
  878. }
  879. },
  880. "Type": "BTStepSlot"
  881. },
  882. "x": 321.5,
  883. "y": -699
  884. },
  885. "Tree4": {
  886. "ExportTree": true,
  887. "ImageIndex": 8,
  888. "Name": {
  889. "Type": "STRING",
  890. "Value": "测试-铜色礼包",
  891. "displayName": ""
  892. },
  893. "Type": "BTCustomFuncHeadAction",
  894. "VarJson": {
  895. "boolJson": {
  896. },
  897. "numberJson": {
  898. }
  899. },
  900. "isIllegal": false,
  901. "randomID": "3WSHoujgYRyw",
  902. "stepSlot": {
  903. "ContainerValue": {
  904. "Type": "BTNotificationToCoderAction",
  905. "conditionA": {
  906. "ContainerValue": null,
  907. "StringValue": {
  908. "Type": "STRING",
  909. "Value": "铜色礼包"
  910. },
  911. "Type": "BTInputSlot"
  912. },
  913. "isIllegal": true,
  914. "randomID": "kRrlEroJ03y3",
  915. "stepSlot": {
  916. "ContainerValue": {
  917. "Name": {
  918. "Type": "STRING",
  919. "Value": "展示页面",
  920. "displayName": ""
  921. },
  922. "Type": "BTCustomFuncBodyAction",
  923. "funcHeadID": "mjYk4qtkWqBN",
  924. "isIllegal": true,
  925. "paramArr": [
  926. ],
  927. "randomID": "dCu8mSt30UAj",
  928. "stepSlot": {
  929. "ContainerValue": {
  930. "Type": "BTCallRedCustomFuncBodyAction",
  931. "baseSelect": {
  932. "DisplayName": "测试_展示页面",
  933. "Type": "Action",
  934. "Value": "测试_展示页面"
  935. },
  936. "funcHeadID": "s532r48coQsF",
  937. "isIllegal": true,
  938. "paramArr": [
  939. ],
  940. "randomID": "gGW5W4hHFs0O",
  941. "redId": "/Users/yujizhu/Documents/Git/RedTools/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_公会图标.red",
  942. "redSelect": {
  943. "DisplayName": "公会系统_公会图标",
  944. "Type": "OBJ",
  945. "Value": "q42mFeWgMvjw"
  946. },
  947. "stepSlot": {
  948. "ContainerValue": null,
  949. "Type": "BTStepSlot"
  950. }
  951. },
  952. "Type": "BTStepSlot"
  953. }
  954. },
  955. "Type": "BTStepSlot"
  956. }
  957. },
  958. "Type": "BTStepSlot"
  959. },
  960. "x": 664.5,
  961. "y": -892
  962. },
  963. "Tree5": {
  964. "ExportTree": true,
  965. "ImageIndex": 10,
  966. "Name": {
  967. "Type": "STRING",
  968. "Value": "测试-普通礼包",
  969. "displayName": ""
  970. },
  971. "Type": "BTCustomFuncHeadAction",
  972. "VarJson": {
  973. "boolJson": {
  974. },
  975. "numberJson": {
  976. }
  977. },
  978. "isIllegal": false,
  979. "randomID": "Ym2YrvHSGbis",
  980. "stepSlot": {
  981. "ContainerValue": {
  982. "Type": "BTNotificationToCoderAction",
  983. "conditionA": {
  984. "ContainerValue": null,
  985. "StringValue": {
  986. "Type": "STRING",
  987. "Value": "普通礼包"
  988. },
  989. "Type": "BTInputSlot"
  990. },
  991. "isIllegal": true,
  992. "randomID": "giTxiww7V6ML",
  993. "stepSlot": {
  994. "ContainerValue": {
  995. "Name": {
  996. "Type": "STRING",
  997. "Value": "展示页面",
  998. "displayName": ""
  999. },
  1000. "Type": "BTCustomFuncBodyAction",
  1001. "funcHeadID": "mjYk4qtkWqBN",
  1002. "isIllegal": true,
  1003. "paramArr": [
  1004. ],
  1005. "randomID": "pSt9Aq8gYSVV",
  1006. "stepSlot": {
  1007. "ContainerValue": {
  1008. "Type": "BTCallRedCustomFuncBodyAction",
  1009. "baseSelect": {
  1010. "DisplayName": "测试_展示页面",
  1011. "Type": "Action",
  1012. "Value": "测试_展示页面"
  1013. },
  1014. "funcHeadID": "s532r48coQsF",
  1015. "isIllegal": true,
  1016. "paramArr": [
  1017. ],
  1018. "randomID": "7wgJjRfjycDa",
  1019. "redId": "/Users/yujizhu/Documents/Git/RedTools/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_公会图标.red",
  1020. "redSelect": {
  1021. "DisplayName": "公会系统_公会图标",
  1022. "Type": "OBJ",
  1023. "Value": "q42mFeWgMvjw"
  1024. },
  1025. "stepSlot": {
  1026. "ContainerValue": null,
  1027. "Type": "BTStepSlot"
  1028. }
  1029. },
  1030. "Type": "BTStepSlot"
  1031. }
  1032. },
  1033. "Type": "BTStepSlot"
  1034. }
  1035. },
  1036. "Type": "BTStepSlot"
  1037. },
  1038. "x": 686.5,
  1039. "y": -703
  1040. },
  1041. "Tree6": {
  1042. "ExportTree": true,
  1043. "ImageIndex": 5,
  1044. "Name": {
  1045. "Type": "STRING",
  1046. "Value": "设置程序变量",
  1047. "displayName": ""
  1048. },
  1049. "Type": "BTCustomFuncHeadAction",
  1050. "VarJson": {
  1051. "boolJson": {
  1052. },
  1053. "numberJson": {
  1054. }
  1055. },
  1056. "isIllegal": false,
  1057. "randomID": "g3z4OFWbEIPx",
  1058. "stepSlot": {
  1059. "ContainerValue": {
  1060. "Type": "BTNotificationNodeToCoderAction",
  1061. "baseSelect": {
  1062. "DisplayName": "公会系统_公会图标",
  1063. "Type": "Action",
  1064. "Value": "q42mFeWgMvjw"
  1065. },
  1066. "conditionA": {
  1067. "ContainerValue": null,
  1068. "StringValue": {
  1069. "Type": "STRING",
  1070. "Value": "设置程序变量"
  1071. },
  1072. "Type": "BTInputSlot"
  1073. },
  1074. "isIllegal": true,
  1075. "paramA": {
  1076. "ContainerValue": null,
  1077. "StringValue": {
  1078. "Type": "STRING",
  1079. "Value": "公会图标"
  1080. },
  1081. "Type": "BTInputSlot"
  1082. },
  1083. "randomID": "bBnzuQzfYE3B",
  1084. "stepSlot": {
  1085. "ContainerValue": null,
  1086. "Type": "BTStepSlot"
  1087. }
  1088. },
  1089. "Type": "BTStepSlot"
  1090. },
  1091. "x": -269,
  1092. "y": -911
  1093. }
  1094. }
  1095. },
  1096. "VbNrt504jVZK": {
  1097. "CustomFunc": {
  1098. "展示页面": [
  1099. [
  1100. "Name",
  1101. "展示页面",
  1102. "5LF1sOtro7ZS",
  1103. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_倒计时.red"
  1104. ]
  1105. ],
  1106. "更新倒计时": [
  1107. [
  1108. "Name",
  1109. "更新倒计时",
  1110. "7m5TOC94R4Sq",
  1111. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_倒计时.red"
  1112. ]
  1113. ],
  1114. "测试-展示页面": [
  1115. [
  1116. "Name",
  1117. "测试-展示页面",
  1118. "WDiHWWAqEE51",
  1119. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/TeamGift_ui/公会折扣礼包_倒计时.red"
  1120. ]
  1121. ]
  1122. },
  1123. "CustomList": {
  1124. },
  1125. "CustomTestFunc": {
  1126. },
  1127. "CustomVar": {
  1128. "P-倒计时": 0
  1129. },
  1130. "DisPlayName": "公会折扣礼包_倒计时",
  1131. "RedNoteInfo": {
  1132. },
  1133. "TreeList": {
  1134. "Tree0": {
  1135. "ExportTree": true,
  1136. "ImageIndex": 1,
  1137. "Name": {
  1138. "Type": "STRING",
  1139. "Value": "展示页面",
  1140. "displayName": ""
  1141. },
  1142. "Type": "BTCustomFuncHeadAction",
  1143. "VarJson": {
  1144. "boolJson": {
  1145. },
  1146. "numberJson": {
  1147. }
  1148. },
  1149. "isIllegal": false,
  1150. "randomID": "5LF1sOtro7ZS",
  1151. "stepSlot": {
  1152. "ContainerValue": {
  1153. "TitleInput": {
  1154. "ContainerValue": {
  1155. "Type": "BTCoderVariableAction",
  1156. "VarScope": "Scene",
  1157. "isIllegal": true,
  1158. "randomID": "9SFC5PMRaD4M",
  1159. "titleLabel": {
  1160. "Type": "STRING",
  1161. "Value": "P-倒计时",
  1162. "displayName": ""
  1163. }
  1164. },
  1165. "StringValue": {
  1166. "Type": "STRING",
  1167. "Value": "填写标题内容"
  1168. },
  1169. "Type": "BTInputSlot"
  1170. },
  1171. "Type": "BTLabelTitleAction",
  1172. "baseSelect": {
  1173. "DisplayName": "倒计时",
  1174. "Type": "Action",
  1175. "Value": "gHwIkhtzj7Kn"
  1176. },
  1177. "isIllegal": true,
  1178. "randomID": "pJBNqDePOGrw",
  1179. "stepSlot": {
  1180. "ContainerValue": null,
  1181. "Type": "BTStepSlot"
  1182. }
  1183. },
  1184. "Type": "BTStepSlot"
  1185. },
  1186. "x": 165,
  1187. "y": -476
  1188. },
  1189. "Tree1": {
  1190. "ExportTree": true,
  1191. "ImageIndex": 4,
  1192. "Name": {
  1193. "Type": "STRING",
  1194. "Value": "测试-展示页面",
  1195. "displayName": ""
  1196. },
  1197. "Type": "BTCustomFuncHeadAction",
  1198. "VarJson": {
  1199. "boolJson": {
  1200. },
  1201. "numberJson": {
  1202. }
  1203. },
  1204. "isIllegal": false,
  1205. "randomID": "WDiHWWAqEE51",
  1206. "stepSlot": {
  1207. "ContainerValue": {
  1208. "Type": "BTNotificationToCoderAction",
  1209. "conditionA": {
  1210. "ContainerValue": null,
  1211. "StringValue": {
  1212. "Type": "STRING",
  1213. "Value": "测试"
  1214. },
  1215. "Type": "BTInputSlot"
  1216. },
  1217. "isIllegal": true,
  1218. "randomID": "lNLHm4LktdJ3",
  1219. "stepSlot": {
  1220. "ContainerValue": {
  1221. "Name": {
  1222. "Type": "STRING",
  1223. "Value": "展示页面",
  1224. "displayName": ""
  1225. },
  1226. "Type": "BTCustomFuncBodyAction",
  1227. "funcHeadID": "5LF1sOtro7ZS",
  1228. "isIllegal": true,
  1229. "paramArr": [
  1230. ],
  1231. "randomID": "geZL6gPlUwGB",
  1232. "stepSlot": {
  1233. "ContainerValue": null,
  1234. "Type": "BTStepSlot"
  1235. }
  1236. },
  1237. "Type": "BTStepSlot"
  1238. }
  1239. },
  1240. "Type": "BTStepSlot"
  1241. },
  1242. "x": 176.5,
  1243. "y": -350
  1244. },
  1245. "Tree2": {
  1246. "ExportTree": false,
  1247. "ImageIndex": 6,
  1248. "Name": {
  1249. "Type": "STRING",
  1250. "Value": "模拟程序执行",
  1251. "displayName": ""
  1252. },
  1253. "Type": "BTSimulatorAction",
  1254. "VarJson": {
  1255. "boolJson": {
  1256. },
  1257. "numberJson": {
  1258. "参数": "Number",
  1259. "通知名": "Number"
  1260. }
  1261. },
  1262. "isIllegal": false,
  1263. "randomID": "aoWg3mA5EzAc",
  1264. "stepSlot": {
  1265. "ContainerValue": {
  1266. "Type": "BTIFControlAction",
  1267. "conditionA": {
  1268. "ContainerValue": {
  1269. "Type": "BTStringEqualOperatorAction",
  1270. "conditionA": {
  1271. "ContainerValue": {
  1272. "Type": "BTFuncVariableAction",
  1273. "colorName": "Disable",
  1274. "currentStr": "通知名",
  1275. "fatherFuncID": "aoWg3mA5EzAc",
  1276. "isIllegal": true,
  1277. "randomID": "sdm8LhCPmWt3",
  1278. "titleLabel": {
  1279. "Type": "STRING",
  1280. "Value": "通知名",
  1281. "displayName": ""
  1282. }
  1283. },
  1284. "StringValue": {
  1285. "Type": "STRING",
  1286. "Value": "Red"
  1287. },
  1288. "Type": "BTInputSlot"
  1289. },
  1290. "conditionB": {
  1291. "ContainerValue": null,
  1292. "StringValue": {
  1293. "Type": "STRING",
  1294. "Value": "测试"
  1295. },
  1296. "Type": "BTInputSlot"
  1297. },
  1298. "isIllegal": true,
  1299. "randomID": "IZPypMvFCvf6"
  1300. },
  1301. "Type": "BTBoolSlot"
  1302. },
  1303. "isIllegal": true,
  1304. "randomID": "kPB4AnBZ716i",
  1305. "sectionA": {
  1306. "ContainerValue": {
  1307. "TitleInput": {
  1308. "ContainerValue": null,
  1309. "StringValue": {
  1310. "Type": "STRING",
  1311. "Value": "1h91min"
  1312. },
  1313. "Type": "BTInputSlot"
  1314. },
  1315. "Type": "BTDataCoderVarSetAction",
  1316. "VarScope": "Scene",
  1317. "baseSelect": {
  1318. "DisplayName": "P-倒计时",
  1319. "Type": "Action",
  1320. "Value": "P-倒计时"
  1321. },
  1322. "isIllegal": true,
  1323. "randomID": "ZorudR8nTUcs",
  1324. "stepSlot": {
  1325. "ContainerValue": null,
  1326. "Type": "BTStepSlot"
  1327. }
  1328. },
  1329. "Type": "BTSectionSlot"
  1330. },
  1331. "stepSlot": {
  1332. "ContainerValue": null,
  1333. "Type": "BTStepSlot"
  1334. }
  1335. },
  1336. "Type": "BTStepSlot"
  1337. },
  1338. "x": 545,
  1339. "y": -446
  1340. },
  1341. "Tree3": {
  1342. "ExportTree": true,
  1343. "ImageIndex": 2,
  1344. "Name": {
  1345. "Type": "STRING",
  1346. "Value": "更新倒计时",
  1347. "displayName": ""
  1348. },
  1349. "Type": "BTCustomFuncHeadAction",
  1350. "VarJson": {
  1351. "boolJson": {
  1352. },
  1353. "numberJson": {
  1354. }
  1355. },
  1356. "isIllegal": false,
  1357. "randomID": "7m5TOC94R4Sq",
  1358. "stepSlot": {
  1359. "ContainerValue": {
  1360. "TitleInput": {
  1361. "ContainerValue": {
  1362. "Type": "BTCoderVariableAction",
  1363. "VarScope": "Scene",
  1364. "isIllegal": true,
  1365. "randomID": "Ogrx8aFTBasK",
  1366. "titleLabel": {
  1367. "Type": "STRING",
  1368. "Value": "P-倒计时",
  1369. "displayName": ""
  1370. }
  1371. },
  1372. "StringValue": {
  1373. "Type": "STRING",
  1374. "Value": "填写标题内容"
  1375. },
  1376. "Type": "BTInputSlot"
  1377. },
  1378. "Type": "BTLabelTitleAction",
  1379. "baseSelect": {
  1380. "DisplayName": "倒计时",
  1381. "Type": "Action",
  1382. "Value": "gHwIkhtzj7Kn"
  1383. },
  1384. "isIllegal": true,
  1385. "randomID": "RkOzoSZKmfuy",
  1386. "stepSlot": {
  1387. "ContainerValue": null,
  1388. "Type": "BTStepSlot"
  1389. }
  1390. },
  1391. "Type": "BTStepSlot"
  1392. },
  1393. "x": 164,
  1394. "y": -195
  1395. }
  1396. }
  1397. }
  1398. },
  1399. "RedNoteInfo": {
  1400. },
  1401. "TreeList": {
  1402. "Tree0": {
  1403. "ExportTree": true,
  1404. "ImageIndex": 1,
  1405. "Name": {
  1406. "Type": "STRING",
  1407. "Value": "展示界面",
  1408. "displayName": ""
  1409. },
  1410. "Type": "BTCustomFuncHeadAction",
  1411. "VarJson": {
  1412. "boolJson": {
  1413. },
  1414. "numberJson": {
  1415. }
  1416. },
  1417. "isIllegal": false,
  1418. "randomID": "yxUMdrSulacK",
  1419. "stepSlot": {
  1420. "ContainerValue": {
  1421. "TitleInput": {
  1422. "ContainerValue": {
  1423. "Type": "BTCoderVariableAction",
  1424. "VarScope": "Scene",
  1425. "isIllegal": true,
  1426. "randomID": "4j8g6qxFv2kr",
  1427. "titleLabel": {
  1428. "Type": "STRING",
  1429. "Value": "P-玩家名称",
  1430. "displayName": ""
  1431. }
  1432. },
  1433. "StringValue": {
  1434. "Type": "STRING",
  1435. "Value": "填写标题内容"
  1436. },
  1437. "Type": "BTInputSlot"
  1438. },
  1439. "Type": "BTLabelTitleAction",
  1440. "baseSelect": {
  1441. "DisplayName": "玩家名称",
  1442. "Type": "Action",
  1443. "Value": "PHrWIb01WQhK"
  1444. },
  1445. "isIllegal": true,
  1446. "randomID": "nSscYt3pWijd",
  1447. "stepSlot": {
  1448. "ContainerValue": {
  1449. "Name": {
  1450. "Type": "STRING",
  1451. "Value": "刷新礼包类型",
  1452. "displayName": ""
  1453. },
  1454. "Type": "BTCustomFuncBodyAction",
  1455. "funcHeadID": "2ok0yihOVkWK",
  1456. "isIllegal": true,
  1457. "paramArr": [
  1458. ],
  1459. "randomID": "yUNWtRl4ia1V",
  1460. "stepSlot": {
  1461. "ContainerValue": {
  1462. "Name": {
  1463. "Type": "STRING",
  1464. "Value": "礼包状态",
  1465. "displayName": ""
  1466. },
  1467. "Type": "BTCustomFuncBodyAction",
  1468. "funcHeadID": "jA2iLGWVKaa6",
  1469. "isIllegal": true,
  1470. "paramArr": [
  1471. ],
  1472. "randomID": "hJPfxXWSOVXP",
  1473. "stepSlot": {
  1474. "ContainerValue": null,
  1475. "Type": "BTStepSlot"
  1476. }
  1477. },
  1478. "Type": "BTStepSlot"
  1479. }
  1480. },
  1481. "Type": "BTStepSlot"
  1482. }
  1483. },
  1484. "Type": "BTStepSlot"
  1485. },
  1486. "x": -117.95659449508571,
  1487. "y": -390.5034492194186
  1488. },
  1489. "Tree1": {
  1490. "ExportTree": false,
  1491. "ImageIndex": 4,
  1492. "Name": {
  1493. "Type": "STRING",
  1494. "Value": "模拟程序执行",
  1495. "displayName": ""
  1496. },
  1497. "Type": "BTSimulatorAction",
  1498. "VarJson": {
  1499. "boolJson": {
  1500. },
  1501. "numberJson": {
  1502. "参数": "Number",
  1503. "通知名": "Number"
  1504. }
  1505. },
  1506. "isIllegal": false,
  1507. "randomID": "cSYAH4T29Fcy",
  1508. "stepSlot": {
  1509. "ContainerValue": {
  1510. "Type": "BTIFControlAction",
  1511. "conditionA": {
  1512. "ContainerValue": {
  1513. "Type": "BTStringEqualOperatorAction",
  1514. "conditionA": {
  1515. "ContainerValue": {
  1516. "Type": "BTFuncVariableAction",
  1517. "colorName": "Disable",
  1518. "currentStr": "通知名",
  1519. "fatherFuncID": "cSYAH4T29Fcy",
  1520. "isIllegal": true,
  1521. "randomID": "eqrx78UjAvan",
  1522. "titleLabel": {
  1523. "Type": "STRING",
  1524. "Value": "通知名",
  1525. "displayName": ""
  1526. }
  1527. },
  1528. "StringValue": {
  1529. "Type": "STRING",
  1530. "Value": "Red"
  1531. },
  1532. "Type": "BTInputSlot"
  1533. },
  1534. "conditionB": {
  1535. "ContainerValue": null,
  1536. "StringValue": {
  1537. "Type": "STRING",
  1538. "Value": "展示其他人礼包通知"
  1539. },
  1540. "Type": "BTInputSlot"
  1541. },
  1542. "isIllegal": true,
  1543. "randomID": "uFaSqLZmc0Wl"
  1544. },
  1545. "Type": "BTBoolSlot"
  1546. },
  1547. "isIllegal": true,
  1548. "randomID": "VUIhKLRh0G9K",
  1549. "sectionA": {
  1550. "ContainerValue": {
  1551. "TitleInput": {
  1552. "ContainerValue": null,
  1553. "StringValue": {
  1554. "Type": "STRING",
  1555. "Value": "白银"
  1556. },
  1557. "Type": "BTInputSlot"
  1558. },
  1559. "Type": "BTDataCoderVarSetAction",
  1560. "VarScope": "Scene",
  1561. "baseSelect": {
  1562. "DisplayName": "P-礼包类型",
  1563. "Type": "Action",
  1564. "Value": "P-礼包类型"
  1565. },
  1566. "isIllegal": true,
  1567. "randomID": "fpDQVxX5lKMQ",
  1568. "stepSlot": {
  1569. "ContainerValue": {
  1570. "TitleInput": {
  1571. "ContainerValue": null,
  1572. "StringValue": {
  1573. "Type": "STRING",
  1574. "Value": "否"
  1575. },
  1576. "Type": "BTInputSlot"
  1577. },
  1578. "Type": "BTDataCoderVarSetAction",
  1579. "VarScope": "Scene",
  1580. "baseSelect": {
  1581. "DisplayName": "P-是否领取礼包",
  1582. "Type": "Action",
  1583. "Value": "P-是否领取礼包"
  1584. },
  1585. "isIllegal": true,
  1586. "randomID": "EkPzLvcFizwg",
  1587. "stepSlot": {
  1588. "ContainerValue": {
  1589. "TitleInput": {
  1590. "ContainerValue": null,
  1591. "StringValue": {
  1592. "Type": "STRING",
  1593. "Value": "否"
  1594. },
  1595. "Type": "BTInputSlot"
  1596. },
  1597. "Type": "BTDataCoderVarSetAction",
  1598. "VarScope": "Scene",
  1599. "baseSelect": {
  1600. "DisplayName": "P-是否首次进入",
  1601. "Type": "Action",
  1602. "Value": "P-是否首次进入"
  1603. },
  1604. "isIllegal": true,
  1605. "randomID": "b6f0nHBGeu32",
  1606. "stepSlot": {
  1607. "ContainerValue": null,
  1608. "Type": "BTStepSlot"
  1609. }
  1610. },
  1611. "Type": "BTStepSlot"
  1612. }
  1613. },
  1614. "Type": "BTStepSlot"
  1615. }
  1616. },
  1617. "Type": "BTSectionSlot"
  1618. },
  1619. "stepSlot": {
  1620. "ContainerValue": null,
  1621. "Type": "BTStepSlot"
  1622. }
  1623. },
  1624. "Type": "BTStepSlot"
  1625. },
  1626. "x": 564.6597226965068,
  1627. "y": -464.083327641918
  1628. },
  1629. "Tree2": {
  1630. "ExportTree": true,
  1631. "ImageIndex": 6,
  1632. "Name": {
  1633. "Type": "STRING",
  1634. "Value": "礼包状态",
  1635. "displayName": ""
  1636. },
  1637. "Type": "BTCustomFuncHeadAction",
  1638. "VarJson": {
  1639. "boolJson": {
  1640. },
  1641. "numberJson": {
  1642. }
  1643. },
  1644. "isIllegal": false,
  1645. "randomID": "jA2iLGWVKaa6",
  1646. "stepSlot": {
  1647. "ContainerValue": {
  1648. "Type": "BTIFControlAction",
  1649. "conditionA": {
  1650. "ContainerValue": {
  1651. "Type": "BTStringEqualOperatorAction",
  1652. "conditionA": {
  1653. "ContainerValue": {
  1654. "Type": "BTCoderVariableAction",
  1655. "VarScope": "Scene",
  1656. "isIllegal": true,
  1657. "randomID": "Wloy9BKN1ohq",
  1658. "titleLabel": {
  1659. "Type": "STRING",
  1660. "Value": "P-是否领取礼包",
  1661. "displayName": ""
  1662. }
  1663. },
  1664. "StringValue": {
  1665. "Type": "STRING",
  1666. "Value": "Red"
  1667. },
  1668. "Type": "BTInputSlot"
  1669. },
  1670. "conditionB": {
  1671. "ContainerValue": null,
  1672. "StringValue": {
  1673. "Type": "STRING",
  1674. "Value": "是"
  1675. },
  1676. "Type": "BTInputSlot"
  1677. },
  1678. "isIllegal": true,
  1679. "randomID": "NLPuZvDZUQ78"
  1680. },
  1681. "Type": "BTBoolSlot"
  1682. },
  1683. "isIllegal": true,
  1684. "randomID": "f89sRf40WuAk",
  1685. "sectionA": {
  1686. "ContainerValue": {
  1687. "Type": "BTPlayTimeLineAction",
  1688. "baseSelect": {
  1689. "DisplayName": "已领取_常态",
  1690. "Type": "Action",
  1691. "Value": "3"
  1692. },
  1693. "isIllegal": true,
  1694. "randomID": "8Mb1Q5lmYX8T",
  1695. "stepSlot": {
  1696. "ContainerValue": null,
  1697. "Type": "BTStepSlot"
  1698. }
  1699. },
  1700. "Type": "BTSectionSlot"
  1701. },
  1702. "stepSlot": {
  1703. "ContainerValue": {
  1704. "Type": "BTIFControlAction",
  1705. "conditionA": {
  1706. "ContainerValue": {
  1707. "Type": "BTStringEqualOperatorAction",
  1708. "conditionA": {
  1709. "ContainerValue": {
  1710. "Type": "BTCoderVariableAction",
  1711. "VarScope": "Scene",
  1712. "isIllegal": true,
  1713. "randomID": "mNe8DBTobSBD",
  1714. "titleLabel": {
  1715. "Type": "STRING",
  1716. "Value": "P-是否领取礼包",
  1717. "displayName": ""
  1718. }
  1719. },
  1720. "StringValue": {
  1721. "Type": "STRING",
  1722. "Value": "Red"
  1723. },
  1724. "Type": "BTInputSlot"
  1725. },
  1726. "conditionB": {
  1727. "ContainerValue": null,
  1728. "StringValue": {
  1729. "Type": "STRING",
  1730. "Value": "否"
  1731. },
  1732. "Type": "BTInputSlot"
  1733. },
  1734. "isIllegal": true,
  1735. "randomID": "DTbZcXGeaOBu"
  1736. },
  1737. "Type": "BTBoolSlot"
  1738. },
  1739. "isIllegal": true,
  1740. "randomID": "6C5Sk6lIE2dS",
  1741. "sectionA": {
  1742. "ContainerValue": {
  1743. "Type": "BTPlayTimeLineAction",
  1744. "baseSelect": {
  1745. "DisplayName": "未领取_常态",
  1746. "Type": "Action",
  1747. "Value": "4"
  1748. },
  1749. "isIllegal": true,
  1750. "randomID": "zunF3a0E5Mfk",
  1751. "stepSlot": {
  1752. "ContainerValue": null,
  1753. "Type": "BTStepSlot"
  1754. }
  1755. },
  1756. "Type": "BTSectionSlot"
  1757. },
  1758. "stepSlot": {
  1759. "ContainerValue": null,
  1760. "Type": "BTStepSlot"
  1761. }
  1762. },
  1763. "Type": "BTStepSlot"
  1764. }
  1765. },
  1766. "Type": "BTStepSlot"
  1767. },
  1768. "x": -111.36110921397267,
  1769. "y": -128.4600437145043
  1770. },
  1771. "Tree3": {
  1772. "ExportTree": true,
  1773. "ImageIndex": -1,
  1774. "Type": "BTButtonClickFuncAction",
  1775. "VarJson": {
  1776. "boolJson": {
  1777. },
  1778. "numberJson": {
  1779. }
  1780. },
  1781. "isIllegal": false,
  1782. "mathSelector": {
  1783. "DisplayName": "领取按钮",
  1784. "Type": "OBJ",
  1785. "Value": "lPe4Z7Fj5n6c"
  1786. },
  1787. "randomID": "dLM9uZbN6Lj6",
  1788. "stepSlot": {
  1789. "ContainerValue": {
  1790. "Type": "BTNotificationToCoderAction",
  1791. "conditionA": {
  1792. "ContainerValue": null,
  1793. "StringValue": {
  1794. "Type": "STRING",
  1795. "Value": "领取奖励"
  1796. },
  1797. "Type": "BTInputSlot"
  1798. },
  1799. "isIllegal": true,
  1800. "randomID": "2spCMVi0F7I5",
  1801. "stepSlot": {
  1802. "ContainerValue": null,
  1803. "Type": "BTStepSlot"
  1804. }
  1805. },
  1806. "Type": "BTStepSlot"
  1807. },
  1808. "x": -57.50867427128446,
  1809. "y": 282.11802472705585
  1810. },
  1811. "Tree4": {
  1812. "ExportTree": true,
  1813. "ImageIndex": 5,
  1814. "Name": {
  1815. "Type": "STRING",
  1816. "Value": "测试",
  1817. "displayName": ""
  1818. },
  1819. "Type": "BTCustomFuncHeadAction",
  1820. "VarJson": {
  1821. "boolJson": {
  1822. },
  1823. "numberJson": {
  1824. }
  1825. },
  1826. "isIllegal": false,
  1827. "randomID": "Vr3RdJdUgsPQ",
  1828. "stepSlot": {
  1829. "ContainerValue": {
  1830. "Type": "BTNotificationToCoderAction",
  1831. "conditionA": {
  1832. "ContainerValue": null,
  1833. "StringValue": {
  1834. "Type": "STRING",
  1835. "Value": "展示其他人礼包通知"
  1836. },
  1837. "Type": "BTInputSlot"
  1838. },
  1839. "isIllegal": true,
  1840. "randomID": "6jwKUTCG6CYq",
  1841. "stepSlot": {
  1842. "ContainerValue": {
  1843. "Name": {
  1844. "Type": "STRING",
  1845. "Value": "展示界面",
  1846. "displayName": ""
  1847. },
  1848. "Type": "BTCustomFuncBodyAction",
  1849. "funcHeadID": "yxUMdrSulacK",
  1850. "isIllegal": true,
  1851. "paramArr": [
  1852. ],
  1853. "randomID": "ixWg9uS0etZN",
  1854. "stepSlot": {
  1855. "ContainerValue": null,
  1856. "Type": "BTStepSlot"
  1857. }
  1858. },
  1859. "Type": "BTStepSlot"
  1860. }
  1861. },
  1862. "Type": "BTStepSlot"
  1863. },
  1864. "x": 285.11802472705585,
  1865. "y": -573.7030599044372
  1866. },
  1867. "Tree5": {
  1868. "ExportTree": true,
  1869. "ImageIndex": 3,
  1870. "Name": {
  1871. "Type": "STRING",
  1872. "Value": "刷新礼包类型",
  1873. "displayName": ""
  1874. },
  1875. "Type": "BTCustomFuncHeadAction",
  1876. "VarJson": {
  1877. "boolJson": {
  1878. },
  1879. "numberJson": {
  1880. }
  1881. },
  1882. "isIllegal": false,
  1883. "randomID": "2ok0yihOVkWK",
  1884. "stepSlot": {
  1885. "ContainerValue": {
  1886. "TitleInput": {
  1887. "ContainerValue": {
  1888. "Type": "BTCoderVariableAction",
  1889. "VarScope": "Scene",
  1890. "isIllegal": true,
  1891. "randomID": "OBQF2P0s4PzF",
  1892. "titleLabel": {
  1893. "Type": "STRING",
  1894. "Value": "P-白银奖励文本",
  1895. "displayName": ""
  1896. }
  1897. },
  1898. "StringValue": {
  1899. "Type": "STRING",
  1900. "Value": "填写标题内容"
  1901. },
  1902. "Type": "BTInputSlot"
  1903. },
  1904. "Type": "BTLabelTitleAction",
  1905. "baseSelect": {
  1906. "DisplayName": "白银宝箱文本",
  1907. "Type": "Action",
  1908. "Value": "1SUCM23xpRHY"
  1909. },
  1910. "isIllegal": true,
  1911. "randomID": "ia8iM54sRwQU",
  1912. "stepSlot": {
  1913. "ContainerValue": {
  1914. "TitleInput": {
  1915. "ContainerValue": {
  1916. "Type": "BTCoderVariableAction",
  1917. "VarScope": "Scene",
  1918. "isIllegal": true,
  1919. "randomID": "xPYABjF8873P",
  1920. "titleLabel": {
  1921. "Type": "STRING",
  1922. "Value": "P-青铜奖励文本",
  1923. "displayName": ""
  1924. }
  1925. },
  1926. "StringValue": {
  1927. "Type": "STRING",
  1928. "Value": "填写标题内容"
  1929. },
  1930. "Type": "BTInputSlot"
  1931. },
  1932. "Type": "BTLabelTitleAction",
  1933. "baseSelect": {
  1934. "DisplayName": "青铜宝箱文本",
  1935. "Type": "Action",
  1936. "Value": "LV11IJ1JvR8F"
  1937. },
  1938. "isIllegal": true,
  1939. "randomID": "AhJdTF9IyRRg",
  1940. "stepSlot": {
  1941. "ContainerValue": {
  1942. "TitleInput": {
  1943. "ContainerValue": {
  1944. "Type": "BTCoderVariableAction",
  1945. "VarScope": "Scene",
  1946. "isIllegal": true,
  1947. "randomID": "cNydfTZM34V4",
  1948. "titleLabel": {
  1949. "Type": "STRING",
  1950. "Value": "P-黄金奖励文本",
  1951. "displayName": ""
  1952. }
  1953. },
  1954. "StringValue": {
  1955. "Type": "STRING",
  1956. "Value": "填写标题内容"
  1957. },
  1958. "Type": "BTInputSlot"
  1959. },
  1960. "Type": "BTLabelTitleAction",
  1961. "baseSelect": {
  1962. "DisplayName": "黄金宝箱文本",
  1963. "Type": "Action",
  1964. "Value": "nwSYvO4Jeab3"
  1965. },
  1966. "isIllegal": true,
  1967. "randomID": "pnPo9OVvez0F",
  1968. "stepSlot": {
  1969. "ContainerValue": {
  1970. "Type": "BTNodeHiddenAction",
  1971. "baseSelect": {
  1972. "DisplayName": "黄金宝箱文本",
  1973. "Type": "Action",
  1974. "Value": "nwSYvO4Jeab3"
  1975. },
  1976. "isIllegal": true,
  1977. "randomID": "MqSZMDblZZuX",
  1978. "stepSlot": {
  1979. "ContainerValue": {
  1980. "Type": "BTNodeHiddenAction",
  1981. "baseSelect": {
  1982. "DisplayName": "白银宝箱文本",
  1983. "Type": "Action",
  1984. "Value": "1SUCM23xpRHY"
  1985. },
  1986. "isIllegal": true,
  1987. "randomID": "H7LTOaxpQNMb",
  1988. "stepSlot": {
  1989. "ContainerValue": {
  1990. "Type": "BTNodeHiddenAction",
  1991. "baseSelect": {
  1992. "DisplayName": "青铜宝箱文本",
  1993. "Type": "Action",
  1994. "Value": "LV11IJ1JvR8F"
  1995. },
  1996. "isIllegal": true,
  1997. "randomID": "To3RaamNI2Fc",
  1998. "stepSlot": {
  1999. "ContainerValue": {
  2000. "Type": "BTIFControlAction",
  2001. "conditionA": {
  2002. "ContainerValue": {
  2003. "Type": "BTStringEqualOperatorAction",
  2004. "conditionA": {
  2005. "ContainerValue": {
  2006. "Type": "BTCoderVariableAction",
  2007. "VarScope": "Scene",
  2008. "isIllegal": true,
  2009. "randomID": "zsPp5WskABxt",
  2010. "titleLabel": {
  2011. "Type": "STRING",
  2012. "Value": "P-礼包类型",
  2013. "displayName": ""
  2014. }
  2015. },
  2016. "StringValue": {
  2017. "Type": "STRING",
  2018. "Value": "Red"
  2019. },
  2020. "Type": "BTInputSlot"
  2021. },
  2022. "conditionB": {
  2023. "ContainerValue": null,
  2024. "StringValue": {
  2025. "Type": "STRING",
  2026. "Value": "黄金"
  2027. },
  2028. "Type": "BTInputSlot"
  2029. },
  2030. "isIllegal": true,
  2031. "randomID": "rXIf6MTAGLAA"
  2032. },
  2033. "Type": "BTBoolSlot"
  2034. },
  2035. "isIllegal": true,
  2036. "randomID": "asTpuLfTq7D1",
  2037. "sectionA": {
  2038. "ContainerValue": {
  2039. "Type": "BTSpritePlistAction",
  2040. "baseSelect": {
  2041. "DisplayName": "通知底板",
  2042. "Type": "Action",
  2043. "Value": "LGCUeTEjDDVw"
  2044. },
  2045. "frameNameInput": {
  2046. "ContainerValue": null,
  2047. "StringValue": {
  2048. "Type": "STRING",
  2049. "Value": "ggui_gold_notice.png"
  2050. },
  2051. "Type": "BTInputSlot"
  2052. },
  2053. "isIllegal": true,
  2054. "pathInput": {
  2055. "ContainerValue": null,
  2056. "StringValue": {
  2057. "Type": "STRING",
  2058. "Value": "guild_giftoffer_ui.plist"
  2059. },
  2060. "Type": "BTInputSlot"
  2061. },
  2062. "randomID": "He0gfVMtG17J",
  2063. "stepSlot": {
  2064. "ContainerValue": {
  2065. "Type": "BTSpritePlistAction",
  2066. "baseSelect": {
  2067. "DisplayName": "按钮底图",
  2068. "Type": "Action",
  2069. "Value": "8F6qmcP5W03v"
  2070. },
  2071. "frameNameInput": {
  2072. "ContainerValue": null,
  2073. "StringValue": {
  2074. "Type": "STRING",
  2075. "Value": "ggui_btn_bg_1.png"
  2076. },
  2077. "Type": "BTInputSlot"
  2078. },
  2079. "isIllegal": true,
  2080. "pathInput": {
  2081. "ContainerValue": null,
  2082. "StringValue": {
  2083. "Type": "STRING",
  2084. "Value": "guild_giftoffer_ui.plist"
  2085. },
  2086. "Type": "BTInputSlot"
  2087. },
  2088. "randomID": "jY1X8yyOXMCD",
  2089. "stepSlot": {
  2090. "ContainerValue": {
  2091. "Type": "BTNodeShowAction",
  2092. "baseSelect": {
  2093. "DisplayName": "黄金宝箱文本",
  2094. "Type": "Action",
  2095. "Value": "nwSYvO4Jeab3"
  2096. },
  2097. "isIllegal": true,
  2098. "randomID": "jWpeD3Tia5xp",
  2099. "stepSlot": {
  2100. "ContainerValue": {
  2101. "TitleInput": {
  2102. "ContainerValue": null,
  2103. "StringValue": {
  2104. "Type": "STRING",
  2105. "Value": "1h"
  2106. },
  2107. "Type": "BTInputSlot"
  2108. },
  2109. "Type": "BTLabelTitleAction",
  2110. "baseSelect": {
  2111. "DisplayName": "无限体力时长",
  2112. "Type": "Action",
  2113. "Value": "1JwkkEjKDqUp"
  2114. },
  2115. "isIllegal": true,
  2116. "randomID": "cnza5aRPfG0T",
  2117. "stepSlot": {
  2118. "ContainerValue": {
  2119. "Type": "BTPlaySceneTimeLineAction",
  2120. "baseSelect": {
  2121. "DisplayName": "金色_常态",
  2122. "Type": "Action",
  2123. "Value": "1"
  2124. },
  2125. "isIllegal": true,
  2126. "randomID": "xsO7M5gmcxyG",
  2127. "redSelect": {
  2128. "DisplayName": "公会折扣礼包_礼包内容_体力包",
  2129. "Type": "OBJ",
  2130. "Value": "LFB6c54VjyXD"
  2131. },
  2132. "stepSlot": {
  2133. "ContainerValue": null,
  2134. "Type": "BTStepSlot"
  2135. }
  2136. },
  2137. "Type": "BTStepSlot"
  2138. }
  2139. },
  2140. "Type": "BTStepSlot"
  2141. }
  2142. },
  2143. "Type": "BTStepSlot"
  2144. }
  2145. },
  2146. "Type": "BTStepSlot"
  2147. }
  2148. },
  2149. "Type": "BTSectionSlot"
  2150. },
  2151. "stepSlot": {
  2152. "ContainerValue": {
  2153. "Type": "BTIFControlAction",
  2154. "conditionA": {
  2155. "ContainerValue": {
  2156. "Type": "BTStringEqualOperatorAction",
  2157. "conditionA": {
  2158. "ContainerValue": {
  2159. "Type": "BTCoderVariableAction",
  2160. "VarScope": "Scene",
  2161. "isIllegal": true,
  2162. "randomID": "uKly6H7dLGQD",
  2163. "titleLabel": {
  2164. "Type": "STRING",
  2165. "Value": "P-礼包类型",
  2166. "displayName": ""
  2167. }
  2168. },
  2169. "StringValue": {
  2170. "Type": "STRING",
  2171. "Value": "Red"
  2172. },
  2173. "Type": "BTInputSlot"
  2174. },
  2175. "conditionB": {
  2176. "ContainerValue": null,
  2177. "StringValue": {
  2178. "Type": "STRING",
  2179. "Value": "白银"
  2180. },
  2181. "Type": "BTInputSlot"
  2182. },
  2183. "isIllegal": true,
  2184. "randomID": "JAgC2VOniSj3"
  2185. },
  2186. "Type": "BTBoolSlot"
  2187. },
  2188. "isIllegal": true,
  2189. "randomID": "xSb7PgxaKstF",
  2190. "sectionA": {
  2191. "ContainerValue": {
  2192. "Type": "BTSpritePlistAction",
  2193. "baseSelect": {
  2194. "DisplayName": "通知底板",
  2195. "Type": "Action",
  2196. "Value": "LGCUeTEjDDVw"
  2197. },
  2198. "frameNameInput": {
  2199. "ContainerValue": null,
  2200. "StringValue": {
  2201. "Type": "STRING",
  2202. "Value": "ggui_silver_notice.png"
  2203. },
  2204. "Type": "BTInputSlot"
  2205. },
  2206. "isIllegal": true,
  2207. "pathInput": {
  2208. "ContainerValue": null,
  2209. "StringValue": {
  2210. "Type": "STRING",
  2211. "Value": "guild_giftoffer_ui.plist"
  2212. },
  2213. "Type": "BTInputSlot"
  2214. },
  2215. "randomID": "Cb3mK5GbLiKD",
  2216. "stepSlot": {
  2217. "ContainerValue": {
  2218. "Type": "BTSpritePlistAction",
  2219. "baseSelect": {
  2220. "DisplayName": "按钮底图",
  2221. "Type": "Action",
  2222. "Value": "8F6qmcP5W03v"
  2223. },
  2224. "frameNameInput": {
  2225. "ContainerValue": null,
  2226. "StringValue": {
  2227. "Type": "STRING",
  2228. "Value": "ggui_btn_bg_2.png"
  2229. },
  2230. "Type": "BTInputSlot"
  2231. },
  2232. "isIllegal": true,
  2233. "pathInput": {
  2234. "ContainerValue": null,
  2235. "StringValue": {
  2236. "Type": "STRING",
  2237. "Value": "guild_giftoffer_ui.plist"
  2238. },
  2239. "Type": "BTInputSlot"
  2240. },
  2241. "randomID": "VxRe7oZeJIHh",
  2242. "stepSlot": {
  2243. "ContainerValue": {
  2244. "Type": "BTNodeShowAction",
  2245. "baseSelect": {
  2246. "DisplayName": "白银宝箱文本",
  2247. "Type": "Action",
  2248. "Value": "1SUCM23xpRHY"
  2249. },
  2250. "isIllegal": true,
  2251. "randomID": "dF0prb3JWL3s",
  2252. "stepSlot": {
  2253. "ContainerValue": {
  2254. "TitleInput": {
  2255. "ContainerValue": null,
  2256. "StringValue": {
  2257. "Type": "STRING",
  2258. "Value": "30m"
  2259. },
  2260. "Type": "BTInputSlot"
  2261. },
  2262. "Type": "BTLabelTitleAction",
  2263. "baseSelect": {
  2264. "DisplayName": "无限体力时长",
  2265. "Type": "Action",
  2266. "Value": "1JwkkEjKDqUp"
  2267. },
  2268. "isIllegal": true,
  2269. "randomID": "T28g42NTLVwE",
  2270. "stepSlot": {
  2271. "ContainerValue": {
  2272. "Type": "BTPlaySceneTimeLineAction",
  2273. "baseSelect": {
  2274. "DisplayName": "银色_常态",
  2275. "Type": "Action",
  2276. "Value": "2"
  2277. },
  2278. "isIllegal": true,
  2279. "randomID": "LF34zrEwi1AO",
  2280. "redSelect": {
  2281. "DisplayName": "公会折扣礼包_礼包内容_体力包",
  2282. "Type": "OBJ",
  2283. "Value": "LFB6c54VjyXD"
  2284. },
  2285. "stepSlot": {
  2286. "ContainerValue": null,
  2287. "Type": "BTStepSlot"
  2288. }
  2289. },
  2290. "Type": "BTStepSlot"
  2291. }
  2292. },
  2293. "Type": "BTStepSlot"
  2294. }
  2295. },
  2296. "Type": "BTStepSlot"
  2297. }
  2298. },
  2299. "Type": "BTStepSlot"
  2300. }
  2301. },
  2302. "Type": "BTSectionSlot"
  2303. },
  2304. "stepSlot": {
  2305. "ContainerValue": {
  2306. "Type": "BTIFControlAction",
  2307. "conditionA": {
  2308. "ContainerValue": {
  2309. "Type": "BTStringEqualOperatorAction",
  2310. "conditionA": {
  2311. "ContainerValue": {
  2312. "Type": "BTCoderVariableAction",
  2313. "VarScope": "Scene",
  2314. "isIllegal": true,
  2315. "randomID": "xOJlweahvM8g",
  2316. "titleLabel": {
  2317. "Type": "STRING",
  2318. "Value": "P-礼包类型",
  2319. "displayName": ""
  2320. }
  2321. },
  2322. "StringValue": {
  2323. "Type": "STRING",
  2324. "Value": "Red"
  2325. },
  2326. "Type": "BTInputSlot"
  2327. },
  2328. "conditionB": {
  2329. "ContainerValue": null,
  2330. "StringValue": {
  2331. "Type": "STRING",
  2332. "Value": "青铜"
  2333. },
  2334. "Type": "BTInputSlot"
  2335. },
  2336. "isIllegal": true,
  2337. "randomID": "w0esctJCdvrP"
  2338. },
  2339. "Type": "BTBoolSlot"
  2340. },
  2341. "isIllegal": true,
  2342. "randomID": "hqXLuiEHcrhx",
  2343. "sectionA": {
  2344. "ContainerValue": {
  2345. "Type": "BTSpritePlistAction",
  2346. "baseSelect": {
  2347. "DisplayName": "通知底板",
  2348. "Type": "Action",
  2349. "Value": "LGCUeTEjDDVw"
  2350. },
  2351. "frameNameInput": {
  2352. "ContainerValue": null,
  2353. "StringValue": {
  2354. "Type": "STRING",
  2355. "Value": "ggui_bronze_notice.png"
  2356. },
  2357. "Type": "BTInputSlot"
  2358. },
  2359. "isIllegal": true,
  2360. "pathInput": {
  2361. "ContainerValue": null,
  2362. "StringValue": {
  2363. "Type": "STRING",
  2364. "Value": "guild_giftoffer_ui.plist"
  2365. },
  2366. "Type": "BTInputSlot"
  2367. },
  2368. "randomID": "Aq0npDPfFlND",
  2369. "stepSlot": {
  2370. "ContainerValue": {
  2371. "Type": "BTSpritePlistAction",
  2372. "baseSelect": {
  2373. "DisplayName": "按钮底图",
  2374. "Type": "Action",
  2375. "Value": "8F6qmcP5W03v"
  2376. },
  2377. "frameNameInput": {
  2378. "ContainerValue": null,
  2379. "StringValue": {
  2380. "Type": "STRING",
  2381. "Value": "ggui_btn_bg_3.png"
  2382. },
  2383. "Type": "BTInputSlot"
  2384. },
  2385. "isIllegal": true,
  2386. "pathInput": {
  2387. "ContainerValue": null,
  2388. "StringValue": {
  2389. "Type": "STRING",
  2390. "Value": "guild_giftoffer_ui.plist"
  2391. },
  2392. "Type": "BTInputSlot"
  2393. },
  2394. "randomID": "a5hvgjkSgn0P",
  2395. "stepSlot": {
  2396. "ContainerValue": {
  2397. "Type": "BTNodeShowAction",
  2398. "baseSelect": {
  2399. "DisplayName": "青铜宝箱文本",
  2400. "Type": "Action",
  2401. "Value": "LV11IJ1JvR8F"
  2402. },
  2403. "isIllegal": true,
  2404. "randomID": "CbsxcPEK5xNg",
  2405. "stepSlot": {
  2406. "ContainerValue": {
  2407. "TitleInput": {
  2408. "ContainerValue": null,
  2409. "StringValue": {
  2410. "Type": "STRING",
  2411. "Value": "15m"
  2412. },
  2413. "Type": "BTInputSlot"
  2414. },
  2415. "Type": "BTLabelTitleAction",
  2416. "baseSelect": {
  2417. "DisplayName": "无限体力时长",
  2418. "Type": "Action",
  2419. "Value": "1JwkkEjKDqUp"
  2420. },
  2421. "isIllegal": true,
  2422. "randomID": "RtOGtok3OUtf",
  2423. "stepSlot": {
  2424. "ContainerValue": {
  2425. "Type": "BTPlaySceneTimeLineAction",
  2426. "baseSelect": {
  2427. "DisplayName": "铜色_常态",
  2428. "Type": "Action",
  2429. "Value": "3"
  2430. },
  2431. "isIllegal": true,
  2432. "randomID": "NQVWkmfOsflU",
  2433. "redSelect": {
  2434. "DisplayName": "公会折扣礼包_礼包内容_体力包",
  2435. "Type": "OBJ",
  2436. "Value": "LFB6c54VjyXD"
  2437. },
  2438. "stepSlot": {
  2439. "ContainerValue": null,
  2440. "Type": "BTStepSlot"
  2441. }
  2442. },
  2443. "Type": "BTStepSlot"
  2444. }
  2445. },
  2446. "Type": "BTStepSlot"
  2447. }
  2448. },
  2449. "Type": "BTStepSlot"
  2450. }
  2451. },
  2452. "Type": "BTStepSlot"
  2453. }
  2454. },
  2455. "Type": "BTSectionSlot"
  2456. },
  2457. "stepSlot": {
  2458. "ContainerValue": null,
  2459. "Type": "BTStepSlot"
  2460. }
  2461. },
  2462. "Type": "BTStepSlot"
  2463. }
  2464. },
  2465. "Type": "BTStepSlot"
  2466. }
  2467. },
  2468. "Type": "BTStepSlot"
  2469. }
  2470. },
  2471. "Type": "BTStepSlot"
  2472. }
  2473. },
  2474. "Type": "BTStepSlot"
  2475. }
  2476. },
  2477. "Type": "BTStepSlot"
  2478. }
  2479. },
  2480. "Type": "BTStepSlot"
  2481. }
  2482. },
  2483. "Type": "BTStepSlot"
  2484. }
  2485. },
  2486. "Type": "BTStepSlot"
  2487. },
  2488. "x": 323,
  2489. "y": -150
  2490. },
  2491. "Tree6": {
  2492. "ExportTree": true,
  2493. "ImageIndex": 7,
  2494. "Name": {
  2495. "Type": "STRING",
  2496. "Value": "播放已领取动画",
  2497. "displayName": ""
  2498. },
  2499. "Type": "BTCustomFuncHeadAction",
  2500. "VarJson": {
  2501. "boolJson": {
  2502. },
  2503. "numberJson": {
  2504. }
  2505. },
  2506. "isIllegal": false,
  2507. "randomID": "H9zMmz9Q9Tbp",
  2508. "stepSlot": {
  2509. "ContainerValue": {
  2510. "Type": "BTPlayTimeLineAction",
  2511. "baseSelect": {
  2512. "DisplayName": "已领取_常态",
  2513. "Type": "Action",
  2514. "Value": "3"
  2515. },
  2516. "isIllegal": true,
  2517. "randomID": "zRh6yItHrwKY",
  2518. "stepSlot": {
  2519. "ContainerValue": null,
  2520. "Type": "BTStepSlot"
  2521. }
  2522. },
  2523. "Type": "BTStepSlot"
  2524. },
  2525. "x": -74,
  2526. "y": 471
  2527. },
  2528. "Tree7": {
  2529. "ExportTree": true,
  2530. "ImageIndex": 2,
  2531. "Name": {
  2532. "Type": "STRING",
  2533. "Value": "设置程序节点",
  2534. "displayName": ""
  2535. },
  2536. "Type": "BTCustomFuncHeadAction",
  2537. "VarJson": {
  2538. "boolJson": {
  2539. },
  2540. "numberJson": {
  2541. }
  2542. },
  2543. "isIllegal": false,
  2544. "randomID": "KDzDziI9Lek4",
  2545. "stepSlot": {
  2546. "ContainerValue": {
  2547. "Type": "BTNotificationNodeToCoderAction",
  2548. "baseSelect": {
  2549. "DisplayName": "公会折扣礼包_礼包内容_体力包",
  2550. "Type": "Action",
  2551. "Value": "LFB6c54VjyXD"
  2552. },
  2553. "conditionA": {
  2554. "ContainerValue": null,
  2555. "StringValue": {
  2556. "Type": "STRING",
  2557. "Value": "设置程序节点"
  2558. },
  2559. "Type": "BTInputSlot"
  2560. },
  2561. "isIllegal": true,
  2562. "paramA": {
  2563. "ContainerValue": null,
  2564. "StringValue": {
  2565. "Type": "STRING",
  2566. "Value": "体力包"
  2567. },
  2568. "Type": "BTInputSlot"
  2569. },
  2570. "randomID": "wL7eVj5vybn7",
  2571. "stepSlot": {
  2572. "ContainerValue": {
  2573. "Type": "BTNotificationNodeToCoderAction",
  2574. "baseSelect": {
  2575. "DisplayName": "公会折扣礼包_倒计时",
  2576. "Type": "Action",
  2577. "Value": "VbNrt504jVZK"
  2578. },
  2579. "conditionA": {
  2580. "ContainerValue": null,
  2581. "StringValue": {
  2582. "Type": "STRING",
  2583. "Value": "设置程序节点"
  2584. },
  2585. "Type": "BTInputSlot"
  2586. },
  2587. "isIllegal": true,
  2588. "paramA": {
  2589. "ContainerValue": null,
  2590. "StringValue": {
  2591. "Type": "STRING",
  2592. "Value": "倒计时控件"
  2593. },
  2594. "Type": "BTInputSlot"
  2595. },
  2596. "randomID": "RQm4SElIKgKE",
  2597. "stepSlot": {
  2598. "ContainerValue": null,
  2599. "Type": "BTStepSlot"
  2600. }
  2601. },
  2602. "Type": "BTStepSlot"
  2603. }
  2604. },
  2605. "Type": "BTStepSlot"
  2606. },
  2607. "x": -344,
  2608. "y": 628
  2609. },
  2610. "Tree8": {
  2611. "ExportTree": true,
  2612. "ImageIndex": 8,
  2613. "Name": {
  2614. "Type": "STRING",
  2615. "Value": "获取领取按钮位置",
  2616. "displayName": ""
  2617. },
  2618. "Type": "BTCustomFuncHeadAction",
  2619. "VarJson": {
  2620. "boolJson": {
  2621. },
  2622. "numberJson": {
  2623. }
  2624. },
  2625. "isIllegal": false,
  2626. "randomID": "PqADseci7HSI",
  2627. "stepSlot": {
  2628. "ContainerValue": {
  2629. "Type": "BTNotificationNodeToCoderAction",
  2630. "baseSelect": {
  2631. "DisplayName": "领取按钮",
  2632. "Type": "Action",
  2633. "Value": "lPe4Z7Fj5n6c"
  2634. },
  2635. "conditionA": {
  2636. "ContainerValue": null,
  2637. "StringValue": {
  2638. "Type": "STRING",
  2639. "Value": "获取领取按钮位置"
  2640. },
  2641. "Type": "BTInputSlot"
  2642. },
  2643. "isIllegal": true,
  2644. "paramA": {
  2645. "ContainerValue": null,
  2646. "StringValue": {
  2647. "Type": "STRING",
  2648. "Value": "领取按钮"
  2649. },
  2650. "Type": "BTInputSlot"
  2651. },
  2652. "randomID": "Hxv2Hjp00yPM",
  2653. "stepSlot": {
  2654. "ContainerValue": null,
  2655. "Type": "BTStepSlot"
  2656. }
  2657. },
  2658. "Type": "BTStepSlot"
  2659. },
  2660. "x": -336,
  2661. "y": 772
  2662. }
  2663. }
  2664. }