公会系统_个人信息_玩家头像框.rebolt 120 KB

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