个人信息_玩家编辑_所有信息.rebolt 280 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575
  1. {
  2. "CustomFunc": {
  3. "刷新保存按钮状态": [
  4. [
  5. "Name",
  6. "刷新保存按钮状态",
  7. "rGYYqy1BtK10",
  8. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  9. ]
  10. ],
  11. "刷新修改名称状态": [
  12. [
  13. "Name",
  14. "刷新修改名称状态",
  15. "i4LpVP18EffN",
  16. "/Users/puzzle12/guild_demo/Resources/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  17. ]
  18. ],
  19. "刷新关闭按钮显示": [
  20. [
  21. "Name",
  22. "刷新关闭按钮显示",
  23. "KxG81bd1nmch",
  24. "/Users/gaohenan/Documents/gitWork/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  25. ]
  26. ],
  27. "刷新子页面状态": [
  28. [
  29. "Name",
  30. "刷新子页面状态",
  31. "ZgXFlxb1ONEb",
  32. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  33. ]
  34. ],
  35. "刷新页面": [
  36. [
  37. "Name",
  38. "刷新页面",
  39. "hJ7DfRPmImMf",
  40. "/Users/admin/Desktop/work_2023/guild_demo/Resources/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  41. ]
  42. ],
  43. "展示页面": [
  44. [
  45. "Name",
  46. "展示页面",
  47. "wYulzblxx99h",
  48. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  49. ]
  50. ],
  51. "更新主题": [
  52. [
  53. "Name",
  54. "更新主题",
  55. "E2mtlYV6tWfm",
  56. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  57. ]
  58. ],
  59. "设置程序节点": [
  60. [
  61. "Name",
  62. "设置程序节点",
  63. "hrrlglH4rcOR",
  64. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家编辑_所有信息.red"
  65. ]
  66. ]
  67. },
  68. "CustomList": {
  69. },
  70. "CustomMessage": {
  71. "Hello Red": 1
  72. },
  73. "CustomTestFunc": {
  74. },
  75. "CustomVar": {
  76. "P-主题背景Plist名": 0,
  77. "P-主题背景图片名": 0,
  78. "P-按钮状态": 0,
  79. "P-是否可以修改昵称": 0,
  80. "P-是否首次进入": 0,
  81. "P-用户名": 0,
  82. "当前滚动页面": 0
  83. },
  84. "DisPlayName": "个人信息_玩家编辑_所有信息",
  85. "RedFileList": {
  86. "4La3Gg2k3stt": {
  87. "CustomFunc": {
  88. "在主页上展示": [
  89. [
  90. "Name",
  91. "在主页上展示",
  92. "nhH47Gyv5VUp",
  93. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  94. ]
  95. ],
  96. "在合集页上展示": [
  97. [
  98. "Name",
  99. "在合集页上展示",
  100. "ilh4JiMsEuwk",
  101. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  102. ]
  103. ],
  104. "在所有信息页上展示": [
  105. [
  106. "Name",
  107. "在所有信息页上展示",
  108. "ExKpOpZecQ6P",
  109. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  110. ]
  111. ],
  112. "在滚动列表上展示": [
  113. [
  114. "Name",
  115. "在滚动列表上展示",
  116. "huc99Tbr36Ll",
  117. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  118. ]
  119. ],
  120. "展示页面": [
  121. [
  122. "Name",
  123. "展示页面",
  124. "juf1R3AlXG7R",
  125. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  126. ]
  127. ],
  128. "更新图片": [
  129. [
  130. "Name",
  131. "更新图片",
  132. "OXzwpvZpjmcx",
  133. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  134. ]
  135. ],
  136. "更新按钮状态": [
  137. [
  138. "Name",
  139. "更新按钮状态",
  140. "OXxfgaSIQYvQ",
  141. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  142. ]
  143. ],
  144. "测试_仅展示": [
  145. [
  146. "Name",
  147. "测试_仅展示",
  148. "B54MiJ7xiHVo",
  149. "/Users/yujizhu/Documents/Git/RedTools/guild_demo/Resources/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  150. ]
  151. ],
  152. "测试_点击打开个人信息合集页": [
  153. [
  154. "Name",
  155. "测试_点击打开个人信息合集页",
  156. "1TVRJzwqqGDY",
  157. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  158. ]
  159. ],
  160. "测试_点击时打开编辑页": [
  161. [
  162. "Name",
  163. "测试_点击时打开编辑页",
  164. "B1VZcsMuk8Z3",
  165. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  166. ]
  167. ],
  168. "测试_点击时选中": [
  169. [
  170. "Name",
  171. "测试_点击时选中",
  172. "jhtEzR1IqNwH",
  173. "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red"
  174. ]
  175. ]
  176. },
  177. "CustomList": {
  178. },
  179. "CustomTestFunc": {
  180. },
  181. "CustomVar": {
  182. "P-公共Plist": 0,
  183. "P-头像Plist": 0,
  184. "P-头像图片": 0,
  185. "P-头像框ID": 0,
  186. "P-头像框图片": 0,
  187. "P-头像背景图片": 0,
  188. "P-按钮类型": 0,
  189. "P-是否选中": 0,
  190. "按钮类型": 0
  191. },
  192. "DisPlayName": "个人信息_玩家头像",
  193. "RedNoteInfo": {
  194. },
  195. "TreeList": {
  196. "Tree0": {
  197. "ExportTree": false,
  198. "ImageIndex": 11,
  199. "Name": {
  200. "Type": "STRING",
  201. "Value": "模拟程序执行",
  202. "displayName": ""
  203. },
  204. "Type": "BTSimulatorAction",
  205. "VarJson": {
  206. "boolJson": {
  207. },
  208. "numberJson": {
  209. "参数": "Number",
  210. "通知名": "Number"
  211. }
  212. },
  213. "isIllegal": false,
  214. "randomID": "UIu5bsUxIxdx",
  215. "stepSlot": {
  216. "ContainerValue": {
  217. "Type": "BTIFControlAction",
  218. "conditionA": {
  219. "ContainerValue": {
  220. "Type": "BTStringEqualOperatorAction",
  221. "conditionA": {
  222. "ContainerValue": {
  223. "Type": "BTFuncVariableAction",
  224. "colorName": "Disable",
  225. "currentStr": "通知名",
  226. "fatherFuncID": "UIu5bsUxIxdx",
  227. "isIllegal": true,
  228. "randomID": "TgMVpVgC76sw",
  229. "titleLabel": {
  230. "Type": "STRING",
  231. "Value": "通知名",
  232. "displayName": ""
  233. }
  234. },
  235. "StringValue": {
  236. "Type": "STRING",
  237. "Value": "Red"
  238. },
  239. "Type": "BTInputSlot"
  240. },
  241. "conditionB": {
  242. "ContainerValue": null,
  243. "StringValue": {
  244. "Type": "STRING",
  245. "Value": "在主页上展示时初始化程序变量"
  246. },
  247. "Type": "BTInputSlot"
  248. },
  249. "isIllegal": true,
  250. "randomID": "EQco2wVuW1Q6"
  251. },
  252. "Type": "BTBoolSlot"
  253. },
  254. "isIllegal": true,
  255. "randomID": "xOjAgGQ0bXBG",
  256. "sectionA": {
  257. "ContainerValue": {
  258. "TitleInput": {
  259. "ContainerValue": null,
  260. "StringValue": {
  261. "Type": "STRING",
  262. "Value": "guild_personal_icon.plist"
  263. },
  264. "Type": "BTInputSlot"
  265. },
  266. "Type": "BTDataCoderVarSetAction",
  267. "VarScope": "Scene",
  268. "baseSelect": {
  269. "DisplayName": "P-公共Plist",
  270. "Type": "Action",
  271. "Value": "P-公共Plist"
  272. },
  273. "isIllegal": true,
  274. "randomID": "gpbgHZoQCQVT",
  275. "stepSlot": {
  276. "ContainerValue": {
  277. "TitleInput": {
  278. "ContainerValue": null,
  279. "StringValue": {
  280. "Type": "STRING",
  281. "Value": "guild_personal_icon.plist"
  282. },
  283. "Type": "BTInputSlot"
  284. },
  285. "Type": "BTDataCoderVarSetAction",
  286. "VarScope": "Scene",
  287. "baseSelect": {
  288. "DisplayName": "P-头像Plist",
  289. "Type": "Action",
  290. "Value": "P-头像Plist"
  291. },
  292. "isIllegal": true,
  293. "randomID": "PJ8t5uod19iU",
  294. "stepSlot": {
  295. "ContainerValue": {
  296. "TitleInput": {
  297. "ContainerValue": null,
  298. "StringValue": {
  299. "Type": "STRING",
  300. "Value": "pu_avatar_pattern_10.png"
  301. },
  302. "Type": "BTInputSlot"
  303. },
  304. "Type": "BTDataCoderVarSetAction",
  305. "VarScope": "Scene",
  306. "baseSelect": {
  307. "DisplayName": "P-头像图片",
  308. "Type": "Action",
  309. "Value": "P-头像图片"
  310. },
  311. "isIllegal": true,
  312. "randomID": "wiDXgy0CMNTe",
  313. "stepSlot": {
  314. "ContainerValue": {
  315. "TitleInput": {
  316. "ContainerValue": null,
  317. "StringValue": {
  318. "Type": "STRING",
  319. "Value": "pu_avatar_frame_5.png"
  320. },
  321. "Type": "BTInputSlot"
  322. },
  323. "Type": "BTDataCoderVarSetAction",
  324. "VarScope": "Scene",
  325. "baseSelect": {
  326. "DisplayName": "P-头像框图片",
  327. "Type": "Action",
  328. "Value": "P-头像框图片"
  329. },
  330. "isIllegal": true,
  331. "randomID": "DhcY0RGnJsUo",
  332. "stepSlot": {
  333. "ContainerValue": {
  334. "TitleInput": {
  335. "ContainerValue": null,
  336. "StringValue": {
  337. "Type": "STRING",
  338. "Value": "0"
  339. },
  340. "Type": "BTInputSlot"
  341. },
  342. "Type": "BTDataCoderVarSetAction",
  343. "VarScope": "Scene",
  344. "baseSelect": {
  345. "DisplayName": "P-头像背景图片",
  346. "Type": "Action",
  347. "Value": "P-头像背景图片"
  348. },
  349. "isIllegal": true,
  350. "randomID": "dnS4k7yEJikm",
  351. "stepSlot": {
  352. "ContainerValue": {
  353. "TitleInput": {
  354. "ContainerValue": null,
  355. "StringValue": {
  356. "Type": "STRING",
  357. "Value": "合集页按钮"
  358. },
  359. "Type": "BTInputSlot"
  360. },
  361. "Type": "BTDataCoderVarSetAction",
  362. "VarScope": "Scene",
  363. "baseSelect": {
  364. "DisplayName": "P-按钮类型",
  365. "Type": "Action",
  366. "Value": "P-按钮类型"
  367. },
  368. "isIllegal": true,
  369. "randomID": "EXH9uBIbqH9g",
  370. "stepSlot": {
  371. "ContainerValue": null,
  372. "Type": "BTStepSlot"
  373. }
  374. },
  375. "Type": "BTStepSlot"
  376. }
  377. },
  378. "Type": "BTStepSlot"
  379. }
  380. },
  381. "Type": "BTStepSlot"
  382. }
  383. },
  384. "Type": "BTStepSlot"
  385. }
  386. },
  387. "Type": "BTStepSlot"
  388. }
  389. },
  390. "Type": "BTSectionSlot"
  391. },
  392. "stepSlot": {
  393. "ContainerValue": {
  394. "Type": "BTIFControlAction",
  395. "conditionA": {
  396. "ContainerValue": {
  397. "Type": "BTStringEqualOperatorAction",
  398. "conditionA": {
  399. "ContainerValue": {
  400. "Type": "BTFuncVariableAction",
  401. "colorName": "Disable",
  402. "currentStr": "通知名",
  403. "fatherFuncID": "UIu5bsUxIxdx",
  404. "isIllegal": true,
  405. "randomID": "okKrgZKSPfVw",
  406. "titleLabel": {
  407. "Type": "STRING",
  408. "Value": "通知名",
  409. "displayName": ""
  410. }
  411. },
  412. "StringValue": {
  413. "Type": "STRING",
  414. "Value": "Red"
  415. },
  416. "Type": "BTInputSlot"
  417. },
  418. "conditionB": {
  419. "ContainerValue": null,
  420. "StringValue": {
  421. "Type": "STRING",
  422. "Value": "在合集页上展示时初始化程序变量"
  423. },
  424. "Type": "BTInputSlot"
  425. },
  426. "isIllegal": true,
  427. "randomID": "DgkWG96VaC69"
  428. },
  429. "Type": "BTBoolSlot"
  430. },
  431. "isIllegal": true,
  432. "randomID": "13WEccjDWquw",
  433. "sectionA": {
  434. "ContainerValue": {
  435. "TitleInput": {
  436. "ContainerValue": null,
  437. "StringValue": {
  438. "Type": "STRING",
  439. "Value": "guild_personal_icon.plist"
  440. },
  441. "Type": "BTInputSlot"
  442. },
  443. "Type": "BTDataCoderVarSetAction",
  444. "VarScope": "Scene",
  445. "baseSelect": {
  446. "DisplayName": "P-公共Plist",
  447. "Type": "Action",
  448. "Value": "P-公共Plist"
  449. },
  450. "isIllegal": true,
  451. "randomID": "NTr6Ndjr4Gs6",
  452. "stepSlot": {
  453. "ContainerValue": {
  454. "TitleInput": {
  455. "ContainerValue": null,
  456. "StringValue": {
  457. "Type": "STRING",
  458. "Value": "guild_personal_icon.plist"
  459. },
  460. "Type": "BTInputSlot"
  461. },
  462. "Type": "BTDataCoderVarSetAction",
  463. "VarScope": "Scene",
  464. "baseSelect": {
  465. "DisplayName": "P-头像Plist",
  466. "Type": "Action",
  467. "Value": "P-头像Plist"
  468. },
  469. "isIllegal": true,
  470. "randomID": "YkiUVumrS1Kp",
  471. "stepSlot": {
  472. "ContainerValue": {
  473. "TitleInput": {
  474. "ContainerValue": null,
  475. "StringValue": {
  476. "Type": "STRING",
  477. "Value": "pu_avatar_pattern_10.png"
  478. },
  479. "Type": "BTInputSlot"
  480. },
  481. "Type": "BTDataCoderVarSetAction",
  482. "VarScope": "Scene",
  483. "baseSelect": {
  484. "DisplayName": "P-头像图片",
  485. "Type": "Action",
  486. "Value": "P-头像图片"
  487. },
  488. "isIllegal": true,
  489. "randomID": "ZQY1O2vmPG1R",
  490. "stepSlot": {
  491. "ContainerValue": {
  492. "TitleInput": {
  493. "ContainerValue": null,
  494. "StringValue": {
  495. "Type": "STRING",
  496. "Value": "pu_avatar_frame_5.png"
  497. },
  498. "Type": "BTInputSlot"
  499. },
  500. "Type": "BTDataCoderVarSetAction",
  501. "VarScope": "Scene",
  502. "baseSelect": {
  503. "DisplayName": "P-头像框图片",
  504. "Type": "Action",
  505. "Value": "P-头像框图片"
  506. },
  507. "isIllegal": true,
  508. "randomID": "VMCVKnAHwxCp",
  509. "stepSlot": {
  510. "ContainerValue": {
  511. "TitleInput": {
  512. "ContainerValue": null,
  513. "StringValue": {
  514. "Type": "STRING",
  515. "Value": "编辑按钮"
  516. },
  517. "Type": "BTInputSlot"
  518. },
  519. "Type": "BTDataCoderVarSetAction",
  520. "VarScope": "Scene",
  521. "baseSelect": {
  522. "DisplayName": "P-按钮类型",
  523. "Type": "Action",
  524. "Value": "P-按钮类型"
  525. },
  526. "isIllegal": true,
  527. "randomID": "JBtv61HUz8pq",
  528. "stepSlot": {
  529. "ContainerValue": null,
  530. "Type": "BTStepSlot"
  531. }
  532. },
  533. "Type": "BTStepSlot"
  534. }
  535. },
  536. "Type": "BTStepSlot"
  537. }
  538. },
  539. "Type": "BTStepSlot"
  540. }
  541. },
  542. "Type": "BTStepSlot"
  543. }
  544. },
  545. "Type": "BTSectionSlot"
  546. },
  547. "stepSlot": {
  548. "ContainerValue": {
  549. "Type": "BTIFControlAction",
  550. "conditionA": {
  551. "ContainerValue": {
  552. "Type": "BTStringEqualOperatorAction",
  553. "conditionA": {
  554. "ContainerValue": {
  555. "Type": "BTFuncVariableAction",
  556. "colorName": "Disable",
  557. "currentStr": "通知名",
  558. "fatherFuncID": "UIu5bsUxIxdx",
  559. "isIllegal": true,
  560. "randomID": "N7UqmQJLgUb8",
  561. "titleLabel": {
  562. "Type": "STRING",
  563. "Value": "通知名",
  564. "displayName": ""
  565. }
  566. },
  567. "StringValue": {
  568. "Type": "STRING",
  569. "Value": "Red"
  570. },
  571. "Type": "BTInputSlot"
  572. },
  573. "conditionB": {
  574. "ContainerValue": null,
  575. "StringValue": {
  576. "Type": "STRING",
  577. "Value": "在滚动列表上展示时初始化程序变量"
  578. },
  579. "Type": "BTInputSlot"
  580. },
  581. "isIllegal": true,
  582. "randomID": "GCkNBy0iANqn"
  583. },
  584. "Type": "BTBoolSlot"
  585. },
  586. "isIllegal": true,
  587. "randomID": "CJn23q6ueNeG",
  588. "sectionA": {
  589. "ContainerValue": {
  590. "TitleInput": {
  591. "ContainerValue": null,
  592. "StringValue": {
  593. "Type": "STRING",
  594. "Value": "guild_personal_icon.plist"
  595. },
  596. "Type": "BTInputSlot"
  597. },
  598. "Type": "BTDataCoderVarSetAction",
  599. "VarScope": "Scene",
  600. "baseSelect": {
  601. "DisplayName": "P-公共Plist",
  602. "Type": "Action",
  603. "Value": "P-公共Plist"
  604. },
  605. "isIllegal": true,
  606. "randomID": "2luPyAStmBFN",
  607. "stepSlot": {
  608. "ContainerValue": {
  609. "TitleInput": {
  610. "ContainerValue": null,
  611. "StringValue": {
  612. "Type": "STRING",
  613. "Value": "guild_personal_icon.plist"
  614. },
  615. "Type": "BTInputSlot"
  616. },
  617. "Type": "BTDataCoderVarSetAction",
  618. "VarScope": "Scene",
  619. "baseSelect": {
  620. "DisplayName": "P-头像Plist",
  621. "Type": "Action",
  622. "Value": "P-头像Plist"
  623. },
  624. "isIllegal": true,
  625. "randomID": "RHVD1e4xZEw7",
  626. "stepSlot": {
  627. "ContainerValue": {
  628. "TitleInput": {
  629. "ContainerValue": null,
  630. "StringValue": {
  631. "Type": "STRING",
  632. "Value": "pu_avatar_pattern_10.png"
  633. },
  634. "Type": "BTInputSlot"
  635. },
  636. "Type": "BTDataCoderVarSetAction",
  637. "VarScope": "Scene",
  638. "baseSelect": {
  639. "DisplayName": "P-头像图片",
  640. "Type": "Action",
  641. "Value": "P-头像图片"
  642. },
  643. "isIllegal": true,
  644. "randomID": "Gww1GhPrTp1U",
  645. "stepSlot": {
  646. "ContainerValue": {
  647. "TitleInput": {
  648. "ContainerValue": null,
  649. "StringValue": {
  650. "Type": "STRING",
  651. "Value": "pu_avatar_frame_5.png"
  652. },
  653. "Type": "BTInputSlot"
  654. },
  655. "Type": "BTDataCoderVarSetAction",
  656. "VarScope": "Scene",
  657. "baseSelect": {
  658. "DisplayName": "P-头像框图片",
  659. "Type": "Action",
  660. "Value": "P-头像框图片"
  661. },
  662. "isIllegal": true,
  663. "randomID": "6jionzwOtlaR",
  664. "stepSlot": {
  665. "ContainerValue": {
  666. "TitleInput": {
  667. "ContainerValue": null,
  668. "StringValue": {
  669. "Type": "STRING",
  670. "Value": "点选按钮"
  671. },
  672. "Type": "BTInputSlot"
  673. },
  674. "Type": "BTDataCoderVarSetAction",
  675. "VarScope": "Scene",
  676. "baseSelect": {
  677. "DisplayName": "P-按钮类型",
  678. "Type": "Action",
  679. "Value": "P-按钮类型"
  680. },
  681. "isIllegal": true,
  682. "randomID": "E0nUOUI0aUV1",
  683. "stepSlot": {
  684. "ContainerValue": {
  685. "TitleInput": {
  686. "ContainerValue": null,
  687. "StringValue": {
  688. "Type": "STRING",
  689. "Value": "123456"
  690. },
  691. "Type": "BTInputSlot"
  692. },
  693. "Type": "BTDataCoderVarSetAction",
  694. "VarScope": "Scene",
  695. "baseSelect": {
  696. "DisplayName": "P-头像框ID",
  697. "Type": "Action",
  698. "Value": "P-头像框ID"
  699. },
  700. "isIllegal": true,
  701. "randomID": "cRkoVFPXlrk5",
  702. "stepSlot": {
  703. "ContainerValue": {
  704. "TitleInput": {
  705. "ContainerValue": null,
  706. "StringValue": {
  707. "Type": "STRING",
  708. "Value": "是"
  709. },
  710. "Type": "BTInputSlot"
  711. },
  712. "Type": "BTDataCoderVarSetAction",
  713. "VarScope": "Scene",
  714. "baseSelect": {
  715. "DisplayName": "P-是否选中",
  716. "Type": "Action",
  717. "Value": "P-是否选中"
  718. },
  719. "isIllegal": true,
  720. "randomID": "PiPeaTvUpDo3",
  721. "stepSlot": {
  722. "ContainerValue": null,
  723. "Type": "BTStepSlot"
  724. }
  725. },
  726. "Type": "BTStepSlot"
  727. }
  728. },
  729. "Type": "BTStepSlot"
  730. }
  731. },
  732. "Type": "BTStepSlot"
  733. }
  734. },
  735. "Type": "BTStepSlot"
  736. }
  737. },
  738. "Type": "BTStepSlot"
  739. }
  740. },
  741. "Type": "BTStepSlot"
  742. }
  743. },
  744. "Type": "BTSectionSlot"
  745. },
  746. "stepSlot": {
  747. "ContainerValue": {
  748. "Type": "BTIFControlAction",
  749. "conditionA": {
  750. "ContainerValue": {
  751. "Type": "BTStringEqualOperatorAction",
  752. "conditionA": {
  753. "ContainerValue": {
  754. "Type": "BTFuncVariableAction",
  755. "colorName": "Disable",
  756. "currentStr": "通知名",
  757. "fatherFuncID": "UIu5bsUxIxdx",
  758. "isIllegal": true,
  759. "randomID": "akr5bRtaV3CM",
  760. "titleLabel": {
  761. "Type": "STRING",
  762. "Value": "通知名",
  763. "displayName": ""
  764. }
  765. },
  766. "StringValue": {
  767. "Type": "STRING",
  768. "Value": "Red"
  769. },
  770. "Type": "BTInputSlot"
  771. },
  772. "conditionB": {
  773. "ContainerValue": null,
  774. "StringValue": {
  775. "Type": "STRING",
  776. "Value": "在所有信息页上展示时初始化程序变量"
  777. },
  778. "Type": "BTInputSlot"
  779. },
  780. "isIllegal": true,
  781. "randomID": "AU91blBMSGiW"
  782. },
  783. "Type": "BTBoolSlot"
  784. },
  785. "isIllegal": true,
  786. "randomID": "uhvJc57k3JIQ",
  787. "sectionA": {
  788. "ContainerValue": {
  789. "TitleInput": {
  790. "ContainerValue": null,
  791. "StringValue": {
  792. "Type": "STRING",
  793. "Value": "guild_personal_icon.plist"
  794. },
  795. "Type": "BTInputSlot"
  796. },
  797. "Type": "BTDataCoderVarSetAction",
  798. "VarScope": "Scene",
  799. "baseSelect": {
  800. "DisplayName": "P-公共Plist",
  801. "Type": "Action",
  802. "Value": "P-公共Plist"
  803. },
  804. "isIllegal": true,
  805. "randomID": "rKqM3M6sJhku",
  806. "stepSlot": {
  807. "ContainerValue": {
  808. "TitleInput": {
  809. "ContainerValue": null,
  810. "StringValue": {
  811. "Type": "STRING",
  812. "Value": "guild_personal_icon.plist"
  813. },
  814. "Type": "BTInputSlot"
  815. },
  816. "Type": "BTDataCoderVarSetAction",
  817. "VarScope": "Scene",
  818. "baseSelect": {
  819. "DisplayName": "P-头像Plist",
  820. "Type": "Action",
  821. "Value": "P-头像Plist"
  822. },
  823. "isIllegal": true,
  824. "randomID": "sztTV6xPKCQP",
  825. "stepSlot": {
  826. "ContainerValue": {
  827. "TitleInput": {
  828. "ContainerValue": null,
  829. "StringValue": {
  830. "Type": "STRING",
  831. "Value": "pu_avatar_pattern_10.png"
  832. },
  833. "Type": "BTInputSlot"
  834. },
  835. "Type": "BTDataCoderVarSetAction",
  836. "VarScope": "Scene",
  837. "baseSelect": {
  838. "DisplayName": "P-头像图片",
  839. "Type": "Action",
  840. "Value": "P-头像图片"
  841. },
  842. "isIllegal": true,
  843. "randomID": "yckM5DZDzWFd",
  844. "stepSlot": {
  845. "ContainerValue": {
  846. "TitleInput": {
  847. "ContainerValue": null,
  848. "StringValue": {
  849. "Type": "STRING",
  850. "Value": "pu_avatar_frame_5.png"
  851. },
  852. "Type": "BTInputSlot"
  853. },
  854. "Type": "BTDataCoderVarSetAction",
  855. "VarScope": "Scene",
  856. "baseSelect": {
  857. "DisplayName": "P-头像框图片",
  858. "Type": "Action",
  859. "Value": "P-头像框图片"
  860. },
  861. "isIllegal": true,
  862. "randomID": "jr16qpToXQ7S",
  863. "stepSlot": {
  864. "ContainerValue": {
  865. "TitleInput": {
  866. "ContainerValue": null,
  867. "StringValue": {
  868. "Type": "STRING",
  869. "Value": "无"
  870. },
  871. "Type": "BTInputSlot"
  872. },
  873. "Type": "BTDataCoderVarSetAction",
  874. "VarScope": "Scene",
  875. "baseSelect": {
  876. "DisplayName": "P-按钮类型",
  877. "Type": "Action",
  878. "Value": "P-按钮类型"
  879. },
  880. "isIllegal": true,
  881. "randomID": "RoRavX9Spf4o",
  882. "stepSlot": {
  883. "ContainerValue": null,
  884. "Type": "BTStepSlot"
  885. }
  886. },
  887. "Type": "BTStepSlot"
  888. }
  889. },
  890. "Type": "BTStepSlot"
  891. }
  892. },
  893. "Type": "BTStepSlot"
  894. }
  895. },
  896. "Type": "BTStepSlot"
  897. }
  898. },
  899. "Type": "BTSectionSlot"
  900. },
  901. "stepSlot": {
  902. "ContainerValue": null,
  903. "Type": "BTStepSlot"
  904. }
  905. },
  906. "Type": "BTStepSlot"
  907. }
  908. },
  909. "Type": "BTStepSlot"
  910. }
  911. },
  912. "Type": "BTStepSlot"
  913. }
  914. },
  915. "Type": "BTStepSlot"
  916. },
  917. "x": 874.623824541503,
  918. "y": -112.32946367670573
  919. },
  920. "Tree1": {
  921. "ExportTree": true,
  922. "ImageIndex": -1,
  923. "Type": "BTButtonClickFuncAction",
  924. "VarJson": {
  925. "boolJson": {
  926. },
  927. "numberJson": {
  928. }
  929. },
  930. "isIllegal": false,
  931. "mathSelector": {
  932. "DisplayName": "头像框按钮",
  933. "Type": "OBJ",
  934. "Value": "TnU669p8WV4L"
  935. },
  936. "randomID": "270uMrZ6VjHJ",
  937. "stepSlot": {
  938. "ContainerValue": {
  939. "Type": "BTNotificationToCoderAction",
  940. "conditionA": {
  941. "ContainerValue": null,
  942. "StringValue": {
  943. "Type": "STRING",
  944. "Value": "按下头像框按钮"
  945. },
  946. "Type": "BTInputSlot"
  947. },
  948. "isIllegal": true,
  949. "randomID": "7pC88HTDbTkW",
  950. "stepSlot": {
  951. "ContainerValue": {
  952. "Type": "BTIFControlAction",
  953. "conditionA": {
  954. "ContainerValue": {
  955. "Type": "BTStringEqualOperatorAction",
  956. "conditionA": {
  957. "ContainerValue": {
  958. "Type": "BTVariableAction",
  959. "VarScope": "Scene",
  960. "isIllegal": true,
  961. "randomID": "zf6y69PTQv8e",
  962. "titleLabel": {
  963. "Type": "STRING",
  964. "Value": "按钮类型",
  965. "displayName": ""
  966. }
  967. },
  968. "StringValue": {
  969. "Type": "STRING",
  970. "Value": "Red"
  971. },
  972. "Type": "BTInputSlot"
  973. },
  974. "conditionB": {
  975. "ContainerValue": null,
  976. "StringValue": {
  977. "Type": "STRING",
  978. "Value": "点选按钮"
  979. },
  980. "Type": "BTInputSlot"
  981. },
  982. "isIllegal": true,
  983. "randomID": "tYxAJfZeGx0y"
  984. },
  985. "Type": "BTBoolSlot"
  986. },
  987. "isIllegal": true,
  988. "randomID": "LaxnF5maJQpq",
  989. "sectionA": {
  990. "ContainerValue": {
  991. "Type": "BTNotificationToCoderWithParamAction",
  992. "conditionA": {
  993. "ContainerValue": null,
  994. "StringValue": {
  995. "Type": "STRING",
  996. "Value": "按下带参数头像框按钮"
  997. },
  998. "Type": "BTInputSlot"
  999. },
  1000. "isIllegal": true,
  1001. "paramA": {
  1002. "ContainerValue": {
  1003. "Type": "BTCoderVariableAction",
  1004. "VarScope": "Scene",
  1005. "isIllegal": true,
  1006. "randomID": "9Yi9xfrUsnZs",
  1007. "titleLabel": {
  1008. "Type": "STRING",
  1009. "Value": "P-头像框ID",
  1010. "displayName": ""
  1011. }
  1012. },
  1013. "StringValue": {
  1014. "Type": "STRING",
  1015. "Value": ""
  1016. },
  1017. "Type": "BTInputSlot"
  1018. },
  1019. "randomID": "smqE6KADm5eJ",
  1020. "stepSlot": {
  1021. "ContainerValue": null,
  1022. "Type": "BTStepSlot"
  1023. }
  1024. },
  1025. "Type": "BTSectionSlot"
  1026. },
  1027. "stepSlot": {
  1028. "ContainerValue": null,
  1029. "Type": "BTStepSlot"
  1030. }
  1031. },
  1032. "Type": "BTStepSlot"
  1033. }
  1034. },
  1035. "Type": "BTStepSlot"
  1036. },
  1037. "x": -419.11450014731463,
  1038. "y": 1.1537060824237235
  1039. },
  1040. "Tree10": {
  1041. "ExportTree": true,
  1042. "ImageIndex": 9,
  1043. "Name": {
  1044. "Type": "STRING",
  1045. "Value": "测试_仅展示",
  1046. "displayName": ""
  1047. },
  1048. "Type": "BTCustomFuncHeadAction",
  1049. "VarJson": {
  1050. "boolJson": {
  1051. },
  1052. "numberJson": {
  1053. }
  1054. },
  1055. "isIllegal": false,
  1056. "randomID": "B54MiJ7xiHVo",
  1057. "stepSlot": {
  1058. "ContainerValue": {
  1059. "Type": "BTNotificationToCoderAction",
  1060. "conditionA": {
  1061. "ContainerValue": null,
  1062. "StringValue": {
  1063. "Type": "STRING",
  1064. "Value": "在所有信息页上展示时初始化程序变量"
  1065. },
  1066. "Type": "BTInputSlot"
  1067. },
  1068. "isIllegal": true,
  1069. "randomID": "6Dt0vvrDVs5N",
  1070. "stepSlot": {
  1071. "ContainerValue": {
  1072. "Name": {
  1073. "Type": "STRING",
  1074. "Value": "展示页面",
  1075. "displayName": ""
  1076. },
  1077. "Type": "BTCustomFuncBodyAction",
  1078. "funcHeadID": "juf1R3AlXG7R",
  1079. "isIllegal": true,
  1080. "paramArr": [
  1081. ],
  1082. "randomID": "VGq9x7sDS3co",
  1083. "stepSlot": {
  1084. "ContainerValue": null,
  1085. "Type": "BTStepSlot"
  1086. }
  1087. },
  1088. "Type": "BTStepSlot"
  1089. }
  1090. },
  1091. "Type": "BTStepSlot"
  1092. },
  1093. "x": 414,
  1094. "y": 1335
  1095. },
  1096. "Tree11": {
  1097. "ExportTree": true,
  1098. "ImageIndex": 3,
  1099. "Name": {
  1100. "Type": "STRING",
  1101. "Value": "更新按钮状态",
  1102. "displayName": ""
  1103. },
  1104. "Type": "BTCustomFuncHeadAction",
  1105. "VarJson": {
  1106. "boolJson": {
  1107. },
  1108. "numberJson": {
  1109. }
  1110. },
  1111. "isIllegal": false,
  1112. "randomID": "OXxfgaSIQYvQ",
  1113. "stepSlot": {
  1114. "ContainerValue": {
  1115. "Type": "BTNodeHiddenAction",
  1116. "baseSelect": {
  1117. "DisplayName": "头像框按钮",
  1118. "Type": "Action",
  1119. "Value": "TnU669p8WV4L"
  1120. },
  1121. "isIllegal": true,
  1122. "randomID": "sjciYgwxSfKg",
  1123. "stepSlot": {
  1124. "ContainerValue": {
  1125. "TitleInput": {
  1126. "ContainerValue": {
  1127. "Type": "BTCoderVariableAction",
  1128. "VarScope": "Scene",
  1129. "isIllegal": true,
  1130. "randomID": "x5ASmuyvDx8i",
  1131. "titleLabel": {
  1132. "Type": "STRING",
  1133. "Value": "P-按钮类型",
  1134. "displayName": ""
  1135. }
  1136. },
  1137. "StringValue": {
  1138. "Type": "STRING",
  1139. "Value": "0"
  1140. },
  1141. "Type": "BTInputSlot"
  1142. },
  1143. "Type": "BTDataVarSetAction",
  1144. "VarScope": "Scene",
  1145. "baseSelect": {
  1146. "DisplayName": "按钮类型",
  1147. "Type": "Action",
  1148. "Value": "按钮类型"
  1149. },
  1150. "isIllegal": true,
  1151. "randomID": "36ijsSodb8gJ",
  1152. "stepSlot": {
  1153. "ContainerValue": {
  1154. "Type": "BTIFControlAction",
  1155. "conditionA": {
  1156. "ContainerValue": {
  1157. "Type": "BTStringEqualOperatorAction",
  1158. "conditionA": {
  1159. "ContainerValue": {
  1160. "Type": "BTVariableAction",
  1161. "VarScope": "Scene",
  1162. "isIllegal": true,
  1163. "randomID": "JSoDWedJjfwG",
  1164. "titleLabel": {
  1165. "Type": "STRING",
  1166. "Value": "按钮类型",
  1167. "displayName": ""
  1168. }
  1169. },
  1170. "StringValue": {
  1171. "Type": "STRING",
  1172. "Value": "Red"
  1173. },
  1174. "Type": "BTInputSlot"
  1175. },
  1176. "conditionB": {
  1177. "ContainerValue": null,
  1178. "StringValue": {
  1179. "Type": "STRING",
  1180. "Value": "编辑按钮"
  1181. },
  1182. "Type": "BTInputSlot"
  1183. },
  1184. "isIllegal": true,
  1185. "randomID": "RlF0ikTo6yYG"
  1186. },
  1187. "Type": "BTBoolSlot"
  1188. },
  1189. "isIllegal": true,
  1190. "randomID": "kRMH3uLwJoHH",
  1191. "sectionA": {
  1192. "ContainerValue": {
  1193. "Type": "BTButtonEnableAction",
  1194. "baseSelect": {
  1195. "DisplayName": "头像框按钮",
  1196. "Type": "Action",
  1197. "Value": "TnU669p8WV4L"
  1198. },
  1199. "enableButton": {
  1200. "Type": "BTCheckBox",
  1201. "isEnable": true
  1202. },
  1203. "isIllegal": true,
  1204. "randomID": "eOARxOBSjAxI",
  1205. "stepSlot": {
  1206. "ContainerValue": {
  1207. "Type": "BTNodeShowAction",
  1208. "baseSelect": {
  1209. "DisplayName": "头像框按钮",
  1210. "Type": "Action",
  1211. "Value": "TnU669p8WV4L"
  1212. },
  1213. "isIllegal": true,
  1214. "randomID": "eKokL9RGd2Pj",
  1215. "stepSlot": {
  1216. "ContainerValue": {
  1217. "Type": "BTPlayTimeLineAction",
  1218. "baseSelect": {
  1219. "DisplayName": "可修改",
  1220. "Type": "Action",
  1221. "Value": "3"
  1222. },
  1223. "isIllegal": true,
  1224. "randomID": "F4pJumWoxTT2",
  1225. "stepSlot": {
  1226. "ContainerValue": null,
  1227. "Type": "BTStepSlot"
  1228. }
  1229. },
  1230. "Type": "BTStepSlot"
  1231. }
  1232. },
  1233. "Type": "BTStepSlot"
  1234. }
  1235. },
  1236. "Type": "BTSectionSlot"
  1237. },
  1238. "stepSlot": {
  1239. "ContainerValue": {
  1240. "Type": "BTIFControlAction",
  1241. "conditionA": {
  1242. "ContainerValue": {
  1243. "Type": "BTStringEqualOperatorAction",
  1244. "conditionA": {
  1245. "ContainerValue": {
  1246. "Type": "BTVariableAction",
  1247. "VarScope": "Scene",
  1248. "isIllegal": true,
  1249. "randomID": "EaSF2PWkPA8L",
  1250. "titleLabel": {
  1251. "Type": "STRING",
  1252. "Value": "按钮类型",
  1253. "displayName": ""
  1254. }
  1255. },
  1256. "StringValue": {
  1257. "Type": "STRING",
  1258. "Value": "Red"
  1259. },
  1260. "Type": "BTInputSlot"
  1261. },
  1262. "conditionB": {
  1263. "ContainerValue": null,
  1264. "StringValue": {
  1265. "Type": "STRING",
  1266. "Value": "点选按钮"
  1267. },
  1268. "Type": "BTInputSlot"
  1269. },
  1270. "isIllegal": true,
  1271. "randomID": "5T1aVxlTpEOp"
  1272. },
  1273. "Type": "BTBoolSlot"
  1274. },
  1275. "isIllegal": true,
  1276. "randomID": "ATKxj1DiK5m7",
  1277. "sectionA": {
  1278. "ContainerValue": {
  1279. "Type": "BTButtonEnableAction",
  1280. "baseSelect": {
  1281. "DisplayName": "头像框按钮",
  1282. "Type": "Action",
  1283. "Value": "TnU669p8WV4L"
  1284. },
  1285. "enableButton": {
  1286. "Type": "BTCheckBox",
  1287. "isEnable": true
  1288. },
  1289. "isIllegal": true,
  1290. "randomID": "u0E4tiAZUCwA",
  1291. "stepSlot": {
  1292. "ContainerValue": {
  1293. "Type": "BTNodeShowAction",
  1294. "baseSelect": {
  1295. "DisplayName": "头像框按钮",
  1296. "Type": "Action",
  1297. "Value": "TnU669p8WV4L"
  1298. },
  1299. "isIllegal": true,
  1300. "randomID": "5zD6RoMwJ95h",
  1301. "stepSlot": {
  1302. "ContainerValue": {
  1303. "Type": "BTIFElseControlAction",
  1304. "conditionA": {
  1305. "ContainerValue": {
  1306. "Type": "BTStringEqualOperatorAction",
  1307. "conditionA": {
  1308. "ContainerValue": {
  1309. "Type": "BTCoderVariableAction",
  1310. "VarScope": "Scene",
  1311. "isIllegal": true,
  1312. "randomID": "qivy88fVN0Er",
  1313. "titleLabel": {
  1314. "Type": "STRING",
  1315. "Value": "P-是否选中",
  1316. "displayName": ""
  1317. }
  1318. },
  1319. "StringValue": {
  1320. "Type": "STRING",
  1321. "Value": "Red"
  1322. },
  1323. "Type": "BTInputSlot"
  1324. },
  1325. "conditionB": {
  1326. "ContainerValue": null,
  1327. "StringValue": {
  1328. "Type": "STRING",
  1329. "Value": "是"
  1330. },
  1331. "Type": "BTInputSlot"
  1332. },
  1333. "isIllegal": true,
  1334. "randomID": "XEO5N0oss3PF"
  1335. },
  1336. "Type": "BTBoolSlot"
  1337. },
  1338. "isIllegal": true,
  1339. "randomID": "9MSRteYQ6IFS",
  1340. "sectionA": {
  1341. "ContainerValue": {
  1342. "Type": "BTPlayTimeLineAction",
  1343. "baseSelect": {
  1344. "DisplayName": "选中",
  1345. "Type": "Action",
  1346. "Value": "1"
  1347. },
  1348. "isIllegal": true,
  1349. "randomID": "hGyXRgUMU8sS",
  1350. "stepSlot": {
  1351. "ContainerValue": null,
  1352. "Type": "BTStepSlot"
  1353. }
  1354. },
  1355. "Type": "BTSectionSlot"
  1356. },
  1357. "sectionB": {
  1358. "ContainerValue": {
  1359. "Type": "BTPlayTimeLineAction",
  1360. "baseSelect": {
  1361. "DisplayName": "常态",
  1362. "Type": "Action",
  1363. "Value": "0"
  1364. },
  1365. "isIllegal": true,
  1366. "randomID": "LmeY8eOh64R8",
  1367. "stepSlot": {
  1368. "ContainerValue": null,
  1369. "Type": "BTStepSlot"
  1370. }
  1371. },
  1372. "Type": "BTSectionSlot"
  1373. },
  1374. "stepSlot": {
  1375. "ContainerValue": null,
  1376. "Type": "BTStepSlot"
  1377. }
  1378. },
  1379. "Type": "BTStepSlot"
  1380. }
  1381. },
  1382. "Type": "BTStepSlot"
  1383. }
  1384. },
  1385. "Type": "BTSectionSlot"
  1386. },
  1387. "stepSlot": {
  1388. "ContainerValue": {
  1389. "Type": "BTIFControlAction",
  1390. "conditionA": {
  1391. "ContainerValue": {
  1392. "Type": "BTStringEqualOperatorAction",
  1393. "conditionA": {
  1394. "ContainerValue": {
  1395. "Type": "BTVariableAction",
  1396. "VarScope": "Scene",
  1397. "isIllegal": true,
  1398. "randomID": "anHDxFu1BNv1",
  1399. "titleLabel": {
  1400. "Type": "STRING",
  1401. "Value": "按钮类型",
  1402. "displayName": ""
  1403. }
  1404. },
  1405. "StringValue": {
  1406. "Type": "STRING",
  1407. "Value": "Red"
  1408. },
  1409. "Type": "BTInputSlot"
  1410. },
  1411. "conditionB": {
  1412. "ContainerValue": null,
  1413. "StringValue": {
  1414. "Type": "STRING",
  1415. "Value": "合集页按钮"
  1416. },
  1417. "Type": "BTInputSlot"
  1418. },
  1419. "isIllegal": true,
  1420. "randomID": "oUSVNjbDrCQa"
  1421. },
  1422. "Type": "BTBoolSlot"
  1423. },
  1424. "isIllegal": true,
  1425. "randomID": "oucn4d3MgfmD",
  1426. "sectionA": {
  1427. "ContainerValue": {
  1428. "Type": "BTButtonEnableAction",
  1429. "baseSelect": {
  1430. "DisplayName": "头像框按钮",
  1431. "Type": "Action",
  1432. "Value": "TnU669p8WV4L"
  1433. },
  1434. "enableButton": {
  1435. "Type": "BTCheckBox",
  1436. "isEnable": true
  1437. },
  1438. "isIllegal": true,
  1439. "randomID": "peVosYiuEfiN",
  1440. "stepSlot": {
  1441. "ContainerValue": {
  1442. "Type": "BTNodeShowAction",
  1443. "baseSelect": {
  1444. "DisplayName": "头像框按钮",
  1445. "Type": "Action",
  1446. "Value": "TnU669p8WV4L"
  1447. },
  1448. "isIllegal": true,
  1449. "randomID": "wGOeQkTmwayN",
  1450. "stepSlot": {
  1451. "ContainerValue": {
  1452. "Type": "BTPlayTimeLineAction",
  1453. "baseSelect": {
  1454. "DisplayName": "常态",
  1455. "Type": "Action",
  1456. "Value": "0"
  1457. },
  1458. "isIllegal": true,
  1459. "randomID": "wqdpc70Up7Gz",
  1460. "stepSlot": {
  1461. "ContainerValue": null,
  1462. "Type": "BTStepSlot"
  1463. }
  1464. },
  1465. "Type": "BTStepSlot"
  1466. }
  1467. },
  1468. "Type": "BTStepSlot"
  1469. }
  1470. },
  1471. "Type": "BTSectionSlot"
  1472. },
  1473. "stepSlot": {
  1474. "ContainerValue": {
  1475. "Type": "BTIFControlAction",
  1476. "conditionA": {
  1477. "ContainerValue": {
  1478. "Type": "BTStringEqualOperatorAction",
  1479. "conditionA": {
  1480. "ContainerValue": {
  1481. "Type": "BTVariableAction",
  1482. "VarScope": "Scene",
  1483. "isIllegal": true,
  1484. "randomID": "qpj8EvcXhBa2",
  1485. "titleLabel": {
  1486. "Type": "STRING",
  1487. "Value": "按钮类型",
  1488. "displayName": ""
  1489. }
  1490. },
  1491. "StringValue": {
  1492. "Type": "STRING",
  1493. "Value": "Red"
  1494. },
  1495. "Type": "BTInputSlot"
  1496. },
  1497. "conditionB": {
  1498. "ContainerValue": null,
  1499. "StringValue": {
  1500. "Type": "STRING",
  1501. "Value": "无"
  1502. },
  1503. "Type": "BTInputSlot"
  1504. },
  1505. "isIllegal": true,
  1506. "randomID": "HaGXlecUPFY4"
  1507. },
  1508. "Type": "BTBoolSlot"
  1509. },
  1510. "isIllegal": true,
  1511. "randomID": "gG4JkjHoTos8",
  1512. "sectionA": {
  1513. "ContainerValue": {
  1514. "Type": "BTNodeShowAction",
  1515. "baseSelect": {
  1516. "DisplayName": "头像框按钮",
  1517. "Type": "Action",
  1518. "Value": "TnU669p8WV4L"
  1519. },
  1520. "isIllegal": true,
  1521. "randomID": "NIeUqCbrL7zn",
  1522. "stepSlot": {
  1523. "ContainerValue": {
  1524. "Type": "BTButtonEnableAction",
  1525. "baseSelect": {
  1526. "DisplayName": "头像框按钮",
  1527. "Type": "Action",
  1528. "Value": "TnU669p8WV4L"
  1529. },
  1530. "enableButton": {
  1531. "Type": "BTCheckBox",
  1532. "isEnable": false
  1533. },
  1534. "isIllegal": true,
  1535. "randomID": "fp7AvVOtF7bo",
  1536. "stepSlot": {
  1537. "ContainerValue": {
  1538. "Type": "BTPlayTimeLineAction",
  1539. "baseSelect": {
  1540. "DisplayName": "常态",
  1541. "Type": "Action",
  1542. "Value": "0"
  1543. },
  1544. "isIllegal": true,
  1545. "randomID": "VcQEDBtgb45b",
  1546. "stepSlot": {
  1547. "ContainerValue": null,
  1548. "Type": "BTStepSlot"
  1549. }
  1550. },
  1551. "Type": "BTStepSlot"
  1552. }
  1553. },
  1554. "Type": "BTStepSlot"
  1555. }
  1556. },
  1557. "Type": "BTSectionSlot"
  1558. },
  1559. "stepSlot": {
  1560. "ContainerValue": null,
  1561. "Type": "BTStepSlot"
  1562. }
  1563. },
  1564. "Type": "BTStepSlot"
  1565. }
  1566. },
  1567. "Type": "BTStepSlot"
  1568. }
  1569. },
  1570. "Type": "BTStepSlot"
  1571. }
  1572. },
  1573. "Type": "BTStepSlot"
  1574. }
  1575. },
  1576. "Type": "BTStepSlot"
  1577. }
  1578. },
  1579. "Type": "BTStepSlot"
  1580. },
  1581. "x": -8.7232511369984,
  1582. "y": 404.7493909024347
  1583. },
  1584. "Tree12": {
  1585. "ExportTree": true,
  1586. "ImageIndex": 1,
  1587. "Name": {
  1588. "Type": "STRING",
  1589. "Value": "更新图片",
  1590. "displayName": ""
  1591. },
  1592. "Type": "BTCustomFuncHeadAction",
  1593. "VarJson": {
  1594. "boolJson": {
  1595. },
  1596. "numberJson": {
  1597. }
  1598. },
  1599. "isIllegal": false,
  1600. "randomID": "OXzwpvZpjmcx",
  1601. "stepSlot": {
  1602. "ContainerValue": {
  1603. "Type": "BTSpritePlistAction",
  1604. "baseSelect": {
  1605. "DisplayName": "头像框用户头像",
  1606. "Type": "Action",
  1607. "Value": "ILGa7ufIZLVU"
  1608. },
  1609. "frameNameInput": {
  1610. "ContainerValue": {
  1611. "Type": "BTCoderVariableAction",
  1612. "VarScope": "Scene",
  1613. "isIllegal": true,
  1614. "randomID": "jovLi0WWsMd5",
  1615. "titleLabel": {
  1616. "Type": "STRING",
  1617. "Value": "P-头像图片",
  1618. "displayName": ""
  1619. }
  1620. },
  1621. "StringValue": {
  1622. "Type": "STRING",
  1623. "Value": "图片名"
  1624. },
  1625. "Type": "BTInputSlot"
  1626. },
  1627. "isIllegal": true,
  1628. "pathInput": {
  1629. "ContainerValue": {
  1630. "Type": "BTCoderVariableAction",
  1631. "VarScope": "Scene",
  1632. "isIllegal": true,
  1633. "randomID": "QIJKZsR695uY",
  1634. "titleLabel": {
  1635. "Type": "STRING",
  1636. "Value": "P-头像Plist",
  1637. "displayName": ""
  1638. }
  1639. },
  1640. "StringValue": {
  1641. "Type": "STRING",
  1642. "Value": "Plist路径"
  1643. },
  1644. "Type": "BTInputSlot"
  1645. },
  1646. "randomID": "LEOorISJKJ6o",
  1647. "stepSlot": {
  1648. "ContainerValue": {
  1649. "Type": "BTSpritePlistAction",
  1650. "baseSelect": {
  1651. "DisplayName": "头像框边框",
  1652. "Type": "Action",
  1653. "Value": "MYAmRPwGAil4"
  1654. },
  1655. "frameNameInput": {
  1656. "ContainerValue": {
  1657. "Type": "BTCoderVariableAction",
  1658. "VarScope": "Scene",
  1659. "isIllegal": true,
  1660. "randomID": "bUrgd6TKocYA",
  1661. "titleLabel": {
  1662. "Type": "STRING",
  1663. "Value": "P-头像框图片",
  1664. "displayName": ""
  1665. }
  1666. },
  1667. "StringValue": {
  1668. "Type": "STRING",
  1669. "Value": "图片名"
  1670. },
  1671. "Type": "BTInputSlot"
  1672. },
  1673. "isIllegal": true,
  1674. "pathInput": {
  1675. "ContainerValue": {
  1676. "Type": "BTCoderVariableAction",
  1677. "VarScope": "Scene",
  1678. "isIllegal": true,
  1679. "randomID": "6i4N2QNu20HQ",
  1680. "titleLabel": {
  1681. "Type": "STRING",
  1682. "Value": "P-公共Plist",
  1683. "displayName": ""
  1684. }
  1685. },
  1686. "StringValue": {
  1687. "Type": "STRING",
  1688. "Value": "Plist路径"
  1689. },
  1690. "Type": "BTInputSlot"
  1691. },
  1692. "randomID": "QPTUonke4tQt",
  1693. "stepSlot": {
  1694. "ContainerValue": null,
  1695. "Type": "BTStepSlot"
  1696. }
  1697. },
  1698. "Type": "BTStepSlot"
  1699. }
  1700. },
  1701. "Type": "BTStepSlot"
  1702. },
  1703. "x": -20.694515733319097,
  1704. "y": 229.09097888874385
  1705. },
  1706. "Tree2": {
  1707. "ExportTree": true,
  1708. "ImageIndex": 12,
  1709. "Name": {
  1710. "Type": "STRING",
  1711. "Value": "测试_点击时选中",
  1712. "displayName": ""
  1713. },
  1714. "Type": "BTCustomFuncHeadAction",
  1715. "VarJson": {
  1716. "boolJson": {
  1717. },
  1718. "numberJson": {
  1719. }
  1720. },
  1721. "isIllegal": false,
  1722. "randomID": "jhtEzR1IqNwH",
  1723. "stepSlot": {
  1724. "ContainerValue": {
  1725. "Type": "BTNotificationToCoderAction",
  1726. "conditionA": {
  1727. "ContainerValue": null,
  1728. "StringValue": {
  1729. "Type": "STRING",
  1730. "Value": "在滚动列表上展示时初始化程序变量"
  1731. },
  1732. "Type": "BTInputSlot"
  1733. },
  1734. "isIllegal": true,
  1735. "randomID": "c3oR6LRYw8DP",
  1736. "stepSlot": {
  1737. "ContainerValue": {
  1738. "Name": {
  1739. "Type": "STRING",
  1740. "Value": "展示页面",
  1741. "displayName": ""
  1742. },
  1743. "Type": "BTCustomFuncBodyAction",
  1744. "funcHeadID": "juf1R3AlXG7R",
  1745. "isIllegal": true,
  1746. "paramArr": [
  1747. ],
  1748. "randomID": "sTHiVL4qS7in",
  1749. "stepSlot": {
  1750. "ContainerValue": null,
  1751. "Type": "BTStepSlot"
  1752. }
  1753. },
  1754. "Type": "BTStepSlot"
  1755. }
  1756. },
  1757. "Type": "BTStepSlot"
  1758. },
  1759. "x": 433,
  1760. "y": 1004
  1761. },
  1762. "Tree3": {
  1763. "ExportTree": true,
  1764. "ImageIndex": 2,
  1765. "Name": {
  1766. "Type": "STRING",
  1767. "Value": "在合集页上展示",
  1768. "displayName": ""
  1769. },
  1770. "Type": "BTCustomFuncHeadAction",
  1771. "VarJson": {
  1772. "boolJson": {
  1773. },
  1774. "numberJson": {
  1775. }
  1776. },
  1777. "isIllegal": false,
  1778. "randomID": "ilh4JiMsEuwk",
  1779. "stepSlot": {
  1780. "ContainerValue": {
  1781. "Type": "BTNotificationToCoderAction",
  1782. "conditionA": {
  1783. "ContainerValue": null,
  1784. "StringValue": {
  1785. "Type": "STRING",
  1786. "Value": "在合集页上展示时初始化程序变量"
  1787. },
  1788. "Type": "BTInputSlot"
  1789. },
  1790. "isIllegal": true,
  1791. "randomID": "bqazR9x88JU0",
  1792. "stepSlot": {
  1793. "ContainerValue": {
  1794. "Name": {
  1795. "Type": "STRING",
  1796. "Value": "展示页面",
  1797. "displayName": ""
  1798. },
  1799. "Type": "BTCustomFuncBodyAction",
  1800. "funcHeadID": "juf1R3AlXG7R",
  1801. "isIllegal": true,
  1802. "paramArr": [
  1803. ],
  1804. "randomID": "uwAnXhiwK3UK",
  1805. "stepSlot": {
  1806. "ContainerValue": null,
  1807. "Type": "BTStepSlot"
  1808. }
  1809. },
  1810. "Type": "BTStepSlot"
  1811. }
  1812. },
  1813. "Type": "BTStepSlot"
  1814. },
  1815. "x": 418.3192030284562,
  1816. "y": 372.1826059385068
  1817. },
  1818. "Tree4": {
  1819. "ExportTree": true,
  1820. "ImageIndex": 6,
  1821. "Name": {
  1822. "Type": "STRING",
  1823. "Value": "在主页上展示",
  1824. "displayName": ""
  1825. },
  1826. "Type": "BTCustomFuncHeadAction",
  1827. "VarJson": {
  1828. "boolJson": {
  1829. },
  1830. "numberJson": {
  1831. }
  1832. },
  1833. "isIllegal": false,
  1834. "randomID": "nhH47Gyv5VUp",
  1835. "stepSlot": {
  1836. "ContainerValue": {
  1837. "Type": "BTNotificationToCoderAction",
  1838. "conditionA": {
  1839. "ContainerValue": null,
  1840. "StringValue": {
  1841. "Type": "STRING",
  1842. "Value": "在主页上展示时初始化程序变量"
  1843. },
  1844. "Type": "BTInputSlot"
  1845. },
  1846. "isIllegal": true,
  1847. "randomID": "5Efj16AnftO2",
  1848. "stepSlot": {
  1849. "ContainerValue": {
  1850. "Name": {
  1851. "Type": "STRING",
  1852. "Value": "展示页面",
  1853. "displayName": ""
  1854. },
  1855. "Type": "BTCustomFuncBodyAction",
  1856. "funcHeadID": "juf1R3AlXG7R",
  1857. "isIllegal": true,
  1858. "paramArr": [
  1859. ],
  1860. "randomID": "SYslB4rX4nNl",
  1861. "stepSlot": {
  1862. "ContainerValue": null,
  1863. "Type": "BTStepSlot"
  1864. }
  1865. },
  1866. "Type": "BTStepSlot"
  1867. }
  1868. },
  1869. "Type": "BTStepSlot"
  1870. },
  1871. "x": 417.42363779442144,
  1872. "y": 509.7432957686384
  1873. },
  1874. "Tree5": {
  1875. "ExportTree": true,
  1876. "ImageIndex": 4,
  1877. "Name": {
  1878. "Type": "STRING",
  1879. "Value": "测试_点击打开个人信息合集页",
  1880. "displayName": ""
  1881. },
  1882. "Type": "BTCustomFuncHeadAction",
  1883. "VarJson": {
  1884. "boolJson": {
  1885. },
  1886. "numberJson": {
  1887. }
  1888. },
  1889. "isIllegal": false,
  1890. "randomID": "1TVRJzwqqGDY",
  1891. "stepSlot": {
  1892. "ContainerValue": {
  1893. "Type": "BTNotificationToCoderAction",
  1894. "conditionA": {
  1895. "ContainerValue": null,
  1896. "StringValue": {
  1897. "Type": "STRING",
  1898. "Value": "在主页上展示时初始化程序变量"
  1899. },
  1900. "Type": "BTInputSlot"
  1901. },
  1902. "isIllegal": true,
  1903. "randomID": "9weSmRVNvkjU",
  1904. "stepSlot": {
  1905. "ContainerValue": {
  1906. "Name": {
  1907. "Type": "STRING",
  1908. "Value": "展示页面",
  1909. "displayName": ""
  1910. },
  1911. "Type": "BTCustomFuncBodyAction",
  1912. "funcHeadID": "juf1R3AlXG7R",
  1913. "isIllegal": true,
  1914. "paramArr": [
  1915. ],
  1916. "randomID": "i5CLCgxDGj79",
  1917. "stepSlot": {
  1918. "ContainerValue": null,
  1919. "Type": "BTStepSlot"
  1920. }
  1921. },
  1922. "Type": "BTStepSlot"
  1923. }
  1924. },
  1925. "Type": "BTStepSlot"
  1926. },
  1927. "x": 468,
  1928. "y": 854
  1929. },
  1930. "Tree6": {
  1931. "ExportTree": true,
  1932. "ImageIndex": 7,
  1933. "Name": {
  1934. "Type": "STRING",
  1935. "Value": "在所有信息页上展示",
  1936. "displayName": ""
  1937. },
  1938. "Type": "BTCustomFuncHeadAction",
  1939. "VarJson": {
  1940. "boolJson": {
  1941. },
  1942. "numberJson": {
  1943. }
  1944. },
  1945. "isIllegal": false,
  1946. "randomID": "ExKpOpZecQ6P",
  1947. "stepSlot": {
  1948. "ContainerValue": {
  1949. "Type": "BTNotificationToCoderAction",
  1950. "conditionA": {
  1951. "ContainerValue": null,
  1952. "StringValue": {
  1953. "Type": "STRING",
  1954. "Value": "在所有信息页上展示时初始化程序变量"
  1955. },
  1956. "Type": "BTInputSlot"
  1957. },
  1958. "isIllegal": true,
  1959. "randomID": "QcNZsDQAYuWU",
  1960. "stepSlot": {
  1961. "ContainerValue": {
  1962. "Name": {
  1963. "Type": "STRING",
  1964. "Value": "展示页面",
  1965. "displayName": ""
  1966. },
  1967. "Type": "BTCustomFuncBodyAction",
  1968. "funcHeadID": "juf1R3AlXG7R",
  1969. "isIllegal": true,
  1970. "paramArr": [
  1971. ],
  1972. "randomID": "MvceDxMCVZDa",
  1973. "stepSlot": {
  1974. "ContainerValue": null,
  1975. "Type": "BTStepSlot"
  1976. }
  1977. },
  1978. "Type": "BTStepSlot"
  1979. }
  1980. },
  1981. "Type": "BTStepSlot"
  1982. },
  1983. "x": 430,
  1984. "y": 204
  1985. },
  1986. "Tree7": {
  1987. "ExportTree": true,
  1988. "ImageIndex": 8,
  1989. "Name": {
  1990. "Type": "STRING",
  1991. "Value": "在滚动列表上展示",
  1992. "displayName": ""
  1993. },
  1994. "Type": "BTCustomFuncHeadAction",
  1995. "VarJson": {
  1996. "boolJson": {
  1997. },
  1998. "numberJson": {
  1999. }
  2000. },
  2001. "isIllegal": false,
  2002. "randomID": "huc99Tbr36Ll",
  2003. "stepSlot": {
  2004. "ContainerValue": {
  2005. "Type": "BTNotificationToCoderAction",
  2006. "conditionA": {
  2007. "ContainerValue": null,
  2008. "StringValue": {
  2009. "Type": "STRING",
  2010. "Value": "在滚动列表上展示时初始化程序变量"
  2011. },
  2012. "Type": "BTInputSlot"
  2013. },
  2014. "isIllegal": true,
  2015. "randomID": "K0297w1co0xw",
  2016. "stepSlot": {
  2017. "ContainerValue": {
  2018. "Name": {
  2019. "Type": "STRING",
  2020. "Value": "展示页面",
  2021. "displayName": ""
  2022. },
  2023. "Type": "BTCustomFuncBodyAction",
  2024. "funcHeadID": "juf1R3AlXG7R",
  2025. "isIllegal": true,
  2026. "paramArr": [
  2027. ],
  2028. "randomID": "WWHV8lymgVHz",
  2029. "stepSlot": {
  2030. "ContainerValue": null,
  2031. "Type": "BTStepSlot"
  2032. }
  2033. },
  2034. "Type": "BTStepSlot"
  2035. }
  2036. },
  2037. "Type": "BTStepSlot"
  2038. },
  2039. "x": 432.959275058994,
  2040. "y": 675.3600312240303
  2041. },
  2042. "Tree8": {
  2043. "ExportTree": true,
  2044. "ImageIndex": 5,
  2045. "Name": {
  2046. "Type": "STRING",
  2047. "Value": "展示页面",
  2048. "displayName": ""
  2049. },
  2050. "Type": "BTCustomFuncHeadAction",
  2051. "VarJson": {
  2052. "boolJson": {
  2053. },
  2054. "numberJson": {
  2055. }
  2056. },
  2057. "isIllegal": false,
  2058. "randomID": "juf1R3AlXG7R",
  2059. "stepSlot": {
  2060. "ContainerValue": {
  2061. "Name": {
  2062. "Type": "STRING",
  2063. "Value": "更新图片",
  2064. "displayName": ""
  2065. },
  2066. "Type": "BTCustomFuncBodyAction",
  2067. "funcHeadID": "OXzwpvZpjmcx",
  2068. "isIllegal": true,
  2069. "paramArr": [
  2070. ],
  2071. "randomID": "qglKEFxKAs2E",
  2072. "stepSlot": {
  2073. "ContainerValue": {
  2074. "Name": {
  2075. "Type": "STRING",
  2076. "Value": "更新按钮状态",
  2077. "displayName": ""
  2078. },
  2079. "Type": "BTCustomFuncBodyAction",
  2080. "funcHeadID": "OXxfgaSIQYvQ",
  2081. "isIllegal": true,
  2082. "paramArr": [
  2083. ],
  2084. "randomID": "9gbA8OY5IO4Y",
  2085. "stepSlot": {
  2086. "ContainerValue": {
  2087. "Type": "BTRedShowAction",
  2088. "baseSelect": {
  2089. "DisplayName": "常态",
  2090. "Type": "Action",
  2091. "Value": "0"
  2092. },
  2093. "isIllegal": true,
  2094. "randomID": "tcHQoEEQAFqv",
  2095. "stepSlot": {
  2096. "ContainerValue": null,
  2097. "Type": "BTStepSlot"
  2098. }
  2099. },
  2100. "Type": "BTStepSlot"
  2101. }
  2102. },
  2103. "Type": "BTStepSlot"
  2104. }
  2105. },
  2106. "Type": "BTStepSlot"
  2107. },
  2108. "x": -12.62446913138993,
  2109. "y": 30.327781258940867
  2110. },
  2111. "Tree9": {
  2112. "ExportTree": true,
  2113. "ImageIndex": 16,
  2114. "Name": {
  2115. "Type": "STRING",
  2116. "Value": "测试_点击时打开编辑页",
  2117. "displayName": ""
  2118. },
  2119. "Type": "BTCustomFuncHeadAction",
  2120. "VarJson": {
  2121. "boolJson": {
  2122. },
  2123. "numberJson": {
  2124. }
  2125. },
  2126. "isIllegal": false,
  2127. "randomID": "B1VZcsMuk8Z3",
  2128. "stepSlot": {
  2129. "ContainerValue": {
  2130. "Type": "BTNotificationToCoderAction",
  2131. "conditionA": {
  2132. "ContainerValue": null,
  2133. "StringValue": {
  2134. "Type": "STRING",
  2135. "Value": "在合集页上展示时初始化程序变量"
  2136. },
  2137. "Type": "BTInputSlot"
  2138. },
  2139. "isIllegal": true,
  2140. "randomID": "Jg9OAo32SX05",
  2141. "stepSlot": {
  2142. "ContainerValue": {
  2143. "Name": {
  2144. "Type": "STRING",
  2145. "Value": "展示页面",
  2146. "displayName": ""
  2147. },
  2148. "Type": "BTCustomFuncBodyAction",
  2149. "funcHeadID": "juf1R3AlXG7R",
  2150. "isIllegal": true,
  2151. "paramArr": [
  2152. ],
  2153. "randomID": "YSE6LmbvRddH",
  2154. "stepSlot": {
  2155. "ContainerValue": null,
  2156. "Type": "BTStepSlot"
  2157. }
  2158. },
  2159. "Type": "BTStepSlot"
  2160. }
  2161. },
  2162. "Type": "BTStepSlot"
  2163. },
  2164. "x": 445,
  2165. "y": 1150
  2166. }
  2167. }
  2168. }
  2169. },
  2170. "RedNoteInfo": {
  2171. },
  2172. "TreeList": {
  2173. "Tree0": {
  2174. "ExportTree": false,
  2175. "ImageIndex": 3,
  2176. "Name": {
  2177. "Type": "STRING",
  2178. "Value": "模拟程序执行",
  2179. "displayName": ""
  2180. },
  2181. "Type": "BTSimulatorAction",
  2182. "VarJson": {
  2183. "boolJson": {
  2184. },
  2185. "numberJson": {
  2186. "参数": "Number",
  2187. "通知名": "Number"
  2188. }
  2189. },
  2190. "isIllegal": false,
  2191. "randomID": "qjkdw1mM7o7x",
  2192. "stepSlot": {
  2193. "ContainerValue": {
  2194. "Type": "BTIFControlAction",
  2195. "conditionA": {
  2196. "ContainerValue": {
  2197. "Type": "BTStringEqualOperatorAction",
  2198. "conditionA": {
  2199. "ContainerValue": {
  2200. "Type": "BTFuncVariableAction",
  2201. "colorName": "Disable",
  2202. "currentStr": "通知名",
  2203. "fatherFuncID": "qjkdw1mM7o7x",
  2204. "isIllegal": true,
  2205. "randomID": "YnglPf5IIi7u",
  2206. "titleLabel": {
  2207. "Type": "STRING",
  2208. "Value": "通知名",
  2209. "displayName": ""
  2210. }
  2211. },
  2212. "StringValue": {
  2213. "Type": "STRING",
  2214. "Value": "Red"
  2215. },
  2216. "Type": "BTInputSlot"
  2217. },
  2218. "conditionB": {
  2219. "ContainerValue": null,
  2220. "StringValue": {
  2221. "Type": "STRING",
  2222. "Value": "初始化程序变量"
  2223. },
  2224. "Type": "BTInputSlot"
  2225. },
  2226. "isIllegal": true,
  2227. "randomID": "0B7J6RQaxXQn"
  2228. },
  2229. "Type": "BTBoolSlot"
  2230. },
  2231. "isIllegal": true,
  2232. "randomID": "pFnTu2wnTeGF",
  2233. "sectionA": {
  2234. "ContainerValue": {
  2235. "TitleInput": {
  2236. "ContainerValue": null,
  2237. "StringValue": {
  2238. "Type": "STRING",
  2239. "Value": "guild_personal_ui.plist"
  2240. },
  2241. "Type": "BTInputSlot"
  2242. },
  2243. "Type": "BTDataCoderVarSetAction",
  2244. "VarScope": "Scene",
  2245. "baseSelect": {
  2246. "DisplayName": "P-主题背景Plist名",
  2247. "Type": "Action",
  2248. "Value": "P-主题背景Plist名"
  2249. },
  2250. "isIllegal": true,
  2251. "randomID": "JL2KpMkNIqrg",
  2252. "stepSlot": {
  2253. "ContainerValue": {
  2254. "TitleInput": {
  2255. "ContainerValue": null,
  2256. "StringValue": {
  2257. "Type": "STRING",
  2258. "Value": "person_tu_oneself_edit_bg.png"
  2259. },
  2260. "Type": "BTInputSlot"
  2261. },
  2262. "Type": "BTDataCoderVarSetAction",
  2263. "VarScope": "Scene",
  2264. "baseSelect": {
  2265. "DisplayName": "P-主题背景图片名",
  2266. "Type": "Action",
  2267. "Value": "P-主题背景图片名"
  2268. },
  2269. "isIllegal": true,
  2270. "randomID": "qe5MYkpnqXVI",
  2271. "stepSlot": {
  2272. "ContainerValue": {
  2273. "TitleInput": {
  2274. "ContainerValue": null,
  2275. "StringValue": {
  2276. "Type": "STRING",
  2277. "Value": "yujizhu"
  2278. },
  2279. "Type": "BTInputSlot"
  2280. },
  2281. "Type": "BTDataCoderVarSetAction",
  2282. "VarScope": "Scene",
  2283. "baseSelect": {
  2284. "DisplayName": "P-用户名",
  2285. "Type": "Action",
  2286. "Value": "P-用户名"
  2287. },
  2288. "isIllegal": true,
  2289. "randomID": "6N0tkO8DRrMb",
  2290. "stepSlot": {
  2291. "ContainerValue": {
  2292. "TitleInput": {
  2293. "ContainerValue": null,
  2294. "StringValue": {
  2295. "Type": "STRING",
  2296. "Value": "灰色"
  2297. },
  2298. "Type": "BTInputSlot"
  2299. },
  2300. "Type": "BTDataCoderVarSetAction",
  2301. "VarScope": "Scene",
  2302. "baseSelect": {
  2303. "DisplayName": "P-按钮状态",
  2304. "Type": "Action",
  2305. "Value": "P-按钮状态"
  2306. },
  2307. "isIllegal": true,
  2308. "randomID": "8iFzrgLumgLM",
  2309. "stepSlot": {
  2310. "ContainerValue": {
  2311. "TitleInput": {
  2312. "ContainerValue": null,
  2313. "StringValue": {
  2314. "Type": "STRING",
  2315. "Value": "是"
  2316. },
  2317. "Type": "BTInputSlot"
  2318. },
  2319. "Type": "BTDataCoderVarSetAction",
  2320. "VarScope": "Scene",
  2321. "baseSelect": {
  2322. "DisplayName": "P-是否可以修改昵称",
  2323. "Type": "Action",
  2324. "Value": "P-是否可以修改昵称"
  2325. },
  2326. "isIllegal": true,
  2327. "randomID": "3k0q9Xh7f84B",
  2328. "stepSlot": {
  2329. "ContainerValue": null,
  2330. "Type": "BTStepSlot"
  2331. }
  2332. },
  2333. "Type": "BTStepSlot"
  2334. }
  2335. },
  2336. "Type": "BTStepSlot"
  2337. }
  2338. },
  2339. "Type": "BTStepSlot"
  2340. }
  2341. },
  2342. "Type": "BTStepSlot"
  2343. }
  2344. },
  2345. "Type": "BTSectionSlot"
  2346. },
  2347. "stepSlot": {
  2348. "ContainerValue": null,
  2349. "Type": "BTStepSlot"
  2350. }
  2351. },
  2352. "Type": "BTStepSlot"
  2353. },
  2354. "x": 637.5175731227796,
  2355. "y": -294.0528903522386
  2356. },
  2357. "Tree1": {
  2358. "ExportTree": true,
  2359. "ImageIndex": -1,
  2360. "Type": "BTButtonClickFuncAction",
  2361. "VarJson": {
  2362. "boolJson": {
  2363. },
  2364. "numberJson": {
  2365. }
  2366. },
  2367. "isIllegal": false,
  2368. "mathSelector": {
  2369. "DisplayName": "关闭页面按钮",
  2370. "Type": "OBJ",
  2371. "Value": "kDsYzgaIw0vV"
  2372. },
  2373. "randomID": "sMVfCN1QtNpB",
  2374. "stepSlot": {
  2375. "ContainerValue": {
  2376. "Type": "BTPlayTimeLineWaitAction",
  2377. "baseSelect": {
  2378. "DisplayName": "关闭",
  2379. "Type": "Action",
  2380. "Value": "1"
  2381. },
  2382. "isIllegal": true,
  2383. "randomID": "LAGcTyM1ZCdw",
  2384. "stepSlot": {
  2385. "ContainerValue": {
  2386. "Type": "BTRedHiddenAction",
  2387. "baseSelect": {
  2388. "DisplayName": "进入",
  2389. "Type": "Action",
  2390. "Value": "0"
  2391. },
  2392. "isIllegal": true,
  2393. "randomID": "cBrc0Zo8s48H",
  2394. "stepSlot": {
  2395. "ContainerValue": {
  2396. "Type": "BTMessageSendAction",
  2397. "baseSelect": {
  2398. "DisplayName": "打开个人信息玩家编辑二次确认",
  2399. "Type": "Action",
  2400. "Value": "W60zjskpFEQt"
  2401. },
  2402. "conditionA": {
  2403. "ContainerValue": null,
  2404. "StringValue": {
  2405. "Type": "STRING",
  2406. "Value": "参数"
  2407. },
  2408. "Type": "BTInputSlot"
  2409. },
  2410. "isIllegal": true,
  2411. "randomID": "LrYJH4ibpBVW",
  2412. "stepSlot": {
  2413. "ContainerValue": {
  2414. "Type": "BTNotificationToCoderAction",
  2415. "conditionA": {
  2416. "ContainerValue": null,
  2417. "StringValue": {
  2418. "Type": "STRING",
  2419. "Value": "关闭玩家所有信息页面"
  2420. },
  2421. "Type": "BTInputSlot"
  2422. },
  2423. "isIllegal": true,
  2424. "randomID": "DeCBQrhJ4R41",
  2425. "stepSlot": {
  2426. "ContainerValue": {
  2427. "Type": "BTNotificationToCoderAction",
  2428. "conditionA": {
  2429. "ContainerValue": null,
  2430. "StringValue": {
  2431. "Type": "STRING",
  2432. "Value": "关闭页面"
  2433. },
  2434. "Type": "BTInputSlot"
  2435. },
  2436. "isIllegal": true,
  2437. "randomID": "qbiLC2yZNJT2",
  2438. "stepSlot": {
  2439. "ContainerValue": null,
  2440. "Type": "BTStepSlot"
  2441. }
  2442. },
  2443. "Type": "BTStepSlot"
  2444. }
  2445. },
  2446. "Type": "BTStepSlot"
  2447. }
  2448. },
  2449. "Type": "BTStepSlot"
  2450. }
  2451. },
  2452. "Type": "BTStepSlot"
  2453. }
  2454. },
  2455. "Type": "BTStepSlot"
  2456. },
  2457. "x": -446,
  2458. "y": -26
  2459. },
  2460. "Tree10": {
  2461. "ExportTree": true,
  2462. "ImageIndex": 10,
  2463. "Name": {
  2464. "Type": "STRING",
  2465. "Value": "刷新页面",
  2466. "displayName": ""
  2467. },
  2468. "Type": "BTCustomFuncHeadAction",
  2469. "VarJson": {
  2470. "boolJson": {
  2471. },
  2472. "numberJson": {
  2473. }
  2474. },
  2475. "isIllegal": false,
  2476. "randomID": "hJ7DfRPmImMf",
  2477. "stepSlot": {
  2478. "ContainerValue": {
  2479. "Type": "BTCallRedCustomFuncBodyAction",
  2480. "baseSelect": {
  2481. "DisplayName": "在所有信息页上展示",
  2482. "Type": "Action",
  2483. "Value": "在所有信息页上展示"
  2484. },
  2485. "funcHeadID": "ExKpOpZecQ6P",
  2486. "isIllegal": true,
  2487. "paramArr": [
  2488. ],
  2489. "randomID": "rvJNc0mNHrVA",
  2490. "redId": "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red",
  2491. "redSelect": {
  2492. "DisplayName": "个人信息_玩家头像",
  2493. "Type": "OBJ",
  2494. "Value": "4La3Gg2k3stt"
  2495. },
  2496. "stepSlot": {
  2497. "ContainerValue": {
  2498. "Name": {
  2499. "Type": "STRING",
  2500. "Value": "更新主题",
  2501. "displayName": ""
  2502. },
  2503. "Type": "BTCustomFuncBodyAction",
  2504. "funcHeadID": "E2mtlYV6tWfm",
  2505. "isIllegal": true,
  2506. "paramArr": [
  2507. ],
  2508. "randomID": "9X3nyM1wLGBU",
  2509. "stepSlot": {
  2510. "ContainerValue": {
  2511. "TitleInput": {
  2512. "ContainerValue": null,
  2513. "StringValue": {
  2514. "Type": "STRING",
  2515. "Value": "Avatar页面"
  2516. },
  2517. "Type": "BTInputSlot"
  2518. },
  2519. "Type": "BTDataVarSetAction",
  2520. "VarScope": "Scene",
  2521. "baseSelect": {
  2522. "DisplayName": "当前滚动页面",
  2523. "Type": "Action",
  2524. "Value": "当前滚动页面"
  2525. },
  2526. "isIllegal": true,
  2527. "randomID": "qZh4er2O2rZ3",
  2528. "stepSlot": {
  2529. "ContainerValue": {
  2530. "Name": {
  2531. "Type": "STRING",
  2532. "Value": "刷新子页面状态",
  2533. "displayName": ""
  2534. },
  2535. "Type": "BTCustomFuncBodyAction",
  2536. "funcHeadID": "ZgXFlxb1ONEb",
  2537. "isIllegal": true,
  2538. "paramArr": [
  2539. ],
  2540. "randomID": "D1esNdA74ONd",
  2541. "stepSlot": {
  2542. "ContainerValue": {
  2543. "Name": {
  2544. "Type": "STRING",
  2545. "Value": "刷新保存按钮状态",
  2546. "displayName": ""
  2547. },
  2548. "Type": "BTCustomFuncBodyAction",
  2549. "funcHeadID": "rGYYqy1BtK10",
  2550. "isIllegal": true,
  2551. "paramArr": [
  2552. ],
  2553. "randomID": "0TDVSxcfasCH",
  2554. "stepSlot": {
  2555. "ContainerValue": {
  2556. "Name": {
  2557. "Type": "STRING",
  2558. "Value": "刷新修改名称状态",
  2559. "displayName": ""
  2560. },
  2561. "Type": "BTCustomFuncBodyAction",
  2562. "funcHeadID": "i4LpVP18EffN",
  2563. "isIllegal": true,
  2564. "paramArr": [
  2565. ],
  2566. "randomID": "9BIDfVthY92o",
  2567. "stepSlot": {
  2568. "ContainerValue": {
  2569. "Name": {
  2570. "Type": "STRING",
  2571. "Value": "刷新关闭按钮显示",
  2572. "displayName": ""
  2573. },
  2574. "Type": "BTCustomFuncBodyAction",
  2575. "funcHeadID": "KxG81bd1nmch",
  2576. "isIllegal": true,
  2577. "paramArr": [
  2578. ],
  2579. "randomID": "ShQ9VFztLZf6",
  2580. "stepSlot": {
  2581. "ContainerValue": {
  2582. "TitleInput": {
  2583. "ContainerValue": {
  2584. "Type": "BTCoderVariableAction",
  2585. "VarScope": "Scene",
  2586. "isIllegal": true,
  2587. "randomID": "eHdlISQwY5km",
  2588. "titleLabel": {
  2589. "Type": "STRING",
  2590. "Value": "P-用户名",
  2591. "displayName": ""
  2592. }
  2593. },
  2594. "StringValue": {
  2595. "Type": "STRING",
  2596. "Value": "填写标题内容"
  2597. },
  2598. "Type": "BTInputSlot"
  2599. },
  2600. "Type": "BTLabelTitleAction",
  2601. "baseSelect": {
  2602. "DisplayName": "用户名",
  2603. "Type": "Action",
  2604. "Value": "ujY0DMA3XFvB"
  2605. },
  2606. "isIllegal": true,
  2607. "randomID": "Y9xCHb5kQySa",
  2608. "stepSlot": {
  2609. "ContainerValue": {
  2610. "Type": "BTRedShowAction",
  2611. "baseSelect": {
  2612. "DisplayName": "进入",
  2613. "Type": "Action",
  2614. "Value": "0"
  2615. },
  2616. "isIllegal": true,
  2617. "randomID": "ymqzQYZJrqJs",
  2618. "stepSlot": {
  2619. "ContainerValue": null,
  2620. "Type": "BTStepSlot"
  2621. }
  2622. },
  2623. "Type": "BTStepSlot"
  2624. }
  2625. },
  2626. "Type": "BTStepSlot"
  2627. }
  2628. },
  2629. "Type": "BTStepSlot"
  2630. }
  2631. },
  2632. "Type": "BTStepSlot"
  2633. }
  2634. },
  2635. "Type": "BTStepSlot"
  2636. }
  2637. },
  2638. "Type": "BTStepSlot"
  2639. }
  2640. },
  2641. "Type": "BTStepSlot"
  2642. }
  2643. },
  2644. "Type": "BTStepSlot"
  2645. }
  2646. },
  2647. "Type": "BTStepSlot"
  2648. },
  2649. "x": 563,
  2650. "y": 223
  2651. },
  2652. "Tree11": {
  2653. "ExportTree": true,
  2654. "ImageIndex": -1,
  2655. "Type": "BTButtonClickFuncAction",
  2656. "VarJson": {
  2657. "boolJson": {
  2658. },
  2659. "numberJson": {
  2660. }
  2661. },
  2662. "isIllegal": false,
  2663. "mathSelector": {
  2664. "DisplayName": "Avatar按钮",
  2665. "Type": "OBJ",
  2666. "Value": "3vAQPvrrzxom"
  2667. },
  2668. "randomID": "1QPyPHaEtdjc",
  2669. "stepSlot": {
  2670. "ContainerValue": {
  2671. "TitleInput": {
  2672. "ContainerValue": null,
  2673. "StringValue": {
  2674. "Type": "STRING",
  2675. "Value": "Avatar页面"
  2676. },
  2677. "Type": "BTInputSlot"
  2678. },
  2679. "Type": "BTDataVarSetAction",
  2680. "VarScope": "Scene",
  2681. "baseSelect": {
  2682. "DisplayName": "当前滚动页面",
  2683. "Type": "Action",
  2684. "Value": "当前滚动页面"
  2685. },
  2686. "isIllegal": true,
  2687. "randomID": "OrZlgw9QH0tn",
  2688. "stepSlot": {
  2689. "ContainerValue": {
  2690. "Name": {
  2691. "Type": "STRING",
  2692. "Value": "刷新子页面状态",
  2693. "displayName": ""
  2694. },
  2695. "Type": "BTCustomFuncBodyAction",
  2696. "funcHeadID": "ZgXFlxb1ONEb",
  2697. "isIllegal": true,
  2698. "paramArr": [
  2699. ],
  2700. "randomID": "P3PRm00OYhR5",
  2701. "stepSlot": {
  2702. "ContainerValue": null,
  2703. "Type": "BTStepSlot"
  2704. }
  2705. },
  2706. "Type": "BTStepSlot"
  2707. }
  2708. },
  2709. "Type": "BTStepSlot"
  2710. },
  2711. "x": -446,
  2712. "y": 882
  2713. },
  2714. "Tree12": {
  2715. "ExportTree": true,
  2716. "ImageIndex": 6,
  2717. "Name": {
  2718. "Type": "STRING",
  2719. "Value": "设置程序节点",
  2720. "displayName": ""
  2721. },
  2722. "Type": "BTCustomFuncHeadAction",
  2723. "VarJson": {
  2724. "boolJson": {
  2725. },
  2726. "numberJson": {
  2727. }
  2728. },
  2729. "isIllegal": false,
  2730. "randomID": "hrrlglH4rcOR",
  2731. "stepSlot": {
  2732. "ContainerValue": {
  2733. "Type": "BTNotificationNodeToCoderAction",
  2734. "baseSelect": {
  2735. "DisplayName": "滚动区域上",
  2736. "Type": "Action",
  2737. "Value": "a6pd9AkFKEzp"
  2738. },
  2739. "conditionA": {
  2740. "ContainerValue": null,
  2741. "StringValue": {
  2742. "Type": "STRING",
  2743. "Value": "设置程序节点"
  2744. },
  2745. "Type": "BTInputSlot"
  2746. },
  2747. "isIllegal": true,
  2748. "paramA": {
  2749. "ContainerValue": null,
  2750. "StringValue": {
  2751. "Type": "STRING",
  2752. "Value": "滚动区域上"
  2753. },
  2754. "Type": "BTInputSlot"
  2755. },
  2756. "randomID": "C1JGY3S6hvSF",
  2757. "stepSlot": {
  2758. "ContainerValue": {
  2759. "Type": "BTNotificationNodeToCoderAction",
  2760. "baseSelect": {
  2761. "DisplayName": "滚动区域下",
  2762. "Type": "Action",
  2763. "Value": "zF2OGGY93KzL"
  2764. },
  2765. "conditionA": {
  2766. "ContainerValue": null,
  2767. "StringValue": {
  2768. "Type": "STRING",
  2769. "Value": "设置程序节点"
  2770. },
  2771. "Type": "BTInputSlot"
  2772. },
  2773. "isIllegal": true,
  2774. "paramA": {
  2775. "ContainerValue": null,
  2776. "StringValue": {
  2777. "Type": "STRING",
  2778. "Value": "滚动区域下"
  2779. },
  2780. "Type": "BTInputSlot"
  2781. },
  2782. "randomID": "KrQVqb4xKUqd",
  2783. "stepSlot": {
  2784. "ContainerValue": {
  2785. "Type": "BTNotificationNodeToCoderAction",
  2786. "baseSelect": {
  2787. "DisplayName": "Avatar列表滚动区域",
  2788. "Type": "Action",
  2789. "Value": "Rab67Rme3WKM"
  2790. },
  2791. "conditionA": {
  2792. "ContainerValue": null,
  2793. "StringValue": {
  2794. "Type": "STRING",
  2795. "Value": "设置程序节点"
  2796. },
  2797. "Type": "BTInputSlot"
  2798. },
  2799. "isIllegal": true,
  2800. "paramA": {
  2801. "ContainerValue": null,
  2802. "StringValue": {
  2803. "Type": "STRING",
  2804. "Value": "Avatar列表滚动区域"
  2805. },
  2806. "Type": "BTInputSlot"
  2807. },
  2808. "randomID": "JMDTlyW2WPfH",
  2809. "stepSlot": {
  2810. "ContainerValue": {
  2811. "Type": "BTNotificationNodeToCoderAction",
  2812. "baseSelect": {
  2813. "DisplayName": "Frame列表滚动区域",
  2814. "Type": "Action",
  2815. "Value": "mFH3FkfG6AiZ"
  2816. },
  2817. "conditionA": {
  2818. "ContainerValue": null,
  2819. "StringValue": {
  2820. "Type": "STRING",
  2821. "Value": "设置程序节点"
  2822. },
  2823. "Type": "BTInputSlot"
  2824. },
  2825. "isIllegal": true,
  2826. "paramA": {
  2827. "ContainerValue": null,
  2828. "StringValue": {
  2829. "Type": "STRING",
  2830. "Value": "Frame列表滚动区域"
  2831. },
  2832. "Type": "BTInputSlot"
  2833. },
  2834. "randomID": "ZXCd5uPHERr9",
  2835. "stepSlot": {
  2836. "ContainerValue": {
  2837. "Type": "BTNotificationNodeToCoderAction",
  2838. "baseSelect": {
  2839. "DisplayName": "Theme列表滚动区域",
  2840. "Type": "Action",
  2841. "Value": "wcliOdjgF1r3"
  2842. },
  2843. "conditionA": {
  2844. "ContainerValue": null,
  2845. "StringValue": {
  2846. "Type": "STRING",
  2847. "Value": "设置程序节点"
  2848. },
  2849. "Type": "BTInputSlot"
  2850. },
  2851. "isIllegal": true,
  2852. "paramA": {
  2853. "ContainerValue": null,
  2854. "StringValue": {
  2855. "Type": "STRING",
  2856. "Value": "Theme列表滚动区域"
  2857. },
  2858. "Type": "BTInputSlot"
  2859. },
  2860. "randomID": "mMvQPDxikwd9",
  2861. "stepSlot": {
  2862. "ContainerValue": {
  2863. "Type": "BTNotificationNodeToCoderAction",
  2864. "baseSelect": {
  2865. "DisplayName": "个人信息_玩家头像",
  2866. "Type": "Action",
  2867. "Value": "4La3Gg2k3stt"
  2868. },
  2869. "conditionA": {
  2870. "ContainerValue": null,
  2871. "StringValue": {
  2872. "Type": "STRING",
  2873. "Value": "设置程序节点"
  2874. },
  2875. "Type": "BTInputSlot"
  2876. },
  2877. "isIllegal": true,
  2878. "paramA": {
  2879. "ContainerValue": null,
  2880. "StringValue": {
  2881. "Type": "STRING",
  2882. "Value": "个人信息_玩家头像"
  2883. },
  2884. "Type": "BTInputSlot"
  2885. },
  2886. "randomID": "ZRBIji7qheT8",
  2887. "stepSlot": {
  2888. "ContainerValue": {
  2889. "Type": "BTNotificationNodeToCoderAction",
  2890. "baseSelect": {
  2891. "DisplayName": "用户名",
  2892. "Type": "Action",
  2893. "Value": "ujY0DMA3XFvB"
  2894. },
  2895. "conditionA": {
  2896. "ContainerValue": null,
  2897. "StringValue": {
  2898. "Type": "STRING",
  2899. "Value": "设置程序节点"
  2900. },
  2901. "Type": "BTInputSlot"
  2902. },
  2903. "isIllegal": true,
  2904. "paramA": {
  2905. "ContainerValue": null,
  2906. "StringValue": {
  2907. "Type": "STRING",
  2908. "Value": "用户名"
  2909. },
  2910. "Type": "BTInputSlot"
  2911. },
  2912. "randomID": "EMTbCo0DCqje",
  2913. "stepSlot": {
  2914. "ContainerValue": null,
  2915. "Type": "BTStepSlot"
  2916. }
  2917. },
  2918. "Type": "BTStepSlot"
  2919. }
  2920. },
  2921. "Type": "BTStepSlot"
  2922. }
  2923. },
  2924. "Type": "BTStepSlot"
  2925. }
  2926. },
  2927. "Type": "BTStepSlot"
  2928. }
  2929. },
  2930. "Type": "BTStepSlot"
  2931. }
  2932. },
  2933. "Type": "BTStepSlot"
  2934. }
  2935. },
  2936. "Type": "BTStepSlot"
  2937. },
  2938. "x": -98.56691465368237,
  2939. "y": -312.00354882133587
  2940. },
  2941. "Tree13": {
  2942. "ExportTree": true,
  2943. "ImageIndex": -1,
  2944. "Type": "BTButtonClickFuncAction",
  2945. "VarJson": {
  2946. "boolJson": {
  2947. },
  2948. "numberJson": {
  2949. }
  2950. },
  2951. "isIllegal": false,
  2952. "mathSelector": {
  2953. "DisplayName": "修改昵称按钮",
  2954. "Type": "OBJ",
  2955. "Value": "AlNDKkufF1bz"
  2956. },
  2957. "randomID": "bFl3IKZsqjoC",
  2958. "stepSlot": {
  2959. "ContainerValue": {
  2960. "Type": "BTMessageSendAction",
  2961. "baseSelect": {
  2962. "DisplayName": "打开个人信息玩家编辑修改昵称",
  2963. "Type": "Action",
  2964. "Value": "ouip58m0SZlu"
  2965. },
  2966. "conditionA": {
  2967. "ContainerValue": null,
  2968. "StringValue": {
  2969. "Type": "STRING",
  2970. "Value": "参数"
  2971. },
  2972. "Type": "BTInputSlot"
  2973. },
  2974. "isIllegal": true,
  2975. "randomID": "kNKoDQVV2Q1R",
  2976. "stepSlot": {
  2977. "ContainerValue": {
  2978. "Type": "BTNotificationToCoderAction",
  2979. "conditionA": {
  2980. "ContainerValue": null,
  2981. "StringValue": {
  2982. "Type": "STRING",
  2983. "Value": "点击修改昵称按钮"
  2984. },
  2985. "Type": "BTInputSlot"
  2986. },
  2987. "isIllegal": true,
  2988. "randomID": "NUiDhwGwLWh8",
  2989. "stepSlot": {
  2990. "ContainerValue": {
  2991. "Type": "BTRedHiddenAction",
  2992. "baseSelect": {
  2993. "DisplayName": "进入",
  2994. "Type": "Action",
  2995. "Value": "0"
  2996. },
  2997. "isIllegal": true,
  2998. "randomID": "rOSyidWvhGGn",
  2999. "stepSlot": {
  3000. "ContainerValue": {
  3001. "Type": "BTNotificationToCoderAction",
  3002. "conditionA": {
  3003. "ContainerValue": null,
  3004. "StringValue": {
  3005. "Type": "STRING",
  3006. "Value": "关闭页面"
  3007. },
  3008. "Type": "BTInputSlot"
  3009. },
  3010. "isIllegal": true,
  3011. "randomID": "OQUysLCCLyAT",
  3012. "stepSlot": {
  3013. "ContainerValue": null,
  3014. "Type": "BTStepSlot"
  3015. }
  3016. },
  3017. "Type": "BTStepSlot"
  3018. }
  3019. },
  3020. "Type": "BTStepSlot"
  3021. }
  3022. },
  3023. "Type": "BTStepSlot"
  3024. }
  3025. },
  3026. "Type": "BTStepSlot"
  3027. },
  3028. "x": -587.482090270242,
  3029. "y": 210.12649247747984
  3030. },
  3031. "Tree14": {
  3032. "ExportTree": true,
  3033. "ImageIndex": -1,
  3034. "Type": "BTButtonClickFuncAction",
  3035. "VarJson": {
  3036. "boolJson": {
  3037. },
  3038. "numberJson": {
  3039. }
  3040. },
  3041. "isIllegal": false,
  3042. "mathSelector": {
  3043. "DisplayName": "灰色按钮",
  3044. "Type": "OBJ",
  3045. "Value": "WJceJlHiSnhM"
  3046. },
  3047. "randomID": "SzWqPnFVYgoQ",
  3048. "stepSlot": {
  3049. "ContainerValue": {
  3050. "Type": "BTNotificationToCoderWithParamAction",
  3051. "conditionA": {
  3052. "ContainerValue": null,
  3053. "StringValue": {
  3054. "Type": "STRING",
  3055. "Value": "点击灰色按钮"
  3056. },
  3057. "Type": "BTInputSlot"
  3058. },
  3059. "isIllegal": true,
  3060. "paramA": {
  3061. "ContainerValue": null,
  3062. "StringValue": {
  3063. "Type": "STRING",
  3064. "Value": ""
  3065. },
  3066. "Type": "BTInputSlot"
  3067. },
  3068. "randomID": "X7DXyQAvvPwM",
  3069. "stepSlot": {
  3070. "ContainerValue": null,
  3071. "Type": "BTStepSlot"
  3072. }
  3073. },
  3074. "Type": "BTStepSlot"
  3075. },
  3076. "x": -454,
  3077. "y": 516
  3078. },
  3079. "Tree15": {
  3080. "ExportTree": true,
  3081. "ImageIndex": -1,
  3082. "Type": "BTButtonClickFuncAction",
  3083. "VarJson": {
  3084. "boolJson": {
  3085. },
  3086. "numberJson": {
  3087. }
  3088. },
  3089. "isIllegal": false,
  3090. "mathSelector": {
  3091. "DisplayName": "保存按钮",
  3092. "Type": "OBJ",
  3093. "Value": "1d7qm6NiB4kV"
  3094. },
  3095. "randomID": "m9ziZTJjdkNt",
  3096. "stepSlot": {
  3097. "ContainerValue": {
  3098. "Type": "BTPlayTimeLineWaitAction",
  3099. "baseSelect": {
  3100. "DisplayName": "关闭",
  3101. "Type": "Action",
  3102. "Value": "1"
  3103. },
  3104. "isIllegal": true,
  3105. "randomID": "nb54g5J2ynb7",
  3106. "stepSlot": {
  3107. "ContainerValue": {
  3108. "Type": "BTRedHiddenAction",
  3109. "baseSelect": {
  3110. "DisplayName": "进入",
  3111. "Type": "Action",
  3112. "Value": "0"
  3113. },
  3114. "isIllegal": true,
  3115. "randomID": "0LWwOELqhdP7",
  3116. "stepSlot": {
  3117. "ContainerValue": {
  3118. "Type": "BTNotificationToCoderWithParamAction",
  3119. "conditionA": {
  3120. "ContainerValue": null,
  3121. "StringValue": {
  3122. "Type": "STRING",
  3123. "Value": "点击保存按钮"
  3124. },
  3125. "Type": "BTInputSlot"
  3126. },
  3127. "isIllegal": true,
  3128. "paramA": {
  3129. "ContainerValue": null,
  3130. "StringValue": {
  3131. "Type": "STRING",
  3132. "Value": ""
  3133. },
  3134. "Type": "BTInputSlot"
  3135. },
  3136. "randomID": "73BjD1iw0oDh",
  3137. "stepSlot": {
  3138. "ContainerValue": {
  3139. "Type": "BTNotificationToCoderAction",
  3140. "conditionA": {
  3141. "ContainerValue": null,
  3142. "StringValue": {
  3143. "Type": "STRING",
  3144. "Value": "关闭页面"
  3145. },
  3146. "Type": "BTInputSlot"
  3147. },
  3148. "isIllegal": true,
  3149. "randomID": "FyykympczeJO",
  3150. "stepSlot": {
  3151. "ContainerValue": null,
  3152. "Type": "BTStepSlot"
  3153. }
  3154. },
  3155. "Type": "BTStepSlot"
  3156. }
  3157. },
  3158. "Type": "BTStepSlot"
  3159. }
  3160. },
  3161. "Type": "BTStepSlot"
  3162. }
  3163. },
  3164. "Type": "BTStepSlot"
  3165. },
  3166. "x": -370.3559458568141,
  3167. "y": 324.5134122530642
  3168. },
  3169. "Tree16": {
  3170. "ExportTree": true,
  3171. "ImageIndex": -1,
  3172. "Type": "BTButtonClickFuncAction",
  3173. "VarJson": {
  3174. "boolJson": {
  3175. },
  3176. "numberJson": {
  3177. }
  3178. },
  3179. "isIllegal": false,
  3180. "mathSelector": {
  3181. "DisplayName": "空白区域按钮",
  3182. "Type": "OBJ",
  3183. "Value": "GsKCO9VpoPAz"
  3184. },
  3185. "randomID": "DrdJZkOygRJN",
  3186. "stepSlot": {
  3187. "ContainerValue": {
  3188. "Type": "BTPlayTimeLineWaitAction",
  3189. "baseSelect": {
  3190. "DisplayName": "关闭",
  3191. "Type": "Action",
  3192. "Value": "1"
  3193. },
  3194. "isIllegal": true,
  3195. "randomID": "fnDz0RmQRnss",
  3196. "stepSlot": {
  3197. "ContainerValue": {
  3198. "Type": "BTRedHiddenAction",
  3199. "baseSelect": {
  3200. "DisplayName": "进入",
  3201. "Type": "Action",
  3202. "Value": "0"
  3203. },
  3204. "isIllegal": true,
  3205. "randomID": "rM0OSzCBGUre",
  3206. "stepSlot": {
  3207. "ContainerValue": {
  3208. "Type": "BTMessageSendAction",
  3209. "baseSelect": {
  3210. "DisplayName": "打开个人信息玩家编辑二次确认",
  3211. "Type": "Action",
  3212. "Value": "W60zjskpFEQt"
  3213. },
  3214. "conditionA": {
  3215. "ContainerValue": null,
  3216. "StringValue": {
  3217. "Type": "STRING",
  3218. "Value": "参数"
  3219. },
  3220. "Type": "BTInputSlot"
  3221. },
  3222. "isIllegal": true,
  3223. "randomID": "ExMAKXZWo27j",
  3224. "stepSlot": {
  3225. "ContainerValue": {
  3226. "Type": "BTNotificationToCoderWithParamAction",
  3227. "conditionA": {
  3228. "ContainerValue": null,
  3229. "StringValue": {
  3230. "Type": "STRING",
  3231. "Value": "点击空白区域"
  3232. },
  3233. "Type": "BTInputSlot"
  3234. },
  3235. "isIllegal": true,
  3236. "paramA": {
  3237. "ContainerValue": null,
  3238. "StringValue": {
  3239. "Type": "STRING",
  3240. "Value": ""
  3241. },
  3242. "Type": "BTInputSlot"
  3243. },
  3244. "randomID": "GZPvOlbKq5yZ",
  3245. "stepSlot": {
  3246. "ContainerValue": {
  3247. "Type": "BTNotificationToCoderAction",
  3248. "conditionA": {
  3249. "ContainerValue": null,
  3250. "StringValue": {
  3251. "Type": "STRING",
  3252. "Value": "关闭页面"
  3253. },
  3254. "Type": "BTInputSlot"
  3255. },
  3256. "isIllegal": true,
  3257. "randomID": "bKEvY1rzuwZA",
  3258. "stepSlot": {
  3259. "ContainerValue": null,
  3260. "Type": "BTStepSlot"
  3261. }
  3262. },
  3263. "Type": "BTStepSlot"
  3264. }
  3265. },
  3266. "Type": "BTStepSlot"
  3267. }
  3268. },
  3269. "Type": "BTStepSlot"
  3270. }
  3271. },
  3272. "Type": "BTStepSlot"
  3273. }
  3274. },
  3275. "Type": "BTStepSlot"
  3276. },
  3277. "x": -441,
  3278. "y": 638
  3279. },
  3280. "Tree2": {
  3281. "ExportTree": true,
  3282. "ImageIndex": 5,
  3283. "Name": {
  3284. "Type": "STRING",
  3285. "Value": "更新主题",
  3286. "displayName": ""
  3287. },
  3288. "Type": "BTCustomFuncHeadAction",
  3289. "VarJson": {
  3290. "boolJson": {
  3291. },
  3292. "numberJson": {
  3293. }
  3294. },
  3295. "isIllegal": false,
  3296. "randomID": "E2mtlYV6tWfm",
  3297. "stepSlot": {
  3298. "ContainerValue": {
  3299. "Type": "BTSpritePlistAction",
  3300. "baseSelect": {
  3301. "DisplayName": "主题背景",
  3302. "Type": "Action",
  3303. "Value": "cMyrQDRNfqMk"
  3304. },
  3305. "frameNameInput": {
  3306. "ContainerValue": {
  3307. "Type": "BTCoderVariableAction",
  3308. "VarScope": "Scene",
  3309. "isIllegal": true,
  3310. "randomID": "JcfR12esEDt5",
  3311. "titleLabel": {
  3312. "Type": "STRING",
  3313. "Value": "P-主题背景图片名",
  3314. "displayName": ""
  3315. }
  3316. },
  3317. "StringValue": {
  3318. "Type": "STRING",
  3319. "Value": "图片名"
  3320. },
  3321. "Type": "BTInputSlot"
  3322. },
  3323. "isIllegal": true,
  3324. "pathInput": {
  3325. "ContainerValue": {
  3326. "Type": "BTCoderVariableAction",
  3327. "VarScope": "Scene",
  3328. "isIllegal": true,
  3329. "randomID": "GiPrCT2xfMyL",
  3330. "titleLabel": {
  3331. "Type": "STRING",
  3332. "Value": "P-主题背景Plist名",
  3333. "displayName": ""
  3334. }
  3335. },
  3336. "StringValue": {
  3337. "Type": "STRING",
  3338. "Value": "Plist路径"
  3339. },
  3340. "Type": "BTInputSlot"
  3341. },
  3342. "randomID": "9IZYUJzS4HX8",
  3343. "stepSlot": {
  3344. "ContainerValue": null,
  3345. "Type": "BTStepSlot"
  3346. }
  3347. },
  3348. "Type": "BTStepSlot"
  3349. },
  3350. "x": -75,
  3351. "y": 362
  3352. },
  3353. "Tree3": {
  3354. "ExportTree": true,
  3355. "ImageIndex": 8,
  3356. "Name": {
  3357. "Type": "STRING",
  3358. "Value": "刷新关闭按钮显示",
  3359. "displayName": ""
  3360. },
  3361. "Type": "BTCustomFuncHeadAction",
  3362. "VarJson": {
  3363. "boolJson": {
  3364. },
  3365. "numberJson": {
  3366. }
  3367. },
  3368. "isIllegal": false,
  3369. "randomID": "KxG81bd1nmch",
  3370. "stepSlot": {
  3371. "ContainerValue": {
  3372. "Type": "BTNodeHiddenAction",
  3373. "baseSelect": {
  3374. "DisplayName": "关闭页面按钮",
  3375. "Type": "Action",
  3376. "Value": "kDsYzgaIw0vV"
  3377. },
  3378. "isIllegal": true,
  3379. "randomID": "qU9iEFadRpwm",
  3380. "stepSlot": {
  3381. "ContainerValue": {
  3382. "Type": "BTNodeHiddenAction",
  3383. "baseSelect": {
  3384. "DisplayName": "空白区域按钮",
  3385. "Type": "Action",
  3386. "Value": "GsKCO9VpoPAz"
  3387. },
  3388. "isIllegal": true,
  3389. "randomID": "tkfsoiMQ6EnH",
  3390. "stepSlot": {
  3391. "ContainerValue": {
  3392. "Type": "BTIFControlAction",
  3393. "conditionA": {
  3394. "ContainerValue": {
  3395. "Type": "BTStringEqualOperatorAction",
  3396. "conditionA": {
  3397. "ContainerValue": {
  3398. "Type": "BTCoderVariableAction",
  3399. "VarScope": "Scene",
  3400. "isIllegal": true,
  3401. "randomID": "RM7lWTzs1LvK",
  3402. "titleLabel": {
  3403. "Type": "STRING",
  3404. "Value": "P-是否首次进入",
  3405. "displayName": ""
  3406. }
  3407. },
  3408. "StringValue": {
  3409. "Type": "STRING",
  3410. "Value": "Red"
  3411. },
  3412. "Type": "BTInputSlot"
  3413. },
  3414. "conditionB": {
  3415. "ContainerValue": null,
  3416. "StringValue": {
  3417. "Type": "STRING",
  3418. "Value": "是"
  3419. },
  3420. "Type": "BTInputSlot"
  3421. },
  3422. "isIllegal": true,
  3423. "randomID": "xHENOeqBPS3m"
  3424. },
  3425. "Type": "BTBoolSlot"
  3426. },
  3427. "isIllegal": true,
  3428. "randomID": "b3aJPh1fuoUj",
  3429. "sectionA": {
  3430. "ContainerValue": {
  3431. "Type": "BTNodeHiddenAction",
  3432. "baseSelect": {
  3433. "DisplayName": "关闭页面按钮",
  3434. "Type": "Action",
  3435. "Value": "kDsYzgaIw0vV"
  3436. },
  3437. "isIllegal": true,
  3438. "randomID": "Etvjef6d6RyY",
  3439. "stepSlot": {
  3440. "ContainerValue": {
  3441. "Type": "BTNodeHiddenAction",
  3442. "baseSelect": {
  3443. "DisplayName": "空白区域按钮",
  3444. "Type": "Action",
  3445. "Value": "GsKCO9VpoPAz"
  3446. },
  3447. "isIllegal": true,
  3448. "randomID": "jmsfchBwUlvm",
  3449. "stepSlot": {
  3450. "ContainerValue": null,
  3451. "Type": "BTStepSlot"
  3452. }
  3453. },
  3454. "Type": "BTStepSlot"
  3455. }
  3456. },
  3457. "Type": "BTSectionSlot"
  3458. },
  3459. "stepSlot": {
  3460. "ContainerValue": {
  3461. "Type": "BTIFControlAction",
  3462. "conditionA": {
  3463. "ContainerValue": {
  3464. "Type": "BTStringEqualOperatorAction",
  3465. "conditionA": {
  3466. "ContainerValue": {
  3467. "Type": "BTCoderVariableAction",
  3468. "VarScope": "Scene",
  3469. "isIllegal": true,
  3470. "randomID": "TM0bTUWvbv1e",
  3471. "titleLabel": {
  3472. "Type": "STRING",
  3473. "Value": "P-是否首次进入",
  3474. "displayName": ""
  3475. }
  3476. },
  3477. "StringValue": {
  3478. "Type": "STRING",
  3479. "Value": "Red"
  3480. },
  3481. "Type": "BTInputSlot"
  3482. },
  3483. "conditionB": {
  3484. "ContainerValue": null,
  3485. "StringValue": {
  3486. "Type": "STRING",
  3487. "Value": "否"
  3488. },
  3489. "Type": "BTInputSlot"
  3490. },
  3491. "isIllegal": true,
  3492. "randomID": "zvt9mVFuQtGp"
  3493. },
  3494. "Type": "BTBoolSlot"
  3495. },
  3496. "isIllegal": true,
  3497. "randomID": "zeohsg6iJ5Dm",
  3498. "sectionA": {
  3499. "ContainerValue": {
  3500. "Type": "BTNodeShowAction",
  3501. "baseSelect": {
  3502. "DisplayName": "关闭页面按钮",
  3503. "Type": "Action",
  3504. "Value": "kDsYzgaIw0vV"
  3505. },
  3506. "isIllegal": true,
  3507. "randomID": "kdJIDABfoYbx",
  3508. "stepSlot": {
  3509. "ContainerValue": {
  3510. "Type": "BTNodeShowAction",
  3511. "baseSelect": {
  3512. "DisplayName": "空白区域按钮",
  3513. "Type": "Action",
  3514. "Value": "GsKCO9VpoPAz"
  3515. },
  3516. "isIllegal": true,
  3517. "randomID": "B7qvqXZQ8UVD",
  3518. "stepSlot": {
  3519. "ContainerValue": null,
  3520. "Type": "BTStepSlot"
  3521. }
  3522. },
  3523. "Type": "BTStepSlot"
  3524. }
  3525. },
  3526. "Type": "BTSectionSlot"
  3527. },
  3528. "stepSlot": {
  3529. "ContainerValue": null,
  3530. "Type": "BTStepSlot"
  3531. }
  3532. },
  3533. "Type": "BTStepSlot"
  3534. }
  3535. },
  3536. "Type": "BTStepSlot"
  3537. }
  3538. },
  3539. "Type": "BTStepSlot"
  3540. }
  3541. },
  3542. "Type": "BTStepSlot"
  3543. },
  3544. "x": 367,
  3545. "y": 1148
  3546. },
  3547. "Tree4": {
  3548. "ExportTree": true,
  3549. "ImageIndex": 2,
  3550. "Name": {
  3551. "Type": "STRING",
  3552. "Value": "展示页面",
  3553. "displayName": ""
  3554. },
  3555. "Type": "BTCustomFuncHeadAction",
  3556. "VarJson": {
  3557. "boolJson": {
  3558. },
  3559. "numberJson": {
  3560. }
  3561. },
  3562. "isIllegal": false,
  3563. "randomID": "wYulzblxx99h",
  3564. "stepSlot": {
  3565. "ContainerValue": {
  3566. "Type": "BTNotificationToCoderAction",
  3567. "conditionA": {
  3568. "ContainerValue": null,
  3569. "StringValue": {
  3570. "Type": "STRING",
  3571. "Value": "初始化程序变量"
  3572. },
  3573. "Type": "BTInputSlot"
  3574. },
  3575. "isIllegal": true,
  3576. "randomID": "FTTKZPR8ttHZ",
  3577. "stepSlot": {
  3578. "ContainerValue": {
  3579. "Type": "BTCallRedCustomFuncBodyAction",
  3580. "baseSelect": {
  3581. "DisplayName": "在所有信息页上展示",
  3582. "Type": "Action",
  3583. "Value": "在所有信息页上展示"
  3584. },
  3585. "funcHeadID": "ExKpOpZecQ6P",
  3586. "isIllegal": true,
  3587. "paramArr": [
  3588. ],
  3589. "randomID": "KMDoBOoDwEiw",
  3590. "redId": "/Users/yujizhu/Documents/Git/RedTools/res_guild/team/ccb/ui/个人信息_玩家头像框.red",
  3591. "redSelect": {
  3592. "DisplayName": "个人信息_玩家头像",
  3593. "Type": "OBJ",
  3594. "Value": "4La3Gg2k3stt"
  3595. },
  3596. "stepSlot": {
  3597. "ContainerValue": {
  3598. "Name": {
  3599. "Type": "STRING",
  3600. "Value": "更新主题",
  3601. "displayName": ""
  3602. },
  3603. "Type": "BTCustomFuncBodyAction",
  3604. "funcHeadID": "E2mtlYV6tWfm",
  3605. "isIllegal": true,
  3606. "paramArr": [
  3607. ],
  3608. "randomID": "OrCqpXeP9onF",
  3609. "stepSlot": {
  3610. "ContainerValue": {
  3611. "TitleInput": {
  3612. "ContainerValue": null,
  3613. "StringValue": {
  3614. "Type": "STRING",
  3615. "Value": "Avatar页面"
  3616. },
  3617. "Type": "BTInputSlot"
  3618. },
  3619. "Type": "BTDataVarSetAction",
  3620. "VarScope": "Scene",
  3621. "baseSelect": {
  3622. "DisplayName": "当前滚动页面",
  3623. "Type": "Action",
  3624. "Value": "当前滚动页面"
  3625. },
  3626. "isIllegal": true,
  3627. "randomID": "nPdpBE4V4dAY",
  3628. "stepSlot": {
  3629. "ContainerValue": {
  3630. "Name": {
  3631. "Type": "STRING",
  3632. "Value": "刷新子页面状态",
  3633. "displayName": ""
  3634. },
  3635. "Type": "BTCustomFuncBodyAction",
  3636. "funcHeadID": "ZgXFlxb1ONEb",
  3637. "isIllegal": true,
  3638. "paramArr": [
  3639. ],
  3640. "randomID": "Q8UDPikaleGP",
  3641. "stepSlot": {
  3642. "ContainerValue": {
  3643. "Name": {
  3644. "Type": "STRING",
  3645. "Value": "刷新保存按钮状态",
  3646. "displayName": ""
  3647. },
  3648. "Type": "BTCustomFuncBodyAction",
  3649. "funcHeadID": "rGYYqy1BtK10",
  3650. "isIllegal": true,
  3651. "paramArr": [
  3652. ],
  3653. "randomID": "Pmcpj4wqItMX",
  3654. "stepSlot": {
  3655. "ContainerValue": {
  3656. "Name": {
  3657. "Type": "STRING",
  3658. "Value": "刷新修改名称状态",
  3659. "displayName": ""
  3660. },
  3661. "Type": "BTCustomFuncBodyAction",
  3662. "funcHeadID": "i4LpVP18EffN",
  3663. "isIllegal": true,
  3664. "paramArr": [
  3665. ],
  3666. "randomID": "3ghge9LF76ZD",
  3667. "stepSlot": {
  3668. "ContainerValue": {
  3669. "Name": {
  3670. "Type": "STRING",
  3671. "Value": "刷新关闭按钮显示",
  3672. "displayName": ""
  3673. },
  3674. "Type": "BTCustomFuncBodyAction",
  3675. "funcHeadID": "KxG81bd1nmch",
  3676. "isIllegal": true,
  3677. "paramArr": [
  3678. ],
  3679. "randomID": "Zt5cYOw7dmJH",
  3680. "stepSlot": {
  3681. "ContainerValue": {
  3682. "TitleInput": {
  3683. "ContainerValue": {
  3684. "Type": "BTCoderVariableAction",
  3685. "VarScope": "Scene",
  3686. "isIllegal": true,
  3687. "randomID": "nFSS7Xp576lT",
  3688. "titleLabel": {
  3689. "Type": "STRING",
  3690. "Value": "P-用户名",
  3691. "displayName": ""
  3692. }
  3693. },
  3694. "StringValue": {
  3695. "Type": "STRING",
  3696. "Value": "填写标题内容"
  3697. },
  3698. "Type": "BTInputSlot"
  3699. },
  3700. "Type": "BTLabelTitleAction",
  3701. "baseSelect": {
  3702. "DisplayName": "用户名",
  3703. "Type": "Action",
  3704. "Value": "ujY0DMA3XFvB"
  3705. },
  3706. "isIllegal": true,
  3707. "randomID": "rqA840f7VY8X",
  3708. "stepSlot": {
  3709. "ContainerValue": {
  3710. "Type": "BTRedShowAction",
  3711. "baseSelect": {
  3712. "DisplayName": "进入",
  3713. "Type": "Action",
  3714. "Value": "0"
  3715. },
  3716. "isIllegal": true,
  3717. "randomID": "Cyef3vS7KK21",
  3718. "stepSlot": {
  3719. "ContainerValue": {
  3720. "Type": "BTPlayTimeLineWaitAction",
  3721. "baseSelect": {
  3722. "DisplayName": "进入",
  3723. "Type": "Action",
  3724. "Value": "0"
  3725. },
  3726. "isIllegal": true,
  3727. "randomID": "Pt5aVJU7ts2M",
  3728. "stepSlot": {
  3729. "ContainerValue": null,
  3730. "Type": "BTStepSlot"
  3731. }
  3732. },
  3733. "Type": "BTStepSlot"
  3734. }
  3735. },
  3736. "Type": "BTStepSlot"
  3737. }
  3738. },
  3739. "Type": "BTStepSlot"
  3740. }
  3741. },
  3742. "Type": "BTStepSlot"
  3743. }
  3744. },
  3745. "Type": "BTStepSlot"
  3746. }
  3747. },
  3748. "Type": "BTStepSlot"
  3749. }
  3750. },
  3751. "Type": "BTStepSlot"
  3752. }
  3753. },
  3754. "Type": "BTStepSlot"
  3755. }
  3756. },
  3757. "Type": "BTStepSlot"
  3758. }
  3759. },
  3760. "Type": "BTStepSlot"
  3761. }
  3762. },
  3763. "Type": "BTStepSlot"
  3764. },
  3765. "x": -85,
  3766. "y": -43
  3767. },
  3768. "Tree5": {
  3769. "ExportTree": true,
  3770. "ImageIndex": 1,
  3771. "Name": {
  3772. "Type": "STRING",
  3773. "Value": "刷新子页面状态",
  3774. "displayName": ""
  3775. },
  3776. "Type": "BTCustomFuncHeadAction",
  3777. "VarJson": {
  3778. "boolJson": {
  3779. },
  3780. "numberJson": {
  3781. }
  3782. },
  3783. "isIllegal": false,
  3784. "randomID": "ZgXFlxb1ONEb",
  3785. "stepSlot": {
  3786. "ContainerValue": {
  3787. "Type": "BTNodeHiddenAction",
  3788. "baseSelect": {
  3789. "DisplayName": "Avatar列表滚动区域",
  3790. "Type": "Action",
  3791. "Value": "Rab67Rme3WKM"
  3792. },
  3793. "isIllegal": true,
  3794. "randomID": "fk6xWbymf0r5",
  3795. "stepSlot": {
  3796. "ContainerValue": {
  3797. "Type": "BTNodeHiddenAction",
  3798. "baseSelect": {
  3799. "DisplayName": "Frame列表滚动区域",
  3800. "Type": "Action",
  3801. "Value": "mFH3FkfG6AiZ"
  3802. },
  3803. "isIllegal": true,
  3804. "randomID": "K3s4q6ng4K0k",
  3805. "stepSlot": {
  3806. "ContainerValue": {
  3807. "Type": "BTNodeHiddenAction",
  3808. "baseSelect": {
  3809. "DisplayName": "Theme列表滚动区域",
  3810. "Type": "Action",
  3811. "Value": "wcliOdjgF1r3"
  3812. },
  3813. "isIllegal": true,
  3814. "randomID": "NU42vL7B6z28",
  3815. "stepSlot": {
  3816. "ContainerValue": {
  3817. "Type": "BTSpritePlistAction",
  3818. "baseSelect": {
  3819. "DisplayName": "Avatar按钮背景图",
  3820. "Type": "Action",
  3821. "Value": "PZEfs5jEacaQ"
  3822. },
  3823. "frameNameInput": {
  3824. "ContainerValue": null,
  3825. "StringValue": {
  3826. "Type": "STRING",
  3827. "Value": "person_tu_btn_edit_l_dark.png"
  3828. },
  3829. "Type": "BTInputSlot"
  3830. },
  3831. "isIllegal": true,
  3832. "pathInput": {
  3833. "ContainerValue": null,
  3834. "StringValue": {
  3835. "Type": "STRING",
  3836. "Value": "guild_personal_ui.plist"
  3837. },
  3838. "Type": "BTInputSlot"
  3839. },
  3840. "randomID": "GPQOeNjAaQQJ",
  3841. "stepSlot": {
  3842. "ContainerValue": {
  3843. "Type": "BTSpritePlistAction",
  3844. "baseSelect": {
  3845. "DisplayName": "Frame按钮背景图",
  3846. "Type": "Action",
  3847. "Value": "afFu4SF3sRQL"
  3848. },
  3849. "frameNameInput": {
  3850. "ContainerValue": null,
  3851. "StringValue": {
  3852. "Type": "STRING",
  3853. "Value": "person_tu_btn_edit_m_dark.png"
  3854. },
  3855. "Type": "BTInputSlot"
  3856. },
  3857. "isIllegal": true,
  3858. "pathInput": {
  3859. "ContainerValue": null,
  3860. "StringValue": {
  3861. "Type": "STRING",
  3862. "Value": "guild_personal_ui.plist"
  3863. },
  3864. "Type": "BTInputSlot"
  3865. },
  3866. "randomID": "wra5KwZRLj0v",
  3867. "stepSlot": {
  3868. "ContainerValue": {
  3869. "Type": "BTSpritePlistAction",
  3870. "baseSelect": {
  3871. "DisplayName": "Theme按钮背景图",
  3872. "Type": "Action",
  3873. "Value": "9vb6kGfgmbxN"
  3874. },
  3875. "frameNameInput": {
  3876. "ContainerValue": null,
  3877. "StringValue": {
  3878. "Type": "STRING",
  3879. "Value": "person_tu_btn_edit_l_dark.png"
  3880. },
  3881. "Type": "BTInputSlot"
  3882. },
  3883. "isIllegal": true,
  3884. "pathInput": {
  3885. "ContainerValue": null,
  3886. "StringValue": {
  3887. "Type": "STRING",
  3888. "Value": "guild_personal_ui.plist"
  3889. },
  3890. "Type": "BTInputSlot"
  3891. },
  3892. "randomID": "3H70Lkj7zX2d",
  3893. "stepSlot": {
  3894. "ContainerValue": {
  3895. "Type": "BTIFControlAction",
  3896. "conditionA": {
  3897. "ContainerValue": {
  3898. "Type": "BTStringEqualOperatorAction",
  3899. "conditionA": {
  3900. "ContainerValue": {
  3901. "Type": "BTVariableAction",
  3902. "VarScope": "Scene",
  3903. "isIllegal": true,
  3904. "randomID": "Z7z6e6wCUlXM",
  3905. "titleLabel": {
  3906. "Type": "STRING",
  3907. "Value": "当前滚动页面",
  3908. "displayName": ""
  3909. }
  3910. },
  3911. "StringValue": {
  3912. "Type": "STRING",
  3913. "Value": "Red"
  3914. },
  3915. "Type": "BTInputSlot"
  3916. },
  3917. "conditionB": {
  3918. "ContainerValue": null,
  3919. "StringValue": {
  3920. "Type": "STRING",
  3921. "Value": "Avatar页面"
  3922. },
  3923. "Type": "BTInputSlot"
  3924. },
  3925. "isIllegal": true,
  3926. "randomID": "wSgiV8jiuQs1"
  3927. },
  3928. "Type": "BTBoolSlot"
  3929. },
  3930. "isIllegal": true,
  3931. "randomID": "zWGz7i0P6pRQ",
  3932. "sectionA": {
  3933. "ContainerValue": {
  3934. "Type": "BTNodeShowAction",
  3935. "baseSelect": {
  3936. "DisplayName": "Avatar列表滚动区域",
  3937. "Type": "Action",
  3938. "Value": "Rab67Rme3WKM"
  3939. },
  3940. "isIllegal": true,
  3941. "randomID": "4q3dU2RthRum",
  3942. "stepSlot": {
  3943. "ContainerValue": {
  3944. "Type": "BTSpritePlistAction",
  3945. "baseSelect": {
  3946. "DisplayName": "Avatar按钮背景图",
  3947. "Type": "Action",
  3948. "Value": "PZEfs5jEacaQ"
  3949. },
  3950. "frameNameInput": {
  3951. "ContainerValue": null,
  3952. "StringValue": {
  3953. "Type": "STRING",
  3954. "Value": "person_tu_btn_edit_l_bright.png"
  3955. },
  3956. "Type": "BTInputSlot"
  3957. },
  3958. "isIllegal": true,
  3959. "pathInput": {
  3960. "ContainerValue": null,
  3961. "StringValue": {
  3962. "Type": "STRING",
  3963. "Value": "guild_personal_ui.plist"
  3964. },
  3965. "Type": "BTInputSlot"
  3966. },
  3967. "randomID": "SYzitKXVmAL0",
  3968. "stepSlot": {
  3969. "ContainerValue": null,
  3970. "Type": "BTStepSlot"
  3971. }
  3972. },
  3973. "Type": "BTStepSlot"
  3974. }
  3975. },
  3976. "Type": "BTSectionSlot"
  3977. },
  3978. "stepSlot": {
  3979. "ContainerValue": {
  3980. "Type": "BTIFControlAction",
  3981. "conditionA": {
  3982. "ContainerValue": {
  3983. "Type": "BTStringEqualOperatorAction",
  3984. "conditionA": {
  3985. "ContainerValue": {
  3986. "Type": "BTVariableAction",
  3987. "VarScope": "Scene",
  3988. "isIllegal": true,
  3989. "randomID": "t8HvcTubpmfr",
  3990. "titleLabel": {
  3991. "Type": "STRING",
  3992. "Value": "当前滚动页面",
  3993. "displayName": ""
  3994. }
  3995. },
  3996. "StringValue": {
  3997. "Type": "STRING",
  3998. "Value": "Red"
  3999. },
  4000. "Type": "BTInputSlot"
  4001. },
  4002. "conditionB": {
  4003. "ContainerValue": null,
  4004. "StringValue": {
  4005. "Type": "STRING",
  4006. "Value": "Frame页面"
  4007. },
  4008. "Type": "BTInputSlot"
  4009. },
  4010. "isIllegal": true,
  4011. "randomID": "4pbTJeauEoRH"
  4012. },
  4013. "Type": "BTBoolSlot"
  4014. },
  4015. "isIllegal": true,
  4016. "randomID": "x9hlsxlQO2CC",
  4017. "sectionA": {
  4018. "ContainerValue": {
  4019. "Type": "BTNodeShowAction",
  4020. "baseSelect": {
  4021. "DisplayName": "Frame列表滚动区域",
  4022. "Type": "Action",
  4023. "Value": "mFH3FkfG6AiZ"
  4024. },
  4025. "isIllegal": true,
  4026. "randomID": "AcmgLlVCWdTY",
  4027. "stepSlot": {
  4028. "ContainerValue": {
  4029. "Type": "BTSpritePlistAction",
  4030. "baseSelect": {
  4031. "DisplayName": "Frame按钮背景图",
  4032. "Type": "Action",
  4033. "Value": "afFu4SF3sRQL"
  4034. },
  4035. "frameNameInput": {
  4036. "ContainerValue": null,
  4037. "StringValue": {
  4038. "Type": "STRING",
  4039. "Value": "person_tu_btn_edit_m_bright.png"
  4040. },
  4041. "Type": "BTInputSlot"
  4042. },
  4043. "isIllegal": true,
  4044. "pathInput": {
  4045. "ContainerValue": null,
  4046. "StringValue": {
  4047. "Type": "STRING",
  4048. "Value": "guild_personal_ui.plist"
  4049. },
  4050. "Type": "BTInputSlot"
  4051. },
  4052. "randomID": "a4fM8s8u2fd8",
  4053. "stepSlot": {
  4054. "ContainerValue": null,
  4055. "Type": "BTStepSlot"
  4056. }
  4057. },
  4058. "Type": "BTStepSlot"
  4059. }
  4060. },
  4061. "Type": "BTSectionSlot"
  4062. },
  4063. "stepSlot": {
  4064. "ContainerValue": {
  4065. "Type": "BTIFControlAction",
  4066. "conditionA": {
  4067. "ContainerValue": {
  4068. "Type": "BTStringEqualOperatorAction",
  4069. "conditionA": {
  4070. "ContainerValue": {
  4071. "Type": "BTVariableAction",
  4072. "VarScope": "Scene",
  4073. "isIllegal": true,
  4074. "randomID": "QT18GAVWLk46",
  4075. "titleLabel": {
  4076. "Type": "STRING",
  4077. "Value": "当前滚动页面",
  4078. "displayName": ""
  4079. }
  4080. },
  4081. "StringValue": {
  4082. "Type": "STRING",
  4083. "Value": "Red"
  4084. },
  4085. "Type": "BTInputSlot"
  4086. },
  4087. "conditionB": {
  4088. "ContainerValue": null,
  4089. "StringValue": {
  4090. "Type": "STRING",
  4091. "Value": "Theme页面"
  4092. },
  4093. "Type": "BTInputSlot"
  4094. },
  4095. "isIllegal": true,
  4096. "randomID": "EVvB0TfWhT7k"
  4097. },
  4098. "Type": "BTBoolSlot"
  4099. },
  4100. "isIllegal": true,
  4101. "randomID": "iEQW56oscmie",
  4102. "sectionA": {
  4103. "ContainerValue": {
  4104. "Type": "BTNodeShowAction",
  4105. "baseSelect": {
  4106. "DisplayName": "Theme列表滚动区域",
  4107. "Type": "Action",
  4108. "Value": "wcliOdjgF1r3"
  4109. },
  4110. "isIllegal": true,
  4111. "randomID": "k1M68fdjnK9Z",
  4112. "stepSlot": {
  4113. "ContainerValue": {
  4114. "Type": "BTSpritePlistAction",
  4115. "baseSelect": {
  4116. "DisplayName": "Theme按钮背景图",
  4117. "Type": "Action",
  4118. "Value": "9vb6kGfgmbxN"
  4119. },
  4120. "frameNameInput": {
  4121. "ContainerValue": null,
  4122. "StringValue": {
  4123. "Type": "STRING",
  4124. "Value": "person_tu_btn_edit_l_bright.png"
  4125. },
  4126. "Type": "BTInputSlot"
  4127. },
  4128. "isIllegal": true,
  4129. "pathInput": {
  4130. "ContainerValue": null,
  4131. "StringValue": {
  4132. "Type": "STRING",
  4133. "Value": "guild_personal_ui.plist"
  4134. },
  4135. "Type": "BTInputSlot"
  4136. },
  4137. "randomID": "Nlbqsouz3mgA",
  4138. "stepSlot": {
  4139. "ContainerValue": null,
  4140. "Type": "BTStepSlot"
  4141. }
  4142. },
  4143. "Type": "BTStepSlot"
  4144. }
  4145. },
  4146. "Type": "BTSectionSlot"
  4147. },
  4148. "stepSlot": {
  4149. "ContainerValue": null,
  4150. "Type": "BTStepSlot"
  4151. }
  4152. },
  4153. "Type": "BTStepSlot"
  4154. }
  4155. },
  4156. "Type": "BTStepSlot"
  4157. }
  4158. },
  4159. "Type": "BTStepSlot"
  4160. }
  4161. },
  4162. "Type": "BTStepSlot"
  4163. }
  4164. },
  4165. "Type": "BTStepSlot"
  4166. }
  4167. },
  4168. "Type": "BTStepSlot"
  4169. }
  4170. },
  4171. "Type": "BTStepSlot"
  4172. }
  4173. },
  4174. "Type": "BTStepSlot"
  4175. }
  4176. },
  4177. "Type": "BTStepSlot"
  4178. },
  4179. "x": -62,
  4180. "y": 473
  4181. },
  4182. "Tree6": {
  4183. "ExportTree": true,
  4184. "ImageIndex": 4,
  4185. "Name": {
  4186. "Type": "STRING",
  4187. "Value": "刷新保存按钮状态",
  4188. "displayName": ""
  4189. },
  4190. "Type": "BTCustomFuncHeadAction",
  4191. "VarJson": {
  4192. "boolJson": {
  4193. },
  4194. "numberJson": {
  4195. }
  4196. },
  4197. "isIllegal": false,
  4198. "randomID": "rGYYqy1BtK10",
  4199. "stepSlot": {
  4200. "ContainerValue": {
  4201. "Type": "BTNodeHiddenAction",
  4202. "baseSelect": {
  4203. "DisplayName": "灰色按钮",
  4204. "Type": "Action",
  4205. "Value": "WJceJlHiSnhM"
  4206. },
  4207. "isIllegal": true,
  4208. "randomID": "DWYVkrfYOHWo",
  4209. "stepSlot": {
  4210. "ContainerValue": {
  4211. "Type": "BTNodeHiddenAction",
  4212. "baseSelect": {
  4213. "DisplayName": "保存按钮",
  4214. "Type": "Action",
  4215. "Value": "1d7qm6NiB4kV"
  4216. },
  4217. "isIllegal": true,
  4218. "randomID": "Ll3cBWzVUlaX",
  4219. "stepSlot": {
  4220. "ContainerValue": {
  4221. "Type": "BTIFControlAction",
  4222. "conditionA": {
  4223. "ContainerValue": {
  4224. "Type": "BTStringEqualOperatorAction",
  4225. "conditionA": {
  4226. "ContainerValue": {
  4227. "Type": "BTCoderVariableAction",
  4228. "VarScope": "Scene",
  4229. "isIllegal": true,
  4230. "randomID": "pdU4uW6MjqBA",
  4231. "titleLabel": {
  4232. "Type": "STRING",
  4233. "Value": "P-按钮状态",
  4234. "displayName": ""
  4235. }
  4236. },
  4237. "StringValue": {
  4238. "Type": "STRING",
  4239. "Value": "Red"
  4240. },
  4241. "Type": "BTInputSlot"
  4242. },
  4243. "conditionB": {
  4244. "ContainerValue": null,
  4245. "StringValue": {
  4246. "Type": "STRING",
  4247. "Value": "绿色"
  4248. },
  4249. "Type": "BTInputSlot"
  4250. },
  4251. "isIllegal": true,
  4252. "randomID": "WaGIkKkzZPJx"
  4253. },
  4254. "Type": "BTBoolSlot"
  4255. },
  4256. "isIllegal": true,
  4257. "randomID": "myfvvf5X5gpN",
  4258. "sectionA": {
  4259. "ContainerValue": {
  4260. "Type": "BTNodeShowAction",
  4261. "baseSelect": {
  4262. "DisplayName": "保存按钮",
  4263. "Type": "Action",
  4264. "Value": "1d7qm6NiB4kV"
  4265. },
  4266. "isIllegal": true,
  4267. "randomID": "KA9pKMW3YiXV",
  4268. "stepSlot": {
  4269. "ContainerValue": null,
  4270. "Type": "BTStepSlot"
  4271. }
  4272. },
  4273. "Type": "BTSectionSlot"
  4274. },
  4275. "stepSlot": {
  4276. "ContainerValue": {
  4277. "Type": "BTIFControlAction",
  4278. "conditionA": {
  4279. "ContainerValue": {
  4280. "Type": "BTStringEqualOperatorAction",
  4281. "conditionA": {
  4282. "ContainerValue": {
  4283. "Type": "BTCoderVariableAction",
  4284. "VarScope": "Scene",
  4285. "isIllegal": true,
  4286. "randomID": "f39If9rYM2nq",
  4287. "titleLabel": {
  4288. "Type": "STRING",
  4289. "Value": "P-按钮状态",
  4290. "displayName": ""
  4291. }
  4292. },
  4293. "StringValue": {
  4294. "Type": "STRING",
  4295. "Value": "Red"
  4296. },
  4297. "Type": "BTInputSlot"
  4298. },
  4299. "conditionB": {
  4300. "ContainerValue": null,
  4301. "StringValue": {
  4302. "Type": "STRING",
  4303. "Value": "灰色"
  4304. },
  4305. "Type": "BTInputSlot"
  4306. },
  4307. "isIllegal": true,
  4308. "randomID": "U0HlB4ewR3Ao"
  4309. },
  4310. "Type": "BTBoolSlot"
  4311. },
  4312. "isIllegal": true,
  4313. "randomID": "bSz6KUEmYxmd",
  4314. "sectionA": {
  4315. "ContainerValue": {
  4316. "Type": "BTNodeShowAction",
  4317. "baseSelect": {
  4318. "DisplayName": "灰色按钮",
  4319. "Type": "Action",
  4320. "Value": "WJceJlHiSnhM"
  4321. },
  4322. "isIllegal": true,
  4323. "randomID": "iGkTRD5XX2fy",
  4324. "stepSlot": {
  4325. "ContainerValue": null,
  4326. "Type": "BTStepSlot"
  4327. }
  4328. },
  4329. "Type": "BTSectionSlot"
  4330. },
  4331. "stepSlot": {
  4332. "ContainerValue": null,
  4333. "Type": "BTStepSlot"
  4334. }
  4335. },
  4336. "Type": "BTStepSlot"
  4337. }
  4338. },
  4339. "Type": "BTStepSlot"
  4340. }
  4341. },
  4342. "Type": "BTStepSlot"
  4343. }
  4344. },
  4345. "Type": "BTStepSlot"
  4346. },
  4347. "x": -59,
  4348. "y": 1154
  4349. },
  4350. "Tree7": {
  4351. "ExportTree": true,
  4352. "ImageIndex": 9,
  4353. "Name": {
  4354. "Type": "STRING",
  4355. "Value": "刷新修改名称状态",
  4356. "displayName": ""
  4357. },
  4358. "Type": "BTCustomFuncHeadAction",
  4359. "VarJson": {
  4360. "boolJson": {
  4361. },
  4362. "numberJson": {
  4363. }
  4364. },
  4365. "isIllegal": false,
  4366. "randomID": "i4LpVP18EffN",
  4367. "stepSlot": {
  4368. "ContainerValue": {
  4369. "Type": "BTIFElseControlAction",
  4370. "conditionA": {
  4371. "ContainerValue": {
  4372. "Type": "BTStringEqualOperatorAction",
  4373. "conditionA": {
  4374. "ContainerValue": {
  4375. "Type": "BTCoderVariableAction",
  4376. "VarScope": "Scene",
  4377. "isIllegal": true,
  4378. "randomID": "lWT9fHn99euk",
  4379. "titleLabel": {
  4380. "Type": "STRING",
  4381. "Value": "P-是否可以修改昵称",
  4382. "displayName": ""
  4383. }
  4384. },
  4385. "StringValue": {
  4386. "Type": "STRING",
  4387. "Value": "Red"
  4388. },
  4389. "Type": "BTInputSlot"
  4390. },
  4391. "conditionB": {
  4392. "ContainerValue": null,
  4393. "StringValue": {
  4394. "Type": "STRING",
  4395. "Value": "是"
  4396. },
  4397. "Type": "BTInputSlot"
  4398. },
  4399. "isIllegal": true,
  4400. "randomID": "DIaPl47BK0k7"
  4401. },
  4402. "Type": "BTBoolSlot"
  4403. },
  4404. "isIllegal": true,
  4405. "randomID": "ION0uttNykdJ",
  4406. "sectionA": {
  4407. "ContainerValue": {
  4408. "Type": "BTNodeShowAction",
  4409. "baseSelect": {
  4410. "DisplayName": "修改昵称按钮",
  4411. "Type": "Action",
  4412. "Value": "AlNDKkufF1bz"
  4413. },
  4414. "isIllegal": true,
  4415. "randomID": "trSRhoKzLFnO",
  4416. "stepSlot": {
  4417. "ContainerValue": null,
  4418. "Type": "BTStepSlot"
  4419. }
  4420. },
  4421. "Type": "BTSectionSlot"
  4422. },
  4423. "sectionB": {
  4424. "ContainerValue": {
  4425. "Type": "BTNodeHiddenAction",
  4426. "baseSelect": {
  4427. "DisplayName": "修改昵称按钮",
  4428. "Type": "Action",
  4429. "Value": "AlNDKkufF1bz"
  4430. },
  4431. "isIllegal": true,
  4432. "randomID": "a2pVcQ2SoyK4",
  4433. "stepSlot": {
  4434. "ContainerValue": null,
  4435. "Type": "BTStepSlot"
  4436. }
  4437. },
  4438. "Type": "BTSectionSlot"
  4439. },
  4440. "stepSlot": {
  4441. "ContainerValue": null,
  4442. "Type": "BTStepSlot"
  4443. }
  4444. },
  4445. "Type": "BTStepSlot"
  4446. },
  4447. "x": 588,
  4448. "y": -3
  4449. },
  4450. "Tree8": {
  4451. "ExportTree": true,
  4452. "ImageIndex": -1,
  4453. "Type": "BTButtonClickFuncAction",
  4454. "VarJson": {
  4455. "boolJson": {
  4456. },
  4457. "numberJson": {
  4458. }
  4459. },
  4460. "isIllegal": false,
  4461. "mathSelector": {
  4462. "DisplayName": "Theme按钮",
  4463. "Type": "OBJ",
  4464. "Value": "1FcgKNKOioe5"
  4465. },
  4466. "randomID": "2CPiEAohhUT2",
  4467. "stepSlot": {
  4468. "ContainerValue": {
  4469. "TitleInput": {
  4470. "ContainerValue": null,
  4471. "StringValue": {
  4472. "Type": "STRING",
  4473. "Value": "Theme页面"
  4474. },
  4475. "Type": "BTInputSlot"
  4476. },
  4477. "Type": "BTDataVarSetAction",
  4478. "VarScope": "Scene",
  4479. "baseSelect": {
  4480. "DisplayName": "当前滚动页面",
  4481. "Type": "Action",
  4482. "Value": "当前滚动页面"
  4483. },
  4484. "isIllegal": true,
  4485. "randomID": "TJkBnqCPzvMV",
  4486. "stepSlot": {
  4487. "ContainerValue": {
  4488. "Name": {
  4489. "Type": "STRING",
  4490. "Value": "刷新子页面状态",
  4491. "displayName": ""
  4492. },
  4493. "Type": "BTCustomFuncBodyAction",
  4494. "funcHeadID": "ZgXFlxb1ONEb",
  4495. "isIllegal": true,
  4496. "paramArr": [
  4497. ],
  4498. "randomID": "c4kbyPrYItrJ",
  4499. "stepSlot": {
  4500. "ContainerValue": null,
  4501. "Type": "BTStepSlot"
  4502. }
  4503. },
  4504. "Type": "BTStepSlot"
  4505. }
  4506. },
  4507. "Type": "BTStepSlot"
  4508. },
  4509. "x": -443,
  4510. "y": 1163
  4511. },
  4512. "Tree9": {
  4513. "ExportTree": true,
  4514. "ImageIndex": -1,
  4515. "Type": "BTButtonClickFuncAction",
  4516. "VarJson": {
  4517. "boolJson": {
  4518. },
  4519. "numberJson": {
  4520. }
  4521. },
  4522. "isIllegal": false,
  4523. "mathSelector": {
  4524. "DisplayName": "Frame按钮",
  4525. "Type": "OBJ",
  4526. "Value": "Lnd6DlZNVQwI"
  4527. },
  4528. "randomID": "oGZaLYSVy44P",
  4529. "stepSlot": {
  4530. "ContainerValue": {
  4531. "TitleInput": {
  4532. "ContainerValue": null,
  4533. "StringValue": {
  4534. "Type": "STRING",
  4535. "Value": "Frame页面"
  4536. },
  4537. "Type": "BTInputSlot"
  4538. },
  4539. "Type": "BTDataVarSetAction",
  4540. "VarScope": "Scene",
  4541. "baseSelect": {
  4542. "DisplayName": "当前滚动页面",
  4543. "Type": "Action",
  4544. "Value": "当前滚动页面"
  4545. },
  4546. "isIllegal": true,
  4547. "randomID": "g8WgHop5NBRH",
  4548. "stepSlot": {
  4549. "ContainerValue": {
  4550. "Name": {
  4551. "Type": "STRING",
  4552. "Value": "刷新子页面状态",
  4553. "displayName": ""
  4554. },
  4555. "Type": "BTCustomFuncBodyAction",
  4556. "funcHeadID": "ZgXFlxb1ONEb",
  4557. "isIllegal": true,
  4558. "paramArr": [
  4559. ],
  4560. "randomID": "lUKm3JDqWeEo",
  4561. "stepSlot": {
  4562. "ContainerValue": null,
  4563. "Type": "BTStepSlot"
  4564. }
  4565. },
  4566. "Type": "BTStepSlot"
  4567. }
  4568. },
  4569. "Type": "BTStepSlot"
  4570. },
  4571. "x": -446,
  4572. "y": 1039
  4573. }
  4574. }
  4575. }