公会系统_寻找创建公会_搜索界面.rebolt 171 KB

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