| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946 |
- ---@class UINewbieBattle__Generate_playerNode6_playerName
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillCD
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillProgress
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public skillIcon UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillIcon
- ---@field public skillProgress UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillProgress
- ---@field public skillCD UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillCD
- ---@field public keepNode UnityEngine.GameObject
- ---@field public waitNode UnityEngine.GameObject
- ---@field public extraNode UnityEngine.GameObject
- ---@field public forbidNode UnityEngine.GameObject
- ---@field public releaseNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_sp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_hp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public switchSprite SwitchSprite
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_barNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public hp UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_hp
- ---@field public sp UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_sp
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_levelText
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_jobIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_head
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public button UnityEngine.UI.Button
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public head UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_head
- ---@field public jobIcon UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_jobIcon
- ---@field public levelText UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_levelText
- ---@class UINewbieBattle__Generate_playerNode6_headBoxItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@field public headNode UINewbieBattle__Generate_playerNode6_headBoxItem_headNode
- ---@field public barNode UINewbieBattle__Generate_playerNode6_headBoxItem_barNode
- ---@field public skillNode UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode
- ---@field public deadNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode6
- ---@field public gameObject UnityEngine.GameObject
- ---@field public headBoxItem UINewbieBattle__Generate_playerNode6_headBoxItem
- ---@field public playerName UINewbieBattle__Generate_playerNode6_playerName
- ---@class UINewbieBattle__Generate_playerNode5_playerName
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillCD
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillProgress
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public skillIcon UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillIcon
- ---@field public skillProgress UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillProgress
- ---@field public skillCD UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillCD
- ---@field public keepNode UnityEngine.GameObject
- ---@field public waitNode UnityEngine.GameObject
- ---@field public extraNode UnityEngine.GameObject
- ---@field public forbidNode UnityEngine.GameObject
- ---@field public releaseNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_sp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_hp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public switchSprite SwitchSprite
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_barNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public hp UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_hp
- ---@field public sp UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_sp
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_levelText
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_jobIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_head
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public button UnityEngine.UI.Button
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public head UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_head
- ---@field public jobIcon UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_jobIcon
- ---@field public levelText UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_levelText
- ---@class UINewbieBattle__Generate_playerNode5_headBoxItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@field public headNode UINewbieBattle__Generate_playerNode5_headBoxItem_headNode
- ---@field public barNode UINewbieBattle__Generate_playerNode5_headBoxItem_barNode
- ---@field public skillNode UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode
- ---@field public deadNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode5
- ---@field public gameObject UnityEngine.GameObject
- ---@field public headBoxItem UINewbieBattle__Generate_playerNode5_headBoxItem
- ---@field public playerName UINewbieBattle__Generate_playerNode5_playerName
- ---@class UINewbieBattle__Generate_playerNode4_playerName
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillCD
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillProgress
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public skillIcon UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillIcon
- ---@field public skillProgress UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillProgress
- ---@field public skillCD UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillCD
- ---@field public keepNode UnityEngine.GameObject
- ---@field public waitNode UnityEngine.GameObject
- ---@field public extraNode UnityEngine.GameObject
- ---@field public forbidNode UnityEngine.GameObject
- ---@field public releaseNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_sp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_hp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public switchSprite SwitchSprite
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_barNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public hp UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_hp
- ---@field public sp UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_sp
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_levelText
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_jobIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_head
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public button UnityEngine.UI.Button
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public head UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_head
- ---@field public jobIcon UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_jobIcon
- ---@field public levelText UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_levelText
- ---@class UINewbieBattle__Generate_playerNode4_headBoxItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@field public headNode UINewbieBattle__Generate_playerNode4_headBoxItem_headNode
- ---@field public barNode UINewbieBattle__Generate_playerNode4_headBoxItem_barNode
- ---@field public skillNode UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode
- ---@field public deadNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode4
- ---@field public gameObject UnityEngine.GameObject
- ---@field public headBoxItem UINewbieBattle__Generate_playerNode4_headBoxItem
- ---@field public playerName UINewbieBattle__Generate_playerNode4_playerName
- ---@class UINewbieBattle__Generate_playerNode3_playerName
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillCD
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillProgress
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public skillIcon UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillIcon
- ---@field public skillProgress UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillProgress
- ---@field public skillCD UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillCD
- ---@field public keepNode UnityEngine.GameObject
- ---@field public waitNode UnityEngine.GameObject
- ---@field public extraNode UnityEngine.GameObject
- ---@field public forbidNode UnityEngine.GameObject
- ---@field public releaseNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_sp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_hp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public switchSprite SwitchSprite
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_barNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public hp UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_hp
- ---@field public sp UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_sp
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_levelText
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_jobIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_head
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public button UnityEngine.UI.Button
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public head UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_head
- ---@field public jobIcon UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_jobIcon
- ---@field public levelText UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_levelText
- ---@class UINewbieBattle__Generate_playerNode3_headBoxItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@field public headNode UINewbieBattle__Generate_playerNode3_headBoxItem_headNode
- ---@field public barNode UINewbieBattle__Generate_playerNode3_headBoxItem_barNode
- ---@field public skillNode UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode
- ---@field public deadNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode3
- ---@field public gameObject UnityEngine.GameObject
- ---@field public headBoxItem UINewbieBattle__Generate_playerNode3_headBoxItem
- ---@field public playerName UINewbieBattle__Generate_playerNode3_playerName
- ---@class UINewbieBattle__Generate_playerNode2_playerName
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillCD
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillProgress
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public skillIcon UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillIcon
- ---@field public skillProgress UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillProgress
- ---@field public skillCD UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillCD
- ---@field public keepNode UnityEngine.GameObject
- ---@field public waitNode UnityEngine.GameObject
- ---@field public extraNode UnityEngine.GameObject
- ---@field public forbidNode UnityEngine.GameObject
- ---@field public releaseNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_sp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_hp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public switchSprite SwitchSprite
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_barNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public hp UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_hp
- ---@field public sp UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_sp
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_levelText
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_jobIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_head
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public button UnityEngine.UI.Button
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public head UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_head
- ---@field public jobIcon UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_jobIcon
- ---@field public levelText UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_levelText
- ---@class UINewbieBattle__Generate_playerNode2_headBoxItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@field public headNode UINewbieBattle__Generate_playerNode2_headBoxItem_headNode
- ---@field public barNode UINewbieBattle__Generate_playerNode2_headBoxItem_barNode
- ---@field public skillNode UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode
- ---@field public deadNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public headBoxItem UINewbieBattle__Generate_playerNode2_headBoxItem
- ---@field public playerName UINewbieBattle__Generate_playerNode2_playerName
- ---@class UINewbieBattle__Generate_playerNode1_playerName
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillCD
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillProgress
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public skillIcon UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillIcon
- ---@field public skillProgress UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillProgress
- ---@field public skillCD UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillCD
- ---@field public keepNode UnityEngine.GameObject
- ---@field public waitNode UnityEngine.GameObject
- ---@field public extraNode UnityEngine.GameObject
- ---@field public forbidNode UnityEngine.GameObject
- ---@field public releaseNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_sp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_hp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public switchSprite SwitchSprite
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_barNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public hp UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_hp
- ---@field public sp UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_sp
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_levelText
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_jobIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_head
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@field public button UnityEngine.UI.Button
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public head UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_head
- ---@field public jobIcon UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_jobIcon
- ---@field public levelText UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_levelText
- ---@class UINewbieBattle__Generate_playerNode1_headBoxItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@field public headNode UINewbieBattle__Generate_playerNode1_headBoxItem_headNode
- ---@field public barNode UINewbieBattle__Generate_playerNode1_headBoxItem_barNode
- ---@field public skillNode UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode
- ---@field public deadNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_playerNode1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public headBoxItem UINewbieBattle__Generate_playerNode1_headBoxItem
- ---@field public playerName UINewbieBattle__Generate_playerNode1_playerName
- ---@class UINewbieBattle__Generate_skipBtn
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UINewbieBattle__Generate_bossDebuffTemp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_bossBuffTemp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_bossSkillCD
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UINewbieBattle__Generate_bossSkillProgress
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_bossSkillIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_bossSkillNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@field public keepNode UnityEngine.GameObject
- ---@field public waitNode UnityEngine.GameObject
- ---@field public extraNode UnityEngine.GameObject
- ---@field public forbidNode UnityEngine.GameObject
- ---@field public releaseNode UnityEngine.GameObject
- ---@class UINewbieBattle__Generate_bossName
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UINewbieBattle__Generate_bossBlood
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_bossBloodBack
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_bossBlood2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UINewbieBattle__Generate_bossBloodNode
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@class UINewbieBattle__Generate
- ---@field private gameObject UnityEngine.GameObject
- ---@field private transform UnityEngine.Transform
- ---@field private bossBloodNode UINewbieBattle__Generate_bossBloodNode
- ---@field private bossBlood2 UINewbieBattle__Generate_bossBlood2
- ---@field private bossBloodBack UINewbieBattle__Generate_bossBloodBack
- ---@field private bossBlood UINewbieBattle__Generate_bossBlood
- ---@field private bossName UINewbieBattle__Generate_bossName
- ---@field private bossSkillNode UINewbieBattle__Generate_bossSkillNode
- ---@field private bossSkillIcon UINewbieBattle__Generate_bossSkillIcon
- ---@field private bossSkillProgress UINewbieBattle__Generate_bossSkillProgress
- ---@field private bossSkillCD UINewbieBattle__Generate_bossSkillCD
- ---@field private bossBuffTemp UINewbieBattle__Generate_bossBuffTemp
- ---@field private bossDebuffTemp UINewbieBattle__Generate_bossDebuffTemp
- ---@field private skipBtn UINewbieBattle__Generate_skipBtn
- ---@field private playerNode1 UINewbieBattle__Generate_playerNode1
- ---@field private playerNode2 UINewbieBattle__Generate_playerNode2
- ---@field private playerNode3 UINewbieBattle__Generate_playerNode3
- ---@field private playerNode4 UINewbieBattle__Generate_playerNode4
- ---@field private playerNode5 UINewbieBattle__Generate_playerNode5
- ---@field private playerNode6 UINewbieBattle__Generate_playerNode6
- ---@field private whiteShow UnityEngine.GameObject
- local UINewbieBattleView = class("UINewbieBattleView", require("UIViewBase"))
- function UINewbieBattleView:ctor()
- end
- ---@private
- function UINewbieBattleView:SetActive(result)
- self.gameObject:SetActive(result)
- end
- ---@private
- function UINewbieBattleView:InitGenerate(Root, data)
- self.transform = Root
- self.inited = true
- if self.super.Init then
- self.super.Init(self)
- end
- local tmp
- self:InitGenerate__1(Root,data)
- self:InitGenerate__2(Root,data)
- self:InitGenerate__3(Root,data)
- self:InitGenerate__4(Root,data)
- self:InitGenerate__5(Root,data)
- self:InitGenerate__6(Root,data)
- self:InitGenerate__7(Root,data)
- self:InitGenerate__8(Root,data)
- self:InitGenerate__9(Root,data)
- self:InitGenerate__10(Root,data)
- self:InitGenerate__11(Root,data)
- self:InitGenerate__12(Root,data)
- self:InitGenerate__13(Root,data)
- self:InitGenerate__14(Root,data)
- self:InitGenerate__15(Root,data)
- self:InitGenerate__16(Root,data)
- self:InitGenerate__17(Root,data)
- self:InitGenerate__18(Root,data)
- self:InitGenerate__19(Root,data)
- self:InitGenerate__20(Root,data)
- self:InitGenerate__21(Root,data)
- self:InitGenerate__22(Root,data)
- self:InitGenerate__23(Root,data)
- self:InitGenerate__24(Root,data)
- self:InitGenerate__25(Root,data)
- self:InitGenerate__26(Root,data)
- self:InitGenerate__27(Root,data)
- self:InitGenerate__28(Root,data)
- self:InitGenerate__29(Root,data)
- self:InitGenerate__30(Root,data)
- self:InitGenerate__31(Root,data)
- self:InitGenerate__32(Root,data)
- self:InitGenerate__33(Root,data)
- self:InitGenerate__34(Root,data)
- self:InitGenerate__35(Root,data)
- self:InitGenerate__36(Root,data)
- self:InitGenerate__37(Root,data)
- self:InitGenerate__38(Root,data)
- self:InitGenerate__39(Root,data)
- self:InitGenerate__40(Root,data)
- self:InitGenerate__41(Root,data)
- self:InitGenerate__42(Root,data)
- self:InitGenerate__43(Root,data)
- self:InitGenerate__44(Root,data)
- self:InitGenerate__45(Root,data)
- self:InitGenerate__46(Root,data)
- self:InitGenerate__47(Root,data)
- self:InitGenerate__48(Root,data)
- self:InitGenerate__49(Root,data)
- self:InitGenerate__50(Root,data)
- self:InitGenerate__51(Root,data)
- self:InitGenerate__52(Root,data)
- self:InitGenerate__53(Root,data)
- self:InitGenerate__54(Root,data)
- self:InitGenerate__55(Root,data)
- self:InitGenerate__56(Root,data)
- self:InitGenerate__57(Root,data)
- self:InitGenerate__58(Root,data)
- self:InitGenerate__59(Root,data)
- self:InitGenerate__60(Root,data)
- self:InitGenerate__61(Root,data)
- self:InitGenerate__62(Root,data)
- self:InitGenerate__63(Root,data)
- self:InitGenerate__64(Root,data)
- self:InitGenerate__65(Root,data)
- self:InitGenerate__66(Root,data)
- self:InitGenerate__67(Root,data)
- self:InitGenerate__68(Root,data)
- self:InitGenerate__69(Root,data)
- self:InitGenerate__70(Root,data)
- self:InitGenerate__71(Root,data)
- self:InitGenerate__72(Root,data)
- self:InitGenerate__73(Root,data)
- self:InitGenerate__74(Root,data)
- self:InitGenerate__75(Root,data)
- self:InitGenerate__76(Root,data)
- self:InitGenerate__77(Root,data)
- self:InitGenerate__78(Root,data)
- self:InitGenerate__79(Root,data)
- self:InitGenerate__80(Root,data)
- self:InitGenerate__81(Root,data)
- self:InitGenerate__82(Root,data)
- self:InitGenerate__83(Root,data)
- self:InitGenerate__84(Root,data)
- self:InitGenerate__85(Root,data)
- self:InitGenerate__86(Root,data)
- self:InitGenerate__87(Root,data)
- self:InitGenerate__88(Root,data)
- self:InitGenerate__89(Root,data)
- self:InitGenerate__90(Root,data)
- self:InitGenerate__91(Root,data)
- self:InitGenerate__92(Root,data)
- self:InitGenerate__93(Root,data)
- self:InitGenerate__94(Root,data)
- self:InitGenerate__95(Root,data)
- self:InitGenerate__96(Root,data)
- self:InitGenerate__97(Root,data)
- self:InitGenerate__98(Root,data)
- self:InitGenerate__99(Root,data)
- self:InitGenerate__100(Root,data)
- self:InitGenerate__101(Root,data)
- self:InitGenerate__102(Root,data)
- self:InitGenerate__103(Root,data)
- self:InitGenerate__104(Root,data)
- self:InitGenerate__105(Root,data)
- self:InitGenerate__106(Root,data)
- self:InitGenerate__107(Root,data)
- self:InitGenerate__108(Root,data)
- self:InitGenerate__109(Root,data)
- self:InitGenerate__110(Root,data)
- self:InitGenerate__111(Root,data)
- self:InitGenerate__112(Root,data)
- self:InitGenerate__113(Root,data)
- self:InitGenerate__114(Root,data)
- self:InitGenerate__115(Root,data)
- self:InitGenerate__116(Root,data)
- self:InitGenerate__117(Root,data)
- self:InitGenerate__118(Root,data)
- self:InitGenerate__119(Root,data)
- self:InitGenerate__120(Root,data)
- self:InitGenerate__121(Root,data)
- self:InitGenerate__122(Root,data)
- self:InitGenerate__123(Root,data)
- self:InitGenerate__124(Root,data)
- self:InitGenerate__125(Root,data)
- self:InitGenerate__126(Root,data)
- self:InitGenerate__127(Root,data)
- self:InitGenerate__128(Root,data)
- self:InitGenerate__129(Root,data)
- self:InitGenerate__130(Root,data)
- self:InitGenerate__131(Root,data)
- self:InitGenerate__132(Root,data)
- self:InitGenerate__133(Root,data)
- self:InitGenerate__134(Root,data)
- self:InitGenerate__135(Root,data)
- self:InitGenerate__136(Root,data)
- self:InitGenerate__137(Root,data)
- self:InitGenerate__138(Root,data)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__1(Root, data)
- --[[
- TopView/BossBlood
- --]]
- local tmp = Root:Find("TopView/BossBlood").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossBloodNode = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__2(Root, data)
- --[[
- TopView/BossBlood/Blood/BloodBar2
- --]]
- local tmp = Root:Find("TopView/BossBlood/Blood/BloodBar2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossBlood2 = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__3(Root, data)
- --[[
- TopView/BossBlood/Blood/BloodBarBack
- --]]
- local tmp = Root:Find("TopView/BossBlood/Blood/BloodBarBack").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossBloodBack = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__4(Root, data)
- --[[
- TopView/BossBlood/Blood/BloodBar
- --]]
- local tmp = Root:Find("TopView/BossBlood/Blood/BloodBar").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossBlood = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__5(Root, data)
- --[[
- TopView/BossBlood/Blood/BossName/TextName
- --]]
- local tmp = Root:Find("TopView/BossBlood/Blood/BossName/TextName").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossName = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__6(Root, data)
- --[[
- TopView/BossBlood/BossSkill
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillNode = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__7(Root, data)
- --[[
- TopView/BossBlood/BossSkill/Icon
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__8(Root, data)
- --[[
- TopView/BossBlood/BossSkill/Mask
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/Mask").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillProgress = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__9(Root, data)
- --[[
- TopView/BossBlood/BossSkill/CD
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/CD").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillCD = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__10(Root, data)
- --[[
- TopView/BossBlood/BossSkill/Keep
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/Keep").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillNode.keepNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__11(Root, data)
- --[[
- TopView/BossBlood/BossSkill/Wait
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/Wait").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillNode.waitNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__12(Root, data)
- --[[
- TopView/BossBlood/BossSkill/Extra
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/Extra").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillNode.extraNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__13(Root, data)
- --[[
- TopView/BossBlood/BossSkill/Forbidden
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/Forbidden").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillNode.forbidNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__14(Root, data)
- --[[
- TopView/BossBlood/BossSkill/Release
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossSkill/Release").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossSkillNode.releaseNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__15(Root, data)
- --[[
- TopView/BossBlood/BossBuff/Buff/Image
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossBuff/Buff/Image").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossBuffTemp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__16(Root, data)
- --[[
- TopView/BossBlood/BossBuff/DeBuff/Image
- --]]
- local tmp = Root:Find("TopView/BossBlood/BossBuff/DeBuff/Image").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.bossDebuffTemp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__17(Root, data)
- --[[
- TopView/SkipBtn
- --]]
- local tmp = Root:Find("TopView/SkipBtn").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.skipBtn = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__18(Root, data)
- --[[
- BottomView/HeadsBox/Player1
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1 = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__19(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__20(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.headNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__21(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.headNode.head = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__22(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/JobIcon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/JobIcon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.headNode.jobIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__23(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/TextLV
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/TextLV").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.headNode.levelText = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__24(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.barNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__25(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/HP/bloodImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.barNode.hp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__26(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/Sp/spImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.barNode.sp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__27(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__28(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Icon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.skillIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__29(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Mask
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Mask").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.skillProgress = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__30(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/CD
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/CD").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.skillCD = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__31(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Keep
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Keep").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.keepNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__32(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Wait
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Wait").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.waitNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__33(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Extra
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Extra").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.extraNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__34(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Forbidden
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Forbidden").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.forbidNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__35(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Release
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Release").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.skillNode.releaseNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__36(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/HeadBoxItem/Dead
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Dead").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.headBoxItem.deadNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__37(Root, data)
- --[[
- BottomView/HeadsBox/Player1/Position/PlayerName
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/PlayerName").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode1.playerName = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__38(Root, data)
- --[[
- BottomView/HeadsBox/Player2
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2 = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__39(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__40(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.headNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__41(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.headNode.head = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__42(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/JobIcon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/JobIcon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.headNode.jobIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__43(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/TextLV
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/TextLV").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.headNode.levelText = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__44(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.barNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__45(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/HP/bloodImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.barNode.hp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__46(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/Sp/spImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.barNode.sp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__47(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__48(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Icon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.skillIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__49(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Mask
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Mask").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.skillProgress = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__50(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/CD
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/CD").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.skillCD = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__51(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Keep
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Keep").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.keepNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__52(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Wait
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Wait").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.waitNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__53(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Extra
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Extra").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.extraNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__54(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Forbidden
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Forbidden").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.forbidNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__55(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Release
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Release").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.skillNode.releaseNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__56(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/HeadBoxItem/Dead
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Dead").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.headBoxItem.deadNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__57(Root, data)
- --[[
- BottomView/HeadsBox/Player2/Position/PlayerName
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/PlayerName").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode2.playerName = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__58(Root, data)
- --[[
- BottomView/HeadsBox/Player3
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3 = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__59(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__60(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.headNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__61(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.headNode.head = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__62(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/JobIcon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/JobIcon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.headNode.jobIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__63(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/TextLV
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/TextLV").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.headNode.levelText = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__64(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.barNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__65(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/HP/bloodImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.barNode.hp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__66(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/Sp/spImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.barNode.sp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__67(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__68(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Icon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.skillIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__69(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Mask
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Mask").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.skillProgress = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__70(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/CD
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/CD").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.skillCD = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__71(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Keep
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Keep").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.keepNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__72(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Wait
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Wait").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.waitNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__73(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Extra
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Extra").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.extraNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__74(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Forbidden
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Forbidden").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.forbidNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__75(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Release
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Release").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.skillNode.releaseNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__76(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/HeadBoxItem/Dead
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Dead").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.headBoxItem.deadNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__77(Root, data)
- --[[
- BottomView/HeadsBox/Player3/Position/PlayerName
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/PlayerName").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode3.playerName = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__78(Root, data)
- --[[
- BottomView/HeadsBox/Player4
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4 = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__79(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__80(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.headNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__81(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.headNode.head = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__82(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/JobIcon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/JobIcon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.headNode.jobIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__83(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/TextLV
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/TextLV").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.headNode.levelText = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__84(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.barNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__85(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/HP/bloodImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.barNode.hp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__86(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/Sp/spImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.barNode.sp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__87(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__88(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Icon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.skillIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__89(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Mask
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Mask").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.skillProgress = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__90(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/CD
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/CD").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.skillCD = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__91(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Keep
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Keep").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.keepNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__92(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Wait
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Wait").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.waitNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__93(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Extra
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Extra").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.extraNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__94(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Forbidden
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Forbidden").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.forbidNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__95(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Release
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Release").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.skillNode.releaseNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__96(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/HeadBoxItem/Dead
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Dead").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.headBoxItem.deadNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__97(Root, data)
- --[[
- BottomView/HeadsBox/Player4/Position/PlayerName
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/PlayerName").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode4.playerName = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__98(Root, data)
- --[[
- BottomView/HeadsBox/Player5
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5 = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__99(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__100(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.headNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__101(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.headNode.head = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__102(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/JobIcon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/JobIcon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.headNode.jobIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__103(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/TextLV
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/TextLV").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.headNode.levelText = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__104(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.barNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__105(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/HP/bloodImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.barNode.hp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__106(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/Sp/spImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.barNode.sp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__107(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__108(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Icon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.skillIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__109(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Mask
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Mask").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.skillProgress = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__110(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/CD
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/CD").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.skillCD = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__111(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Keep
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Keep").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.keepNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__112(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Wait
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Wait").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.waitNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__113(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Extra
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Extra").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.extraNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__114(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Forbidden
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Forbidden").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.forbidNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__115(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Release
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Release").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.skillNode.releaseNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__116(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/HeadBoxItem/Dead
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Dead").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.headBoxItem.deadNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__117(Root, data)
- --[[
- BottomView/HeadsBox/Player5/Position/PlayerName
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/PlayerName").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode5.playerName = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__118(Root, data)
- --[[
- BottomView/HeadsBox/Player6
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6 = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__119(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UINewbieBattleView:InitGenerate__120(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.headNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__121(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/Head
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/Head").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.headNode.head = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__122(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/JobIcon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/JobIcon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.headNode.jobIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__123(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/TextLV
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/TextLV").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.headNode.levelText = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__124(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.barNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__125(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/HP/bloodImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.barNode.hp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__126(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/Sp/spImg
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.barNode.sp = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__127(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__128(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Icon
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.skillIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__129(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Mask
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Mask").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.skillProgress = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__130(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/CD
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/CD").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.skillCD = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__131(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Keep
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Keep").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.keepNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__132(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Wait
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Wait").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.waitNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__133(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Extra
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Extra").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.extraNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__134(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Forbidden
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Forbidden").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.forbidNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__135(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Release
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Release").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.skillNode.releaseNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__136(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/HeadBoxItem/Dead
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Dead").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.headBoxItem.deadNode = tmp
- end
- ---@private
- function UINewbieBattleView:InitGenerate__137(Root, data)
- --[[
- BottomView/HeadsBox/Player6/Position/PlayerName
- --]]
- local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/PlayerName").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.playerNode6.playerName = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UINewbieBattleView:InitGenerate__138(Root, data)
- --[[
- WhiteShow
- --]]
- local tmp = Root:Find("WhiteShow").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.whiteShow = tmp
- end
- ---@private
- function UINewbieBattleView:GenerateDestroy()
- if tolua.getpeer(self.playerNode6.playerName) ~= nil then
- tolua.setpeer(self.playerNode6.playerName, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.deadNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.deadNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.releaseNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.releaseNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.forbidNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.forbidNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.extraNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.extraNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.waitNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.waitNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.keepNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.keepNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.skillCD) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.skillCD, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.skillProgress) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.skillProgress, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.skillIcon) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode.skillIcon, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.skillNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.skillNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.barNode.sp) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.barNode.sp, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.barNode.hp) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.barNode.hp, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.barNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.barNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.headNode.levelText) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.headNode.levelText, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.headNode.jobIcon) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.headNode.jobIcon, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.headNode.head) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.headNode.head, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem.headNode) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem.headNode, nil)
- end
- if tolua.getpeer(self.playerNode6.headBoxItem) ~= nil then
- tolua.setpeer(self.playerNode6.headBoxItem, nil)
- end
- if tolua.getpeer(self.playerNode5.playerName) ~= nil then
- tolua.setpeer(self.playerNode5.playerName, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.deadNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.deadNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.releaseNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.releaseNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.forbidNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.forbidNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.extraNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.extraNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.waitNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.waitNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.keepNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.keepNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.skillCD) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.skillCD, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.skillProgress) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.skillProgress, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.skillIcon) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode.skillIcon, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.skillNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.skillNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.barNode.sp) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.barNode.sp, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.barNode.hp) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.barNode.hp, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.barNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.barNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.headNode.levelText) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.headNode.levelText, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.headNode.jobIcon) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.headNode.jobIcon, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.headNode.head) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.headNode.head, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem.headNode) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem.headNode, nil)
- end
- if tolua.getpeer(self.playerNode5.headBoxItem) ~= nil then
- tolua.setpeer(self.playerNode5.headBoxItem, nil)
- end
- if tolua.getpeer(self.playerNode4.playerName) ~= nil then
- tolua.setpeer(self.playerNode4.playerName, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.deadNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.deadNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.releaseNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.releaseNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.forbidNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.forbidNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.extraNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.extraNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.waitNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.waitNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.keepNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.keepNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.skillCD) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.skillCD, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.skillProgress) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.skillProgress, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.skillIcon) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode.skillIcon, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.skillNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.skillNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.barNode.sp) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.barNode.sp, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.barNode.hp) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.barNode.hp, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.barNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.barNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.headNode.levelText) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.headNode.levelText, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.headNode.jobIcon) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.headNode.jobIcon, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.headNode.head) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.headNode.head, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem.headNode) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem.headNode, nil)
- end
- if tolua.getpeer(self.playerNode4.headBoxItem) ~= nil then
- tolua.setpeer(self.playerNode4.headBoxItem, nil)
- end
- if tolua.getpeer(self.playerNode3.playerName) ~= nil then
- tolua.setpeer(self.playerNode3.playerName, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.deadNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.deadNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.releaseNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.releaseNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.forbidNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.forbidNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.extraNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.extraNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.waitNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.waitNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.keepNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.keepNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.skillCD) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.skillCD, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.skillProgress) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.skillProgress, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.skillIcon) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode.skillIcon, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.skillNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.skillNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.barNode.sp) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.barNode.sp, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.barNode.hp) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.barNode.hp, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.barNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.barNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.headNode.levelText) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.headNode.levelText, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.headNode.jobIcon) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.headNode.jobIcon, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.headNode.head) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.headNode.head, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem.headNode) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem.headNode, nil)
- end
- if tolua.getpeer(self.playerNode3.headBoxItem) ~= nil then
- tolua.setpeer(self.playerNode3.headBoxItem, nil)
- end
- if tolua.getpeer(self.playerNode2.playerName) ~= nil then
- tolua.setpeer(self.playerNode2.playerName, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.deadNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.deadNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.releaseNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.releaseNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.forbidNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.forbidNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.extraNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.extraNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.waitNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.waitNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.keepNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.keepNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.skillCD) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.skillCD, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.skillProgress) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.skillProgress, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.skillIcon) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode.skillIcon, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.skillNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.skillNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.barNode.sp) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.barNode.sp, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.barNode.hp) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.barNode.hp, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.barNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.barNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.headNode.levelText) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.headNode.levelText, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.headNode.jobIcon) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.headNode.jobIcon, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.headNode.head) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.headNode.head, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem.headNode) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem.headNode, nil)
- end
- if tolua.getpeer(self.playerNode2.headBoxItem) ~= nil then
- tolua.setpeer(self.playerNode2.headBoxItem, nil)
- end
- if tolua.getpeer(self.playerNode1.playerName) ~= nil then
- tolua.setpeer(self.playerNode1.playerName, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.deadNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.deadNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.releaseNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.releaseNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.forbidNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.forbidNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.extraNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.extraNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.waitNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.waitNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.keepNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.keepNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.skillCD) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.skillCD, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.skillProgress) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.skillProgress, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.skillIcon) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode.skillIcon, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.skillNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.skillNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.barNode.sp) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.barNode.sp, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.barNode.hp) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.barNode.hp, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.barNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.barNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.headNode.levelText) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.headNode.levelText, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.headNode.jobIcon) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.headNode.jobIcon, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.headNode.head) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.headNode.head, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem.headNode) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem.headNode, nil)
- end
- if tolua.getpeer(self.playerNode1.headBoxItem) ~= nil then
- tolua.setpeer(self.playerNode1.headBoxItem, nil)
- end
- if tolua.getpeer(self.bossSkillNode.releaseNode) ~= nil then
- tolua.setpeer(self.bossSkillNode.releaseNode, nil)
- end
- if tolua.getpeer(self.bossSkillNode.forbidNode) ~= nil then
- tolua.setpeer(self.bossSkillNode.forbidNode, nil)
- end
- if tolua.getpeer(self.bossSkillNode.extraNode) ~= nil then
- tolua.setpeer(self.bossSkillNode.extraNode, nil)
- end
- if tolua.getpeer(self.bossSkillNode.waitNode) ~= nil then
- tolua.setpeer(self.bossSkillNode.waitNode, nil)
- end
- if tolua.getpeer(self.bossSkillNode.keepNode) ~= nil then
- tolua.setpeer(self.bossSkillNode.keepNode, nil)
- end
- if tolua.getpeer(self.bossBloodNode) ~= nil then
- tolua.setpeer(self.bossBloodNode, nil)
- end
- self.bossBloodNode = nil
- if tolua.getpeer(self.bossBlood2) ~= nil then
- tolua.setpeer(self.bossBlood2, nil)
- end
- self.bossBlood2 = nil
- if tolua.getpeer(self.bossBloodBack) ~= nil then
- tolua.setpeer(self.bossBloodBack, nil)
- end
- self.bossBloodBack = nil
- if tolua.getpeer(self.bossBlood) ~= nil then
- tolua.setpeer(self.bossBlood, nil)
- end
- self.bossBlood = nil
- if tolua.getpeer(self.bossName) ~= nil then
- tolua.setpeer(self.bossName, nil)
- end
- self.bossName = nil
- if tolua.getpeer(self.bossSkillNode) ~= nil then
- tolua.setpeer(self.bossSkillNode, nil)
- end
- self.bossSkillNode = nil
- if tolua.getpeer(self.bossSkillIcon) ~= nil then
- tolua.setpeer(self.bossSkillIcon, nil)
- end
- self.bossSkillIcon = nil
- if tolua.getpeer(self.bossSkillProgress) ~= nil then
- tolua.setpeer(self.bossSkillProgress, nil)
- end
- self.bossSkillProgress = nil
- if tolua.getpeer(self.bossSkillCD) ~= nil then
- tolua.setpeer(self.bossSkillCD, nil)
- end
- self.bossSkillCD = nil
- if tolua.getpeer(self.bossBuffTemp) ~= nil then
- tolua.setpeer(self.bossBuffTemp, nil)
- end
- self.bossBuffTemp = nil
- if tolua.getpeer(self.bossDebuffTemp) ~= nil then
- tolua.setpeer(self.bossDebuffTemp, nil)
- end
- self.bossDebuffTemp = nil
- if tolua.getpeer(self.skipBtn) ~= nil then
- tolua.setpeer(self.skipBtn, nil)
- end
- self.skipBtn = nil
- if tolua.getpeer(self.playerNode1) ~= nil then
- tolua.setpeer(self.playerNode1, nil)
- end
- self.playerNode1 = nil
- if tolua.getpeer(self.playerNode2) ~= nil then
- tolua.setpeer(self.playerNode2, nil)
- end
- self.playerNode2 = nil
- if tolua.getpeer(self.playerNode3) ~= nil then
- tolua.setpeer(self.playerNode3, nil)
- end
- self.playerNode3 = nil
- if tolua.getpeer(self.playerNode4) ~= nil then
- tolua.setpeer(self.playerNode4, nil)
- end
- self.playerNode4 = nil
- if tolua.getpeer(self.playerNode5) ~= nil then
- tolua.setpeer(self.playerNode5, nil)
- end
- self.playerNode5 = nil
- if tolua.getpeer(self.playerNode6) ~= nil then
- tolua.setpeer(self.playerNode6, nil)
- end
- self.playerNode6 = nil
- if tolua.getpeer(self.whiteShow) ~= nil then
- tolua.setpeer(self.whiteShow, nil)
- end
- self.whiteShow = nil
- self.transform = nil
- self.gameObject = nil
- self.inited = false
- end
- return UINewbieBattleView
|