卡片收集系统_浮层界面_引导教程.rebolt 298 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284
  1. {
  2. "CustomFunc": {
  3. "新手引导教程界面": [
  4. [
  5. "Name",
  6. "新手引导教程界面",
  7. "StKzW6M8u4p6",
  8. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_浮层界面_引导教程.red"
  9. ],
  10. [
  11. "BTInputSlot",
  12. "教学类型"
  13. ]
  14. ],
  15. "更新教程专用合集节点信息": [
  16. [
  17. "Name",
  18. "更新教程专用合集节点信息",
  19. "DA2a6kka9Uyf",
  20. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_浮层界面_引导教程.red"
  21. ]
  22. ]
  23. },
  24. "CustomList": {
  25. },
  26. "CustomMessage": {
  27. "Hello Red": 1
  28. },
  29. "CustomTestFunc": {
  30. },
  31. "CustomVar": {
  32. "P-Plist图集": 0,
  33. "P-Plist图集2": 0,
  34. "P-合集名称": 0,
  35. "P-合集名称框": 0,
  36. "P-合集图标": 0,
  37. "P-合集图标框": 0,
  38. "P-合集教程_坐标X": 0,
  39. "P-合集教程_坐标Y": 0,
  40. "P-合集红点数量": 0
  41. },
  42. "DisPlayName": "卡片收集系统_浮层界面_引导教程",
  43. "RedFileList": {
  44. "b872zFReZKk4": {
  45. "CustomFunc": {
  46. "卡片收集反馈动画": [
  47. [
  48. "Name",
  49. "卡片收集反馈动画",
  50. "Ll4BAADMjgYF",
  51. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_合集节点.red"
  52. ]
  53. ],
  54. "合集节点": [
  55. [
  56. "Name",
  57. "合集节点",
  58. "bfzw2PWHXvpD",
  59. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_合集节点.red"
  60. ]
  61. ],
  62. "更新卡片收集进度": [
  63. [
  64. "Name",
  65. "更新卡片收集进度",
  66. "FD747giWdokm",
  67. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_合集节点.red"
  68. ]
  69. ],
  70. "更新合集信息": [
  71. [
  72. "Name",
  73. "更新合集信息",
  74. "tbqaTiZWBztq",
  75. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_合集节点.red"
  76. ]
  77. ],
  78. "更新红点状态": [
  79. [
  80. "Name",
  81. "更新红点状态",
  82. "roqUUka2DpDF",
  83. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_合集节点.red"
  84. ]
  85. ],
  86. "程序初始化": [
  87. [
  88. "Name",
  89. "程序初始化",
  90. "nSUwCbhILihe",
  91. "/Users/yujizhu/Documents/Git/Puzzle/PzTemplate/Resources/CollectModule-Res/ccb/卡片收集系统_合集节点.red"
  92. ]
  93. ],
  94. "进度条增长动画": [
  95. [
  96. "Name",
  97. "进度条增长动画",
  98. "21BByki3ZH5p",
  99. "/Users/yanhao/Desktop/work/CollectModule-Res/ccb/卡片收集系统_合集节点.red"
  100. ]
  101. ]
  102. },
  103. "CustomList": {
  104. },
  105. "CustomTestFunc": {
  106. "测试": ""
  107. },
  108. "CustomVar": {
  109. "P-Plist图集": 0,
  110. "P-Plist图集2": 0,
  111. "P-合集名称": 0,
  112. "P-合集名称框": 0,
  113. "P-合集图标": 0,
  114. "P-合集图标框": 0,
  115. "P-合集红点数": 0,
  116. "P-合集解锁等级条件": 0,
  117. "P-奖励物图标": 0,
  118. "P-奖励物数量": 0,
  119. "P-状态": 0,
  120. "P-进度总量": 0,
  121. "P-进度终点": 0,
  122. "P-进度起点": 0,
  123. "步幅": 0,
  124. "步次": 0,
  125. "进度终点": 0,
  126. "进度起点": 0
  127. },
  128. "DisPlayName": "教程_合集节点",
  129. "RedNoteInfo": {
  130. },
  131. "TreeList": {
  132. "Tree0": {
  133. "ExportTree": true,
  134. "ImageIndex": -1,
  135. "Type": "BTButtonClickFuncAction",
  136. "VarJson": {
  137. "boolJson": {
  138. },
  139. "numberJson": {
  140. }
  141. },
  142. "isIllegal": false,
  143. "mathSelector": {
  144. "DisplayName": "合集未解锁触发按钮",
  145. "Type": "OBJ",
  146. "Value": "nGKXHFNnprNA"
  147. },
  148. "randomID": "6Uw2bYw9n08p",
  149. "stepSlot": {
  150. "ContainerValue": {
  151. "Type": "BTMessageSendAction",
  152. "baseSelect": {
  153. "DisplayName": "气泡弹框退出移除",
  154. "Type": "Action",
  155. "Value": "zPBFGPYJGvgm"
  156. },
  157. "conditionA": {
  158. "ContainerValue": null,
  159. "StringValue": {
  160. "Type": "STRING",
  161. "Value": "参数"
  162. },
  163. "Type": "BTInputSlot"
  164. },
  165. "isIllegal": true,
  166. "randomID": "BgIhFb6CzPek",
  167. "stepSlot": {
  168. "ContainerValue": {
  169. "Type": "BTPlayTimeLineAction",
  170. "baseSelect": {
  171. "DisplayName": "动画_禁止提示",
  172. "Type": "Action",
  173. "Value": "14"
  174. },
  175. "isIllegal": true,
  176. "randomID": "gpkBPc2BOito",
  177. "stepSlot": {
  178. "ContainerValue": {
  179. "Type": "BTNotificationToCoderAction",
  180. "conditionA": {
  181. "ContainerValue": null,
  182. "StringValue": {
  183. "Type": "STRING",
  184. "Value": "打开合集未解锁触发文本提示"
  185. },
  186. "Type": "BTInputSlot"
  187. },
  188. "isIllegal": true,
  189. "randomID": "vwC2eB2N5kpJ",
  190. "stepSlot": {
  191. "ContainerValue": null,
  192. "Type": "BTStepSlot"
  193. }
  194. },
  195. "Type": "BTStepSlot"
  196. }
  197. },
  198. "Type": "BTStepSlot"
  199. }
  200. },
  201. "Type": "BTStepSlot"
  202. },
  203. "x": -1452.1749751220318,
  204. "y": -234.39446146049443
  205. },
  206. "Tree1": {
  207. "ExportTree": true,
  208. "ImageIndex": -1,
  209. "Type": "BTButtonClickFuncAction",
  210. "VarJson": {
  211. "boolJson": {
  212. },
  213. "numberJson": {
  214. }
  215. },
  216. "isIllegal": false,
  217. "mathSelector": {
  218. "DisplayName": "合集已解锁触发按钮",
  219. "Type": "OBJ",
  220. "Value": "uckhMuJAfYY5"
  221. },
  222. "randomID": "PgIxhTc7NZiO",
  223. "stepSlot": {
  224. "ContainerValue": {
  225. "Type": "BTButtonEnableAction",
  226. "baseSelect": {
  227. "DisplayName": "合集已解锁触发按钮",
  228. "Type": "Action",
  229. "Value": "uckhMuJAfYY5"
  230. },
  231. "enableButton": {
  232. "Type": "BTCheckBox",
  233. "isEnable": false
  234. },
  235. "isIllegal": true,
  236. "randomID": "TdMamkosqc7n",
  237. "stepSlot": {
  238. "ContainerValue": {
  239. "Type": "BTNotificationToCoderAction",
  240. "conditionA": {
  241. "ContainerValue": null,
  242. "StringValue": {
  243. "Type": "STRING",
  244. "Value": "打开合集页界面"
  245. },
  246. "Type": "BTInputSlot"
  247. },
  248. "isIllegal": true,
  249. "randomID": "Hf9yMcSkTIXz",
  250. "stepSlot": {
  251. "ContainerValue": {
  252. "Type": "BTMessageSendAction",
  253. "baseSelect": {
  254. "DisplayName": "气泡弹框退出移除",
  255. "Type": "Action",
  256. "Value": "zPBFGPYJGvgm"
  257. },
  258. "conditionA": {
  259. "ContainerValue": null,
  260. "StringValue": {
  261. "Type": "STRING",
  262. "Value": "参数"
  263. },
  264. "Type": "BTInputSlot"
  265. },
  266. "isIllegal": true,
  267. "randomID": "1nTGFfnBH6WQ",
  268. "stepSlot": {
  269. "ContainerValue": {
  270. "Type": "BTNodeHiddenAction",
  271. "baseSelect": {
  272. "DisplayName": "合集红点数量标签",
  273. "Type": "Action",
  274. "Value": "Q849NEoTaiBG"
  275. },
  276. "isIllegal": true,
  277. "randomID": "I0im3uZZfKY1",
  278. "stepSlot": {
  279. "ContainerValue": null,
  280. "Type": "BTStepSlot"
  281. }
  282. },
  283. "Type": "BTStepSlot"
  284. }
  285. },
  286. "Type": "BTStepSlot"
  287. }
  288. },
  289. "Type": "BTStepSlot"
  290. }
  291. },
  292. "Type": "BTStepSlot"
  293. },
  294. "x": -1449.225606276574,
  295. "y": -60.04016754566456
  296. },
  297. "Tree10": {
  298. "ExportTree": false,
  299. "ImageIndex": 5,
  300. "Name": {
  301. "Type": "STRING",
  302. "Value": "模拟程序执行",
  303. "displayName": ""
  304. },
  305. "Type": "BTSimulatorAction",
  306. "VarJson": {
  307. "boolJson": {
  308. },
  309. "numberJson": {
  310. "参数": "Number",
  311. "通知名": "Number"
  312. }
  313. },
  314. "isIllegal": false,
  315. "randomID": "gji7OTadwli7",
  316. "stepSlot": {
  317. "ContainerValue": {
  318. "Type": "BTIFControlAction",
  319. "conditionA": {
  320. "ContainerValue": {
  321. "Type": "BTStringEqualOperatorAction",
  322. "conditionA": {
  323. "ContainerValue": {
  324. "Type": "BTFuncVariableAction",
  325. "colorName": "Disable",
  326. "currentStr": "通知名",
  327. "fatherFuncID": "gji7OTadwli7",
  328. "isIllegal": true,
  329. "randomID": "eQSvdfNTECSf",
  330. "titleLabel": {
  331. "Type": "STRING",
  332. "Value": "通知名",
  333. "displayName": ""
  334. }
  335. },
  336. "StringValue": {
  337. "Type": "STRING",
  338. "Value": "Red"
  339. },
  340. "Type": "BTInputSlot"
  341. },
  342. "conditionB": {
  343. "ContainerValue": null,
  344. "StringValue": {
  345. "Type": "STRING",
  346. "Value": "更新卡片收集进度"
  347. },
  348. "Type": "BTInputSlot"
  349. },
  350. "isIllegal": true,
  351. "randomID": "7dIJ6pIyOQ9N"
  352. },
  353. "Type": "BTBoolSlot"
  354. },
  355. "isIllegal": true,
  356. "randomID": "gmx3Yb5PZ8xq",
  357. "sectionA": {
  358. "ContainerValue": {
  359. "TitleInput": {
  360. "ContainerValue": null,
  361. "StringValue": {
  362. "Type": "STRING",
  363. "Value": "已解锁未完成"
  364. },
  365. "Type": "BTInputSlot"
  366. },
  367. "Type": "BTDataCoderVarSetAction",
  368. "VarScope": "Scene",
  369. "baseSelect": {
  370. "DisplayName": "P-状态",
  371. "Type": "Action",
  372. "Value": "P-状态"
  373. },
  374. "isIllegal": true,
  375. "randomID": "qFXntTRvzDnt",
  376. "stepSlot": {
  377. "ContainerValue": {
  378. "TitleInput": {
  379. "ContainerValue": null,
  380. "StringValue": {
  381. "Type": "STRING",
  382. "Value": "卡片收集系统.plist"
  383. },
  384. "Type": "BTInputSlot"
  385. },
  386. "Type": "BTDataCoderVarSetAction",
  387. "VarScope": "Scene",
  388. "baseSelect": {
  389. "DisplayName": "P-Plist图集",
  390. "Type": "Action",
  391. "Value": "P-Plist图集"
  392. },
  393. "isIllegal": true,
  394. "randomID": "bqa3VnWvD7ZQ",
  395. "stepSlot": {
  396. "ContainerValue": {
  397. "TitleInput": {
  398. "ContainerValue": null,
  399. "StringValue": {
  400. "Type": "STRING",
  401. "Value": "Oceans"
  402. },
  403. "Type": "BTInputSlot"
  404. },
  405. "Type": "BTDataCoderVarSetAction",
  406. "VarScope": "Scene",
  407. "baseSelect": {
  408. "DisplayName": "P-合集名称",
  409. "Type": "Action",
  410. "Value": "P-合集名称"
  411. },
  412. "isIllegal": true,
  413. "randomID": "SiA78okIhIV7",
  414. "stepSlot": {
  415. "ContainerValue": {
  416. "TitleInput": {
  417. "ContainerValue": null,
  418. "StringValue": {
  419. "Type": "STRING",
  420. "Value": "卡片收集系统_合集_名称框.png"
  421. },
  422. "Type": "BTInputSlot"
  423. },
  424. "Type": "BTDataCoderVarSetAction",
  425. "VarScope": "Scene",
  426. "baseSelect": {
  427. "DisplayName": "P-合集名称框",
  428. "Type": "Action",
  429. "Value": "P-合集名称框"
  430. },
  431. "isIllegal": true,
  432. "randomID": "bGQRggyhQSVI",
  433. "stepSlot": {
  434. "ContainerValue": {
  435. "TitleInput": {
  436. "ContainerValue": null,
  437. "StringValue": {
  438. "Type": "STRING",
  439. "Value": "卡片收集系统_合集_图标.png"
  440. },
  441. "Type": "BTInputSlot"
  442. },
  443. "Type": "BTDataCoderVarSetAction",
  444. "VarScope": "Scene",
  445. "baseSelect": {
  446. "DisplayName": "P-合集图标",
  447. "Type": "Action",
  448. "Value": "P-合集图标"
  449. },
  450. "isIllegal": true,
  451. "randomID": "BcBA3wL0hIhh",
  452. "stepSlot": {
  453. "ContainerValue": {
  454. "TitleInput": {
  455. "ContainerValue": null,
  456. "StringValue": {
  457. "Type": "STRING",
  458. "Value": "卡片收集系统_合集_图标框.png"
  459. },
  460. "Type": "BTInputSlot"
  461. },
  462. "Type": "BTDataCoderVarSetAction",
  463. "VarScope": "Scene",
  464. "baseSelect": {
  465. "DisplayName": "P-合集图标框",
  466. "Type": "Action",
  467. "Value": "P-合集图标框"
  468. },
  469. "isIllegal": true,
  470. "randomID": "J7MA8rlscbfC",
  471. "stepSlot": {
  472. "ContainerValue": {
  473. "TitleInput": {
  474. "ContainerValue": null,
  475. "StringValue": {
  476. "Type": "STRING",
  477. "Value": "6"
  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": "0ShfJ57QIT2k",
  490. "stepSlot": {
  491. "ContainerValue": {
  492. "TitleInput": {
  493. "ContainerValue": null,
  494. "StringValue": {
  495. "Type": "STRING",
  496. "Value": "80"
  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": "88zkSYRLxjFv",
  509. "stepSlot": {
  510. "ContainerValue": {
  511. "TitleInput": {
  512. "ContainerValue": null,
  513. "StringValue": {
  514. "Type": "STRING",
  515. "Value": "卡片收集系统_合集_收集进度_奖励物.png"
  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": "rkeMIFfzqjLn",
  528. "stepSlot": {
  529. "ContainerValue": {
  530. "TitleInput": {
  531. "ContainerValue": null,
  532. "StringValue": {
  533. "Type": "STRING",
  534. "Value": "500"
  535. },
  536. "Type": "BTInputSlot"
  537. },
  538. "Type": "BTDataCoderVarSetAction",
  539. "VarScope": "Scene",
  540. "baseSelect": {
  541. "DisplayName": "P-奖励物数量",
  542. "Type": "Action",
  543. "Value": "P-奖励物数量"
  544. },
  545. "isIllegal": true,
  546. "randomID": "fYiMYkxgTaTW",
  547. "stepSlot": {
  548. "ContainerValue": {
  549. "TitleInput": {
  550. "ContainerValue": null,
  551. "StringValue": {
  552. "Type": "STRING",
  553. "Value": "9"
  554. },
  555. "Type": "BTInputSlot"
  556. },
  557. "Type": "BTDataCoderVarSetAction",
  558. "VarScope": "Scene",
  559. "baseSelect": {
  560. "DisplayName": "P-进度总量",
  561. "Type": "Action",
  562. "Value": "P-进度总量"
  563. },
  564. "isIllegal": true,
  565. "randomID": "pqrpIuT2bfq7",
  566. "stepSlot": {
  567. "ContainerValue": {
  568. "TitleInput": {
  569. "ContainerValue": null,
  570. "StringValue": {
  571. "Type": "STRING",
  572. "Value": "9"
  573. },
  574. "Type": "BTInputSlot"
  575. },
  576. "Type": "BTDataCoderVarSetAction",
  577. "VarScope": "Scene",
  578. "baseSelect": {
  579. "DisplayName": "P-进度终点",
  580. "Type": "Action",
  581. "Value": "P-进度终点"
  582. },
  583. "isIllegal": true,
  584. "randomID": "1I7gf1aSeFwB",
  585. "stepSlot": {
  586. "ContainerValue": {
  587. "TitleInput": {
  588. "ContainerValue": null,
  589. "StringValue": {
  590. "Type": "STRING",
  591. "Value": "2"
  592. },
  593. "Type": "BTInputSlot"
  594. },
  595. "Type": "BTDataCoderVarSetAction",
  596. "VarScope": "Scene",
  597. "baseSelect": {
  598. "DisplayName": "P-进度起点",
  599. "Type": "Action",
  600. "Value": "P-进度起点"
  601. },
  602. "isIllegal": true,
  603. "randomID": "Em6kCd1L6Vvd",
  604. "stepSlot": {
  605. "ContainerValue": {
  606. "Name": {
  607. "Type": "STRING",
  608. "Value": "合集节点",
  609. "displayName": ""
  610. },
  611. "Type": "BTCustomFuncBodyAction",
  612. "funcHeadID": "bfzw2PWHXvpD",
  613. "isIllegal": true,
  614. "paramArr": [
  615. ],
  616. "randomID": "ZUhF0QhUFURy",
  617. "stepSlot": {
  618. "ContainerValue": {
  619. "Name": {
  620. "Type": "STRING",
  621. "Value": "更新卡片收集进度",
  622. "displayName": ""
  623. },
  624. "Type": "BTCustomFuncBodyAction",
  625. "funcHeadID": "FD747giWdokm",
  626. "isIllegal": true,
  627. "paramArr": [
  628. ],
  629. "randomID": "k0ZjlC0tdXz8",
  630. "stepSlot": {
  631. "ContainerValue": {
  632. "Name": {
  633. "Type": "STRING",
  634. "Value": "更新红点状态",
  635. "displayName": ""
  636. },
  637. "Type": "BTCustomFuncBodyAction",
  638. "funcHeadID": "roqUUka2DpDF",
  639. "isIllegal": true,
  640. "paramArr": [
  641. ],
  642. "randomID": "Pr5oiqUNodsy",
  643. "stepSlot": {
  644. "ContainerValue": null,
  645. "Type": "BTStepSlot"
  646. }
  647. },
  648. "Type": "BTStepSlot"
  649. }
  650. },
  651. "Type": "BTStepSlot"
  652. }
  653. },
  654. "Type": "BTStepSlot"
  655. }
  656. },
  657. "Type": "BTStepSlot"
  658. }
  659. },
  660. "Type": "BTStepSlot"
  661. }
  662. },
  663. "Type": "BTStepSlot"
  664. }
  665. },
  666. "Type": "BTStepSlot"
  667. }
  668. },
  669. "Type": "BTStepSlot"
  670. }
  671. },
  672. "Type": "BTStepSlot"
  673. }
  674. },
  675. "Type": "BTStepSlot"
  676. }
  677. },
  678. "Type": "BTStepSlot"
  679. }
  680. },
  681. "Type": "BTStepSlot"
  682. }
  683. },
  684. "Type": "BTStepSlot"
  685. }
  686. },
  687. "Type": "BTStepSlot"
  688. }
  689. },
  690. "Type": "BTStepSlot"
  691. }
  692. },
  693. "Type": "BTSectionSlot"
  694. },
  695. "stepSlot": {
  696. "ContainerValue": {
  697. "Type": "BTIFControlAction",
  698. "conditionA": {
  699. "ContainerValue": {
  700. "Type": "BTStringEqualOperatorAction",
  701. "conditionA": {
  702. "ContainerValue": {
  703. "Type": "BTFuncVariableAction",
  704. "colorName": "Disable",
  705. "currentStr": "通知名",
  706. "fatherFuncID": "gji7OTadwli7",
  707. "isIllegal": true,
  708. "randomID": "pliXXfSONgjH",
  709. "titleLabel": {
  710. "Type": "STRING",
  711. "Value": "通知名",
  712. "displayName": ""
  713. }
  714. },
  715. "StringValue": {
  716. "Type": "STRING",
  717. "Value": "Red"
  718. },
  719. "Type": "BTInputSlot"
  720. },
  721. "conditionB": {
  722. "ContainerValue": null,
  723. "StringValue": {
  724. "Type": "STRING",
  725. "Value": "打开合集未解锁触发文本提示"
  726. },
  727. "Type": "BTInputSlot"
  728. },
  729. "isIllegal": true,
  730. "randomID": "9SnYtbzyirnC"
  731. },
  732. "Type": "BTBoolSlot"
  733. },
  734. "isIllegal": true,
  735. "randomID": "q9KIy8OBQQBD",
  736. "sectionA": {
  737. "ContainerValue": {
  738. "Type": "BTMessageSendAction",
  739. "baseSelect": {
  740. "DisplayName": "合集未解锁触发文本提示",
  741. "Type": "Action",
  742. "Value": "jHVFN1i1Yze7"
  743. },
  744. "conditionA": {
  745. "ContainerValue": null,
  746. "StringValue": {
  747. "Type": "STRING",
  748. "Value": "参数"
  749. },
  750. "Type": "BTInputSlot"
  751. },
  752. "isIllegal": true,
  753. "randomID": "zH9VZ0fYIUxP",
  754. "stepSlot": {
  755. "ContainerValue": null,
  756. "Type": "BTStepSlot"
  757. }
  758. },
  759. "Type": "BTSectionSlot"
  760. },
  761. "stepSlot": {
  762. "ContainerValue": {
  763. "Type": "BTIFControlAction",
  764. "conditionA": {
  765. "ContainerValue": {
  766. "Type": "BTStringEqualOperatorAction",
  767. "conditionA": {
  768. "ContainerValue": {
  769. "Type": "BTFuncVariableAction",
  770. "colorName": "Disable",
  771. "currentStr": "通知名",
  772. "fatherFuncID": "gji7OTadwli7",
  773. "isIllegal": true,
  774. "randomID": "mWG5YY2oDAtG",
  775. "titleLabel": {
  776. "Type": "STRING",
  777. "Value": "通知名",
  778. "displayName": ""
  779. }
  780. },
  781. "StringValue": {
  782. "Type": "STRING",
  783. "Value": "Red"
  784. },
  785. "Type": "BTInputSlot"
  786. },
  787. "conditionB": {
  788. "ContainerValue": null,
  789. "StringValue": {
  790. "Type": "STRING",
  791. "Value": "打开合集页界面"
  792. },
  793. "Type": "BTInputSlot"
  794. },
  795. "isIllegal": true,
  796. "randomID": "sqyQVhi8GPFW"
  797. },
  798. "Type": "BTBoolSlot"
  799. },
  800. "isIllegal": true,
  801. "randomID": "aGORQ2MyCvGD",
  802. "sectionA": {
  803. "ContainerValue": {
  804. "Type": "BTMessageSendAction",
  805. "baseSelect": {
  806. "DisplayName": "打开合集页界面",
  807. "Type": "Action",
  808. "Value": "toC0lWIvBuiK"
  809. },
  810. "conditionA": {
  811. "ContainerValue": null,
  812. "StringValue": {
  813. "Type": "STRING",
  814. "Value": "参数"
  815. },
  816. "Type": "BTInputSlot"
  817. },
  818. "isIllegal": true,
  819. "randomID": "kNfX6NH3Vul6",
  820. "stepSlot": {
  821. "ContainerValue": null,
  822. "Type": "BTStepSlot"
  823. }
  824. },
  825. "Type": "BTSectionSlot"
  826. },
  827. "stepSlot": {
  828. "ContainerValue": {
  829. "Type": "BTIFControlAction",
  830. "conditionA": {
  831. "ContainerValue": {
  832. "Type": "BTStringEqualOperatorAction",
  833. "conditionA": {
  834. "ContainerValue": {
  835. "Type": "BTFuncVariableAction",
  836. "colorName": "Disable",
  837. "currentStr": "通知名",
  838. "fatherFuncID": "gji7OTadwli7",
  839. "isIllegal": true,
  840. "randomID": "tEp8uycn056Q",
  841. "titleLabel": {
  842. "Type": "STRING",
  843. "Value": "通知名",
  844. "displayName": ""
  845. }
  846. },
  847. "StringValue": {
  848. "Type": "STRING",
  849. "Value": "Red"
  850. },
  851. "Type": "BTInputSlot"
  852. },
  853. "conditionB": {
  854. "ContainerValue": null,
  855. "StringValue": {
  856. "Type": "STRING",
  857. "Value": "打开合集收集完成展示界面"
  858. },
  859. "Type": "BTInputSlot"
  860. },
  861. "isIllegal": true,
  862. "randomID": "gZwvfBfJgBqR"
  863. },
  864. "Type": "BTBoolSlot"
  865. },
  866. "isIllegal": true,
  867. "randomID": "42zjbi9KYloU",
  868. "sectionA": {
  869. "ContainerValue": {
  870. "Type": "BTMessageSendAction",
  871. "baseSelect": {
  872. "DisplayName": "打开合集收集完成展示界面",
  873. "Type": "Action",
  874. "Value": "HtXsqslDbz3E"
  875. },
  876. "conditionA": {
  877. "ContainerValue": null,
  878. "StringValue": {
  879. "Type": "STRING",
  880. "Value": "参数"
  881. },
  882. "Type": "BTInputSlot"
  883. },
  884. "isIllegal": true,
  885. "randomID": "fRNWQdF0XeoD",
  886. "stepSlot": {
  887. "ContainerValue": null,
  888. "Type": "BTStepSlot"
  889. }
  890. },
  891. "Type": "BTSectionSlot"
  892. },
  893. "stepSlot": {
  894. "ContainerValue": null,
  895. "Type": "BTStepSlot"
  896. }
  897. },
  898. "Type": "BTStepSlot"
  899. }
  900. },
  901. "Type": "BTStepSlot"
  902. }
  903. },
  904. "Type": "BTStepSlot"
  905. }
  906. },
  907. "Type": "BTStepSlot"
  908. },
  909. "x": -1467.009751403811,
  910. "y": -1267.1514719393285
  911. },
  912. "Tree11": {
  913. "ExportTree": true,
  914. "ImageIndex": 1,
  915. "Name": {
  916. "Type": "STRING",
  917. "Value": "更新合集信息",
  918. "displayName": ""
  919. },
  920. "Type": "BTCustomFuncHeadAction",
  921. "VarJson": {
  922. "boolJson": {
  923. },
  924. "numberJson": {
  925. }
  926. },
  927. "isIllegal": false,
  928. "randomID": "tbqaTiZWBztq",
  929. "stepSlot": {
  930. "ContainerValue": {
  931. "TitleInput": {
  932. "ContainerValue": {
  933. "Type": "BTCoderVariableAction",
  934. "VarScope": "Scene",
  935. "isIllegal": true,
  936. "randomID": "BVc6tQIJFmQG",
  937. "titleLabel": {
  938. "Type": "STRING",
  939. "Value": "P-合集名称",
  940. "displayName": ""
  941. }
  942. },
  943. "StringValue": {
  944. "Type": "STRING",
  945. "Value": "填写标题内容"
  946. },
  947. "Type": "BTInputSlot"
  948. },
  949. "Type": "BTLabelTitleAction",
  950. "baseSelect": {
  951. "DisplayName": "合集名称",
  952. "Type": "Action",
  953. "Value": "0SyS3Y8Dd7tD"
  954. },
  955. "isIllegal": true,
  956. "randomID": "qJxHPHtHgwj3",
  957. "stepSlot": {
  958. "ContainerValue": {
  959. "Type": "BTSpritePlistAction",
  960. "baseSelect": {
  961. "DisplayName": "合集名称框",
  962. "Type": "Action",
  963. "Value": "PceBoQNFJgtD"
  964. },
  965. "frameNameInput": {
  966. "ContainerValue": {
  967. "Type": "BTCoderVariableAction",
  968. "VarScope": "Scene",
  969. "isIllegal": true,
  970. "randomID": "CLXpyVWLEp0M",
  971. "titleLabel": {
  972. "Type": "STRING",
  973. "Value": "P-合集名称框",
  974. "displayName": ""
  975. }
  976. },
  977. "StringValue": {
  978. "Type": "STRING",
  979. "Value": "图片名"
  980. },
  981. "Type": "BTInputSlot"
  982. },
  983. "isIllegal": true,
  984. "pathInput": {
  985. "ContainerValue": {
  986. "Type": "BTCoderVariableAction",
  987. "VarScope": "Scene",
  988. "isIllegal": true,
  989. "randomID": "6JqjBsjUZKHS",
  990. "titleLabel": {
  991. "Type": "STRING",
  992. "Value": "P-Plist图集",
  993. "displayName": ""
  994. }
  995. },
  996. "StringValue": {
  997. "Type": "STRING",
  998. "Value": "Plist路径"
  999. },
  1000. "Type": "BTInputSlot"
  1001. },
  1002. "randomID": "zxYMdy1HuCsc",
  1003. "stepSlot": {
  1004. "ContainerValue": {
  1005. "Type": "BTSpritePlistAction",
  1006. "baseSelect": {
  1007. "DisplayName": "合集图标",
  1008. "Type": "Action",
  1009. "Value": "ntM0Yw6HnfZN"
  1010. },
  1011. "frameNameInput": {
  1012. "ContainerValue": {
  1013. "Type": "BTCoderVariableAction",
  1014. "VarScope": "Scene",
  1015. "isIllegal": true,
  1016. "randomID": "nYh9ppNvcT0D",
  1017. "titleLabel": {
  1018. "Type": "STRING",
  1019. "Value": "P-合集图标",
  1020. "displayName": ""
  1021. }
  1022. },
  1023. "StringValue": {
  1024. "Type": "STRING",
  1025. "Value": "图片名"
  1026. },
  1027. "Type": "BTInputSlot"
  1028. },
  1029. "isIllegal": true,
  1030. "pathInput": {
  1031. "ContainerValue": {
  1032. "Type": "BTCoderVariableAction",
  1033. "VarScope": "Scene",
  1034. "isIllegal": true,
  1035. "randomID": "SbvAiGTzUZYD",
  1036. "titleLabel": {
  1037. "Type": "STRING",
  1038. "Value": "P-Plist图集2",
  1039. "displayName": ""
  1040. }
  1041. },
  1042. "StringValue": {
  1043. "Type": "STRING",
  1044. "Value": "Plist路径"
  1045. },
  1046. "Type": "BTInputSlot"
  1047. },
  1048. "randomID": "IMi54M9CvhVR",
  1049. "stepSlot": {
  1050. "ContainerValue": {
  1051. "Type": "BTSpritePlistAction",
  1052. "baseSelect": {
  1053. "DisplayName": "合集图标框",
  1054. "Type": "Action",
  1055. "Value": "qR0fskBkubDk"
  1056. },
  1057. "frameNameInput": {
  1058. "ContainerValue": {
  1059. "Type": "BTCoderVariableAction",
  1060. "VarScope": "Scene",
  1061. "isIllegal": true,
  1062. "randomID": "dAJH5KL62vKd",
  1063. "titleLabel": {
  1064. "Type": "STRING",
  1065. "Value": "P-合集图标框",
  1066. "displayName": ""
  1067. }
  1068. },
  1069. "StringValue": {
  1070. "Type": "STRING",
  1071. "Value": "图片名"
  1072. },
  1073. "Type": "BTInputSlot"
  1074. },
  1075. "isIllegal": true,
  1076. "pathInput": {
  1077. "ContainerValue": {
  1078. "Type": "BTCoderVariableAction",
  1079. "VarScope": "Scene",
  1080. "isIllegal": true,
  1081. "randomID": "YCJVPs2XLVTn",
  1082. "titleLabel": {
  1083. "Type": "STRING",
  1084. "Value": "P-Plist图集",
  1085. "displayName": ""
  1086. }
  1087. },
  1088. "StringValue": {
  1089. "Type": "STRING",
  1090. "Value": "Plist路径"
  1091. },
  1092. "Type": "BTInputSlot"
  1093. },
  1094. "randomID": "Zhe9Qvyu0yfE",
  1095. "stepSlot": {
  1096. "ContainerValue": {
  1097. "TitleInput": {
  1098. "ContainerValue": {
  1099. "Type": "BTCoderVariableAction",
  1100. "VarScope": "Scene",
  1101. "isIllegal": true,
  1102. "randomID": "p3NEkau9Q4e0",
  1103. "titleLabel": {
  1104. "Type": "STRING",
  1105. "Value": "P-合集名称",
  1106. "displayName": ""
  1107. }
  1108. },
  1109. "StringValue": {
  1110. "Type": "STRING",
  1111. "Value": "填写标题内容"
  1112. },
  1113. "Type": "BTInputSlot"
  1114. },
  1115. "Type": "BTLabelTitleAction",
  1116. "baseSelect": {
  1117. "DisplayName": "合集未解锁_合集名称",
  1118. "Type": "Action",
  1119. "Value": "P7kRoY4bViiy"
  1120. },
  1121. "isIllegal": true,
  1122. "randomID": "eEB0Hl5d5nfG",
  1123. "stepSlot": {
  1124. "ContainerValue": {
  1125. "TitleInput": {
  1126. "ContainerValue": {
  1127. "Type": "BTStringLinkOperatorAction",
  1128. "conditionA": {
  1129. "ContainerValue": null,
  1130. "StringValue": {
  1131. "Type": "STRING",
  1132. "Value": "Unlocks at Level "
  1133. },
  1134. "Type": "BTInputSlot"
  1135. },
  1136. "conditionB": {
  1137. "ContainerValue": {
  1138. "Type": "BTCoderVariableAction",
  1139. "VarScope": "Scene",
  1140. "isIllegal": true,
  1141. "randomID": "HxGwK47JFuMx",
  1142. "titleLabel": {
  1143. "Type": "STRING",
  1144. "Value": "P-合集解锁等级条件",
  1145. "displayName": ""
  1146. }
  1147. },
  1148. "StringValue": {
  1149. "Type": "STRING",
  1150. "Value": "Banana"
  1151. },
  1152. "Type": "BTInputSlot"
  1153. },
  1154. "isIllegal": true,
  1155. "randomID": "AsEituLUZVW8"
  1156. },
  1157. "StringValue": {
  1158. "Type": "STRING",
  1159. "Value": "填写标题内容"
  1160. },
  1161. "Type": "BTInputSlot"
  1162. },
  1163. "Type": "BTLabelTitleAction",
  1164. "baseSelect": {
  1165. "DisplayName": "合集解锁等级条件",
  1166. "Type": "Action",
  1167. "Value": "mqLqome848J5"
  1168. },
  1169. "isIllegal": true,
  1170. "randomID": "t5rS1rITgu6H",
  1171. "stepSlot": {
  1172. "ContainerValue": null,
  1173. "Type": "BTStepSlot"
  1174. }
  1175. },
  1176. "Type": "BTStepSlot"
  1177. }
  1178. },
  1179. "Type": "BTStepSlot"
  1180. }
  1181. },
  1182. "Type": "BTStepSlot"
  1183. }
  1184. },
  1185. "Type": "BTStepSlot"
  1186. }
  1187. },
  1188. "Type": "BTStepSlot"
  1189. }
  1190. },
  1191. "Type": "BTStepSlot"
  1192. },
  1193. "x": -913.3768210515055,
  1194. "y": -479.3891681073063
  1195. },
  1196. "Tree12": {
  1197. "ExportTree": true,
  1198. "ImageIndex": 8,
  1199. "Name": {
  1200. "Type": "STRING",
  1201. "Value": "",
  1202. "displayName": ""
  1203. },
  1204. "Type": "BTMessageReciverAction",
  1205. "VarJson": {
  1206. "boolJson": {
  1207. },
  1208. "numberJson": {
  1209. "消息参数": "Number"
  1210. }
  1211. },
  1212. "isIllegal": false,
  1213. "mathSelector": {
  1214. "DisplayName": "万能卡兑换卡片抵达终点",
  1215. "Type": "Action",
  1216. "Value": "ToAQgu7pqtuc"
  1217. },
  1218. "randomID": "JsinnGkzMg9I",
  1219. "stepSlot": {
  1220. "ContainerValue": {
  1221. "Type": "BTNotificationToCoderAction",
  1222. "conditionA": {
  1223. "ContainerValue": null,
  1224. "StringValue": {
  1225. "Type": "STRING",
  1226. "Value": "更新卡片收集进度"
  1227. },
  1228. "Type": "BTInputSlot"
  1229. },
  1230. "isIllegal": true,
  1231. "randomID": "N4UJi8nBLZda",
  1232. "stepSlot": {
  1233. "ContainerValue": null,
  1234. "Type": "BTStepSlot"
  1235. }
  1236. },
  1237. "Type": "BTStepSlot"
  1238. },
  1239. "x": -1396,
  1240. "y": -1660
  1241. },
  1242. "Tree2": {
  1243. "ExportTree": true,
  1244. "ImageIndex": 2,
  1245. "Name": {
  1246. "Type": "STRING",
  1247. "Value": "更新卡片收集进度",
  1248. "displayName": ""
  1249. },
  1250. "Type": "BTCustomFuncHeadAction",
  1251. "VarJson": {
  1252. "boolJson": {
  1253. },
  1254. "numberJson": {
  1255. }
  1256. },
  1257. "isIllegal": false,
  1258. "randomID": "FD747giWdokm",
  1259. "stepSlot": {
  1260. "ContainerValue": {
  1261. "TitleInput": {
  1262. "ContainerValue": {
  1263. "Type": "BTStringLinkMoreOperatorAction",
  1264. "conditionA": {
  1265. "ContainerValue": {
  1266. "Type": "BTCoderVariableAction",
  1267. "VarScope": "Scene",
  1268. "isIllegal": true,
  1269. "randomID": "ovra8vHheG6C",
  1270. "titleLabel": {
  1271. "Type": "STRING",
  1272. "Value": "P-进度起点",
  1273. "displayName": ""
  1274. }
  1275. },
  1276. "StringValue": {
  1277. "Type": "STRING",
  1278. "Value": "A"
  1279. },
  1280. "Type": "BTInputSlot"
  1281. },
  1282. "conditionB": {
  1283. "ContainerValue": null,
  1284. "StringValue": {
  1285. "Type": "STRING",
  1286. "Value": "/"
  1287. },
  1288. "Type": "BTInputSlot"
  1289. },
  1290. "conditionC": {
  1291. "ContainerValue": {
  1292. "Type": "BTCoderVariableAction",
  1293. "VarScope": "Scene",
  1294. "isIllegal": true,
  1295. "randomID": "qnmy87rGAQf2",
  1296. "titleLabel": {
  1297. "Type": "STRING",
  1298. "Value": "P-进度总量",
  1299. "displayName": ""
  1300. }
  1301. },
  1302. "StringValue": {
  1303. "Type": "STRING",
  1304. "Value": "C"
  1305. },
  1306. "Type": "BTInputSlot"
  1307. },
  1308. "conditionD": {
  1309. "ContainerValue": null,
  1310. "StringValue": {
  1311. "Type": "STRING",
  1312. "Value": ""
  1313. },
  1314. "Type": "BTInputSlot"
  1315. },
  1316. "conditionE": {
  1317. "ContainerValue": null,
  1318. "StringValue": {
  1319. "Type": "STRING",
  1320. "Value": ""
  1321. },
  1322. "Type": "BTInputSlot"
  1323. },
  1324. "isIllegal": true,
  1325. "randomID": "gR6wqPGqSmDW"
  1326. },
  1327. "StringValue": {
  1328. "Type": "STRING",
  1329. "Value": "填写标题内容"
  1330. },
  1331. "Type": "BTInputSlot"
  1332. },
  1333. "Type": "BTSceneLabelTitleAction",
  1334. "baseSelect": {
  1335. "DisplayName": "卡片收集文本进度",
  1336. "Type": "Action",
  1337. "Value": "HzMlZ9hZS5Y8"
  1338. },
  1339. "isIllegal": true,
  1340. "randomID": "QNOISP7qr097",
  1341. "redSelect": {
  1342. "DisplayName": "卡片收集进度条",
  1343. "Type": "OBJ",
  1344. "Value": "gelumYM0dB16"
  1345. },
  1346. "stepSlot": {
  1347. "ContainerValue": {
  1348. "TitleInput": {
  1349. "ContainerValue": {
  1350. "Type": "BTMulOperatorAction",
  1351. "conditionA": {
  1352. "ContainerValue": {
  1353. "Type": "BTDivOperatorAction",
  1354. "conditionA": {
  1355. "ContainerValue": {
  1356. "Type": "BTCoderVariableAction",
  1357. "VarScope": "Scene",
  1358. "isIllegal": true,
  1359. "randomID": "71L0nuB9KQUO",
  1360. "titleLabel": {
  1361. "Type": "STRING",
  1362. "Value": "P-进度终点",
  1363. "displayName": ""
  1364. }
  1365. },
  1366. "StringValue": {
  1367. "Type": "FLOAT",
  1368. "Value": 0
  1369. },
  1370. "Type": "BTInputSlot"
  1371. },
  1372. "conditionB": {
  1373. "ContainerValue": {
  1374. "Type": "BTCoderVariableAction",
  1375. "VarScope": "Scene",
  1376. "isIllegal": true,
  1377. "randomID": "xsbV6Uu5YnGk",
  1378. "titleLabel": {
  1379. "Type": "STRING",
  1380. "Value": "P-进度总量",
  1381. "displayName": ""
  1382. }
  1383. },
  1384. "StringValue": {
  1385. "Type": "FLOAT",
  1386. "Value": 0
  1387. },
  1388. "Type": "BTInputSlot"
  1389. },
  1390. "isIllegal": true,
  1391. "randomID": "UmffYws5zPZ2"
  1392. },
  1393. "StringValue": {
  1394. "Type": "FLOAT",
  1395. "Value": 0
  1396. },
  1397. "Type": "BTInputSlot"
  1398. },
  1399. "conditionB": {
  1400. "ContainerValue": null,
  1401. "StringValue": {
  1402. "Type": "FLOAT",
  1403. "Value": 100
  1404. },
  1405. "Type": "BTInputSlot"
  1406. },
  1407. "isIllegal": true,
  1408. "randomID": "WNNDtlr7qDKP"
  1409. },
  1410. "StringValue": {
  1411. "Type": "FLOAT",
  1412. "Value": 50
  1413. },
  1414. "Type": "BTInputSlot"
  1415. },
  1416. "Type": "BTSceneProgressBarAction",
  1417. "baseSelect": {
  1418. "DisplayName": "卡片收集进度条",
  1419. "Type": "Action",
  1420. "Value": "t1Y3n36bKDdd"
  1421. },
  1422. "isIllegal": true,
  1423. "randomID": "I9JjWpdzHhqD",
  1424. "redSelect": {
  1425. "DisplayName": "卡片收集进度条",
  1426. "Type": "OBJ",
  1427. "Value": "gelumYM0dB16"
  1428. },
  1429. "stepSlot": {
  1430. "ContainerValue": {
  1431. "Type": "BTSceneSpritePlistAction",
  1432. "baseSelect": {
  1433. "DisplayName": "奖励物图标",
  1434. "Type": "Action",
  1435. "Value": "cqKlNhvjlwrP"
  1436. },
  1437. "frameNameInput": {
  1438. "ContainerValue": {
  1439. "Type": "BTCoderVariableAction",
  1440. "VarScope": "Scene",
  1441. "isIllegal": true,
  1442. "randomID": "TtOTKPODT9IP",
  1443. "titleLabel": {
  1444. "Type": "STRING",
  1445. "Value": "P-奖励物图标",
  1446. "displayName": ""
  1447. }
  1448. },
  1449. "StringValue": {
  1450. "Type": "STRING",
  1451. "Value": "图片名"
  1452. },
  1453. "Type": "BTInputSlot"
  1454. },
  1455. "isIllegal": true,
  1456. "pathInput": {
  1457. "ContainerValue": {
  1458. "Type": "BTCoderVariableAction",
  1459. "VarScope": "Scene",
  1460. "isIllegal": true,
  1461. "randomID": "yJjFHOZoN8Rd",
  1462. "titleLabel": {
  1463. "Type": "STRING",
  1464. "Value": "P-Plist图集",
  1465. "displayName": ""
  1466. }
  1467. },
  1468. "StringValue": {
  1469. "Type": "STRING",
  1470. "Value": "Plist路径"
  1471. },
  1472. "Type": "BTInputSlot"
  1473. },
  1474. "randomID": "ZN9lEx92ACh5",
  1475. "redSelect": {
  1476. "DisplayName": "卡片收集进度条",
  1477. "Type": "OBJ",
  1478. "Value": "gelumYM0dB16"
  1479. },
  1480. "stepSlot": {
  1481. "ContainerValue": {
  1482. "TitleInput": {
  1483. "ContainerValue": {
  1484. "Type": "BTStringLinkOperatorAction",
  1485. "conditionA": {
  1486. "ContainerValue": null,
  1487. "StringValue": {
  1488. "Type": "STRING",
  1489. "Value": "x"
  1490. },
  1491. "Type": "BTInputSlot"
  1492. },
  1493. "conditionB": {
  1494. "ContainerValue": {
  1495. "Type": "BTCoderVariableAction",
  1496. "VarScope": "Scene",
  1497. "isIllegal": true,
  1498. "randomID": "12VSHjIwbnN8",
  1499. "titleLabel": {
  1500. "Type": "STRING",
  1501. "Value": "P-奖励物数量",
  1502. "displayName": ""
  1503. }
  1504. },
  1505. "StringValue": {
  1506. "Type": "STRING",
  1507. "Value": "Banana"
  1508. },
  1509. "Type": "BTInputSlot"
  1510. },
  1511. "isIllegal": true,
  1512. "randomID": "Yhd62jB6Ug3S"
  1513. },
  1514. "StringValue": {
  1515. "Type": "STRING",
  1516. "Value": "填写标题内容"
  1517. },
  1518. "Type": "BTInputSlot"
  1519. },
  1520. "Type": "BTSceneLabelTitleAction",
  1521. "baseSelect": {
  1522. "DisplayName": "奖励物数量",
  1523. "Type": "Action",
  1524. "Value": "yYurCxdyTwJq"
  1525. },
  1526. "isIllegal": true,
  1527. "randomID": "yCLuRckP3m6P",
  1528. "redSelect": {
  1529. "DisplayName": "卡片收集进度条",
  1530. "Type": "OBJ",
  1531. "Value": "gelumYM0dB16"
  1532. },
  1533. "stepSlot": {
  1534. "ContainerValue": {
  1535. "Type": "BTIFElseControlAction",
  1536. "conditionA": {
  1537. "ContainerValue": {
  1538. "Type": "BTBiggerThanAction",
  1539. "conditionA": {
  1540. "ContainerValue": {
  1541. "Type": "BTCoderVariableAction",
  1542. "VarScope": "Scene",
  1543. "isIllegal": true,
  1544. "randomID": "YJuOjVNV3Upf",
  1545. "titleLabel": {
  1546. "Type": "STRING",
  1547. "Value": "P-进度终点",
  1548. "displayName": ""
  1549. }
  1550. },
  1551. "StringValue": {
  1552. "Type": "FLOAT",
  1553. "Value": 0
  1554. },
  1555. "Type": "BTInputSlot"
  1556. },
  1557. "conditionB": {
  1558. "ContainerValue": {
  1559. "Type": "BTCoderVariableAction",
  1560. "VarScope": "Scene",
  1561. "isIllegal": true,
  1562. "randomID": "iBM2cmatZpK2",
  1563. "titleLabel": {
  1564. "Type": "STRING",
  1565. "Value": "P-进度起点",
  1566. "displayName": ""
  1567. }
  1568. },
  1569. "StringValue": {
  1570. "Type": "FLOAT",
  1571. "Value": 0
  1572. },
  1573. "Type": "BTInputSlot"
  1574. },
  1575. "isIllegal": true,
  1576. "randomID": "hcsTFK8h0H6N"
  1577. },
  1578. "Type": "BTBoolSlot"
  1579. },
  1580. "isIllegal": true,
  1581. "randomID": "eT0q2UtQtAV5",
  1582. "sectionA": {
  1583. "ContainerValue": {
  1584. "Name": {
  1585. "Type": "STRING",
  1586. "Value": "进度条增长动画",
  1587. "displayName": ""
  1588. },
  1589. "Type": "BTCustomFuncBodyAction",
  1590. "funcHeadID": "21BByki3ZH5p",
  1591. "isIllegal": true,
  1592. "paramArr": [
  1593. ],
  1594. "randomID": "VqB0MxXuVBEC",
  1595. "stepSlot": {
  1596. "ContainerValue": null,
  1597. "Type": "BTStepSlot"
  1598. }
  1599. },
  1600. "Type": "BTSectionSlot"
  1601. },
  1602. "sectionB": {
  1603. "ContainerValue": null,
  1604. "Type": "BTSectionSlot"
  1605. },
  1606. "stepSlot": {
  1607. "ContainerValue": null,
  1608. "Type": "BTStepSlot"
  1609. }
  1610. },
  1611. "Type": "BTStepSlot"
  1612. }
  1613. },
  1614. "Type": "BTStepSlot"
  1615. }
  1616. },
  1617. "Type": "BTStepSlot"
  1618. }
  1619. },
  1620. "Type": "BTStepSlot"
  1621. }
  1622. },
  1623. "Type": "BTStepSlot"
  1624. },
  1625. "x": -895.4116402516637,
  1626. "y": -168.180215265847
  1627. },
  1628. "Tree3": {
  1629. "ExportTree": true,
  1630. "ImageIndex": 3,
  1631. "Name": {
  1632. "Type": "STRING",
  1633. "Value": "合集节点",
  1634. "displayName": ""
  1635. },
  1636. "Type": "BTCustomFuncHeadAction",
  1637. "VarJson": {
  1638. "boolJson": {
  1639. },
  1640. "numberJson": {
  1641. }
  1642. },
  1643. "isIllegal": false,
  1644. "randomID": "bfzw2PWHXvpD",
  1645. "stepSlot": {
  1646. "ContainerValue": {
  1647. "Name": {
  1648. "Type": "STRING",
  1649. "Value": "更新合集信息",
  1650. "displayName": ""
  1651. },
  1652. "Type": "BTCustomFuncBodyAction",
  1653. "funcHeadID": "tbqaTiZWBztq",
  1654. "isIllegal": true,
  1655. "paramArr": [
  1656. ],
  1657. "randomID": "DhOTB6J94nh7",
  1658. "stepSlot": {
  1659. "ContainerValue": {
  1660. "Name": {
  1661. "Type": "STRING",
  1662. "Value": "更新红点状态",
  1663. "displayName": ""
  1664. },
  1665. "Type": "BTCustomFuncBodyAction",
  1666. "funcHeadID": "roqUUka2DpDF",
  1667. "isIllegal": true,
  1668. "paramArr": [
  1669. ],
  1670. "randomID": "g5KsNx39c1wG",
  1671. "stepSlot": {
  1672. "ContainerValue": {
  1673. "Name": {
  1674. "Type": "STRING",
  1675. "Value": "更新卡片收集进度",
  1676. "displayName": ""
  1677. },
  1678. "Type": "BTCustomFuncBodyAction",
  1679. "funcHeadID": "FD747giWdokm",
  1680. "isIllegal": true,
  1681. "paramArr": [
  1682. ],
  1683. "randomID": "AYzzQK2tpgPZ",
  1684. "stepSlot": {
  1685. "ContainerValue": {
  1686. "Type": "BTIFControlAction",
  1687. "conditionA": {
  1688. "ContainerValue": {
  1689. "Type": "BTStringEqualOperatorAction",
  1690. "conditionA": {
  1691. "ContainerValue": {
  1692. "Type": "BTCoderVariableAction",
  1693. "VarScope": "Scene",
  1694. "isIllegal": true,
  1695. "randomID": "MqxmevNryr0j",
  1696. "titleLabel": {
  1697. "Type": "STRING",
  1698. "Value": "P-状态",
  1699. "displayName": ""
  1700. }
  1701. },
  1702. "StringValue": {
  1703. "Type": "STRING",
  1704. "Value": "Red"
  1705. },
  1706. "Type": "BTInputSlot"
  1707. },
  1708. "conditionB": {
  1709. "ContainerValue": null,
  1710. "StringValue": {
  1711. "Type": "STRING",
  1712. "Value": "未解锁"
  1713. },
  1714. "Type": "BTInputSlot"
  1715. },
  1716. "isIllegal": true,
  1717. "randomID": "pswIoJVebwFu"
  1718. },
  1719. "Type": "BTBoolSlot"
  1720. },
  1721. "isIllegal": true,
  1722. "randomID": "1Bb5DPTLw4sV",
  1723. "sectionA": {
  1724. "ContainerValue": {
  1725. "Type": "BTPlayTimeLineAction",
  1726. "baseSelect": {
  1727. "DisplayName": "常态_未解锁",
  1728. "Type": "Action",
  1729. "Value": "0"
  1730. },
  1731. "isIllegal": true,
  1732. "randomID": "uUvwQUZHRIFl",
  1733. "stepSlot": {
  1734. "ContainerValue": null,
  1735. "Type": "BTStepSlot"
  1736. }
  1737. },
  1738. "Type": "BTSectionSlot"
  1739. },
  1740. "stepSlot": {
  1741. "ContainerValue": {
  1742. "Type": "BTIFControlAction",
  1743. "conditionA": {
  1744. "ContainerValue": {
  1745. "Type": "BTStringEqualOperatorAction",
  1746. "conditionA": {
  1747. "ContainerValue": {
  1748. "Type": "BTCoderVariableAction",
  1749. "VarScope": "Scene",
  1750. "isIllegal": true,
  1751. "randomID": "6WeHXkvNoCUA",
  1752. "titleLabel": {
  1753. "Type": "STRING",
  1754. "Value": "P-状态",
  1755. "displayName": ""
  1756. }
  1757. },
  1758. "StringValue": {
  1759. "Type": "STRING",
  1760. "Value": "Red"
  1761. },
  1762. "Type": "BTInputSlot"
  1763. },
  1764. "conditionB": {
  1765. "ContainerValue": null,
  1766. "StringValue": {
  1767. "Type": "STRING",
  1768. "Value": "已解锁未完成"
  1769. },
  1770. "Type": "BTInputSlot"
  1771. },
  1772. "isIllegal": true,
  1773. "randomID": "4mL8pBMjEgsH"
  1774. },
  1775. "Type": "BTBoolSlot"
  1776. },
  1777. "isIllegal": true,
  1778. "randomID": "eSJj2BQmXFJU",
  1779. "sectionA": {
  1780. "ContainerValue": {
  1781. "Type": "BTPlayTimeLineAction",
  1782. "baseSelect": {
  1783. "DisplayName": "常态_已解锁未完成",
  1784. "Type": "Action",
  1785. "Value": "1"
  1786. },
  1787. "isIllegal": true,
  1788. "randomID": "Nqo30mEvUV9U",
  1789. "stepSlot": {
  1790. "ContainerValue": null,
  1791. "Type": "BTStepSlot"
  1792. }
  1793. },
  1794. "Type": "BTSectionSlot"
  1795. },
  1796. "stepSlot": {
  1797. "ContainerValue": {
  1798. "Type": "BTIFControlAction",
  1799. "conditionA": {
  1800. "ContainerValue": {
  1801. "Type": "BTStringEqualOperatorAction",
  1802. "conditionA": {
  1803. "ContainerValue": {
  1804. "Type": "BTCoderVariableAction",
  1805. "VarScope": "Scene",
  1806. "isIllegal": true,
  1807. "randomID": "dvfgikUSYBi0",
  1808. "titleLabel": {
  1809. "Type": "STRING",
  1810. "Value": "P-状态",
  1811. "displayName": ""
  1812. }
  1813. },
  1814. "StringValue": {
  1815. "Type": "STRING",
  1816. "Value": "Red"
  1817. },
  1818. "Type": "BTInputSlot"
  1819. },
  1820. "conditionB": {
  1821. "ContainerValue": null,
  1822. "StringValue": {
  1823. "Type": "STRING",
  1824. "Value": "已解锁已完成"
  1825. },
  1826. "Type": "BTInputSlot"
  1827. },
  1828. "isIllegal": true,
  1829. "randomID": "MDrCH7Gro3zk"
  1830. },
  1831. "Type": "BTBoolSlot"
  1832. },
  1833. "isIllegal": true,
  1834. "randomID": "VUfgrhoLrU63",
  1835. "sectionA": {
  1836. "ContainerValue": {
  1837. "Type": "BTPlayTimeLineAction",
  1838. "baseSelect": {
  1839. "DisplayName": "常态_已解锁已完成",
  1840. "Type": "Action",
  1841. "Value": "2"
  1842. },
  1843. "isIllegal": true,
  1844. "randomID": "4YLsQZK6H4ny",
  1845. "stepSlot": {
  1846. "ContainerValue": null,
  1847. "Type": "BTStepSlot"
  1848. }
  1849. },
  1850. "Type": "BTSectionSlot"
  1851. },
  1852. "stepSlot": {
  1853. "ContainerValue": {
  1854. "Type": "BTIFControlAction",
  1855. "conditionA": {
  1856. "ContainerValue": {
  1857. "Type": "BTStringEqualOperatorAction",
  1858. "conditionA": {
  1859. "ContainerValue": {
  1860. "Type": "BTCoderVariableAction",
  1861. "VarScope": "Scene",
  1862. "isIllegal": true,
  1863. "randomID": "uRKmeuxkAW5V",
  1864. "titleLabel": {
  1865. "Type": "STRING",
  1866. "Value": "P-状态",
  1867. "displayName": ""
  1868. }
  1869. },
  1870. "StringValue": {
  1871. "Type": "STRING",
  1872. "Value": "Red"
  1873. },
  1874. "Type": "BTInputSlot"
  1875. },
  1876. "conditionB": {
  1877. "ContainerValue": null,
  1878. "StringValue": {
  1879. "Type": "STRING",
  1880. "Value": "已完成按钮状态"
  1881. },
  1882. "Type": "BTInputSlot"
  1883. },
  1884. "isIllegal": true,
  1885. "randomID": "ya4G0kQi0zio"
  1886. },
  1887. "Type": "BTBoolSlot"
  1888. },
  1889. "isIllegal": true,
  1890. "randomID": "5nIQVsUa6ZBB",
  1891. "sectionA": {
  1892. "ContainerValue": {
  1893. "Type": "BTPlayTimeLineAction",
  1894. "baseSelect": {
  1895. "DisplayName": "常态_已完成按钮状态",
  1896. "Type": "Action",
  1897. "Value": "10"
  1898. },
  1899. "isIllegal": true,
  1900. "randomID": "0TEjA1X7Dkny",
  1901. "stepSlot": {
  1902. "ContainerValue": null,
  1903. "Type": "BTStepSlot"
  1904. }
  1905. },
  1906. "Type": "BTSectionSlot"
  1907. },
  1908. "stepSlot": {
  1909. "ContainerValue": null,
  1910. "Type": "BTStepSlot"
  1911. }
  1912. },
  1913. "Type": "BTStepSlot"
  1914. }
  1915. },
  1916. "Type": "BTStepSlot"
  1917. }
  1918. },
  1919. "Type": "BTStepSlot"
  1920. }
  1921. },
  1922. "Type": "BTStepSlot"
  1923. }
  1924. },
  1925. "Type": "BTStepSlot"
  1926. }
  1927. },
  1928. "Type": "BTStepSlot"
  1929. }
  1930. },
  1931. "Type": "BTStepSlot"
  1932. },
  1933. "x": -925.3378748361719,
  1934. "y": -1371.1021332170183
  1935. },
  1936. "Tree4": {
  1937. "ExportTree": true,
  1938. "ImageIndex": 10,
  1939. "Name": {
  1940. "Type": "STRING",
  1941. "Value": "卡片收集反馈动画",
  1942. "displayName": ""
  1943. },
  1944. "Type": "BTCustomFuncHeadAction",
  1945. "VarJson": {
  1946. "boolJson": {
  1947. },
  1948. "numberJson": {
  1949. }
  1950. },
  1951. "isIllegal": false,
  1952. "randomID": "Ll4BAADMjgYF",
  1953. "stepSlot": {
  1954. "ContainerValue": {
  1955. "Type": "BTPlayTimeLineWaitAction",
  1956. "baseSelect": {
  1957. "DisplayName": "动画_收集反馈",
  1958. "Type": "Action",
  1959. "Value": "13"
  1960. },
  1961. "isIllegal": true,
  1962. "randomID": "VpL5YulYURVp",
  1963. "stepSlot": {
  1964. "ContainerValue": {
  1965. "Type": "BTNotificationToCoderAction",
  1966. "conditionA": {
  1967. "ContainerValue": null,
  1968. "StringValue": {
  1969. "Type": "STRING",
  1970. "Value": "收集反馈动画播放完毕"
  1971. },
  1972. "Type": "BTInputSlot"
  1973. },
  1974. "isIllegal": true,
  1975. "randomID": "He5rQS6anum0",
  1976. "stepSlot": {
  1977. "ContainerValue": null,
  1978. "Type": "BTStepSlot"
  1979. }
  1980. },
  1981. "Type": "BTStepSlot"
  1982. }
  1983. },
  1984. "Type": "BTStepSlot"
  1985. },
  1986. "x": -1507,
  1987. "y": -1519
  1988. },
  1989. "Tree5": {
  1990. "ExportTree": true,
  1991. "ImageIndex": 7,
  1992. "Name": {
  1993. "Type": "STRING",
  1994. "Value": "进度条增长动画",
  1995. "displayName": ""
  1996. },
  1997. "Type": "BTCustomFuncHeadAction",
  1998. "VarJson": {
  1999. "boolJson": {
  2000. },
  2001. "numberJson": {
  2002. }
  2003. },
  2004. "isIllegal": false,
  2005. "randomID": "21BByki3ZH5p",
  2006. "stepSlot": {
  2007. "ContainerValue": {
  2008. "TitleInput": {
  2009. "ContainerValue": {
  2010. "Type": "BTCoderVariableAction",
  2011. "VarScope": "Scene",
  2012. "isIllegal": true,
  2013. "randomID": "uO0s3wZmK0GI",
  2014. "titleLabel": {
  2015. "Type": "STRING",
  2016. "Value": "P-进度起点",
  2017. "displayName": ""
  2018. }
  2019. },
  2020. "StringValue": {
  2021. "Type": "STRING",
  2022. "Value": "0"
  2023. },
  2024. "Type": "BTInputSlot"
  2025. },
  2026. "Type": "BTDataVarSetAction",
  2027. "VarScope": "Scene",
  2028. "baseSelect": {
  2029. "DisplayName": "进度起点",
  2030. "Type": "Action",
  2031. "Value": "进度起点"
  2032. },
  2033. "isIllegal": true,
  2034. "randomID": "q6EM3JrZmVWa",
  2035. "stepSlot": {
  2036. "ContainerValue": {
  2037. "TitleInput": {
  2038. "ContainerValue": {
  2039. "Type": "BTCoderVariableAction",
  2040. "VarScope": "Scene",
  2041. "isIllegal": true,
  2042. "randomID": "ZywuddmAIug9",
  2043. "titleLabel": {
  2044. "Type": "STRING",
  2045. "Value": "P-进度终点",
  2046. "displayName": ""
  2047. }
  2048. },
  2049. "StringValue": {
  2050. "Type": "STRING",
  2051. "Value": "0"
  2052. },
  2053. "Type": "BTInputSlot"
  2054. },
  2055. "Type": "BTDataVarSetAction",
  2056. "VarScope": "Scene",
  2057. "baseSelect": {
  2058. "DisplayName": "进度终点",
  2059. "Type": "Action",
  2060. "Value": "进度终点"
  2061. },
  2062. "isIllegal": true,
  2063. "randomID": "PZU0MBywUoZP",
  2064. "stepSlot": {
  2065. "ContainerValue": {
  2066. "TitleInput": {
  2067. "ContainerValue": null,
  2068. "StringValue": {
  2069. "Type": "STRING",
  2070. "Value": "40"
  2071. },
  2072. "Type": "BTInputSlot"
  2073. },
  2074. "Type": "BTDataVarSetAction",
  2075. "VarScope": "Scene",
  2076. "baseSelect": {
  2077. "DisplayName": "步次",
  2078. "Type": "Action",
  2079. "Value": "步次"
  2080. },
  2081. "isIllegal": true,
  2082. "randomID": "zzIvGPulHWkg",
  2083. "stepSlot": {
  2084. "ContainerValue": {
  2085. "TitleInput": {
  2086. "ContainerValue": {
  2087. "Type": "BTDivOperatorAction",
  2088. "conditionA": {
  2089. "ContainerValue": {
  2090. "Type": "BTSubOperatorAction",
  2091. "conditionA": {
  2092. "ContainerValue": {
  2093. "Type": "BTVariableAction",
  2094. "VarScope": "Scene",
  2095. "isIllegal": true,
  2096. "randomID": "zYewZeFRl6y7",
  2097. "titleLabel": {
  2098. "Type": "STRING",
  2099. "Value": "进度终点",
  2100. "displayName": ""
  2101. }
  2102. },
  2103. "StringValue": {
  2104. "Type": "FLOAT",
  2105. "Value": 0
  2106. },
  2107. "Type": "BTInputSlot"
  2108. },
  2109. "conditionB": {
  2110. "ContainerValue": {
  2111. "Type": "BTVariableAction",
  2112. "VarScope": "Scene",
  2113. "isIllegal": true,
  2114. "randomID": "LJHzhX8r3E2S",
  2115. "titleLabel": {
  2116. "Type": "STRING",
  2117. "Value": "进度起点",
  2118. "displayName": ""
  2119. }
  2120. },
  2121. "StringValue": {
  2122. "Type": "FLOAT",
  2123. "Value": 0
  2124. },
  2125. "Type": "BTInputSlot"
  2126. },
  2127. "isIllegal": true,
  2128. "randomID": "8gTkqj6naf7v"
  2129. },
  2130. "StringValue": {
  2131. "Type": "FLOAT",
  2132. "Value": 0
  2133. },
  2134. "Type": "BTInputSlot"
  2135. },
  2136. "conditionB": {
  2137. "ContainerValue": {
  2138. "Type": "BTVariableAction",
  2139. "VarScope": "Scene",
  2140. "isIllegal": true,
  2141. "randomID": "U6SK7DAmCWWD",
  2142. "titleLabel": {
  2143. "Type": "STRING",
  2144. "Value": "步次",
  2145. "displayName": ""
  2146. }
  2147. },
  2148. "StringValue": {
  2149. "Type": "FLOAT",
  2150. "Value": 0
  2151. },
  2152. "Type": "BTInputSlot"
  2153. },
  2154. "isIllegal": true,
  2155. "randomID": "1emCg9jWf4OH"
  2156. },
  2157. "StringValue": {
  2158. "Type": "STRING",
  2159. "Value": "0"
  2160. },
  2161. "Type": "BTInputSlot"
  2162. },
  2163. "Type": "BTDataVarSetAction",
  2164. "VarScope": "Scene",
  2165. "baseSelect": {
  2166. "DisplayName": "步幅",
  2167. "Type": "Action",
  2168. "Value": "步幅"
  2169. },
  2170. "isIllegal": true,
  2171. "randomID": "HXwpPuZaa6VA",
  2172. "stepSlot": {
  2173. "ContainerValue": {
  2174. "Type": "BTWhileVarAction",
  2175. "funBoolDic": {
  2176. },
  2177. "funVarDic": {
  2178. },
  2179. "isIllegal": true,
  2180. "numberInput": {
  2181. "ContainerValue": {
  2182. "Type": "BTVariableAction",
  2183. "VarScope": "Scene",
  2184. "isIllegal": true,
  2185. "randomID": "cRO2frPjw3cy",
  2186. "titleLabel": {
  2187. "Type": "STRING",
  2188. "Value": "步次",
  2189. "displayName": ""
  2190. }
  2191. },
  2192. "StringValue": {
  2193. "Type": "FLOAT",
  2194. "Value": 10
  2195. },
  2196. "Type": "BTInputSlot"
  2197. },
  2198. "randomID": "zwWavCeFFEa5",
  2199. "sectionA": {
  2200. "ContainerValue": {
  2201. "Type": "BTWaitTimeAction",
  2202. "conditionA": {
  2203. "ContainerValue": null,
  2204. "StringValue": {
  2205. "Type": "FLOAT",
  2206. "Value": 0.009999999776482582
  2207. },
  2208. "Type": "BTInputSlot"
  2209. },
  2210. "isIllegal": true,
  2211. "randomID": "aT2Xo7gQFFwB",
  2212. "stepSlot": {
  2213. "ContainerValue": {
  2214. "TitleInput": {
  2215. "ContainerValue": {
  2216. "Type": "BTAddOperatorAction",
  2217. "conditionA": {
  2218. "ContainerValue": {
  2219. "Type": "BTVariableAction",
  2220. "VarScope": "Scene",
  2221. "isIllegal": true,
  2222. "randomID": "QTubbdN056bb",
  2223. "titleLabel": {
  2224. "Type": "STRING",
  2225. "Value": "进度起点",
  2226. "displayName": ""
  2227. }
  2228. },
  2229. "StringValue": {
  2230. "Type": "FLOAT",
  2231. "Value": 0
  2232. },
  2233. "Type": "BTInputSlot"
  2234. },
  2235. "conditionB": {
  2236. "ContainerValue": {
  2237. "Type": "BTVariableAction",
  2238. "VarScope": "Scene",
  2239. "isIllegal": true,
  2240. "randomID": "Ql69p2I5YnkC",
  2241. "titleLabel": {
  2242. "Type": "STRING",
  2243. "Value": "步幅",
  2244. "displayName": ""
  2245. }
  2246. },
  2247. "StringValue": {
  2248. "Type": "FLOAT",
  2249. "Value": 0
  2250. },
  2251. "Type": "BTInputSlot"
  2252. },
  2253. "isIllegal": true,
  2254. "randomID": "MofRdEyZflIE"
  2255. },
  2256. "StringValue": {
  2257. "Type": "STRING",
  2258. "Value": "0"
  2259. },
  2260. "Type": "BTInputSlot"
  2261. },
  2262. "Type": "BTDataVarSetAction",
  2263. "VarScope": "Scene",
  2264. "baseSelect": {
  2265. "DisplayName": "进度起点",
  2266. "Type": "Action",
  2267. "Value": "进度起点"
  2268. },
  2269. "isIllegal": true,
  2270. "randomID": "9gkHsrE6azyj",
  2271. "stepSlot": {
  2272. "ContainerValue": {
  2273. "TitleInput": {
  2274. "ContainerValue": {
  2275. "Type": "BTMulOperatorAction",
  2276. "conditionA": {
  2277. "ContainerValue": {
  2278. "Type": "BTDivOperatorAction",
  2279. "conditionA": {
  2280. "ContainerValue": {
  2281. "Type": "BTVariableAction",
  2282. "VarScope": "Scene",
  2283. "isIllegal": true,
  2284. "randomID": "7DI5H1NqTOgO",
  2285. "titleLabel": {
  2286. "Type": "STRING",
  2287. "Value": "进度起点",
  2288. "displayName": ""
  2289. }
  2290. },
  2291. "StringValue": {
  2292. "Type": "FLOAT",
  2293. "Value": 0
  2294. },
  2295. "Type": "BTInputSlot"
  2296. },
  2297. "conditionB": {
  2298. "ContainerValue": {
  2299. "Type": "BTCoderVariableAction",
  2300. "VarScope": "Scene",
  2301. "isIllegal": true,
  2302. "randomID": "6kMV1xVBUha6",
  2303. "titleLabel": {
  2304. "Type": "STRING",
  2305. "Value": "P-进度总量",
  2306. "displayName": ""
  2307. }
  2308. },
  2309. "StringValue": {
  2310. "Type": "FLOAT",
  2311. "Value": 0
  2312. },
  2313. "Type": "BTInputSlot"
  2314. },
  2315. "isIllegal": true,
  2316. "randomID": "QzSEmhKUGh5s"
  2317. },
  2318. "StringValue": {
  2319. "Type": "FLOAT",
  2320. "Value": 0
  2321. },
  2322. "Type": "BTInputSlot"
  2323. },
  2324. "conditionB": {
  2325. "ContainerValue": null,
  2326. "StringValue": {
  2327. "Type": "FLOAT",
  2328. "Value": 100
  2329. },
  2330. "Type": "BTInputSlot"
  2331. },
  2332. "isIllegal": true,
  2333. "randomID": "ae2UVKizPZ8i"
  2334. },
  2335. "StringValue": {
  2336. "Type": "FLOAT",
  2337. "Value": 50
  2338. },
  2339. "Type": "BTInputSlot"
  2340. },
  2341. "Type": "BTSceneProgressBarAction",
  2342. "baseSelect": {
  2343. "DisplayName": "卡片收集进度条",
  2344. "Type": "Action",
  2345. "Value": "t1Y3n36bKDdd"
  2346. },
  2347. "isIllegal": true,
  2348. "randomID": "NfaEkGSLH10Z",
  2349. "redSelect": {
  2350. "DisplayName": "卡片收集进度条",
  2351. "Type": "OBJ",
  2352. "Value": "gelumYM0dB16"
  2353. },
  2354. "stepSlot": {
  2355. "ContainerValue": {
  2356. "TitleInput": {
  2357. "ContainerValue": {
  2358. "Type": "BTStringLinkMoreOperatorAction",
  2359. "conditionA": {
  2360. "ContainerValue": {
  2361. "Type": "BTFloatFormatAction",
  2362. "conditionA": {
  2363. "ContainerValue": null,
  2364. "StringValue": {
  2365. "Type": "FLOAT",
  2366. "Value": 0
  2367. },
  2368. "Type": "BTInputSlot"
  2369. },
  2370. "conditionB": {
  2371. "ContainerValue": {
  2372. "Type": "BTVariableAction",
  2373. "VarScope": "Scene",
  2374. "isIllegal": true,
  2375. "randomID": "7jtVMnO0zBiF",
  2376. "titleLabel": {
  2377. "Type": "STRING",
  2378. "Value": "进度起点",
  2379. "displayName": ""
  2380. }
  2381. },
  2382. "StringValue": {
  2383. "Type": "FLOAT",
  2384. "Value": 2.551300048828125
  2385. },
  2386. "Type": "BTInputSlot"
  2387. },
  2388. "isIllegal": true,
  2389. "randomID": "zsyVqBHd93EY"
  2390. },
  2391. "StringValue": {
  2392. "Type": "STRING",
  2393. "Value": "A"
  2394. },
  2395. "Type": "BTInputSlot"
  2396. },
  2397. "conditionB": {
  2398. "ContainerValue": null,
  2399. "StringValue": {
  2400. "Type": "STRING",
  2401. "Value": "/"
  2402. },
  2403. "Type": "BTInputSlot"
  2404. },
  2405. "conditionC": {
  2406. "ContainerValue": {
  2407. "Type": "BTCoderVariableAction",
  2408. "VarScope": "Scene",
  2409. "isIllegal": true,
  2410. "randomID": "h4BVUZA0j1MG",
  2411. "titleLabel": {
  2412. "Type": "STRING",
  2413. "Value": "P-进度总量",
  2414. "displayName": ""
  2415. }
  2416. },
  2417. "StringValue": {
  2418. "Type": "STRING",
  2419. "Value": "C"
  2420. },
  2421. "Type": "BTInputSlot"
  2422. },
  2423. "conditionD": {
  2424. "ContainerValue": null,
  2425. "StringValue": {
  2426. "Type": "STRING",
  2427. "Value": ""
  2428. },
  2429. "Type": "BTInputSlot"
  2430. },
  2431. "conditionE": {
  2432. "ContainerValue": null,
  2433. "StringValue": {
  2434. "Type": "STRING",
  2435. "Value": ""
  2436. },
  2437. "Type": "BTInputSlot"
  2438. },
  2439. "isIllegal": true,
  2440. "randomID": "4ZNnTXkv4Apy"
  2441. },
  2442. "StringValue": {
  2443. "Type": "STRING",
  2444. "Value": "填写标题内容"
  2445. },
  2446. "Type": "BTInputSlot"
  2447. },
  2448. "Type": "BTSceneLabelTitleAction",
  2449. "baseSelect": {
  2450. "DisplayName": "卡片收集文本进度",
  2451. "Type": "Action",
  2452. "Value": "HzMlZ9hZS5Y8"
  2453. },
  2454. "isIllegal": true,
  2455. "randomID": "6gOOrAREz3Rj",
  2456. "redSelect": {
  2457. "DisplayName": "卡片收集进度条",
  2458. "Type": "OBJ",
  2459. "Value": "gelumYM0dB16"
  2460. },
  2461. "stepSlot": {
  2462. "ContainerValue": null,
  2463. "Type": "BTStepSlot"
  2464. }
  2465. },
  2466. "Type": "BTStepSlot"
  2467. }
  2468. },
  2469. "Type": "BTStepSlot"
  2470. }
  2471. },
  2472. "Type": "BTStepSlot"
  2473. }
  2474. },
  2475. "Type": "BTSectionSlot"
  2476. },
  2477. "stepSlot": {
  2478. "ContainerValue": {
  2479. "Type": "BTIFControlAction",
  2480. "conditionA": {
  2481. "ContainerValue": {
  2482. "Type": "BTEqualOperatorAction",
  2483. "conditionA": {
  2484. "ContainerValue": {
  2485. "Type": "BTVariableAction",
  2486. "VarScope": "Scene",
  2487. "isIllegal": true,
  2488. "randomID": "agTKDV5QAABY",
  2489. "titleLabel": {
  2490. "Type": "STRING",
  2491. "Value": "进度起点",
  2492. "displayName": ""
  2493. }
  2494. },
  2495. "StringValue": {
  2496. "Type": "FLOAT",
  2497. "Value": 0
  2498. },
  2499. "Type": "BTInputSlot"
  2500. },
  2501. "conditionB": {
  2502. "ContainerValue": {
  2503. "Type": "BTCoderVariableAction",
  2504. "VarScope": "Scene",
  2505. "isIllegal": true,
  2506. "randomID": "2zQnvEb8owqW",
  2507. "titleLabel": {
  2508. "Type": "STRING",
  2509. "Value": "P-进度总量",
  2510. "displayName": ""
  2511. }
  2512. },
  2513. "StringValue": {
  2514. "Type": "FLOAT",
  2515. "Value": 0
  2516. },
  2517. "Type": "BTInputSlot"
  2518. },
  2519. "isIllegal": true,
  2520. "randomID": "ugOPBpPjXgdT"
  2521. },
  2522. "Type": "BTBoolSlot"
  2523. },
  2524. "isIllegal": true,
  2525. "randomID": "cqZ3MV5sWJNK",
  2526. "sectionA": {
  2527. "ContainerValue": {
  2528. "Type": "BTPlaySceneTimeLineWaitAction",
  2529. "baseSelect": {
  2530. "DisplayName": "完成状态",
  2531. "Type": "Action",
  2532. "Value": "1"
  2533. },
  2534. "isIllegal": true,
  2535. "randomID": "zh3oRX25QRrT",
  2536. "redSelect": {
  2537. "DisplayName": "卡片收集进度条",
  2538. "Type": "OBJ",
  2539. "Value": "gelumYM0dB16"
  2540. },
  2541. "stepSlot": {
  2542. "ContainerValue": {
  2543. "Type": "BTPlayTimeLineAction",
  2544. "baseSelect": {
  2545. "DisplayName": "动画_进度条转打开按钮",
  2546. "Type": "Action",
  2547. "Value": "11"
  2548. },
  2549. "isIllegal": true,
  2550. "randomID": "ldSaPqAmIYMl",
  2551. "stepSlot": {
  2552. "ContainerValue": null,
  2553. "Type": "BTStepSlot"
  2554. }
  2555. },
  2556. "Type": "BTStepSlot"
  2557. }
  2558. },
  2559. "Type": "BTSectionSlot"
  2560. },
  2561. "stepSlot": {
  2562. "ContainerValue": null,
  2563. "Type": "BTStepSlot"
  2564. }
  2565. },
  2566. "Type": "BTStepSlot"
  2567. }
  2568. },
  2569. "Type": "BTStepSlot"
  2570. }
  2571. },
  2572. "Type": "BTStepSlot"
  2573. }
  2574. },
  2575. "Type": "BTStepSlot"
  2576. }
  2577. },
  2578. "Type": "BTStepSlot"
  2579. }
  2580. },
  2581. "Type": "BTStepSlot"
  2582. },
  2583. "x": -896.927330324695,
  2584. "y": 207.82987772368017
  2585. },
  2586. "Tree6": {
  2587. "ExportTree": true,
  2588. "ImageIndex": 12,
  2589. "Name": {
  2590. "Type": "STRING",
  2591. "Value": "程序初始化",
  2592. "displayName": ""
  2593. },
  2594. "Type": "BTCustomFuncHeadAction",
  2595. "VarJson": {
  2596. "boolJson": {
  2597. },
  2598. "numberJson": {
  2599. }
  2600. },
  2601. "isIllegal": false,
  2602. "randomID": "nSUwCbhILihe",
  2603. "stepSlot": {
  2604. "ContainerValue": {
  2605. "Type": "BTNotificationNodeToCoderAction",
  2606. "baseSelect": {
  2607. "DisplayName": "兑换完成动画终点",
  2608. "Type": "Action",
  2609. "Value": "CIdtZwnDWvQZ"
  2610. },
  2611. "conditionA": {
  2612. "ContainerValue": null,
  2613. "StringValue": {
  2614. "Type": "STRING",
  2615. "Value": "设置程序节点"
  2616. },
  2617. "Type": "BTInputSlot"
  2618. },
  2619. "isIllegal": true,
  2620. "paramA": {
  2621. "ContainerValue": null,
  2622. "StringValue": {
  2623. "Type": "STRING",
  2624. "Value": "兑换完成动画终点"
  2625. },
  2626. "Type": "BTInputSlot"
  2627. },
  2628. "randomID": "lu8mx8YadusW",
  2629. "stepSlot": {
  2630. "ContainerValue": {
  2631. "Type": "BTNotificationNodeToCoderAction",
  2632. "baseSelect": {
  2633. "DisplayName": "点击识别区域",
  2634. "Type": "Action",
  2635. "Value": "We0G443hJlBg"
  2636. },
  2637. "conditionA": {
  2638. "ContainerValue": null,
  2639. "StringValue": {
  2640. "Type": "STRING",
  2641. "Value": "设置程序节点"
  2642. },
  2643. "Type": "BTInputSlot"
  2644. },
  2645. "isIllegal": true,
  2646. "paramA": {
  2647. "ContainerValue": null,
  2648. "StringValue": {
  2649. "Type": "STRING",
  2650. "Value": "点击识别区域"
  2651. },
  2652. "Type": "BTInputSlot"
  2653. },
  2654. "randomID": "fLQOGVGgquJ1",
  2655. "stepSlot": {
  2656. "ContainerValue": null,
  2657. "Type": "BTStepSlot"
  2658. }
  2659. },
  2660. "Type": "BTStepSlot"
  2661. }
  2662. },
  2663. "Type": "BTStepSlot"
  2664. },
  2665. "x": -536,
  2666. "y": -1452
  2667. },
  2668. "Tree7": {
  2669. "ExportTree": true,
  2670. "ImageIndex": -1,
  2671. "Type": "BTButtonClickFuncAction",
  2672. "VarJson": {
  2673. "boolJson": {
  2674. },
  2675. "numberJson": {
  2676. }
  2677. },
  2678. "isIllegal": false,
  2679. "mathSelector": {
  2680. "DisplayName": "Open按钮",
  2681. "Type": "OBJ",
  2682. "Value": "STMw0LhSRIKV"
  2683. },
  2684. "randomID": "wt5i01vUZjrh",
  2685. "stepSlot": {
  2686. "ContainerValue": {
  2687. "Type": "BTButtonEnableAction",
  2688. "baseSelect": {
  2689. "DisplayName": "Open按钮",
  2690. "Type": "Action",
  2691. "Value": "STMw0LhSRIKV"
  2692. },
  2693. "enableButton": {
  2694. "Type": "BTCheckBox",
  2695. "isEnable": false
  2696. },
  2697. "isIllegal": true,
  2698. "randomID": "sMHMjCZp1VG1",
  2699. "stepSlot": {
  2700. "ContainerValue": {
  2701. "Type": "BTPlayTimeLineWaitAction",
  2702. "baseSelect": {
  2703. "DisplayName": "动画_按钮转已解锁已完成",
  2704. "Type": "Action",
  2705. "Value": "12"
  2706. },
  2707. "isIllegal": true,
  2708. "randomID": "fNDApNl0GcWJ",
  2709. "stepSlot": {
  2710. "ContainerValue": {
  2711. "Type": "BTButtonEnableAction",
  2712. "baseSelect": {
  2713. "DisplayName": "Open按钮",
  2714. "Type": "Action",
  2715. "Value": "STMw0LhSRIKV"
  2716. },
  2717. "enableButton": {
  2718. "Type": "BTCheckBox",
  2719. "isEnable": true
  2720. },
  2721. "isIllegal": true,
  2722. "randomID": "Yfda3UT01mzP",
  2723. "stepSlot": {
  2724. "ContainerValue": {
  2725. "Type": "BTNotificationToCoderAction",
  2726. "conditionA": {
  2727. "ContainerValue": null,
  2728. "StringValue": {
  2729. "Type": "STRING",
  2730. "Value": "打开合集收集完成展示界面"
  2731. },
  2732. "Type": "BTInputSlot"
  2733. },
  2734. "isIllegal": true,
  2735. "randomID": "g9koYfRrTM7M",
  2736. "stepSlot": {
  2737. "ContainerValue": null,
  2738. "Type": "BTStepSlot"
  2739. }
  2740. },
  2741. "Type": "BTStepSlot"
  2742. }
  2743. },
  2744. "Type": "BTStepSlot"
  2745. }
  2746. },
  2747. "Type": "BTStepSlot"
  2748. }
  2749. },
  2750. "Type": "BTStepSlot"
  2751. },
  2752. "x": -1467.2937131664578,
  2753. "y": 394.71181363094314
  2754. },
  2755. "Tree8": {
  2756. "ExportTree": true,
  2757. "ImageIndex": 9,
  2758. "Name": {
  2759. "Type": "STRING",
  2760. "Value": "更新红点状态",
  2761. "displayName": ""
  2762. },
  2763. "Type": "BTCustomFuncHeadAction",
  2764. "VarJson": {
  2765. "boolJson": {
  2766. },
  2767. "numberJson": {
  2768. }
  2769. },
  2770. "isIllegal": false,
  2771. "randomID": "roqUUka2DpDF",
  2772. "stepSlot": {
  2773. "ContainerValue": {
  2774. "Type": "BTIFControlAction",
  2775. "conditionA": {
  2776. "ContainerValue": {
  2777. "Type": "BTBiggerThanAction",
  2778. "conditionA": {
  2779. "ContainerValue": {
  2780. "Type": "BTCoderVariableAction",
  2781. "VarScope": "Scene",
  2782. "isIllegal": true,
  2783. "randomID": "j7i76kzwAap9",
  2784. "titleLabel": {
  2785. "Type": "STRING",
  2786. "Value": "P-合集红点数",
  2787. "displayName": ""
  2788. }
  2789. },
  2790. "StringValue": {
  2791. "Type": "FLOAT",
  2792. "Value": 0
  2793. },
  2794. "Type": "BTInputSlot"
  2795. },
  2796. "conditionB": {
  2797. "ContainerValue": null,
  2798. "StringValue": {
  2799. "Type": "FLOAT",
  2800. "Value": 0
  2801. },
  2802. "Type": "BTInputSlot"
  2803. },
  2804. "isIllegal": true,
  2805. "randomID": "mxiFlDie07j0"
  2806. },
  2807. "Type": "BTBoolSlot"
  2808. },
  2809. "isIllegal": true,
  2810. "randomID": "R6PY8UhHSOWv",
  2811. "sectionA": {
  2812. "ContainerValue": {
  2813. "Type": "BTNodeShowAction",
  2814. "baseSelect": {
  2815. "DisplayName": "合集红点数量标签",
  2816. "Type": "Action",
  2817. "Value": "Q849NEoTaiBG"
  2818. },
  2819. "isIllegal": true,
  2820. "randomID": "3pF7rpSs3XzP",
  2821. "stepSlot": {
  2822. "ContainerValue": {
  2823. "TitleInput": {
  2824. "ContainerValue": {
  2825. "Type": "BTCoderVariableAction",
  2826. "VarScope": "Scene",
  2827. "isIllegal": true,
  2828. "randomID": "bRUIYxoQ1m1p",
  2829. "titleLabel": {
  2830. "Type": "STRING",
  2831. "Value": "P-合集红点数",
  2832. "displayName": ""
  2833. }
  2834. },
  2835. "StringValue": {
  2836. "Type": "STRING",
  2837. "Value": "填写标题内容"
  2838. },
  2839. "Type": "BTInputSlot"
  2840. },
  2841. "Type": "BTLabelTitleAction",
  2842. "baseSelect": {
  2843. "DisplayName": "合集红点数量",
  2844. "Type": "Action",
  2845. "Value": "VWg8lO36jwoB"
  2846. },
  2847. "isIllegal": true,
  2848. "randomID": "oVwKwB7j7Z4r",
  2849. "stepSlot": {
  2850. "ContainerValue": null,
  2851. "Type": "BTStepSlot"
  2852. }
  2853. },
  2854. "Type": "BTStepSlot"
  2855. }
  2856. },
  2857. "Type": "BTSectionSlot"
  2858. },
  2859. "stepSlot": {
  2860. "ContainerValue": {
  2861. "Type": "BTIFControlAction",
  2862. "conditionA": {
  2863. "ContainerValue": {
  2864. "Type": "BTEqualOperatorAction",
  2865. "conditionA": {
  2866. "ContainerValue": {
  2867. "Type": "BTCoderVariableAction",
  2868. "VarScope": "Scene",
  2869. "isIllegal": true,
  2870. "randomID": "ddV9g6YEalZ3",
  2871. "titleLabel": {
  2872. "Type": "STRING",
  2873. "Value": "P-合集红点数",
  2874. "displayName": ""
  2875. }
  2876. },
  2877. "StringValue": {
  2878. "Type": "FLOAT",
  2879. "Value": 0
  2880. },
  2881. "Type": "BTInputSlot"
  2882. },
  2883. "conditionB": {
  2884. "ContainerValue": null,
  2885. "StringValue": {
  2886. "Type": "FLOAT",
  2887. "Value": 0
  2888. },
  2889. "Type": "BTInputSlot"
  2890. },
  2891. "isIllegal": true,
  2892. "randomID": "DnyQk4nAtgRz"
  2893. },
  2894. "Type": "BTBoolSlot"
  2895. },
  2896. "isIllegal": true,
  2897. "randomID": "EYfL08KXC5RC",
  2898. "sectionA": {
  2899. "ContainerValue": {
  2900. "Type": "BTNodeHiddenAction",
  2901. "baseSelect": {
  2902. "DisplayName": "合集红点数量标签",
  2903. "Type": "Action",
  2904. "Value": "Q849NEoTaiBG"
  2905. },
  2906. "isIllegal": true,
  2907. "randomID": "1kG2pzas5YMH",
  2908. "stepSlot": {
  2909. "ContainerValue": null,
  2910. "Type": "BTStepSlot"
  2911. }
  2912. },
  2913. "Type": "BTSectionSlot"
  2914. },
  2915. "stepSlot": {
  2916. "ContainerValue": null,
  2917. "Type": "BTStepSlot"
  2918. }
  2919. },
  2920. "Type": "BTStepSlot"
  2921. }
  2922. },
  2923. "Type": "BTStepSlot"
  2924. },
  2925. "x": -915.9999872595073,
  2926. "y": -806.4999870732428
  2927. },
  2928. "Tree9": {
  2929. "ExportTree": true,
  2930. "ImageIndex": 4,
  2931. "Name": {
  2932. "Type": "STRING",
  2933. "Value": "",
  2934. "displayName": ""
  2935. },
  2936. "Type": "BTMessageReciverAction",
  2937. "VarJson": {
  2938. "boolJson": {
  2939. },
  2940. "numberJson": {
  2941. "消息参数": "Number"
  2942. }
  2943. },
  2944. "isIllegal": false,
  2945. "mathSelector": {
  2946. "DisplayName": "关闭合集页界面",
  2947. "Type": "Action",
  2948. "Value": "HeDhLI5iL12j"
  2949. },
  2950. "randomID": "zVZtEo0otNMH",
  2951. "stepSlot": {
  2952. "ContainerValue": {
  2953. "Type": "BTButtonEnableAction",
  2954. "baseSelect": {
  2955. "DisplayName": "合集已解锁触发按钮",
  2956. "Type": "Action",
  2957. "Value": "uckhMuJAfYY5"
  2958. },
  2959. "enableButton": {
  2960. "Type": "BTCheckBox",
  2961. "isEnable": true
  2962. },
  2963. "isIllegal": true,
  2964. "randomID": "7suyBV6r1CKg",
  2965. "stepSlot": {
  2966. "ContainerValue": null,
  2967. "Type": "BTStepSlot"
  2968. }
  2969. },
  2970. "Type": "BTStepSlot"
  2971. },
  2972. "x": -1393.8314088343043,
  2973. "y": 246.54355177235954
  2974. }
  2975. }
  2976. }
  2977. },
  2978. "RedNoteInfo": {
  2979. },
  2980. "TreeList": {
  2981. "Tree0": {
  2982. "ExportTree": true,
  2983. "ImageIndex": 3,
  2984. "Name": {
  2985. "Type": "STRING",
  2986. "Value": "",
  2987. "displayName": ""
  2988. },
  2989. "Type": "BTMessageReciverAction",
  2990. "VarJson": {
  2991. "boolJson": {
  2992. },
  2993. "numberJson": {
  2994. "消息参数": "Number"
  2995. }
  2996. },
  2997. "isIllegal": false,
  2998. "mathSelector": {
  2999. "DisplayName": "开始新手引导教程",
  3000. "Type": "Action",
  3001. "Value": "gmKlNPz4TneC"
  3002. },
  3003. "randomID": "fn4oQBfGBjrk",
  3004. "stepSlot": {
  3005. "ContainerValue": {
  3006. "BTInputSlot1": {
  3007. "ContainerValue": null,
  3008. "StringValue": {
  3009. "Type": "STRING",
  3010. "Value": "活动详情"
  3011. },
  3012. "Type": "BTInputSlot"
  3013. },
  3014. "Name": {
  3015. "Type": "STRING",
  3016. "Value": "新手引导教程界面",
  3017. "displayName": ""
  3018. },
  3019. "Type": "BTCustomFuncBodyAction",
  3020. "funcHeadID": "StKzW6M8u4p6",
  3021. "isIllegal": true,
  3022. "paramArr": [
  3023. [
  3024. "BTInputSlot1",
  3025. "教学类型"
  3026. ]
  3027. ],
  3028. "randomID": "E9PKxeTaiHCT",
  3029. "stepSlot": {
  3030. "ContainerValue": null,
  3031. "Type": "BTStepSlot"
  3032. }
  3033. },
  3034. "Type": "BTStepSlot"
  3035. },
  3036. "x": 129.24598001891786,
  3037. "y": -362.2262653960207
  3038. },
  3039. "Tree1": {
  3040. "ExportTree": true,
  3041. "ImageIndex": -1,
  3042. "Type": "BTButtonClickFuncAction",
  3043. "VarJson": {
  3044. "boolJson": {
  3045. },
  3046. "numberJson": {
  3047. }
  3048. },
  3049. "isIllegal": false,
  3050. "mathSelector": {
  3051. "DisplayName": "引导教程_活动详情",
  3052. "Type": "OBJ",
  3053. "Value": "1Gm0AeWd8Kmp"
  3054. },
  3055. "randomID": "Bvqd72DHaWOy",
  3056. "stepSlot": {
  3057. "ContainerValue": {
  3058. "Type": "BTRedHiddenAction",
  3059. "baseSelect": {
  3060. "DisplayName": "引导教程_活动详情按钮",
  3061. "Type": "Action",
  3062. "Value": "19"
  3063. },
  3064. "isIllegal": true,
  3065. "randomID": "sNebMEawoERM",
  3066. "stepSlot": {
  3067. "ContainerValue": {
  3068. "Type": "BTButtonEnableAction",
  3069. "baseSelect": {
  3070. "DisplayName": "引导教程_活动详情",
  3071. "Type": "Action",
  3072. "Value": "1Gm0AeWd8Kmp"
  3073. },
  3074. "enableButton": {
  3075. "Type": "BTCheckBox",
  3076. "isEnable": false
  3077. },
  3078. "isIllegal": true,
  3079. "randomID": "4h0Erb402h6D",
  3080. "stepSlot": {
  3081. "ContainerValue": {
  3082. "Type": "BTNotificationToCoderAction",
  3083. "conditionA": {
  3084. "ContainerValue": null,
  3085. "StringValue": {
  3086. "Type": "STRING",
  3087. "Value": "打开活动详情界面"
  3088. },
  3089. "Type": "BTInputSlot"
  3090. },
  3091. "isIllegal": true,
  3092. "randomID": "GTccTZsOkmGg",
  3093. "stepSlot": {
  3094. "ContainerValue": null,
  3095. "Type": "BTStepSlot"
  3096. }
  3097. },
  3098. "Type": "BTStepSlot"
  3099. }
  3100. },
  3101. "Type": "BTStepSlot"
  3102. }
  3103. },
  3104. "Type": "BTStepSlot"
  3105. },
  3106. "x": -340.0193424496403,
  3107. "y": -314.04564267918164
  3108. },
  3109. "Tree2": {
  3110. "ExportTree": true,
  3111. "ImageIndex": 2,
  3112. "Name": {
  3113. "Type": "STRING",
  3114. "Value": "",
  3115. "displayName": ""
  3116. },
  3117. "Type": "BTMessageReciverAction",
  3118. "VarJson": {
  3119. "boolJson": {
  3120. },
  3121. "numberJson": {
  3122. "消息参数": "Number"
  3123. }
  3124. },
  3125. "isIllegal": false,
  3126. "mathSelector": {
  3127. "DisplayName": "关闭活动详情界面",
  3128. "Type": "Action",
  3129. "Value": "vzBPRYsCJ0VC"
  3130. },
  3131. "randomID": "OPRTWnm8nCc9",
  3132. "stepSlot": {
  3133. "ContainerValue": {
  3134. "Type": "BTButtonEnableAction",
  3135. "baseSelect": {
  3136. "DisplayName": "引导教程_活动详情",
  3137. "Type": "Action",
  3138. "Value": "1Gm0AeWd8Kmp"
  3139. },
  3140. "enableButton": {
  3141. "Type": "BTCheckBox",
  3142. "isEnable": true
  3143. },
  3144. "isIllegal": true,
  3145. "randomID": "OG44O4Vyh8MI",
  3146. "stepSlot": {
  3147. "ContainerValue": null,
  3148. "Type": "BTStepSlot"
  3149. }
  3150. },
  3151. "Type": "BTStepSlot"
  3152. },
  3153. "x": -293.32623743000147,
  3154. "y": -56.93093600635165
  3155. },
  3156. "Tree3": {
  3157. "ExportTree": true,
  3158. "ImageIndex": 1,
  3159. "Name": {
  3160. "Type": "STRING",
  3161. "Value": "新手引导教程界面",
  3162. "displayName": ""
  3163. },
  3164. "Type": "BTCustomFuncHeadAction",
  3165. "VarJson": {
  3166. "boolJson": {
  3167. },
  3168. "numberJson": {
  3169. "教学类型": "Number"
  3170. }
  3171. },
  3172. "isIllegal": false,
  3173. "randomID": "StKzW6M8u4p6",
  3174. "stepSlot": {
  3175. "ContainerValue": {
  3176. "Name": {
  3177. "Type": "STRING",
  3178. "Value": "更新教程专用合集节点信息",
  3179. "displayName": ""
  3180. },
  3181. "Type": "BTCustomFuncBodyAction",
  3182. "funcHeadID": "DA2a6kka9Uyf",
  3183. "isIllegal": true,
  3184. "paramArr": [
  3185. ],
  3186. "randomID": "uA4O5LSGANbO",
  3187. "stepSlot": {
  3188. "ContainerValue": {
  3189. "Type": "BTRedShowAction",
  3190. "baseSelect": {
  3191. "DisplayName": "引导教程_活动详情按钮",
  3192. "Type": "Action",
  3193. "Value": "19"
  3194. },
  3195. "isIllegal": true,
  3196. "randomID": "tBpF4Kd7UUYh",
  3197. "stepSlot": {
  3198. "ContainerValue": {
  3199. "Type": "BTNodeSetPosAction",
  3200. "baseSelect": {
  3201. "DisplayName": "教程合集坐标",
  3202. "Type": "Action",
  3203. "Value": "n3kzFLh9s14E"
  3204. },
  3205. "isIllegal": true,
  3206. "posXInput": {
  3207. "ContainerValue": {
  3208. "Type": "BTCoderVariableAction",
  3209. "VarScope": "Scene",
  3210. "isIllegal": true,
  3211. "randomID": "XP1G9PmK2aif",
  3212. "titleLabel": {
  3213. "Type": "STRING",
  3214. "Value": "P-合集教程_坐标X",
  3215. "displayName": ""
  3216. }
  3217. },
  3218. "StringValue": {
  3219. "Type": "FLOAT",
  3220. "Value": 0
  3221. },
  3222. "Type": "BTInputSlot"
  3223. },
  3224. "posYInput": {
  3225. "ContainerValue": {
  3226. "Type": "BTCoderVariableAction",
  3227. "VarScope": "Scene",
  3228. "isIllegal": true,
  3229. "randomID": "8zexDEdDtmq0",
  3230. "titleLabel": {
  3231. "Type": "STRING",
  3232. "Value": "P-合集教程_坐标Y",
  3233. "displayName": ""
  3234. }
  3235. },
  3236. "StringValue": {
  3237. "Type": "FLOAT",
  3238. "Value": 0
  3239. },
  3240. "Type": "BTInputSlot"
  3241. },
  3242. "randomID": "aD5ArZptxTiO",
  3243. "stepSlot": {
  3244. "ContainerValue": {
  3245. "Type": "BTIFControlAction",
  3246. "conditionA": {
  3247. "ContainerValue": {
  3248. "Type": "BTStringEqualOperatorAction",
  3249. "conditionA": {
  3250. "ContainerValue": {
  3251. "Type": "BTFuncVariableAction",
  3252. "colorName": "More",
  3253. "currentStr": "教学类型",
  3254. "fatherFuncID": "StKzW6M8u4p6",
  3255. "isIllegal": true,
  3256. "randomID": "f4G93f1YqMvd",
  3257. "titleLabel": {
  3258. "Type": "STRING",
  3259. "Value": "教学类型",
  3260. "displayName": ""
  3261. }
  3262. },
  3263. "StringValue": {
  3264. "Type": "STRING",
  3265. "Value": "Red"
  3266. },
  3267. "Type": "BTInputSlot"
  3268. },
  3269. "conditionB": {
  3270. "ContainerValue": null,
  3271. "StringValue": {
  3272. "Type": "STRING",
  3273. "Value": "活动详情"
  3274. },
  3275. "Type": "BTInputSlot"
  3276. },
  3277. "isIllegal": true,
  3278. "randomID": "TmurPi7z4M2J"
  3279. },
  3280. "Type": "BTBoolSlot"
  3281. },
  3282. "isIllegal": true,
  3283. "randomID": "d0eXS1KnaT1U",
  3284. "sectionA": {
  3285. "ContainerValue": {
  3286. "Type": "BTPlayTimeLineAction",
  3287. "baseSelect": {
  3288. "DisplayName": "引导教程_活动详情按钮",
  3289. "Type": "Action",
  3290. "Value": "19"
  3291. },
  3292. "isIllegal": true,
  3293. "randomID": "qmNdu3OTZUFO",
  3294. "stepSlot": {
  3295. "ContainerValue": null,
  3296. "Type": "BTStepSlot"
  3297. }
  3298. },
  3299. "Type": "BTSectionSlot"
  3300. },
  3301. "stepSlot": {
  3302. "ContainerValue": {
  3303. "Type": "BTIFControlAction",
  3304. "conditionA": {
  3305. "ContainerValue": {
  3306. "Type": "BTStringEqualOperatorAction",
  3307. "conditionA": {
  3308. "ContainerValue": {
  3309. "Type": "BTFuncVariableAction",
  3310. "colorName": "More",
  3311. "currentStr": "教学类型",
  3312. "fatherFuncID": "StKzW6M8u4p6",
  3313. "isIllegal": true,
  3314. "randomID": "euuW0dtO3vex",
  3315. "titleLabel": {
  3316. "Type": "STRING",
  3317. "Value": "教学类型",
  3318. "displayName": ""
  3319. }
  3320. },
  3321. "StringValue": {
  3322. "Type": "STRING",
  3323. "Value": "Red"
  3324. },
  3325. "Type": "BTInputSlot"
  3326. },
  3327. "conditionB": {
  3328. "ContainerValue": null,
  3329. "StringValue": {
  3330. "Type": "STRING",
  3331. "Value": "合集节点"
  3332. },
  3333. "Type": "BTInputSlot"
  3334. },
  3335. "isIllegal": true,
  3336. "randomID": "o0sx8zsyoVZm"
  3337. },
  3338. "Type": "BTBoolSlot"
  3339. },
  3340. "isIllegal": true,
  3341. "randomID": "l1gCgLJCnlHq",
  3342. "sectionA": {
  3343. "ContainerValue": {
  3344. "Type": "BTPlayTimeLineAction",
  3345. "baseSelect": {
  3346. "DisplayName": "引导教程_合集节点教程",
  3347. "Type": "Action",
  3348. "Value": "20"
  3349. },
  3350. "isIllegal": true,
  3351. "randomID": "IRch0gpGYg3C",
  3352. "stepSlot": {
  3353. "ContainerValue": {
  3354. "Type": "BTPlaySceneTimeLineAction",
  3355. "baseSelect": {
  3356. "DisplayName": "常态_教程专用",
  3357. "Type": "Action",
  3358. "Value": "4"
  3359. },
  3360. "isIllegal": true,
  3361. "randomID": "QTbfqdcPV4U2",
  3362. "redSelect": {
  3363. "DisplayName": "教程_合集节点",
  3364. "Type": "OBJ",
  3365. "Value": "b872zFReZKk4"
  3366. },
  3367. "stepSlot": {
  3368. "ContainerValue": null,
  3369. "Type": "BTStepSlot"
  3370. }
  3371. },
  3372. "Type": "BTStepSlot"
  3373. }
  3374. },
  3375. "Type": "BTSectionSlot"
  3376. },
  3377. "stepSlot": {
  3378. "ContainerValue": null,
  3379. "Type": "BTStepSlot"
  3380. }
  3381. },
  3382. "Type": "BTStepSlot"
  3383. }
  3384. },
  3385. "Type": "BTStepSlot"
  3386. }
  3387. },
  3388. "Type": "BTStepSlot"
  3389. }
  3390. },
  3391. "Type": "BTStepSlot"
  3392. }
  3393. },
  3394. "Type": "BTStepSlot"
  3395. },
  3396. "x": 74.16489425288543,
  3397. "y": -96.49589984383798
  3398. },
  3399. "Tree4": {
  3400. "ExportTree": false,
  3401. "ImageIndex": 4,
  3402. "Name": {
  3403. "Type": "STRING",
  3404. "Value": "模拟程序执行",
  3405. "displayName": ""
  3406. },
  3407. "Type": "BTSimulatorAction",
  3408. "VarJson": {
  3409. "boolJson": {
  3410. },
  3411. "numberJson": {
  3412. "参数": "Number",
  3413. "通知名": "Number"
  3414. }
  3415. },
  3416. "isIllegal": false,
  3417. "randomID": "iphOqUrXm7uq",
  3418. "stepSlot": {
  3419. "ContainerValue": {
  3420. "TitleInput": {
  3421. "ContainerValue": null,
  3422. "StringValue": {
  3423. "Type": "STRING",
  3424. "Value": "卡片收集系统.plist"
  3425. },
  3426. "Type": "BTInputSlot"
  3427. },
  3428. "Type": "BTDataCoderVarSetAction",
  3429. "VarScope": "Scene",
  3430. "baseSelect": {
  3431. "DisplayName": "P-Plist图集",
  3432. "Type": "Action",
  3433. "Value": "P-Plist图集"
  3434. },
  3435. "isIllegal": true,
  3436. "randomID": "6zTZogYNxcnW",
  3437. "stepSlot": {
  3438. "ContainerValue": {
  3439. "TitleInput": {
  3440. "ContainerValue": null,
  3441. "StringValue": {
  3442. "Type": "STRING",
  3443. "Value": "收集物卡片.plist"
  3444. },
  3445. "Type": "BTInputSlot"
  3446. },
  3447. "Type": "BTDataCoderVarSetAction",
  3448. "VarScope": "Scene",
  3449. "baseSelect": {
  3450. "DisplayName": "P-Plist图集2",
  3451. "Type": "Action",
  3452. "Value": "P-Plist图集2"
  3453. },
  3454. "isIllegal": true,
  3455. "randomID": "mm1Xg8h7wnNy",
  3456. "stepSlot": {
  3457. "ContainerValue": {
  3458. "TitleInput": {
  3459. "ContainerValue": null,
  3460. "StringValue": {
  3461. "Type": "STRING",
  3462. "Value": "Dog"
  3463. },
  3464. "Type": "BTInputSlot"
  3465. },
  3466. "Type": "BTDataCoderVarSetAction",
  3467. "VarScope": "Scene",
  3468. "baseSelect": {
  3469. "DisplayName": "P-合集名称",
  3470. "Type": "Action",
  3471. "Value": "P-合集名称"
  3472. },
  3473. "isIllegal": true,
  3474. "randomID": "zCNN0j0b800Q",
  3475. "stepSlot": {
  3476. "ContainerValue": {
  3477. "TitleInput": {
  3478. "ContainerValue": null,
  3479. "StringValue": {
  3480. "Type": "STRING",
  3481. "Value": "卡片收集系统_合集名称框_红色.png"
  3482. },
  3483. "Type": "BTInputSlot"
  3484. },
  3485. "Type": "BTDataCoderVarSetAction",
  3486. "VarScope": "Scene",
  3487. "baseSelect": {
  3488. "DisplayName": "P-合集名称框",
  3489. "Type": "Action",
  3490. "Value": "P-合集名称框"
  3491. },
  3492. "isIllegal": true,
  3493. "randomID": "1ywKYriAKvBa",
  3494. "stepSlot": {
  3495. "ContainerValue": {
  3496. "TitleInput": {
  3497. "ContainerValue": null,
  3498. "StringValue": {
  3499. "Type": "STRING",
  3500. "Value": "卡片收集系统_合集_东南亚.png"
  3501. },
  3502. "Type": "BTInputSlot"
  3503. },
  3504. "Type": "BTDataCoderVarSetAction",
  3505. "VarScope": "Scene",
  3506. "baseSelect": {
  3507. "DisplayName": "P-合集图标",
  3508. "Type": "Action",
  3509. "Value": "P-合集图标"
  3510. },
  3511. "isIllegal": true,
  3512. "randomID": "v4SwNWjsqkvz",
  3513. "stepSlot": {
  3514. "ContainerValue": {
  3515. "TitleInput": {
  3516. "ContainerValue": null,
  3517. "StringValue": {
  3518. "Type": "STRING",
  3519. "Value": "卡片收集系统_合集图标框_红色.png"
  3520. },
  3521. "Type": "BTInputSlot"
  3522. },
  3523. "Type": "BTDataCoderVarSetAction",
  3524. "VarScope": "Scene",
  3525. "baseSelect": {
  3526. "DisplayName": "P-合集图标框",
  3527. "Type": "Action",
  3528. "Value": "P-合集图标框"
  3529. },
  3530. "isIllegal": true,
  3531. "randomID": "RvHcNcrqCGnn",
  3532. "stepSlot": {
  3533. "ContainerValue": {
  3534. "TitleInput": {
  3535. "ContainerValue": null,
  3536. "StringValue": {
  3537. "Type": "STRING",
  3538. "Value": "4"
  3539. },
  3540. "Type": "BTInputSlot"
  3541. },
  3542. "Type": "BTDataCoderVarSetAction",
  3543. "VarScope": "Scene",
  3544. "baseSelect": {
  3545. "DisplayName": "P-合集红点数量",
  3546. "Type": "Action",
  3547. "Value": "P-合集红点数量"
  3548. },
  3549. "isIllegal": true,
  3550. "randomID": "2SL6nVYQe7n2",
  3551. "stepSlot": {
  3552. "ContainerValue": {
  3553. "TitleInput": {
  3554. "ContainerValue": null,
  3555. "StringValue": {
  3556. "Type": "STRING",
  3557. "Value": "0"
  3558. },
  3559. "Type": "BTInputSlot"
  3560. },
  3561. "Type": "BTDataCoderVarSetAction",
  3562. "VarScope": "Scene",
  3563. "baseSelect": {
  3564. "DisplayName": "P-合集教程_坐标X",
  3565. "Type": "Action",
  3566. "Value": "P-合集教程_坐标X"
  3567. },
  3568. "isIllegal": true,
  3569. "randomID": "133m3oETQMxD",
  3570. "stepSlot": {
  3571. "ContainerValue": {
  3572. "TitleInput": {
  3573. "ContainerValue": null,
  3574. "StringValue": {
  3575. "Type": "STRING",
  3576. "Value": "0"
  3577. },
  3578. "Type": "BTInputSlot"
  3579. },
  3580. "Type": "BTDataCoderVarSetAction",
  3581. "VarScope": "Scene",
  3582. "baseSelect": {
  3583. "DisplayName": "P-合集教程_坐标Y",
  3584. "Type": "Action",
  3585. "Value": "P-合集教程_坐标Y"
  3586. },
  3587. "isIllegal": true,
  3588. "randomID": "7VrikdHYbDCh",
  3589. "stepSlot": {
  3590. "ContainerValue": {
  3591. "Type": "BTIFControlAction",
  3592. "conditionA": {
  3593. "ContainerValue": {
  3594. "Type": "BTStringEqualOperatorAction",
  3595. "conditionA": {
  3596. "ContainerValue": {
  3597. "Type": "BTFuncVariableAction",
  3598. "colorName": "Disable",
  3599. "currentStr": "通知名",
  3600. "fatherFuncID": "iphOqUrXm7uq",
  3601. "isIllegal": true,
  3602. "randomID": "tyg8UfDwOewQ",
  3603. "titleLabel": {
  3604. "Type": "STRING",
  3605. "Value": "通知名",
  3606. "displayName": ""
  3607. }
  3608. },
  3609. "StringValue": {
  3610. "Type": "STRING",
  3611. "Value": "Red"
  3612. },
  3613. "Type": "BTInputSlot"
  3614. },
  3615. "conditionB": {
  3616. "ContainerValue": null,
  3617. "StringValue": {
  3618. "Type": "STRING",
  3619. "Value": "测试_开始新手引导教程2"
  3620. },
  3621. "Type": "BTInputSlot"
  3622. },
  3623. "isIllegal": true,
  3624. "randomID": "s7RH2eiqdJFU"
  3625. },
  3626. "Type": "BTBoolSlot"
  3627. },
  3628. "isIllegal": true,
  3629. "randomID": "UXYeTZcNQ5eA",
  3630. "sectionA": {
  3631. "ContainerValue": {
  3632. "BTInputSlot1": {
  3633. "ContainerValue": null,
  3634. "StringValue": {
  3635. "Type": "STRING",
  3636. "Value": "合集节点"
  3637. },
  3638. "Type": "BTInputSlot"
  3639. },
  3640. "Name": {
  3641. "Type": "STRING",
  3642. "Value": "新手引导教程界面",
  3643. "displayName": ""
  3644. },
  3645. "Type": "BTCustomFuncBodyAction",
  3646. "funcHeadID": "StKzW6M8u4p6",
  3647. "isIllegal": true,
  3648. "paramArr": [
  3649. [
  3650. "BTInputSlot1",
  3651. "教学类型"
  3652. ]
  3653. ],
  3654. "randomID": "E0uvFvv2LAyZ",
  3655. "stepSlot": {
  3656. "ContainerValue": null,
  3657. "Type": "BTStepSlot"
  3658. }
  3659. },
  3660. "Type": "BTSectionSlot"
  3661. },
  3662. "stepSlot": {
  3663. "ContainerValue": {
  3664. "Type": "BTIFControlAction",
  3665. "conditionA": {
  3666. "ContainerValue": {
  3667. "Type": "BTStringEqualOperatorAction",
  3668. "conditionA": {
  3669. "ContainerValue": {
  3670. "Type": "BTFuncVariableAction",
  3671. "colorName": "Disable",
  3672. "currentStr": "通知名",
  3673. "fatherFuncID": "iphOqUrXm7uq",
  3674. "isIllegal": true,
  3675. "randomID": "xniu27eeXbtJ",
  3676. "titleLabel": {
  3677. "Type": "STRING",
  3678. "Value": "通知名",
  3679. "displayName": ""
  3680. }
  3681. },
  3682. "StringValue": {
  3683. "Type": "STRING",
  3684. "Value": "Red"
  3685. },
  3686. "Type": "BTInputSlot"
  3687. },
  3688. "conditionB": {
  3689. "ContainerValue": null,
  3690. "StringValue": {
  3691. "Type": "STRING",
  3692. "Value": "打开活动详情界面"
  3693. },
  3694. "Type": "BTInputSlot"
  3695. },
  3696. "isIllegal": true,
  3697. "randomID": "y6pizfYlg4Ee"
  3698. },
  3699. "Type": "BTBoolSlot"
  3700. },
  3701. "isIllegal": true,
  3702. "randomID": "ONv0Zi1wsggE",
  3703. "sectionA": {
  3704. "ContainerValue": {
  3705. "Type": "BTMessageSendAction",
  3706. "baseSelect": {
  3707. "DisplayName": "打开活动详情界面",
  3708. "Type": "Action",
  3709. "Value": "bT5jGTpWLMk5"
  3710. },
  3711. "conditionA": {
  3712. "ContainerValue": null,
  3713. "StringValue": {
  3714. "Type": "STRING",
  3715. "Value": "参数"
  3716. },
  3717. "Type": "BTInputSlot"
  3718. },
  3719. "isIllegal": true,
  3720. "randomID": "QNXpIA7gBt1C",
  3721. "stepSlot": {
  3722. "ContainerValue": null,
  3723. "Type": "BTStepSlot"
  3724. }
  3725. },
  3726. "Type": "BTSectionSlot"
  3727. },
  3728. "stepSlot": {
  3729. "ContainerValue": {
  3730. "Type": "BTIFControlAction",
  3731. "conditionA": {
  3732. "ContainerValue": {
  3733. "Type": "BTStringEqualOperatorAction",
  3734. "conditionA": {
  3735. "ContainerValue": {
  3736. "Type": "BTFuncVariableAction",
  3737. "colorName": "Disable",
  3738. "currentStr": "通知名",
  3739. "fatherFuncID": "iphOqUrXm7uq",
  3740. "isIllegal": true,
  3741. "randomID": "m3ehQLU4kJu2",
  3742. "titleLabel": {
  3743. "Type": "STRING",
  3744. "Value": "通知名",
  3745. "displayName": ""
  3746. }
  3747. },
  3748. "StringValue": {
  3749. "Type": "STRING",
  3750. "Value": "Red"
  3751. },
  3752. "Type": "BTInputSlot"
  3753. },
  3754. "conditionB": {
  3755. "ContainerValue": null,
  3756. "StringValue": {
  3757. "Type": "STRING",
  3758. "Value": "打开合集页界面"
  3759. },
  3760. "Type": "BTInputSlot"
  3761. },
  3762. "isIllegal": true,
  3763. "randomID": "aKqUDuv3Za4X"
  3764. },
  3765. "Type": "BTBoolSlot"
  3766. },
  3767. "isIllegal": true,
  3768. "randomID": "zJY5rTboZ5EV",
  3769. "sectionA": {
  3770. "ContainerValue": {
  3771. "Type": "BTMessageSendAction",
  3772. "baseSelect": {
  3773. "DisplayName": "打开合集页界面",
  3774. "Type": "Action",
  3775. "Value": "toC0lWIvBuiK"
  3776. },
  3777. "conditionA": {
  3778. "ContainerValue": null,
  3779. "StringValue": {
  3780. "Type": "STRING",
  3781. "Value": "参数"
  3782. },
  3783. "Type": "BTInputSlot"
  3784. },
  3785. "isIllegal": true,
  3786. "randomID": "9nAphcQRwW7R",
  3787. "stepSlot": {
  3788. "ContainerValue": null,
  3789. "Type": "BTStepSlot"
  3790. }
  3791. },
  3792. "Type": "BTSectionSlot"
  3793. },
  3794. "stepSlot": {
  3795. "ContainerValue": null,
  3796. "Type": "BTStepSlot"
  3797. }
  3798. },
  3799. "Type": "BTStepSlot"
  3800. }
  3801. },
  3802. "Type": "BTStepSlot"
  3803. }
  3804. },
  3805. "Type": "BTStepSlot"
  3806. }
  3807. },
  3808. "Type": "BTStepSlot"
  3809. }
  3810. },
  3811. "Type": "BTStepSlot"
  3812. }
  3813. },
  3814. "Type": "BTStepSlot"
  3815. }
  3816. },
  3817. "Type": "BTStepSlot"
  3818. }
  3819. },
  3820. "Type": "BTStepSlot"
  3821. }
  3822. },
  3823. "Type": "BTStepSlot"
  3824. }
  3825. },
  3826. "Type": "BTStepSlot"
  3827. }
  3828. },
  3829. "Type": "BTStepSlot"
  3830. }
  3831. },
  3832. "Type": "BTStepSlot"
  3833. },
  3834. "x": 562.5974201362103,
  3835. "y": -144.64496230125965
  3836. },
  3837. "Tree5": {
  3838. "ExportTree": true,
  3839. "ImageIndex": -1,
  3840. "Type": "BTSceneBtnClickFuncAction",
  3841. "VarJson": {
  3842. "boolJson": {
  3843. },
  3844. "numberJson": {
  3845. }
  3846. },
  3847. "baseSelect": {
  3848. "DisplayName": "合集已解锁触发按钮",
  3849. "Type": "Action",
  3850. "Value": "uckhMuJAfYY5"
  3851. },
  3852. "isIllegal": false,
  3853. "randomID": "fs0weYhCwbZB",
  3854. "redSelect": {
  3855. "DisplayName": "教程_合集节点",
  3856. "Type": "OBJ",
  3857. "Value": "b872zFReZKk4"
  3858. },
  3859. "stepSlot": {
  3860. "ContainerValue": {
  3861. "Type": "BTSceneButtonEnableAction",
  3862. "baseSelect": {
  3863. "DisplayName": "合集已解锁触发按钮",
  3864. "Type": "Action",
  3865. "Value": "uckhMuJAfYY5"
  3866. },
  3867. "enableButton": {
  3868. "Type": "BTCheckBox",
  3869. "isEnable": false
  3870. },
  3871. "isIllegal": true,
  3872. "randomID": "tfp79RWRgXYw",
  3873. "redSelect": {
  3874. "DisplayName": "教程_合集节点",
  3875. "Type": "OBJ",
  3876. "Value": "b872zFReZKk4"
  3877. },
  3878. "stepSlot": {
  3879. "ContainerValue": {
  3880. "Type": "BTNotificationToCoderAction",
  3881. "conditionA": {
  3882. "ContainerValue": null,
  3883. "StringValue": {
  3884. "Type": "STRING",
  3885. "Value": "打开合集页界面"
  3886. },
  3887. "Type": "BTInputSlot"
  3888. },
  3889. "isIllegal": true,
  3890. "randomID": "9jsYeJ8RiVrC",
  3891. "stepSlot": {
  3892. "ContainerValue": {
  3893. "Type": "BTNotificationToCoderAction",
  3894. "conditionA": {
  3895. "ContainerValue": null,
  3896. "StringValue": {
  3897. "Type": "STRING",
  3898. "Value": "关闭新手引导教程"
  3899. },
  3900. "Type": "BTInputSlot"
  3901. },
  3902. "isIllegal": true,
  3903. "randomID": "dl7ZRl37US26",
  3904. "stepSlot": {
  3905. "ContainerValue": {
  3906. "Type": "BTSceneNodeHiddenAction",
  3907. "baseSelect": {
  3908. "DisplayName": "合集红点数量标签",
  3909. "Type": "Action",
  3910. "Value": "Q849NEoTaiBG"
  3911. },
  3912. "isIllegal": true,
  3913. "randomID": "SDQpxDhJKV0R",
  3914. "redSelect": {
  3915. "DisplayName": "教程_合集节点",
  3916. "Type": "OBJ",
  3917. "Value": "b872zFReZKk4"
  3918. },
  3919. "stepSlot": {
  3920. "ContainerValue": {
  3921. "Type": "BTRedHiddenAction",
  3922. "baseSelect": {
  3923. "DisplayName": "引导教程_活动详情按钮",
  3924. "Type": "Action",
  3925. "Value": "19"
  3926. },
  3927. "isIllegal": true,
  3928. "randomID": "2Np6pew369Fi",
  3929. "stepSlot": {
  3930. "ContainerValue": null,
  3931. "Type": "BTStepSlot"
  3932. }
  3933. },
  3934. "Type": "BTStepSlot"
  3935. }
  3936. },
  3937. "Type": "BTStepSlot"
  3938. }
  3939. },
  3940. "Type": "BTStepSlot"
  3941. }
  3942. },
  3943. "Type": "BTStepSlot"
  3944. }
  3945. },
  3946. "Type": "BTStepSlot"
  3947. },
  3948. "x": 156.21113217258323,
  3949. "y": 294.2886455715104
  3950. },
  3951. "Tree6": {
  3952. "ExportTree": true,
  3953. "ImageIndex": 5,
  3954. "Name": {
  3955. "Type": "STRING",
  3956. "Value": "",
  3957. "displayName": ""
  3958. },
  3959. "Type": "BTMessageReciverAction",
  3960. "VarJson": {
  3961. "boolJson": {
  3962. },
  3963. "numberJson": {
  3964. "消息参数": "Number"
  3965. }
  3966. },
  3967. "isIllegal": false,
  3968. "mathSelector": {
  3969. "DisplayName": "开始新手引导教程2",
  3970. "Type": "Action",
  3971. "Value": "iLQ5cuEA8lK8"
  3972. },
  3973. "randomID": "M9FRwcz1PqhJ",
  3974. "stepSlot": {
  3975. "ContainerValue": {
  3976. "Type": "BTNotificationToCoderAction",
  3977. "conditionA": {
  3978. "ContainerValue": null,
  3979. "StringValue": {
  3980. "Type": "STRING",
  3981. "Value": "测试_开始新手引导教程2"
  3982. },
  3983. "Type": "BTInputSlot"
  3984. },
  3985. "isIllegal": true,
  3986. "randomID": "xFI7e2XeHFE1",
  3987. "stepSlot": {
  3988. "ContainerValue": {
  3989. "BTInputSlot1": {
  3990. "ContainerValue": null,
  3991. "StringValue": {
  3992. "Type": "STRING",
  3993. "Value": "合集节点"
  3994. },
  3995. "Type": "BTInputSlot"
  3996. },
  3997. "Name": {
  3998. "Type": "STRING",
  3999. "Value": "新手引导教程界面",
  4000. "displayName": ""
  4001. },
  4002. "Type": "BTCustomFuncBodyAction",
  4003. "funcHeadID": "StKzW6M8u4p6",
  4004. "isIllegal": true,
  4005. "paramArr": [
  4006. [
  4007. "BTInputSlot1",
  4008. "教学类型"
  4009. ]
  4010. ],
  4011. "randomID": "MYXh8QPLa0jx",
  4012. "stepSlot": {
  4013. "ContainerValue": null,
  4014. "Type": "BTStepSlot"
  4015. }
  4016. },
  4017. "Type": "BTStepSlot"
  4018. }
  4019. },
  4020. "Type": "BTStepSlot"
  4021. },
  4022. "x": 136,
  4023. "y": -249
  4024. },
  4025. "Tree7": {
  4026. "ExportTree": true,
  4027. "ImageIndex": 6,
  4028. "Name": {
  4029. "Type": "STRING",
  4030. "Value": "更新教程专用合集节点信息",
  4031. "displayName": ""
  4032. },
  4033. "Type": "BTCustomFuncHeadAction",
  4034. "VarJson": {
  4035. "boolJson": {
  4036. },
  4037. "numberJson": {
  4038. }
  4039. },
  4040. "isIllegal": false,
  4041. "randomID": "DA2a6kka9Uyf",
  4042. "stepSlot": {
  4043. "ContainerValue": {
  4044. "Type": "BTSceneSpritePlistAction",
  4045. "baseSelect": {
  4046. "DisplayName": "合集图标框",
  4047. "Type": "Action",
  4048. "Value": "qR0fskBkubDk"
  4049. },
  4050. "frameNameInput": {
  4051. "ContainerValue": {
  4052. "Type": "BTCoderVariableAction",
  4053. "VarScope": "Scene",
  4054. "isIllegal": true,
  4055. "randomID": "Nw5eBtCBZ2OX",
  4056. "titleLabel": {
  4057. "Type": "STRING",
  4058. "Value": "P-合集图标框",
  4059. "displayName": ""
  4060. }
  4061. },
  4062. "StringValue": {
  4063. "Type": "STRING",
  4064. "Value": "图片名"
  4065. },
  4066. "Type": "BTInputSlot"
  4067. },
  4068. "isIllegal": true,
  4069. "pathInput": {
  4070. "ContainerValue": {
  4071. "Type": "BTCoderVariableAction",
  4072. "VarScope": "Scene",
  4073. "isIllegal": true,
  4074. "randomID": "Kvp0gPhvJiZ9",
  4075. "titleLabel": {
  4076. "Type": "STRING",
  4077. "Value": "P-Plist图集",
  4078. "displayName": ""
  4079. }
  4080. },
  4081. "StringValue": {
  4082. "Type": "STRING",
  4083. "Value": "Plist路径"
  4084. },
  4085. "Type": "BTInputSlot"
  4086. },
  4087. "randomID": "eUZF7O3U7pOr",
  4088. "redSelect": {
  4089. "DisplayName": "教程_合集节点",
  4090. "Type": "OBJ",
  4091. "Value": "b872zFReZKk4"
  4092. },
  4093. "stepSlot": {
  4094. "ContainerValue": {
  4095. "Type": "BTSceneSpritePlistAction",
  4096. "baseSelect": {
  4097. "DisplayName": "合集图标",
  4098. "Type": "Action",
  4099. "Value": "ntM0Yw6HnfZN"
  4100. },
  4101. "frameNameInput": {
  4102. "ContainerValue": {
  4103. "Type": "BTCoderVariableAction",
  4104. "VarScope": "Scene",
  4105. "isIllegal": true,
  4106. "randomID": "0hlKNaecOLxS",
  4107. "titleLabel": {
  4108. "Type": "STRING",
  4109. "Value": "P-合集图标",
  4110. "displayName": ""
  4111. }
  4112. },
  4113. "StringValue": {
  4114. "Type": "STRING",
  4115. "Value": "图片名"
  4116. },
  4117. "Type": "BTInputSlot"
  4118. },
  4119. "isIllegal": true,
  4120. "pathInput": {
  4121. "ContainerValue": {
  4122. "Type": "BTCoderVariableAction",
  4123. "VarScope": "Scene",
  4124. "isIllegal": true,
  4125. "randomID": "FvYWFksBcm2T",
  4126. "titleLabel": {
  4127. "Type": "STRING",
  4128. "Value": "P-Plist图集2",
  4129. "displayName": ""
  4130. }
  4131. },
  4132. "StringValue": {
  4133. "Type": "STRING",
  4134. "Value": "Plist路径"
  4135. },
  4136. "Type": "BTInputSlot"
  4137. },
  4138. "randomID": "Cx02VyTqnadS",
  4139. "redSelect": {
  4140. "DisplayName": "教程_合集节点",
  4141. "Type": "OBJ",
  4142. "Value": "b872zFReZKk4"
  4143. },
  4144. "stepSlot": {
  4145. "ContainerValue": {
  4146. "Type": "BTSceneSpritePlistAction",
  4147. "baseSelect": {
  4148. "DisplayName": "合集名称框",
  4149. "Type": "Action",
  4150. "Value": "PceBoQNFJgtD"
  4151. },
  4152. "frameNameInput": {
  4153. "ContainerValue": {
  4154. "Type": "BTCoderVariableAction",
  4155. "VarScope": "Scene",
  4156. "isIllegal": true,
  4157. "randomID": "hjSjdVnMegp1",
  4158. "titleLabel": {
  4159. "Type": "STRING",
  4160. "Value": "P-合集名称框",
  4161. "displayName": ""
  4162. }
  4163. },
  4164. "StringValue": {
  4165. "Type": "STRING",
  4166. "Value": "图片名"
  4167. },
  4168. "Type": "BTInputSlot"
  4169. },
  4170. "isIllegal": true,
  4171. "pathInput": {
  4172. "ContainerValue": {
  4173. "Type": "BTCoderVariableAction",
  4174. "VarScope": "Scene",
  4175. "isIllegal": true,
  4176. "randomID": "yK0YIB2u8Tzp",
  4177. "titleLabel": {
  4178. "Type": "STRING",
  4179. "Value": "P-Plist图集",
  4180. "displayName": ""
  4181. }
  4182. },
  4183. "StringValue": {
  4184. "Type": "STRING",
  4185. "Value": "Plist路径"
  4186. },
  4187. "Type": "BTInputSlot"
  4188. },
  4189. "randomID": "8nYznP0gdjOL",
  4190. "redSelect": {
  4191. "DisplayName": "教程_合集节点",
  4192. "Type": "OBJ",
  4193. "Value": "b872zFReZKk4"
  4194. },
  4195. "stepSlot": {
  4196. "ContainerValue": {
  4197. "TitleInput": {
  4198. "ContainerValue": {
  4199. "Type": "BTCoderVariableAction",
  4200. "VarScope": "Scene",
  4201. "isIllegal": true,
  4202. "randomID": "S0S2dxTJ1HVz",
  4203. "titleLabel": {
  4204. "Type": "STRING",
  4205. "Value": "P-合集名称",
  4206. "displayName": ""
  4207. }
  4208. },
  4209. "StringValue": {
  4210. "Type": "STRING",
  4211. "Value": "填写标题内容"
  4212. },
  4213. "Type": "BTInputSlot"
  4214. },
  4215. "Type": "BTSceneLabelTitleAction",
  4216. "baseSelect": {
  4217. "DisplayName": "合集名称",
  4218. "Type": "Action",
  4219. "Value": "0SyS3Y8Dd7tD"
  4220. },
  4221. "isIllegal": true,
  4222. "randomID": "Sl4zfp87Nv6V",
  4223. "redSelect": {
  4224. "DisplayName": "教程_合集节点",
  4225. "Type": "OBJ",
  4226. "Value": "b872zFReZKk4"
  4227. },
  4228. "stepSlot": {
  4229. "ContainerValue": {
  4230. "TitleInput": {
  4231. "ContainerValue": {
  4232. "Type": "BTCoderVariableAction",
  4233. "VarScope": "Scene",
  4234. "isIllegal": true,
  4235. "randomID": "xgOZHabL41n8",
  4236. "titleLabel": {
  4237. "Type": "STRING",
  4238. "Value": "P-合集红点数量",
  4239. "displayName": ""
  4240. }
  4241. },
  4242. "StringValue": {
  4243. "Type": "STRING",
  4244. "Value": "填写标题内容"
  4245. },
  4246. "Type": "BTInputSlot"
  4247. },
  4248. "Type": "BTSceneLabelTitleAction",
  4249. "baseSelect": {
  4250. "DisplayName": "合集红点数量",
  4251. "Type": "Action",
  4252. "Value": "VWg8lO36jwoB"
  4253. },
  4254. "isIllegal": true,
  4255. "randomID": "iCY8vN5ZW4HT",
  4256. "redSelect": {
  4257. "DisplayName": "教程_合集节点",
  4258. "Type": "OBJ",
  4259. "Value": "b872zFReZKk4"
  4260. },
  4261. "stepSlot": {
  4262. "ContainerValue": null,
  4263. "Type": "BTStepSlot"
  4264. }
  4265. },
  4266. "Type": "BTStepSlot"
  4267. }
  4268. },
  4269. "Type": "BTStepSlot"
  4270. }
  4271. },
  4272. "Type": "BTStepSlot"
  4273. }
  4274. },
  4275. "Type": "BTStepSlot"
  4276. }
  4277. },
  4278. "Type": "BTStepSlot"
  4279. },
  4280. "x": 65,
  4281. "y": 568
  4282. }
  4283. }
  4284. }