公会系统_寻找创建公会_公会列表.rebolt 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. {
  2. "CustomFunc": {
  3. "刷新按钮状态": [
  4. [
  5. "Name",
  6. "刷新按钮状态",
  7. "e1iGS6WHbM1e",
  8. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  9. ]
  10. ],
  11. "在Join列表上展示页面": [
  12. [
  13. "Name",
  14. "在Join列表上展示页面",
  15. "v7tF1uGALQFO",
  16. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  17. ]
  18. ],
  19. "在Search列表上展示页面": [
  20. [
  21. "Name",
  22. "在Search列表上展示页面",
  23. "ydYwprYVl7zL",
  24. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  25. ]
  26. ],
  27. "展示页面": [
  28. [
  29. "Name",
  30. "展示页面",
  31. "T73Fl4IneB6Y",
  32. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  33. ]
  34. ],
  35. "播放进入动画": [
  36. [
  37. "Name",
  38. "播放进入动画",
  39. "reFRxqV08rwx",
  40. "/Users/gaohenan/Documents/gitWork/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  41. ],
  42. [
  43. "BTInputSlot",
  44. "序号"
  45. ]
  46. ],
  47. "测试_在Join列表上展示页面": [
  48. [
  49. "Name",
  50. "测试_在Join列表上展示页面",
  51. "ud751YYfUIXW",
  52. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  53. ]
  54. ],
  55. "测试_在Search列表上展示页面": [
  56. [
  57. "Name",
  58. "测试_在Search列表上展示页面",
  59. "8jMKBT8riXyJ",
  60. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  61. ]
  62. ],
  63. "设置程序节点": [
  64. [
  65. "Name",
  66. "设置程序节点",
  67. "AZR02FiosrIm",
  68. "/Users/puzzle12/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_寻找创建公会_公会列表.red"
  69. ]
  70. ]
  71. },
  72. "CustomList": {
  73. },
  74. "CustomMessage": {
  75. "Hello Red": 1
  76. },
  77. "CustomTestFunc": {
  78. },
  79. "CustomVar": {
  80. "P-公会名": 0,
  81. "P-当前人数": 0,
  82. "P-总人数": 0,
  83. "P-按钮状态": 0,
  84. "P-终点x": 0,
  85. "P-终点y": 0,
  86. "P-群ID": 0,
  87. "P-起点x": 0,
  88. "P-起点y": 0,
  89. "延时": 0
  90. },
  91. "DisPlayName": "公会系统_寻找创建公会_公会列表",
  92. "RedFileList": {
  93. "T8EcfCAMxtns": {
  94. "CustomFunc": {
  95. "在个人信息合集页上展示": [
  96. [
  97. "Name",
  98. "在个人信息合集页上展示",
  99. "W8XqG8AoDMFG",
  100. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_公会图标.red"
  101. ]
  102. ],
  103. "在图标选择页面展示": [
  104. [
  105. "Name",
  106. "在图标选择页面展示",
  107. "hHGGJ0C8PoJR",
  108. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_公会图标.red"
  109. ]
  110. ],
  111. "展示页面": [
  112. [
  113. "Name",
  114. "展示页面",
  115. "QYmYtbmGM1RT",
  116. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_公会图标.red"
  117. ]
  118. ],
  119. "测试_展示页面": [
  120. [
  121. "Name",
  122. "测试_展示页面",
  123. "s532r48coQsF",
  124. "/Users/yujizhu/Documents/Git/RedTools/guild_demo/Resources/res_guild/team/ccb/ui/公会系统_公会图标.red"
  125. ]
  126. ]
  127. },
  128. "CustomList": {
  129. },
  130. "CustomTestFunc": {
  131. },
  132. "CustomVar": {
  133. "P-公会图标Plist": 0,
  134. "P-公共Plist": 0,
  135. "P-图标ID": 0,
  136. "P-图标位置": 0,
  137. "P-图标图": 0,
  138. "P-图标背景图": 0,
  139. "P-无图标图": 0,
  140. "P-是否有公会": 0,
  141. "P-边框图": 0,
  142. "图标位置": 0
  143. },
  144. "DisPlayName": "公会系统_公会图标",
  145. "RedNoteInfo": {
  146. },
  147. "TreeList": {
  148. "Tree0": {
  149. "ExportTree": true,
  150. "ImageIndex": 1,
  151. "Name": {
  152. "Type": "STRING",
  153. "Value": "展示页面",
  154. "displayName": ""
  155. },
  156. "Type": "BTCustomFuncHeadAction",
  157. "VarJson": {
  158. "boolJson": {
  159. },
  160. "numberJson": {
  161. }
  162. },
  163. "isIllegal": false,
  164. "randomID": "QYmYtbmGM1RT",
  165. "stepSlot": {
  166. "ContainerValue": {
  167. "Type": "BTSpritePlistAction",
  168. "baseSelect": {
  169. "DisplayName": "图标图",
  170. "Type": "Action",
  171. "Value": "JzzDdC1r4y5C"
  172. },
  173. "frameNameInput": {
  174. "ContainerValue": {
  175. "Type": "BTCoderVariableAction",
  176. "VarScope": "Scene",
  177. "isIllegal": true,
  178. "randomID": "GV40WhHYeorx",
  179. "titleLabel": {
  180. "Type": "STRING",
  181. "Value": "P-图标图",
  182. "displayName": ""
  183. }
  184. },
  185. "StringValue": {
  186. "Type": "STRING",
  187. "Value": "图片名"
  188. },
  189. "Type": "BTInputSlot"
  190. },
  191. "isIllegal": true,
  192. "pathInput": {
  193. "ContainerValue": {
  194. "Type": "BTCoderVariableAction",
  195. "VarScope": "Scene",
  196. "isIllegal": true,
  197. "randomID": "BfoTQASLzDcP",
  198. "titleLabel": {
  199. "Type": "STRING",
  200. "Value": "P-公会图标Plist",
  201. "displayName": ""
  202. }
  203. },
  204. "StringValue": {
  205. "Type": "STRING",
  206. "Value": "Plist路径"
  207. },
  208. "Type": "BTInputSlot"
  209. },
  210. "randomID": "4FX75QnJ5U60",
  211. "stepSlot": {
  212. "ContainerValue": {
  213. "Type": "BTSpritePlistAction",
  214. "baseSelect": {
  215. "DisplayName": "图标背景图",
  216. "Type": "Action",
  217. "Value": "6rUyxjHvWaiP"
  218. },
  219. "frameNameInput": {
  220. "ContainerValue": {
  221. "Type": "BTCoderVariableAction",
  222. "VarScope": "Scene",
  223. "isIllegal": true,
  224. "randomID": "syx5I29Ey712",
  225. "titleLabel": {
  226. "Type": "STRING",
  227. "Value": "P-图标背景图",
  228. "displayName": ""
  229. }
  230. },
  231. "StringValue": {
  232. "Type": "STRING",
  233. "Value": "图片名"
  234. },
  235. "Type": "BTInputSlot"
  236. },
  237. "isIllegal": true,
  238. "pathInput": {
  239. "ContainerValue": {
  240. "Type": "BTCoderVariableAction",
  241. "VarScope": "Scene",
  242. "isIllegal": true,
  243. "randomID": "rOOLHtyyxf9h",
  244. "titleLabel": {
  245. "Type": "STRING",
  246. "Value": "P-公会图标Plist",
  247. "displayName": ""
  248. }
  249. },
  250. "StringValue": {
  251. "Type": "STRING",
  252. "Value": "Plist路径"
  253. },
  254. "Type": "BTInputSlot"
  255. },
  256. "randomID": "IjqL3Xoan4pn",
  257. "stepSlot": {
  258. "ContainerValue": {
  259. "Type": "BTSpritePlistAction",
  260. "baseSelect": {
  261. "DisplayName": "无图标图",
  262. "Type": "Action",
  263. "Value": "r1CdEwakoadl"
  264. },
  265. "frameNameInput": {
  266. "ContainerValue": {
  267. "Type": "BTCoderVariableAction",
  268. "VarScope": "Scene",
  269. "isIllegal": true,
  270. "randomID": "L5k1muXwE98C",
  271. "titleLabel": {
  272. "Type": "STRING",
  273. "Value": "P-无图标图",
  274. "displayName": ""
  275. }
  276. },
  277. "StringValue": {
  278. "Type": "STRING",
  279. "Value": "图片名"
  280. },
  281. "Type": "BTInputSlot"
  282. },
  283. "isIllegal": true,
  284. "pathInput": {
  285. "ContainerValue": {
  286. "Type": "BTCoderVariableAction",
  287. "VarScope": "Scene",
  288. "isIllegal": true,
  289. "randomID": "yAM8e5yHIWeP",
  290. "titleLabel": {
  291. "Type": "STRING",
  292. "Value": "P-公共Plist",
  293. "displayName": ""
  294. }
  295. },
  296. "StringValue": {
  297. "Type": "STRING",
  298. "Value": "Plist路径"
  299. },
  300. "Type": "BTInputSlot"
  301. },
  302. "randomID": "1Uwo3ZnEpbRu",
  303. "stepSlot": {
  304. "ContainerValue": {
  305. "Type": "BTSpritePlistAction",
  306. "baseSelect": {
  307. "DisplayName": "边框图",
  308. "Type": "Action",
  309. "Value": "HNLgpr6nAIsv"
  310. },
  311. "frameNameInput": {
  312. "ContainerValue": {
  313. "Type": "BTCoderVariableAction",
  314. "VarScope": "Scene",
  315. "isIllegal": true,
  316. "randomID": "s2XFUkfLLgMh",
  317. "titleLabel": {
  318. "Type": "STRING",
  319. "Value": "P-边框图",
  320. "displayName": ""
  321. }
  322. },
  323. "StringValue": {
  324. "Type": "STRING",
  325. "Value": "图片名"
  326. },
  327. "Type": "BTInputSlot"
  328. },
  329. "isIllegal": true,
  330. "pathInput": {
  331. "ContainerValue": {
  332. "Type": "BTCoderVariableAction",
  333. "VarScope": "Scene",
  334. "isIllegal": true,
  335. "randomID": "5b50FQ5DKD7F",
  336. "titleLabel": {
  337. "Type": "STRING",
  338. "Value": "P-公会图标Plist",
  339. "displayName": ""
  340. }
  341. },
  342. "StringValue": {
  343. "Type": "STRING",
  344. "Value": "Plist路径"
  345. },
  346. "Type": "BTInputSlot"
  347. },
  348. "randomID": "rtrNqVUaSlUL",
  349. "stepSlot": {
  350. "ContainerValue": {
  351. "Type": "BTIFControlAction",
  352. "conditionA": {
  353. "ContainerValue": {
  354. "Type": "BTStringEqualOperatorAction",
  355. "conditionA": {
  356. "ContainerValue": {
  357. "Type": "BTCoderVariableAction",
  358. "VarScope": "Scene",
  359. "isIllegal": true,
  360. "randomID": "J8Sy8De4iH34",
  361. "titleLabel": {
  362. "Type": "STRING",
  363. "Value": "P-是否有公会",
  364. "displayName": ""
  365. }
  366. },
  367. "StringValue": {
  368. "Type": "STRING",
  369. "Value": "Red"
  370. },
  371. "Type": "BTInputSlot"
  372. },
  373. "conditionB": {
  374. "ContainerValue": null,
  375. "StringValue": {
  376. "Type": "STRING",
  377. "Value": "是"
  378. },
  379. "Type": "BTInputSlot"
  380. },
  381. "isIllegal": true,
  382. "randomID": "Q4xZ2oLpvFXH"
  383. },
  384. "Type": "BTBoolSlot"
  385. },
  386. "isIllegal": true,
  387. "randomID": "0pFFfivmcd0d",
  388. "sectionA": {
  389. "ContainerValue": {
  390. "Type": "BTPlayTimeLineWaitAction",
  391. "baseSelect": {
  392. "DisplayName": "常态",
  393. "Type": "Action",
  394. "Value": "0"
  395. },
  396. "isIllegal": true,
  397. "randomID": "MNqazZNJAKfS",
  398. "stepSlot": {
  399. "ContainerValue": null,
  400. "Type": "BTStepSlot"
  401. }
  402. },
  403. "Type": "BTSectionSlot"
  404. },
  405. "stepSlot": {
  406. "ContainerValue": {
  407. "Type": "BTIFControlAction",
  408. "conditionA": {
  409. "ContainerValue": {
  410. "Type": "BTStringEqualOperatorAction",
  411. "conditionA": {
  412. "ContainerValue": {
  413. "Type": "BTCoderVariableAction",
  414. "VarScope": "Scene",
  415. "isIllegal": true,
  416. "randomID": "wa9XpodRT7bz",
  417. "titleLabel": {
  418. "Type": "STRING",
  419. "Value": "P-是否有公会",
  420. "displayName": ""
  421. }
  422. },
  423. "StringValue": {
  424. "Type": "STRING",
  425. "Value": "Red"
  426. },
  427. "Type": "BTInputSlot"
  428. },
  429. "conditionB": {
  430. "ContainerValue": null,
  431. "StringValue": {
  432. "Type": "STRING",
  433. "Value": "否"
  434. },
  435. "Type": "BTInputSlot"
  436. },
  437. "isIllegal": true,
  438. "randomID": "2DLhgKA3Rsjy"
  439. },
  440. "Type": "BTBoolSlot"
  441. },
  442. "isIllegal": true,
  443. "randomID": "pKXvsonubN1f",
  444. "sectionA": {
  445. "ContainerValue": {
  446. "Type": "BTPlayTimeLineWaitAction",
  447. "baseSelect": {
  448. "DisplayName": "无公会",
  449. "Type": "Action",
  450. "Value": "1"
  451. },
  452. "isIllegal": true,
  453. "randomID": "M4r8waaAQzux",
  454. "stepSlot": {
  455. "ContainerValue": null,
  456. "Type": "BTStepSlot"
  457. }
  458. },
  459. "Type": "BTSectionSlot"
  460. },
  461. "stepSlot": {
  462. "ContainerValue": null,
  463. "Type": "BTStepSlot"
  464. }
  465. },
  466. "Type": "BTStepSlot"
  467. }
  468. },
  469. "Type": "BTStepSlot"
  470. }
  471. },
  472. "Type": "BTStepSlot"
  473. }
  474. },
  475. "Type": "BTStepSlot"
  476. }
  477. },
  478. "Type": "BTStepSlot"
  479. }
  480. },
  481. "Type": "BTStepSlot"
  482. },
  483. "x": -58.40277303493167,
  484. "y": -71.52950618176396
  485. },
  486. "Tree1": {
  487. "ExportTree": false,
  488. "ImageIndex": 3,
  489. "Name": {
  490. "Type": "STRING",
  491. "Value": "模拟程序执行",
  492. "displayName": ""
  493. },
  494. "Type": "BTSimulatorAction",
  495. "VarJson": {
  496. "boolJson": {
  497. },
  498. "numberJson": {
  499. "参数": "Number",
  500. "通知名": "Number"
  501. }
  502. },
  503. "isIllegal": false,
  504. "randomID": "JVCaw5irB76k",
  505. "stepSlot": {
  506. "ContainerValue": {
  507. "Type": "BTIFControlAction",
  508. "conditionA": {
  509. "ContainerValue": {
  510. "Type": "BTStringEqualOperatorAction",
  511. "conditionA": {
  512. "ContainerValue": {
  513. "Type": "BTFuncVariableAction",
  514. "colorName": "Disable",
  515. "currentStr": "通知名",
  516. "fatherFuncID": "JVCaw5irB76k",
  517. "isIllegal": true,
  518. "randomID": "4m4WOgjtERks",
  519. "titleLabel": {
  520. "Type": "STRING",
  521. "Value": "通知名",
  522. "displayName": ""
  523. }
  524. },
  525. "StringValue": {
  526. "Type": "STRING",
  527. "Value": "Red"
  528. },
  529. "Type": "BTInputSlot"
  530. },
  531. "conditionB": {
  532. "ContainerValue": null,
  533. "StringValue": {
  534. "Type": "STRING",
  535. "Value": "初始化程序变量"
  536. },
  537. "Type": "BTInputSlot"
  538. },
  539. "isIllegal": true,
  540. "randomID": "QEsZnt6ScCym"
  541. },
  542. "Type": "BTBoolSlot"
  543. },
  544. "isIllegal": true,
  545. "randomID": "h5vTmHuUWWrv",
  546. "sectionA": {
  547. "ContainerValue": {
  548. "TitleInput": {
  549. "ContainerValue": null,
  550. "StringValue": {
  551. "Type": "STRING",
  552. "Value": "guild_icon.plist"
  553. },
  554. "Type": "BTInputSlot"
  555. },
  556. "Type": "BTDataCoderVarSetAction",
  557. "VarScope": "Scene",
  558. "baseSelect": {
  559. "DisplayName": "P-公会图标Plist",
  560. "Type": "Action",
  561. "Value": "P-公会图标Plist"
  562. },
  563. "isIllegal": true,
  564. "randomID": "UJpGRo7QAR4Z",
  565. "stepSlot": {
  566. "ContainerValue": {
  567. "TitleInput": {
  568. "ContainerValue": null,
  569. "StringValue": {
  570. "Type": "STRING",
  571. "Value": "guild_team_ui.plist"
  572. },
  573. "Type": "BTInputSlot"
  574. },
  575. "Type": "BTDataCoderVarSetAction",
  576. "VarScope": "Scene",
  577. "baseSelect": {
  578. "DisplayName": "P-公共Plist",
  579. "Type": "Action",
  580. "Value": "P-公共Plist"
  581. },
  582. "isIllegal": true,
  583. "randomID": "JF86bENKpQNR",
  584. "stepSlot": {
  585. "ContainerValue": {
  586. "TitleInput": {
  587. "ContainerValue": null,
  588. "StringValue": {
  589. "Type": "STRING",
  590. "Value": "tu_icon_noteam.png"
  591. },
  592. "Type": "BTInputSlot"
  593. },
  594. "Type": "BTDataCoderVarSetAction",
  595. "VarScope": "Scene",
  596. "baseSelect": {
  597. "DisplayName": "P-无图标图",
  598. "Type": "Action",
  599. "Value": "P-无图标图"
  600. },
  601. "isIllegal": true,
  602. "randomID": "LcerAGHYnOIX",
  603. "stepSlot": {
  604. "ContainerValue": {
  605. "TitleInput": {
  606. "ContainerValue": null,
  607. "StringValue": {
  608. "Type": "STRING",
  609. "Value": "icon_biankuang.png"
  610. },
  611. "Type": "BTInputSlot"
  612. },
  613. "Type": "BTDataCoderVarSetAction",
  614. "VarScope": "Scene",
  615. "baseSelect": {
  616. "DisplayName": "P-边框图",
  617. "Type": "Action",
  618. "Value": "P-边框图"
  619. },
  620. "isIllegal": true,
  621. "randomID": "5o2m9an5rNkl",
  622. "stepSlot": {
  623. "ContainerValue": {
  624. "TitleInput": {
  625. "ContainerValue": null,
  626. "StringValue": {
  627. "Type": "STRING",
  628. "Value": "icon_14_purple_2.png"
  629. },
  630. "Type": "BTInputSlot"
  631. },
  632. "Type": "BTDataCoderVarSetAction",
  633. "VarScope": "Scene",
  634. "baseSelect": {
  635. "DisplayName": "P-图标图",
  636. "Type": "Action",
  637. "Value": "P-图标图"
  638. },
  639. "isIllegal": true,
  640. "randomID": "sD3su7RnB6Ie",
  641. "stepSlot": {
  642. "ContainerValue": {
  643. "TitleInput": {
  644. "ContainerValue": null,
  645. "StringValue": {
  646. "Type": "STRING",
  647. "Value": "icon_cl_blue_\nicon_cl_blue_\nicon_cl_blue2.png"
  648. },
  649. "Type": "BTInputSlot"
  650. },
  651. "Type": "BTDataCoderVarSetAction",
  652. "VarScope": "Scene",
  653. "baseSelect": {
  654. "DisplayName": "P-图标背景图",
  655. "Type": "Action",
  656. "Value": "P-图标背景图"
  657. },
  658. "isIllegal": true,
  659. "randomID": "1IY2NWHOWXJ0",
  660. "stepSlot": {
  661. "ContainerValue": {
  662. "TitleInput": {
  663. "ContainerValue": null,
  664. "StringValue": {
  665. "Type": "STRING",
  666. "Value": "该图标的唯一标识符"
  667. },
  668. "Type": "BTInputSlot"
  669. },
  670. "Type": "BTDataCoderVarSetAction",
  671. "VarScope": "Scene",
  672. "baseSelect": {
  673. "DisplayName": "P-图标ID",
  674. "Type": "Action",
  675. "Value": "P-图标ID"
  676. },
  677. "isIllegal": true,
  678. "randomID": "1HQM5JatyES8",
  679. "stepSlot": {
  680. "ContainerValue": {
  681. "TitleInput": {
  682. "ContainerValue": null,
  683. "StringValue": {
  684. "Type": "STRING",
  685. "Value": "是"
  686. },
  687. "Type": "BTInputSlot"
  688. },
  689. "Type": "BTDataCoderVarSetAction",
  690. "VarScope": "Scene",
  691. "baseSelect": {
  692. "DisplayName": "P-是否有公会",
  693. "Type": "Action",
  694. "Value": "P-是否有公会"
  695. },
  696. "isIllegal": true,
  697. "randomID": "Z2Hv3imlyizI",
  698. "stepSlot": {
  699. "ContainerValue": null,
  700. "Type": "BTStepSlot"
  701. }
  702. },
  703. "Type": "BTStepSlot"
  704. }
  705. },
  706. "Type": "BTStepSlot"
  707. }
  708. },
  709. "Type": "BTStepSlot"
  710. }
  711. },
  712. "Type": "BTStepSlot"
  713. }
  714. },
  715. "Type": "BTStepSlot"
  716. }
  717. },
  718. "Type": "BTStepSlot"
  719. }
  720. },
  721. "Type": "BTStepSlot"
  722. }
  723. },
  724. "Type": "BTSectionSlot"
  725. },
  726. "stepSlot": {
  727. "ContainerValue": null,
  728. "Type": "BTStepSlot"
  729. }
  730. },
  731. "Type": "BTStepSlot"
  732. },
  733. "x": 479.0312137172273,
  734. "y": -163.42360494541117
  735. },
  736. "Tree2": {
  737. "ExportTree": true,
  738. "ImageIndex": 2,
  739. "Name": {
  740. "Type": "STRING",
  741. "Value": "在图标选择页面展示",
  742. "displayName": ""
  743. },
  744. "Type": "BTCustomFuncHeadAction",
  745. "VarJson": {
  746. "boolJson": {
  747. },
  748. "numberJson": {
  749. }
  750. },
  751. "isIllegal": false,
  752. "randomID": "hHGGJ0C8PoJR",
  753. "stepSlot": {
  754. "ContainerValue": {
  755. "Type": "BTNodeShowAction",
  756. "baseSelect": {
  757. "DisplayName": "修改公会图标按钮",
  758. "Type": "Action",
  759. "Value": "cQAVZ6wJDr4H"
  760. },
  761. "isIllegal": true,
  762. "randomID": "AtFt7vyIp0S1",
  763. "stepSlot": {
  764. "ContainerValue": {
  765. "Name": {
  766. "Type": "STRING",
  767. "Value": "测试_展示页面",
  768. "displayName": ""
  769. },
  770. "Type": "BTCustomFuncBodyAction",
  771. "funcHeadID": "s532r48coQsF",
  772. "isIllegal": true,
  773. "paramArr": [
  774. ],
  775. "randomID": "y9vJELnjCa5X",
  776. "stepSlot": {
  777. "ContainerValue": null,
  778. "Type": "BTStepSlot"
  779. }
  780. },
  781. "Type": "BTStepSlot"
  782. }
  783. },
  784. "Type": "BTStepSlot"
  785. },
  786. "x": -28,
  787. "y": -247
  788. },
  789. "Tree3": {
  790. "ExportTree": true,
  791. "ImageIndex": -1,
  792. "Type": "BTButtonClickFuncAction",
  793. "VarJson": {
  794. "boolJson": {
  795. },
  796. "numberJson": {
  797. }
  798. },
  799. "isIllegal": false,
  800. "mathSelector": {
  801. "DisplayName": "公会图标按钮",
  802. "Type": "OBJ",
  803. "Value": "as2Tlh3NxXti"
  804. },
  805. "randomID": "0FszzrEH1vF2",
  806. "stepSlot": {
  807. "ContainerValue": {
  808. "Type": "BTNotificationToCoderAction",
  809. "conditionA": {
  810. "ContainerValue": null,
  811. "StringValue": {
  812. "Type": "STRING",
  813. "Value": "点击公会图标按钮"
  814. },
  815. "Type": "BTInputSlot"
  816. },
  817. "isIllegal": true,
  818. "randomID": "DG1tMaUvs7Eu",
  819. "stepSlot": {
  820. "ContainerValue": null,
  821. "Type": "BTStepSlot"
  822. }
  823. },
  824. "Type": "BTStepSlot"
  825. },
  826. "x": -437,
  827. "y": -217
  828. },
  829. "Tree4": {
  830. "ExportTree": true,
  831. "ImageIndex": 4,
  832. "Name": {
  833. "Type": "STRING",
  834. "Value": "在个人信息合集页上展示",
  835. "displayName": ""
  836. },
  837. "Type": "BTCustomFuncHeadAction",
  838. "VarJson": {
  839. "boolJson": {
  840. },
  841. "numberJson": {
  842. }
  843. },
  844. "isIllegal": false,
  845. "randomID": "W8XqG8AoDMFG",
  846. "stepSlot": {
  847. "ContainerValue": {
  848. "Type": "BTNodeShowAction",
  849. "baseSelect": {
  850. "DisplayName": "公会图标按钮",
  851. "Type": "Action",
  852. "Value": "as2Tlh3NxXti"
  853. },
  854. "isIllegal": true,
  855. "randomID": "kEBZjcCARGg0",
  856. "stepSlot": {
  857. "ContainerValue": {
  858. "Name": {
  859. "Type": "STRING",
  860. "Value": "测试_展示页面",
  861. "displayName": ""
  862. },
  863. "Type": "BTCustomFuncBodyAction",
  864. "funcHeadID": "s532r48coQsF",
  865. "isIllegal": true,
  866. "paramArr": [
  867. ],
  868. "randomID": "911L0TwNWqdx",
  869. "stepSlot": {
  870. "ContainerValue": null,
  871. "Type": "BTStepSlot"
  872. }
  873. },
  874. "Type": "BTStepSlot"
  875. }
  876. },
  877. "Type": "BTStepSlot"
  878. },
  879. "x": -11,
  880. "y": -433
  881. },
  882. "Tree5": {
  883. "ExportTree": true,
  884. "ImageIndex": -1,
  885. "Type": "BTButtonClickFuncAction",
  886. "VarJson": {
  887. "boolJson": {
  888. },
  889. "numberJson": {
  890. }
  891. },
  892. "isIllegal": false,
  893. "mathSelector": {
  894. "DisplayName": "修改公会图标按钮",
  895. "Type": "OBJ",
  896. "Value": "cQAVZ6wJDr4H"
  897. },
  898. "randomID": "HD1KCPTqO1PH",
  899. "stepSlot": {
  900. "ContainerValue": {
  901. "Type": "BTNotificationToCoderWithParamAction",
  902. "conditionA": {
  903. "ContainerValue": null,
  904. "StringValue": {
  905. "Type": "STRING",
  906. "Value": "点击修改公会图标按钮"
  907. },
  908. "Type": "BTInputSlot"
  909. },
  910. "isIllegal": true,
  911. "paramA": {
  912. "ContainerValue": {
  913. "Type": "BTCoderVariableAction",
  914. "VarScope": "Scene",
  915. "isIllegal": true,
  916. "randomID": "Ab9ZCdrs0yMa",
  917. "titleLabel": {
  918. "Type": "STRING",
  919. "Value": "P-图标ID",
  920. "displayName": ""
  921. }
  922. },
  923. "StringValue": {
  924. "Type": "STRING",
  925. "Value": ""
  926. },
  927. "Type": "BTInputSlot"
  928. },
  929. "randomID": "eDuKVs9YWuLl",
  930. "stepSlot": {
  931. "ContainerValue": null,
  932. "Type": "BTStepSlot"
  933. }
  934. },
  935. "Type": "BTStepSlot"
  936. },
  937. "x": -424,
  938. "y": -37
  939. },
  940. "Tree6": {
  941. "ExportTree": true,
  942. "ImageIndex": 5,
  943. "Name": {
  944. "Type": "STRING",
  945. "Value": "测试_展示页面",
  946. "displayName": ""
  947. },
  948. "Type": "BTCustomFuncHeadAction",
  949. "VarJson": {
  950. "boolJson": {
  951. },
  952. "numberJson": {
  953. }
  954. },
  955. "isIllegal": false,
  956. "randomID": "s532r48coQsF",
  957. "stepSlot": {
  958. "ContainerValue": {
  959. "Type": "BTNotificationToCoderAction",
  960. "conditionA": {
  961. "ContainerValue": null,
  962. "StringValue": {
  963. "Type": "STRING",
  964. "Value": "初始化程序变量"
  965. },
  966. "Type": "BTInputSlot"
  967. },
  968. "isIllegal": true,
  969. "randomID": "fylFHP8ROtYa",
  970. "stepSlot": {
  971. "ContainerValue": {
  972. "Name": {
  973. "Type": "STRING",
  974. "Value": "展示页面",
  975. "displayName": ""
  976. },
  977. "Type": "BTCustomFuncBodyAction",
  978. "funcHeadID": "QYmYtbmGM1RT",
  979. "isIllegal": true,
  980. "paramArr": [
  981. ],
  982. "randomID": "cqOhGjCu6GBe",
  983. "stepSlot": {
  984. "ContainerValue": null,
  985. "Type": "BTStepSlot"
  986. }
  987. },
  988. "Type": "BTStepSlot"
  989. }
  990. },
  991. "Type": "BTStepSlot"
  992. },
  993. "x": 440,
  994. "y": -384
  995. }
  996. }
  997. }
  998. },
  999. "RedNoteInfo": {
  1000. },
  1001. "TreeList": {
  1002. "Tree0": {
  1003. "ExportTree": true,
  1004. "ImageIndex": 1,
  1005. "Name": {
  1006. "Type": "STRING",
  1007. "Value": "展示页面",
  1008. "displayName": ""
  1009. },
  1010. "Type": "BTCustomFuncHeadAction",
  1011. "VarJson": {
  1012. "boolJson": {
  1013. },
  1014. "numberJson": {
  1015. }
  1016. },
  1017. "isIllegal": false,
  1018. "randomID": "T73Fl4IneB6Y",
  1019. "stepSlot": {
  1020. "ContainerValue": {
  1021. "Type": "BTNotificationToCoderAction",
  1022. "conditionA": {
  1023. "ContainerValue": null,
  1024. "StringValue": {
  1025. "Type": "STRING",
  1026. "Value": "初始化程序变量"
  1027. },
  1028. "Type": "BTInputSlot"
  1029. },
  1030. "isIllegal": true,
  1031. "randomID": "VMv97CyA1lOU",
  1032. "stepSlot": {
  1033. "ContainerValue": {
  1034. "Name": {
  1035. "Type": "STRING",
  1036. "Value": "刷新按钮状态",
  1037. "displayName": ""
  1038. },
  1039. "Type": "BTCustomFuncBodyAction",
  1040. "funcHeadID": "e1iGS6WHbM1e",
  1041. "isIllegal": true,
  1042. "paramArr": [
  1043. ],
  1044. "randomID": "jyX1dsEOz5zJ",
  1045. "stepSlot": {
  1046. "ContainerValue": {
  1047. "TitleInput": {
  1048. "ContainerValue": {
  1049. "Type": "BTCoderVariableAction",
  1050. "VarScope": "Scene",
  1051. "isIllegal": true,
  1052. "randomID": "7A34NXNkxOQP",
  1053. "titleLabel": {
  1054. "Type": "STRING",
  1055. "Value": "P-公会名",
  1056. "displayName": ""
  1057. }
  1058. },
  1059. "StringValue": {
  1060. "Type": "STRING",
  1061. "Value": "填写标题内容"
  1062. },
  1063. "Type": "BTInputSlot"
  1064. },
  1065. "Type": "BTLabelTitleAction",
  1066. "baseSelect": {
  1067. "DisplayName": "公会名",
  1068. "Type": "Action",
  1069. "Value": "ezIRtfhlRXWc"
  1070. },
  1071. "isIllegal": true,
  1072. "randomID": "MhGnjcEwnQwd",
  1073. "stepSlot": {
  1074. "ContainerValue": {
  1075. "TitleInput": {
  1076. "ContainerValue": {
  1077. "Type": "BTStringLinkOperatorAction",
  1078. "conditionA": {
  1079. "ContainerValue": {
  1080. "Type": "BTCoderVariableAction",
  1081. "VarScope": "Scene",
  1082. "isIllegal": true,
  1083. "randomID": "bIiksAOjIbYb",
  1084. "titleLabel": {
  1085. "Type": "STRING",
  1086. "Value": "P-当前人数",
  1087. "displayName": ""
  1088. }
  1089. },
  1090. "StringValue": {
  1091. "Type": "STRING",
  1092. "Value": "Apple"
  1093. },
  1094. "Type": "BTInputSlot"
  1095. },
  1096. "conditionB": {
  1097. "ContainerValue": {
  1098. "Type": "BTStringLinkOperatorAction",
  1099. "conditionA": {
  1100. "ContainerValue": null,
  1101. "StringValue": {
  1102. "Type": "STRING",
  1103. "Value": "/"
  1104. },
  1105. "Type": "BTInputSlot"
  1106. },
  1107. "conditionB": {
  1108. "ContainerValue": {
  1109. "Type": "BTCoderVariableAction",
  1110. "VarScope": "Scene",
  1111. "isIllegal": true,
  1112. "randomID": "o0CW0FodQ3D6",
  1113. "titleLabel": {
  1114. "Type": "STRING",
  1115. "Value": "P-总人数",
  1116. "displayName": ""
  1117. }
  1118. },
  1119. "StringValue": {
  1120. "Type": "STRING",
  1121. "Value": "Banana"
  1122. },
  1123. "Type": "BTInputSlot"
  1124. },
  1125. "isIllegal": true,
  1126. "randomID": "VsYEDZfuMoKK"
  1127. },
  1128. "StringValue": {
  1129. "Type": "STRING",
  1130. "Value": "Banana"
  1131. },
  1132. "Type": "BTInputSlot"
  1133. },
  1134. "isIllegal": true,
  1135. "randomID": "Be3ULwqULGF1"
  1136. },
  1137. "StringValue": {
  1138. "Type": "STRING",
  1139. "Value": "填写标题内容"
  1140. },
  1141. "Type": "BTInputSlot"
  1142. },
  1143. "Type": "BTLabelTitleAction",
  1144. "baseSelect": {
  1145. "DisplayName": "人数占比",
  1146. "Type": "Action",
  1147. "Value": "QTPA1cjEeGzF"
  1148. },
  1149. "isIllegal": true,
  1150. "randomID": "XWGIBlgtLshd",
  1151. "stepSlot": {
  1152. "ContainerValue": {
  1153. "Type": "BTPlayTimeLineAction",
  1154. "baseSelect": {
  1155. "DisplayName": "公会信息_常态",
  1156. "Type": "Action",
  1157. "Value": "0"
  1158. },
  1159. "isIllegal": true,
  1160. "randomID": "5iZBNrzWv03y",
  1161. "stepSlot": {
  1162. "ContainerValue": {
  1163. "Name": {
  1164. "Type": "STRING",
  1165. "Value": "刷新按钮状态",
  1166. "displayName": ""
  1167. },
  1168. "Type": "BTCustomFuncBodyAction",
  1169. "funcHeadID": "e1iGS6WHbM1e",
  1170. "isIllegal": true,
  1171. "paramArr": [
  1172. ],
  1173. "randomID": "sBP3itvMEnN9",
  1174. "stepSlot": {
  1175. "ContainerValue": {
  1176. "Type": "BTCallRedCustomFuncBodyAction",
  1177. "baseSelect": {
  1178. "DisplayName": "展示页面",
  1179. "Type": "Action",
  1180. "Value": "展示页面"
  1181. },
  1182. "funcHeadID": "QYmYtbmGM1RT",
  1183. "isIllegal": true,
  1184. "paramArr": [
  1185. ],
  1186. "randomID": "YwzcYcx90PSB",
  1187. "redId": "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/公会系统_公会图标.red",
  1188. "redSelect": {
  1189. "DisplayName": "公会系统_公会图标",
  1190. "Type": "OBJ",
  1191. "Value": "T8EcfCAMxtns"
  1192. },
  1193. "stepSlot": {
  1194. "ContainerValue": null,
  1195. "Type": "BTStepSlot"
  1196. }
  1197. },
  1198. "Type": "BTStepSlot"
  1199. }
  1200. },
  1201. "Type": "BTStepSlot"
  1202. }
  1203. },
  1204. "Type": "BTStepSlot"
  1205. }
  1206. },
  1207. "Type": "BTStepSlot"
  1208. }
  1209. },
  1210. "Type": "BTStepSlot"
  1211. }
  1212. },
  1213. "Type": "BTStepSlot"
  1214. }
  1215. },
  1216. "Type": "BTStepSlot"
  1217. },
  1218. "x": -152,
  1219. "y": -135
  1220. },
  1221. "Tree1": {
  1222. "ExportTree": true,
  1223. "ImageIndex": -1,
  1224. "Type": "BTButtonClickFuncAction",
  1225. "VarJson": {
  1226. "boolJson": {
  1227. },
  1228. "numberJson": {
  1229. }
  1230. },
  1231. "isIllegal": false,
  1232. "mathSelector": {
  1233. "DisplayName": "查看详情按钮",
  1234. "Type": "OBJ",
  1235. "Value": "8Nd9S0pWgYZU"
  1236. },
  1237. "randomID": "G4PruWELErgm",
  1238. "stepSlot": {
  1239. "ContainerValue": {
  1240. "Type": "BTMessageSendAction",
  1241. "baseSelect": {
  1242. "DisplayName": "打开公会系统公会信息界面合集页",
  1243. "Type": "Action",
  1244. "Value": "4UXa5yYNHKeb"
  1245. },
  1246. "conditionA": {
  1247. "ContainerValue": {
  1248. "Type": "BTCoderVariableAction",
  1249. "VarScope": "Scene",
  1250. "isIllegal": true,
  1251. "randomID": "KKbK2Lp721dV",
  1252. "titleLabel": {
  1253. "Type": "STRING",
  1254. "Value": "P-群ID",
  1255. "displayName": ""
  1256. }
  1257. },
  1258. "StringValue": {
  1259. "Type": "STRING",
  1260. "Value": "参数"
  1261. },
  1262. "Type": "BTInputSlot"
  1263. },
  1264. "isIllegal": true,
  1265. "randomID": "PCpFCREBzTDN",
  1266. "stepSlot": {
  1267. "ContainerValue": {
  1268. "Type": "BTNotificationToCoderWithParamAction",
  1269. "conditionA": {
  1270. "ContainerValue": null,
  1271. "StringValue": {
  1272. "Type": "STRING",
  1273. "Value": "点击查看详细按钮"
  1274. },
  1275. "Type": "BTInputSlot"
  1276. },
  1277. "isIllegal": true,
  1278. "paramA": {
  1279. "ContainerValue": {
  1280. "Type": "BTCoderVariableAction",
  1281. "VarScope": "Scene",
  1282. "isIllegal": true,
  1283. "randomID": "wHeSGlPMjOnn",
  1284. "titleLabel": {
  1285. "Type": "STRING",
  1286. "Value": "P-群ID",
  1287. "displayName": ""
  1288. }
  1289. },
  1290. "StringValue": {
  1291. "Type": "STRING",
  1292. "Value": ""
  1293. },
  1294. "Type": "BTInputSlot"
  1295. },
  1296. "randomID": "sDCUH7NIoHnb",
  1297. "stepSlot": {
  1298. "ContainerValue": null,
  1299. "Type": "BTStepSlot"
  1300. }
  1301. },
  1302. "Type": "BTStepSlot"
  1303. }
  1304. },
  1305. "Type": "BTStepSlot"
  1306. },
  1307. "x": -556.5624999534339,
  1308. "y": -150.56250069849193
  1309. },
  1310. "Tree10": {
  1311. "ExportTree": true,
  1312. "ImageIndex": 5,
  1313. "Name": {
  1314. "Type": "STRING",
  1315. "Value": "在Join列表上展示页面",
  1316. "displayName": ""
  1317. },
  1318. "Type": "BTCustomFuncHeadAction",
  1319. "VarJson": {
  1320. "boolJson": {
  1321. },
  1322. "numberJson": {
  1323. }
  1324. },
  1325. "isIllegal": true,
  1326. "randomID": "v7tF1uGALQFO",
  1327. "stepSlot": {
  1328. "ContainerValue": null,
  1329. "Type": "BTStepSlot"
  1330. },
  1331. "x": 760,
  1332. "y": -169
  1333. },
  1334. "Tree11": {
  1335. "ExportTree": true,
  1336. "ImageIndex": 10,
  1337. "Name": {
  1338. "Type": "STRING",
  1339. "Value": "播放进入动画",
  1340. "displayName": ""
  1341. },
  1342. "Type": "BTCustomFuncHeadAction",
  1343. "VarJson": {
  1344. "boolJson": {
  1345. },
  1346. "numberJson": {
  1347. "序号": "Number"
  1348. }
  1349. },
  1350. "isIllegal": false,
  1351. "randomID": "reFRxqV08rwx",
  1352. "stepSlot": {
  1353. "ContainerValue": {
  1354. "TitleInput": {
  1355. "ContainerValue": {
  1356. "Type": "BTMulOperatorAction",
  1357. "conditionA": {
  1358. "ContainerValue": null,
  1359. "StringValue": {
  1360. "Type": "FLOAT",
  1361. "Value": 0.10000000149011612
  1362. },
  1363. "Type": "BTInputSlot"
  1364. },
  1365. "conditionB": {
  1366. "ContainerValue": {
  1367. "Type": "BTSubOperatorAction",
  1368. "conditionA": {
  1369. "ContainerValue": {
  1370. "Type": "BTFuncVariableAction",
  1371. "colorName": "More",
  1372. "currentStr": "序号",
  1373. "fatherFuncID": "reFRxqV08rwx",
  1374. "isIllegal": true,
  1375. "randomID": "rerZBxB6Lmkj",
  1376. "titleLabel": {
  1377. "Type": "STRING",
  1378. "Value": "序号",
  1379. "displayName": ""
  1380. }
  1381. },
  1382. "StringValue": {
  1383. "Type": "FLOAT",
  1384. "Value": 0
  1385. },
  1386. "Type": "BTInputSlot"
  1387. },
  1388. "conditionB": {
  1389. "ContainerValue": null,
  1390. "StringValue": {
  1391. "Type": "FLOAT",
  1392. "Value": 1
  1393. },
  1394. "Type": "BTInputSlot"
  1395. },
  1396. "isIllegal": true,
  1397. "randomID": "wAizKcl9mna5"
  1398. },
  1399. "StringValue": {
  1400. "Type": "FLOAT",
  1401. "Value": 0
  1402. },
  1403. "Type": "BTInputSlot"
  1404. },
  1405. "isIllegal": true,
  1406. "randomID": "9MPcg2E3Gg1T"
  1407. },
  1408. "StringValue": {
  1409. "Type": "STRING",
  1410. "Value": "0"
  1411. },
  1412. "Type": "BTInputSlot"
  1413. },
  1414. "Type": "BTDataVarSetAction",
  1415. "VarScope": "Scene",
  1416. "baseSelect": {
  1417. "DisplayName": "延时",
  1418. "Type": "Action",
  1419. "Value": "延时"
  1420. },
  1421. "isIllegal": true,
  1422. "randomID": "eiJdGyUPpqXx",
  1423. "stepSlot": {
  1424. "ContainerValue": {
  1425. "Type": "BTWaitTimeAction",
  1426. "conditionA": {
  1427. "ContainerValue": {
  1428. "Type": "BTVariableAction",
  1429. "VarScope": "Scene",
  1430. "isIllegal": true,
  1431. "randomID": "gGeYwINOhQS6",
  1432. "titleLabel": {
  1433. "Type": "STRING",
  1434. "Value": "延时",
  1435. "displayName": ""
  1436. }
  1437. },
  1438. "StringValue": {
  1439. "Type": "FLOAT",
  1440. "Value": 3
  1441. },
  1442. "Type": "BTInputSlot"
  1443. },
  1444. "isIllegal": true,
  1445. "randomID": "TIuOqPN92MKm",
  1446. "stepSlot": {
  1447. "ContainerValue": {
  1448. "Type": "BTNodeSetAnimAction",
  1449. "animSelect": {
  1450. "DisplayName": "公会系统_动画_列表进场.anim",
  1451. "Type": "Action",
  1452. "Value": "公会系统_动画_列表进场.anim"
  1453. },
  1454. "baseSelect": {
  1455. "DisplayName": "整体按钮",
  1456. "Type": "Action",
  1457. "Value": "Dxq2qZyUjmuI"
  1458. },
  1459. "isIllegal": true,
  1460. "posXInput": {
  1461. "ContainerValue": {
  1462. "Type": "BTCoderVariableAction",
  1463. "VarScope": "Scene",
  1464. "isIllegal": true,
  1465. "randomID": "D2cOAp4c9IPR",
  1466. "titleLabel": {
  1467. "Type": "STRING",
  1468. "Value": "P-起点x",
  1469. "displayName": ""
  1470. }
  1471. },
  1472. "StringValue": {
  1473. "Type": "FLOAT",
  1474. "Value": 0
  1475. },
  1476. "Type": "BTInputSlot"
  1477. },
  1478. "posXInput2": {
  1479. "ContainerValue": {
  1480. "Type": "BTCoderVariableAction",
  1481. "VarScope": "Scene",
  1482. "isIllegal": true,
  1483. "randomID": "xrmsRMHyiwfj",
  1484. "titleLabel": {
  1485. "Type": "STRING",
  1486. "Value": "P-终点x",
  1487. "displayName": ""
  1488. }
  1489. },
  1490. "StringValue": {
  1491. "Type": "FLOAT",
  1492. "Value": 0
  1493. },
  1494. "Type": "BTInputSlot"
  1495. },
  1496. "posYInput": {
  1497. "ContainerValue": {
  1498. "Type": "BTCoderVariableAction",
  1499. "VarScope": "Scene",
  1500. "isIllegal": true,
  1501. "randomID": "XNDYl5rRp00H",
  1502. "titleLabel": {
  1503. "Type": "STRING",
  1504. "Value": "P-起点y",
  1505. "displayName": ""
  1506. }
  1507. },
  1508. "StringValue": {
  1509. "Type": "FLOAT",
  1510. "Value": 0
  1511. },
  1512. "Type": "BTInputSlot"
  1513. },
  1514. "posYInput2": {
  1515. "ContainerValue": {
  1516. "Type": "BTCoderVariableAction",
  1517. "VarScope": "Scene",
  1518. "isIllegal": true,
  1519. "randomID": "j3M4NaMdtAl6",
  1520. "titleLabel": {
  1521. "Type": "STRING",
  1522. "Value": "P-终点y",
  1523. "displayName": ""
  1524. }
  1525. },
  1526. "StringValue": {
  1527. "Type": "FLOAT",
  1528. "Value": 0
  1529. },
  1530. "Type": "BTInputSlot"
  1531. },
  1532. "randomID": "GRaeaRAKcstJ",
  1533. "stepSlot": {
  1534. "ContainerValue": null,
  1535. "Type": "BTStepSlot"
  1536. }
  1537. },
  1538. "Type": "BTStepSlot"
  1539. }
  1540. },
  1541. "Type": "BTStepSlot"
  1542. }
  1543. },
  1544. "Type": "BTStepSlot"
  1545. },
  1546. "x": 434.5,
  1547. "y": 217
  1548. },
  1549. "Tree2": {
  1550. "ExportTree": true,
  1551. "ImageIndex": 4,
  1552. "Name": {
  1553. "Type": "STRING",
  1554. "Value": "在Search列表上展示页面",
  1555. "displayName": ""
  1556. },
  1557. "Type": "BTCustomFuncHeadAction",
  1558. "VarJson": {
  1559. "boolJson": {
  1560. },
  1561. "numberJson": {
  1562. }
  1563. },
  1564. "isIllegal": true,
  1565. "randomID": "ydYwprYVl7zL",
  1566. "stepSlot": {
  1567. "ContainerValue": null,
  1568. "Type": "BTStepSlot"
  1569. },
  1570. "x": 766,
  1571. "y": -93
  1572. },
  1573. "Tree3": {
  1574. "ExportTree": true,
  1575. "ImageIndex": 6,
  1576. "Name": {
  1577. "Type": "STRING",
  1578. "Value": "测试_在Join列表上展示页面",
  1579. "displayName": ""
  1580. },
  1581. "Type": "BTCustomFuncHeadAction",
  1582. "VarJson": {
  1583. "boolJson": {
  1584. },
  1585. "numberJson": {
  1586. }
  1587. },
  1588. "isIllegal": false,
  1589. "randomID": "ud751YYfUIXW",
  1590. "stepSlot": {
  1591. "ContainerValue": {
  1592. "Type": "BTNodeShowAction",
  1593. "baseSelect": {
  1594. "DisplayName": "查看详情按钮",
  1595. "Type": "Action",
  1596. "Value": "8Nd9S0pWgYZU"
  1597. },
  1598. "isIllegal": true,
  1599. "randomID": "2kciFTbDXvaC",
  1600. "stepSlot": {
  1601. "ContainerValue": {
  1602. "Name": {
  1603. "Type": "STRING",
  1604. "Value": "展示页面",
  1605. "displayName": ""
  1606. },
  1607. "Type": "BTCustomFuncBodyAction",
  1608. "funcHeadID": "T73Fl4IneB6Y",
  1609. "isIllegal": true,
  1610. "paramArr": [
  1611. ],
  1612. "randomID": "NYMBY4SZxuXZ",
  1613. "stepSlot": {
  1614. "ContainerValue": null,
  1615. "Type": "BTStepSlot"
  1616. }
  1617. },
  1618. "Type": "BTStepSlot"
  1619. }
  1620. },
  1621. "Type": "BTStepSlot"
  1622. },
  1623. "x": 440,
  1624. "y": 40
  1625. },
  1626. "Tree4": {
  1627. "ExportTree": true,
  1628. "ImageIndex": 7,
  1629. "Name": {
  1630. "Type": "STRING",
  1631. "Value": "测试_在Search列表上展示页面",
  1632. "displayName": ""
  1633. },
  1634. "Type": "BTCustomFuncHeadAction",
  1635. "VarJson": {
  1636. "boolJson": {
  1637. },
  1638. "numberJson": {
  1639. }
  1640. },
  1641. "isIllegal": false,
  1642. "randomID": "8jMKBT8riXyJ",
  1643. "stepSlot": {
  1644. "ContainerValue": {
  1645. "Type": "BTNodeShowAction",
  1646. "baseSelect": {
  1647. "DisplayName": "查看详情按钮",
  1648. "Type": "Action",
  1649. "Value": "8Nd9S0pWgYZU"
  1650. },
  1651. "isIllegal": true,
  1652. "randomID": "aZAHnqFJOLun",
  1653. "stepSlot": {
  1654. "ContainerValue": {
  1655. "Name": {
  1656. "Type": "STRING",
  1657. "Value": "展示页面",
  1658. "displayName": ""
  1659. },
  1660. "Type": "BTCustomFuncBodyAction",
  1661. "funcHeadID": "T73Fl4IneB6Y",
  1662. "isIllegal": true,
  1663. "paramArr": [
  1664. ],
  1665. "randomID": "xsqisCVWo0u4",
  1666. "stepSlot": {
  1667. "ContainerValue": null,
  1668. "Type": "BTStepSlot"
  1669. }
  1670. },
  1671. "Type": "BTStepSlot"
  1672. }
  1673. },
  1674. "Type": "BTStepSlot"
  1675. },
  1676. "x": 449,
  1677. "y": -103
  1678. },
  1679. "Tree5": {
  1680. "ExportTree": true,
  1681. "ImageIndex": 9,
  1682. "Name": {
  1683. "Type": "STRING",
  1684. "Value": "设置程序节点",
  1685. "displayName": ""
  1686. },
  1687. "Type": "BTCustomFuncHeadAction",
  1688. "VarJson": {
  1689. "boolJson": {
  1690. },
  1691. "numberJson": {
  1692. }
  1693. },
  1694. "isIllegal": false,
  1695. "randomID": "AZR02FiosrIm",
  1696. "stepSlot": {
  1697. "ContainerValue": {
  1698. "Type": "BTNotificationNodeToCoderAction",
  1699. "baseSelect": {
  1700. "DisplayName": "公会系统_公会图标",
  1701. "Type": "Action",
  1702. "Value": "T8EcfCAMxtns"
  1703. },
  1704. "conditionA": {
  1705. "ContainerValue": null,
  1706. "StringValue": {
  1707. "Type": "STRING",
  1708. "Value": "设置程序节点"
  1709. },
  1710. "Type": "BTInputSlot"
  1711. },
  1712. "isIllegal": true,
  1713. "paramA": {
  1714. "ContainerValue": null,
  1715. "StringValue": {
  1716. "Type": "STRING",
  1717. "Value": "公会系统公会图标"
  1718. },
  1719. "Type": "BTInputSlot"
  1720. },
  1721. "randomID": "WumFYAKKIxjv",
  1722. "stepSlot": {
  1723. "ContainerValue": null,
  1724. "Type": "BTStepSlot"
  1725. }
  1726. },
  1727. "Type": "BTStepSlot"
  1728. },
  1729. "x": -74,
  1730. "y": -303
  1731. },
  1732. "Tree6": {
  1733. "ExportTree": true,
  1734. "ImageIndex": -1,
  1735. "Type": "BTButtonClickFuncAction",
  1736. "VarJson": {
  1737. "boolJson": {
  1738. },
  1739. "numberJson": {
  1740. }
  1741. },
  1742. "isIllegal": false,
  1743. "mathSelector": {
  1744. "DisplayName": "整体按钮",
  1745. "Type": "OBJ",
  1746. "Value": "Dxq2qZyUjmuI"
  1747. },
  1748. "randomID": "nFpAK3AeIPBL",
  1749. "stepSlot": {
  1750. "ContainerValue": {
  1751. "Type": "BTMessageSendAction",
  1752. "baseSelect": {
  1753. "DisplayName": "打开公会系统公会信息界面合集页",
  1754. "Type": "Action",
  1755. "Value": "4UXa5yYNHKeb"
  1756. },
  1757. "conditionA": {
  1758. "ContainerValue": {
  1759. "Type": "BTCoderVariableAction",
  1760. "VarScope": "Scene",
  1761. "isIllegal": true,
  1762. "randomID": "Vg9wxePh3eWo",
  1763. "titleLabel": {
  1764. "Type": "STRING",
  1765. "Value": "P-群ID",
  1766. "displayName": ""
  1767. }
  1768. },
  1769. "StringValue": {
  1770. "Type": "STRING",
  1771. "Value": "参数"
  1772. },
  1773. "Type": "BTInputSlot"
  1774. },
  1775. "isIllegal": true,
  1776. "randomID": "12AmgH2QwFe7",
  1777. "stepSlot": {
  1778. "ContainerValue": {
  1779. "Type": "BTNotificationToCoderWithParamAction",
  1780. "conditionA": {
  1781. "ContainerValue": null,
  1782. "StringValue": {
  1783. "Type": "STRING",
  1784. "Value": "点击整体按钮"
  1785. },
  1786. "Type": "BTInputSlot"
  1787. },
  1788. "isIllegal": true,
  1789. "paramA": {
  1790. "ContainerValue": {
  1791. "Type": "BTCoderVariableAction",
  1792. "VarScope": "Scene",
  1793. "isIllegal": true,
  1794. "randomID": "TTDgWpIRIpdU",
  1795. "titleLabel": {
  1796. "Type": "STRING",
  1797. "Value": "P-群ID",
  1798. "displayName": ""
  1799. }
  1800. },
  1801. "StringValue": {
  1802. "Type": "STRING",
  1803. "Value": ""
  1804. },
  1805. "Type": "BTInputSlot"
  1806. },
  1807. "randomID": "qpEvsvJieN9d",
  1808. "stepSlot": {
  1809. "ContainerValue": null,
  1810. "Type": "BTStepSlot"
  1811. }
  1812. },
  1813. "Type": "BTStepSlot"
  1814. }
  1815. },
  1816. "Type": "BTStepSlot"
  1817. },
  1818. "x": -584,
  1819. "y": 420
  1820. },
  1821. "Tree7": {
  1822. "ExportTree": false,
  1823. "ImageIndex": 2,
  1824. "Name": {
  1825. "Type": "STRING",
  1826. "Value": "模拟程序执行",
  1827. "displayName": ""
  1828. },
  1829. "Type": "BTSimulatorAction",
  1830. "VarJson": {
  1831. "boolJson": {
  1832. },
  1833. "numberJson": {
  1834. "参数": "Number",
  1835. "通知名": "Number"
  1836. }
  1837. },
  1838. "isIllegal": false,
  1839. "randomID": "uXZl0gG6EFus",
  1840. "stepSlot": {
  1841. "ContainerValue": {
  1842. "Type": "BTIFControlAction",
  1843. "conditionA": {
  1844. "ContainerValue": {
  1845. "Type": "BTStringEqualOperatorAction",
  1846. "conditionA": {
  1847. "ContainerValue": {
  1848. "Type": "BTFuncVariableAction",
  1849. "colorName": "Disable",
  1850. "currentStr": "通知名",
  1851. "fatherFuncID": "uXZl0gG6EFus",
  1852. "isIllegal": true,
  1853. "randomID": "QqF447B278YU",
  1854. "titleLabel": {
  1855. "Type": "STRING",
  1856. "Value": "通知名",
  1857. "displayName": ""
  1858. }
  1859. },
  1860. "StringValue": {
  1861. "Type": "STRING",
  1862. "Value": "Red"
  1863. },
  1864. "Type": "BTInputSlot"
  1865. },
  1866. "conditionB": {
  1867. "ContainerValue": null,
  1868. "StringValue": {
  1869. "Type": "STRING",
  1870. "Value": "初始化程序变量"
  1871. },
  1872. "Type": "BTInputSlot"
  1873. },
  1874. "isIllegal": true,
  1875. "randomID": "6yO0jch79s6X"
  1876. },
  1877. "Type": "BTBoolSlot"
  1878. },
  1879. "isIllegal": true,
  1880. "randomID": "e08IWKqQZTCo",
  1881. "sectionA": {
  1882. "ContainerValue": {
  1883. "TitleInput": {
  1884. "ContainerValue": null,
  1885. "StringValue": {
  1886. "Type": "STRING",
  1887. "Value": "123456"
  1888. },
  1889. "Type": "BTInputSlot"
  1890. },
  1891. "Type": "BTDataCoderVarSetAction",
  1892. "VarScope": "Scene",
  1893. "baseSelect": {
  1894. "DisplayName": "P-群ID",
  1895. "Type": "Action",
  1896. "Value": "P-群ID"
  1897. },
  1898. "isIllegal": true,
  1899. "randomID": "1WW9FkHnQTq1",
  1900. "stepSlot": {
  1901. "ContainerValue": {
  1902. "TitleInput": {
  1903. "ContainerValue": null,
  1904. "StringValue": {
  1905. "Type": "STRING",
  1906. "Value": "50"
  1907. },
  1908. "Type": "BTInputSlot"
  1909. },
  1910. "Type": "BTDataCoderVarSetAction",
  1911. "VarScope": "Scene",
  1912. "baseSelect": {
  1913. "DisplayName": "P-总人数",
  1914. "Type": "Action",
  1915. "Value": "P-总人数"
  1916. },
  1917. "isIllegal": true,
  1918. "randomID": "bSRL69iibxbm",
  1919. "stepSlot": {
  1920. "ContainerValue": {
  1921. "TitleInput": {
  1922. "ContainerValue": null,
  1923. "StringValue": {
  1924. "Type": "STRING",
  1925. "Value": "33"
  1926. },
  1927. "Type": "BTInputSlot"
  1928. },
  1929. "Type": "BTDataCoderVarSetAction",
  1930. "VarScope": "Scene",
  1931. "baseSelect": {
  1932. "DisplayName": "P-当前人数",
  1933. "Type": "Action",
  1934. "Value": "P-当前人数"
  1935. },
  1936. "isIllegal": true,
  1937. "randomID": "VpFMRVFrC6bN",
  1938. "stepSlot": {
  1939. "ContainerValue": {
  1940. "TitleInput": {
  1941. "ContainerValue": null,
  1942. "StringValue": {
  1943. "Type": "STRING",
  1944. "Value": "Puzzle"
  1945. },
  1946. "Type": "BTInputSlot"
  1947. },
  1948. "Type": "BTDataCoderVarSetAction",
  1949. "VarScope": "Scene",
  1950. "baseSelect": {
  1951. "DisplayName": "P-公会名",
  1952. "Type": "Action",
  1953. "Value": "P-公会名"
  1954. },
  1955. "isIllegal": true,
  1956. "randomID": "gOOvdUEUnlzr",
  1957. "stepSlot": {
  1958. "ContainerValue": {
  1959. "TitleInput": {
  1960. "ContainerValue": null,
  1961. "StringValue": {
  1962. "Type": "STRING",
  1963. "Value": "查看详情"
  1964. },
  1965. "Type": "BTInputSlot"
  1966. },
  1967. "Type": "BTDataCoderVarSetAction",
  1968. "VarScope": "Scene",
  1969. "baseSelect": {
  1970. "DisplayName": "P-按钮状态",
  1971. "Type": "Action",
  1972. "Value": "P-按钮状态"
  1973. },
  1974. "isIllegal": true,
  1975. "randomID": "ORjgK2i3nSTX",
  1976. "stepSlot": {
  1977. "ContainerValue": null,
  1978. "Type": "BTStepSlot"
  1979. }
  1980. },
  1981. "Type": "BTStepSlot"
  1982. }
  1983. },
  1984. "Type": "BTStepSlot"
  1985. }
  1986. },
  1987. "Type": "BTStepSlot"
  1988. }
  1989. },
  1990. "Type": "BTStepSlot"
  1991. }
  1992. },
  1993. "Type": "BTSectionSlot"
  1994. },
  1995. "stepSlot": {
  1996. "ContainerValue": null,
  1997. "Type": "BTStepSlot"
  1998. }
  1999. },
  2000. "Type": "BTStepSlot"
  2001. },
  2002. "x": -89,
  2003. "y": 186
  2004. },
  2005. "Tree8": {
  2006. "ExportTree": true,
  2007. "ImageIndex": -1,
  2008. "Type": "BTButtonClickFuncAction",
  2009. "VarJson": {
  2010. "boolJson": {
  2011. },
  2012. "numberJson": {
  2013. }
  2014. },
  2015. "isIllegal": false,
  2016. "mathSelector": {
  2017. "DisplayName": "等待审核按钮",
  2018. "Type": "OBJ",
  2019. "Value": "sa22DiCkCX7K"
  2020. },
  2021. "randomID": "gGvCm94fcNrF",
  2022. "stepSlot": {
  2023. "ContainerValue": {
  2024. "Type": "BTNotificationToCoderWithParamAction",
  2025. "conditionA": {
  2026. "ContainerValue": null,
  2027. "StringValue": {
  2028. "Type": "STRING",
  2029. "Value": "点击等待审核按钮"
  2030. },
  2031. "Type": "BTInputSlot"
  2032. },
  2033. "isIllegal": true,
  2034. "paramA": {
  2035. "ContainerValue": {
  2036. "Type": "BTCoderVariableAction",
  2037. "VarScope": "Scene",
  2038. "isIllegal": true,
  2039. "randomID": "DT8ANktnz4Vp",
  2040. "titleLabel": {
  2041. "Type": "STRING",
  2042. "Value": "P-群ID",
  2043. "displayName": ""
  2044. }
  2045. },
  2046. "StringValue": {
  2047. "Type": "STRING",
  2048. "Value": ""
  2049. },
  2050. "Type": "BTInputSlot"
  2051. },
  2052. "randomID": "v1toDn3IxpIA",
  2053. "stepSlot": {
  2054. "ContainerValue": null,
  2055. "Type": "BTStepSlot"
  2056. }
  2057. },
  2058. "Type": "BTStepSlot"
  2059. },
  2060. "x": -565,
  2061. "y": 230
  2062. },
  2063. "Tree9": {
  2064. "ExportTree": true,
  2065. "ImageIndex": 3,
  2066. "Name": {
  2067. "Type": "STRING",
  2068. "Value": "刷新按钮状态",
  2069. "displayName": ""
  2070. },
  2071. "Type": "BTCustomFuncHeadAction",
  2072. "VarJson": {
  2073. "boolJson": {
  2074. },
  2075. "numberJson": {
  2076. }
  2077. },
  2078. "isIllegal": false,
  2079. "randomID": "e1iGS6WHbM1e",
  2080. "stepSlot": {
  2081. "ContainerValue": {
  2082. "Type": "BTNodeHiddenAction",
  2083. "baseSelect": {
  2084. "DisplayName": "查看详情按钮",
  2085. "Type": "Action",
  2086. "Value": "8Nd9S0pWgYZU"
  2087. },
  2088. "isIllegal": true,
  2089. "randomID": "t6zkm1SfqpwE",
  2090. "stepSlot": {
  2091. "ContainerValue": {
  2092. "Type": "BTNodeHiddenAction",
  2093. "baseSelect": {
  2094. "DisplayName": "等待审核按钮",
  2095. "Type": "Action",
  2096. "Value": "sa22DiCkCX7K"
  2097. },
  2098. "isIllegal": true,
  2099. "randomID": "IlOrjrBQJCEt",
  2100. "stepSlot": {
  2101. "ContainerValue": {
  2102. "Type": "BTIFControlAction",
  2103. "conditionA": {
  2104. "ContainerValue": {
  2105. "Type": "BTStringEqualOperatorAction",
  2106. "conditionA": {
  2107. "ContainerValue": {
  2108. "Type": "BTCoderVariableAction",
  2109. "VarScope": "Scene",
  2110. "isIllegal": true,
  2111. "randomID": "ICHHs8LKY7UY",
  2112. "titleLabel": {
  2113. "Type": "STRING",
  2114. "Value": "P-按钮状态",
  2115. "displayName": ""
  2116. }
  2117. },
  2118. "StringValue": {
  2119. "Type": "STRING",
  2120. "Value": "Red"
  2121. },
  2122. "Type": "BTInputSlot"
  2123. },
  2124. "conditionB": {
  2125. "ContainerValue": null,
  2126. "StringValue": {
  2127. "Type": "STRING",
  2128. "Value": "等待审核"
  2129. },
  2130. "Type": "BTInputSlot"
  2131. },
  2132. "isIllegal": true,
  2133. "randomID": "AZi97hxvUHfE"
  2134. },
  2135. "Type": "BTBoolSlot"
  2136. },
  2137. "isIllegal": true,
  2138. "randomID": "v3nsh73SDEa6",
  2139. "sectionA": {
  2140. "ContainerValue": {
  2141. "Type": "BTNodeShowAction",
  2142. "baseSelect": {
  2143. "DisplayName": "等待审核按钮",
  2144. "Type": "Action",
  2145. "Value": "sa22DiCkCX7K"
  2146. },
  2147. "isIllegal": true,
  2148. "randomID": "pv8Y0sg8gvjq",
  2149. "stepSlot": {
  2150. "ContainerValue": null,
  2151. "Type": "BTStepSlot"
  2152. }
  2153. },
  2154. "Type": "BTSectionSlot"
  2155. },
  2156. "stepSlot": {
  2157. "ContainerValue": {
  2158. "Type": "BTIFControlAction",
  2159. "conditionA": {
  2160. "ContainerValue": {
  2161. "Type": "BTStringEqualOperatorAction",
  2162. "conditionA": {
  2163. "ContainerValue": {
  2164. "Type": "BTCoderVariableAction",
  2165. "VarScope": "Scene",
  2166. "isIllegal": true,
  2167. "randomID": "NOzBCiXIaWpq",
  2168. "titleLabel": {
  2169. "Type": "STRING",
  2170. "Value": "P-按钮状态",
  2171. "displayName": ""
  2172. }
  2173. },
  2174. "StringValue": {
  2175. "Type": "STRING",
  2176. "Value": "Red"
  2177. },
  2178. "Type": "BTInputSlot"
  2179. },
  2180. "conditionB": {
  2181. "ContainerValue": null,
  2182. "StringValue": {
  2183. "Type": "STRING",
  2184. "Value": "查看详情"
  2185. },
  2186. "Type": "BTInputSlot"
  2187. },
  2188. "isIllegal": true,
  2189. "randomID": "0wJhj2d6haW2"
  2190. },
  2191. "Type": "BTBoolSlot"
  2192. },
  2193. "isIllegal": true,
  2194. "randomID": "X3zWmaasdtUv",
  2195. "sectionA": {
  2196. "ContainerValue": {
  2197. "Type": "BTNodeShowAction",
  2198. "baseSelect": {
  2199. "DisplayName": "查看详情按钮",
  2200. "Type": "Action",
  2201. "Value": "8Nd9S0pWgYZU"
  2202. },
  2203. "isIllegal": true,
  2204. "randomID": "C3QJPLdJlJ7B",
  2205. "stepSlot": {
  2206. "ContainerValue": null,
  2207. "Type": "BTStepSlot"
  2208. }
  2209. },
  2210. "Type": "BTSectionSlot"
  2211. },
  2212. "stepSlot": {
  2213. "ContainerValue": null,
  2214. "Type": "BTStepSlot"
  2215. }
  2216. },
  2217. "Type": "BTStepSlot"
  2218. }
  2219. },
  2220. "Type": "BTStepSlot"
  2221. }
  2222. },
  2223. "Type": "BTStepSlot"
  2224. }
  2225. },
  2226. "Type": "BTStepSlot"
  2227. },
  2228. "x": -145,
  2229. "y": 491
  2230. }
  2231. }
  2232. }