| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097 |
- ---@class UIRoleNaturePoint__Generate_btnRight
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_btnLeft
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_btnConfirm
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_btnRecommend
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_btnBack
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_btnPotentialFruit
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_ptBox_luk_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_ptBox_luk
- ---@field public gameObject UnityEngine.GameObject
- ---@field public number1 UIRoleNaturePoint__Generate_ptBox_luk_number1
- ---@class UIRoleNaturePoint__Generate_ptBox_dex_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_ptBox_dex
- ---@field public gameObject UnityEngine.GameObject
- ---@field public number1 UIRoleNaturePoint__Generate_ptBox_dex_number1
- ---@class UIRoleNaturePoint__Generate_ptBox_int_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_ptBox_int
- ---@field public gameObject UnityEngine.GameObject
- ---@field public number1 UIRoleNaturePoint__Generate_ptBox_int_number1
- ---@class UIRoleNaturePoint__Generate_ptBox_vit_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_ptBox_vit
- ---@field public gameObject UnityEngine.GameObject
- ---@field public number1 UIRoleNaturePoint__Generate_ptBox_vit_number1
- ---@class UIRoleNaturePoint__Generate_ptBox_agi_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_ptBox_agi
- ---@field public gameObject UnityEngine.GameObject
- ---@field public number1 UIRoleNaturePoint__Generate_ptBox_agi_number1
- ---@class UIRoleNaturePoint__Generate_ptBox_str_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_ptBox_str
- ---@field public gameObject UnityEngine.GameObject
- ---@field public number1 UIRoleNaturePoint__Generate_ptBox_str_number1
- ---@class UIRoleNaturePoint__Generate_ptBox
- ---@field public gameObject UnityEngine.GameObject
- ---@field public str UIRoleNaturePoint__Generate_ptBox_str
- ---@field public agi UIRoleNaturePoint__Generate_ptBox_agi
- ---@field public vit UIRoleNaturePoint__Generate_ptBox_vit
- ---@field public int UIRoleNaturePoint__Generate_ptBox_int
- ---@field public dex UIRoleNaturePoint__Generate_ptBox_dex
- ---@field public luk UIRoleNaturePoint__Generate_ptBox_luk
- ---@class UIRoleNaturePoint__Generate_btnReset
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_btnInfoImage
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_btnInfo
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_leadBox_restPoint_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_restPoint
- ---@field public gameObject UnityEngine.GameObject
- ---@field public number1 UIRoleNaturePoint__Generate_leadBox_restPoint_number1
- ---@class UIRoleNaturePoint__Generate_leadBox_luk_number2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_luk_numberGreen
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_luk_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_luk_btnIncrease
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_luk_btnReduce
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_luk
- ---@field public gameObject UnityEngine.GameObject
- ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_luk_btnReduce
- ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_luk_btnIncrease
- ---@field public number1 UIRoleNaturePoint__Generate_leadBox_luk_number1
- ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_luk_numberGreen
- ---@field public number2 UIRoleNaturePoint__Generate_leadBox_luk_number2
- ---@class UIRoleNaturePoint__Generate_leadBox_dex_number2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_dex_numberGreen
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_dex_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_dex_btnIncrease
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_dex_btnReduce
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_dex
- ---@field public gameObject UnityEngine.GameObject
- ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_dex_btnReduce
- ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_dex_btnIncrease
- ---@field public number1 UIRoleNaturePoint__Generate_leadBox_dex_number1
- ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_dex_numberGreen
- ---@field public number2 UIRoleNaturePoint__Generate_leadBox_dex_number2
- ---@class UIRoleNaturePoint__Generate_leadBox_int_number2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_int_numberGreen
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_int_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_int_btnIncrease
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_int_btnReduce
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_int
- ---@field public gameObject UnityEngine.GameObject
- ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_int_btnReduce
- ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_int_btnIncrease
- ---@field public number1 UIRoleNaturePoint__Generate_leadBox_int_number1
- ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_int_numberGreen
- ---@field public number2 UIRoleNaturePoint__Generate_leadBox_int_number2
- ---@class UIRoleNaturePoint__Generate_leadBox_vit_number2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_vit_numberGreen
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_vit_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_vit_btnIncrease
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_vit_btnReduce
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_vit
- ---@field public gameObject UnityEngine.GameObject
- ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_vit_btnReduce
- ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_vit_btnIncrease
- ---@field public number1 UIRoleNaturePoint__Generate_leadBox_vit_number1
- ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_vit_numberGreen
- ---@field public number2 UIRoleNaturePoint__Generate_leadBox_vit_number2
- ---@class UIRoleNaturePoint__Generate_leadBox_agi_number2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_agi_numberGreen
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_agi_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_agi_btnIncrease
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_agi_btnReduce
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_agi
- ---@field public gameObject UnityEngine.GameObject
- ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_agi_btnReduce
- ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_agi_btnIncrease
- ---@field public number1 UIRoleNaturePoint__Generate_leadBox_agi_number1
- ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_agi_numberGreen
- ---@field public number2 UIRoleNaturePoint__Generate_leadBox_agi_number2
- ---@class UIRoleNaturePoint__Generate_leadBox_str_number2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_str_numberGreen
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_str_number1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRoleNaturePoint__Generate_leadBox_str_btnIncrease
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_str_btnReduce
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public repeatButton UnityEngine.UI.RepeatButton
- ---@class UIRoleNaturePoint__Generate_leadBox_str
- ---@field public gameObject UnityEngine.GameObject
- ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_str_btnReduce
- ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_str_btnIncrease
- ---@field public number1 UIRoleNaturePoint__Generate_leadBox_str_number1
- ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_str_numberGreen
- ---@field public number2 UIRoleNaturePoint__Generate_leadBox_str_number2
- ---@class UIRoleNaturePoint__Generate_leadBox
- ---@field public gameObject UnityEngine.GameObject
- ---@field public str UIRoleNaturePoint__Generate_leadBox_str
- ---@field public agi UIRoleNaturePoint__Generate_leadBox_agi
- ---@field public vit UIRoleNaturePoint__Generate_leadBox_vit
- ---@field public int UIRoleNaturePoint__Generate_leadBox_int
- ---@field public dex UIRoleNaturePoint__Generate_leadBox_dex
- ---@field public luk UIRoleNaturePoint__Generate_leadBox_luk
- ---@field public restPoint UIRoleNaturePoint__Generate_leadBox_restPoint
- ---@class UIRoleNaturePoint__Generate_attr_plane
- ---@field public gameObject UnityEngine.GameObject
- ---@field public cUIPolygon CUIPolygon
- ---@class UIRoleNaturePoint__Generate_btnAttrInfo
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_addSView_content
- ---@field public gameObject UnityEngine.GameObject
- ---@field public gridLayoutGroup UnityEngine.UI.GridLayoutGroup
- ---@class UIRoleNaturePoint__Generate_addSView
- ---@field public gameObject UnityEngine.GameObject
- ---@field public rectTransform UnityEngine.RectTransform
- ---@field public loopVerticalScrollRect UnityEngine.UI.LoopVerticalScrollRect
- ---@field public content UIRoleNaturePoint__Generate_addSView_content
- ---@class UIRoleNaturePoint__Generate_baseSView_content
- ---@field public gameObject UnityEngine.GameObject
- ---@field public gridLayoutGroup UnityEngine.UI.GridLayoutGroup
- ---@class UIRoleNaturePoint__Generate_baseSView
- ---@field public gameObject UnityEngine.GameObject
- ---@field public rectTransform UnityEngine.RectTransform
- ---@field public loopVerticalScrollRect UnityEngine.UI.LoopVerticalScrollRect
- ---@field public content UIRoleNaturePoint__Generate_baseSView_content
- ---@class UIRoleNaturePoint__Generate_scrollView
- ---@field public gameObject UnityEngine.GameObject
- ---@field public rectTransform UnityEngine.RectTransform
- ---@class UIRoleNaturePoint__Generate_roleImg_role
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRoleNaturePoint__Generate_roleImg_textBox
- ---@field public gameObject UnityEngine.GameObject
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRoleNaturePoint__Generate_roleImg
- ---@field public gameObject UnityEngine.GameObject
- ---@field public textBox UIRoleNaturePoint__Generate_roleImg_textBox
- ---@field public role UIRoleNaturePoint__Generate_roleImg_role
- ---@class UIRoleNaturePoint__Generate_AnyBtn
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRoleNaturePoint__Generate_uIAnimator
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@class UIRoleNaturePoint__Generate
- ---@field private gameObject UnityEngine.GameObject
- ---@field private transform UnityEngine.Transform
- ---@field private uIAnimator UIRoleNaturePoint__Generate_uIAnimator
- ---@field private AnyBtn UIRoleNaturePoint__Generate_AnyBtn
- ---@field private roleImg UIRoleNaturePoint__Generate_roleImg
- ---@field private talkBox UnityEngine.GameObject
- ---@field private scrollView UIRoleNaturePoint__Generate_scrollView
- ---@field private baseAttrs UnityEngine.GameObject
- ---@field private baseSView UIRoleNaturePoint__Generate_baseSView
- ---@field private addAttrs UnityEngine.GameObject
- ---@field private addSView UIRoleNaturePoint__Generate_addSView
- ---@field private none UnityEngine.GameObject
- ---@field private natureAttrItem UnityEngine.GameObject
- ---@field private btnAttrInfo UIRoleNaturePoint__Generate_btnAttrInfo
- ---@field private point UnityEngine.GameObject
- ---@field private strStart UnityEngine.GameObject
- ---@field private agiStart UnityEngine.GameObject
- ---@field private lukEnd UnityEngine.GameObject
- ---@field private strEnd UnityEngine.GameObject
- ---@field private vitEnd UnityEngine.GameObject
- ---@field private agiEnd UnityEngine.GameObject
- ---@field private dexEnd UnityEngine.GameObject
- ---@field private intStart UnityEngine.GameObject
- ---@field private dexStart UnityEngine.GameObject
- ---@field private vitStart UnityEngine.GameObject
- ---@field private intEnd UnityEngine.GameObject
- ---@field private attr_plane UIRoleNaturePoint__Generate_attr_plane
- ---@field private lukStart UnityEngine.GameObject
- ---@field private center UnityEngine.GameObject
- ---@field private leadBox UIRoleNaturePoint__Generate_leadBox
- ---@field private btnInfo UIRoleNaturePoint__Generate_btnInfo
- ---@field private btnInfoImage UIRoleNaturePoint__Generate_btnInfoImage
- ---@field private btnReset UIRoleNaturePoint__Generate_btnReset
- ---@field private ptBox UIRoleNaturePoint__Generate_ptBox
- ---@field private btnPotentialFruit UIRoleNaturePoint__Generate_btnPotentialFruit
- ---@field private btnBack UIRoleNaturePoint__Generate_btnBack
- ---@field private btnRecommend UIRoleNaturePoint__Generate_btnRecommend
- ---@field private btnConfirm UIRoleNaturePoint__Generate_btnConfirm
- ---@field private redPointRecommend UnityEngine.GameObject
- ---@field private btnLeft UIRoleNaturePoint__Generate_btnLeft
- ---@field private btnRight UIRoleNaturePoint__Generate_btnRight
- local UIRoleNaturePointView = class("UIRoleNaturePointView", require("UIViewBase"))
- function UIRoleNaturePointView:ctor()
- end
- ---@private
- function UIRoleNaturePointView:SetActive(result)
- self.gameObject:SetActive(result)
- end
- ---@private
- function UIRoleNaturePointView: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)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__1(Root, data)
- --[[
- Root
- --]]
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__2(Root, data)
- --[[
- UIAnimator
- --]]
- local tmp = Root:Find("UIAnimator").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.uIAnimator = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__3(Root, data)
- --[[
- UIAnimator/Alpha
- --]]
- local tmp = Root:Find("UIAnimator/Alpha").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.AnyBtn = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__4(Root, data)
- --[[
- UIAnimator/Window/RoleImg
- --]]
- local tmp = Root:Find("UIAnimator/Window/RoleImg").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.roleImg = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__5(Root, data)
- --[[
- UIAnimator/Window/RoleImg/TalkBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/RoleImg/TalkBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.talkBox = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__6(Root, data)
- --[[
- UIAnimator/Window/RoleImg/TalkBox/TextBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/RoleImg/TalkBox/TextBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.roleImg.textBox = tmp
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__7(Root, data)
- --[[
- UIAnimator/Window/RoleImg/Pos/Role
- --]]
- local tmp = Root:Find("UIAnimator/Window/RoleImg/Pos/Role").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.roleImg.role = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__8(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.scrollView = tmp
- tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__9(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseAttrs
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseAttrs").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.baseAttrs = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__10(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.baseSView = tmp
- tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
- tmp.loopVerticalScrollRect = tmp:GetComponent(Enum.TypeInfo.LoopVerticalScrollRect)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__11(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView/Viewport/Content
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView/Viewport/Content").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.baseSView.content = tmp
- tmp.gridLayoutGroup = tmp:GetComponent(Enum.TypeInfo.GridLayoutGroup)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__12(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddAttrs
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddAttrs").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.addAttrs = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__13(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.addSView = tmp
- tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
- tmp.loopVerticalScrollRect = tmp:GetComponent(Enum.TypeInfo.LoopVerticalScrollRect)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__14(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView/Viewport/Content
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView/Viewport/Content").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.addSView.content = tmp
- tmp.gridLayoutGroup = tmp:GetComponent(Enum.TypeInfo.GridLayoutGroup)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__15(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/None
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/None").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.none = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__16(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/NatureAttrItem
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/NatureAttrItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.natureAttrItem = CommonUtil.BindGridViewItem2LuaStatic("NatureAttrItem", tmp)
- self.natureAttrItem.prefabName = "NatureAttrItem"
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__17(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Nature/BtnAttrInfo
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/BtnAttrInfo").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnAttrInfo = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__18(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.point = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__19(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/StrStart
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/StrStart").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.strStart = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__20(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/AgiStart
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/AgiStart").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.agiStart = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__21(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/LukEnd
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/LukEnd").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.lukEnd = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__22(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/StrEnd
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/StrEnd").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.strEnd = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__23(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/VitEnd
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/VitEnd").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.vitEnd = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__24(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/AgiEnd
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/AgiEnd").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.agiEnd = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__25(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/DexEnd
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/DexEnd").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.dexEnd = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__26(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/IntStart
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/IntStart").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.intStart = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__27(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/DexStart
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/DexStart").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.dexStart = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__28(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/VitStart
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/VitStart").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.vitStart = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__29(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/IntEnd
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/IntEnd").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.intEnd = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__30(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/attr_plane
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/attr_plane").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.attr_plane = tmp
- tmp.cUIPolygon = tmp:GetComponent(Enum.TypeInfo.CUIPolygon)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__31(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/LukStart
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/LukStart").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.lukStart = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__32(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/Figure/Center
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/Center").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.center = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__33(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__34(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.str = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__35(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnReduce
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnReduce").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.str.btnReduce = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__36(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnIncrease
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnIncrease").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.str.btnIncrease = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__37(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.str.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__38(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/NumberGreen
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/NumberGreen").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.str.numberGreen = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__39(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number2
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.str.number2 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__40(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.agi = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__41(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnReduce
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnReduce").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.agi.btnReduce = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__42(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnIncrease
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnIncrease").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.agi.btnIncrease = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__43(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.agi.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__44(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/NumberGreen
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/NumberGreen").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.agi.numberGreen = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__45(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number2
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.agi.number2 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__46(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.vit = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__47(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnReduce
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnReduce").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.vit.btnReduce = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__48(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnIncrease
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnIncrease").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.vit.btnIncrease = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__49(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.vit.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__50(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/NumberGreen
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/NumberGreen").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.vit.numberGreen = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__51(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number2
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.vit.number2 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__52(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.int = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__53(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnReduce
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnReduce").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.int.btnReduce = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__54(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnIncrease
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnIncrease").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.int.btnIncrease = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__55(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.int.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__56(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/NumberGreen
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/NumberGreen").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.int.numberGreen = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__57(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number2
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.int.number2 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__58(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.dex = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__59(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnReduce
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnReduce").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.dex.btnReduce = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__60(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnIncrease
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnIncrease").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.dex.btnIncrease = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__61(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.dex.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__62(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/NumberGreen
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/NumberGreen").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.dex.numberGreen = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__63(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number2
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.dex.number2 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__64(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.luk = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__65(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnReduce
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnReduce").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.luk.btnReduce = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__66(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnIncrease
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnIncrease").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.luk.btnIncrease = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__67(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.luk.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__68(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/NumberGreen
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/NumberGreen").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.luk.numberGreen = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__69(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number2
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.luk.number2 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__70(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.restPoint = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__71(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.leadBox.restPoint.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__72(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnInfo = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__73(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo/BtnInfoImage
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo/BtnInfoImage").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnInfoImage = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__74(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/LeadBox/BtnReset
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/BtnReset").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnReset = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__75(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__76(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Str
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Str").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.str = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__77(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Str/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Str/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.str.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__78(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.agi = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__79(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.agi.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__80(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.vit = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__81(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.vit.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__82(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Int
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Int").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.int = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__83(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Int/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Int/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.int.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__84(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.dex = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__85(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.dex.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__86(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.luk = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__87(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk/Number1
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk/Number1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.ptBox.luk.number1 = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__88(Root, data)
- --[[
- UIAnimator/Window/BGWindow/Point/BtnPotentialFruit
- --]]
- local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/BtnPotentialFruit").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnPotentialFruit = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__89(Root, data)
- --[[
- UIAnimator/Window/Bottom/BtnBack
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/BtnBack").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnBack = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__90(Root, data)
- --[[
- UIAnimator/Window/Bottom/BtnRecommend
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/BtnRecommend").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnRecommend = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__91(Root, data)
- --[[
- UIAnimator/Window/Bottom/BtnConfirm
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/BtnConfirm").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnConfirm = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__92(Root, data)
- --[[
- UIAnimator/Window/Bottom/RedPointRecommend
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RedPointRecommend").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.redPointRecommend = tmp
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__93(Root, data)
- --[[
- UIAnimator/Window/SwitchButtons/BtnLeft
- --]]
- local tmp = Root:Find("UIAnimator/Window/SwitchButtons/BtnLeft").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnLeft = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:InitGenerate__94(Root, data)
- --[[
- UIAnimator/Window/SwitchButtons/BtnRight
- --]]
- local tmp = Root:Find("UIAnimator/Window/SwitchButtons/BtnRight").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnRight = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRoleNaturePointView:GenerateDestroy()
- if tolua.getpeer(self.btnBack) ~= nil then
- tolua.setpeer(self.btnBack, nil)
- end
- if tolua.getpeer(self.ptBox.luk.number1) ~= nil then
- tolua.setpeer(self.ptBox.luk.number1, nil)
- end
- if tolua.getpeer(self.ptBox.luk) ~= nil then
- tolua.setpeer(self.ptBox.luk, nil)
- end
- if tolua.getpeer(self.ptBox.dex.number1) ~= nil then
- tolua.setpeer(self.ptBox.dex.number1, nil)
- end
- if tolua.getpeer(self.ptBox.dex) ~= nil then
- tolua.setpeer(self.ptBox.dex, nil)
- end
- if tolua.getpeer(self.ptBox.int.number1) ~= nil then
- tolua.setpeer(self.ptBox.int.number1, nil)
- end
- if tolua.getpeer(self.ptBox.int) ~= nil then
- tolua.setpeer(self.ptBox.int, nil)
- end
- if tolua.getpeer(self.ptBox.vit.number1) ~= nil then
- tolua.setpeer(self.ptBox.vit.number1, nil)
- end
- if tolua.getpeer(self.ptBox.vit) ~= nil then
- tolua.setpeer(self.ptBox.vit, nil)
- end
- if tolua.getpeer(self.ptBox.agi.number1) ~= nil then
- tolua.setpeer(self.ptBox.agi.number1, nil)
- end
- if tolua.getpeer(self.ptBox.agi) ~= nil then
- tolua.setpeer(self.ptBox.agi, nil)
- end
- if tolua.getpeer(self.ptBox.str.number1) ~= nil then
- tolua.setpeer(self.ptBox.str.number1, nil)
- end
- if tolua.getpeer(self.ptBox.str) ~= nil then
- tolua.setpeer(self.ptBox.str, nil)
- end
- if tolua.getpeer(self.leadBox.restPoint.number1) ~= nil then
- tolua.setpeer(self.leadBox.restPoint.number1, nil)
- end
- if tolua.getpeer(self.leadBox.restPoint) ~= nil then
- tolua.setpeer(self.leadBox.restPoint, nil)
- end
- if tolua.getpeer(self.leadBox.luk.number2) ~= nil then
- tolua.setpeer(self.leadBox.luk.number2, nil)
- end
- if tolua.getpeer(self.leadBox.luk.numberGreen) ~= nil then
- tolua.setpeer(self.leadBox.luk.numberGreen, nil)
- end
- if tolua.getpeer(self.leadBox.luk.number1) ~= nil then
- tolua.setpeer(self.leadBox.luk.number1, nil)
- end
- if tolua.getpeer(self.leadBox.luk.btnIncrease) ~= nil then
- tolua.setpeer(self.leadBox.luk.btnIncrease, nil)
- end
- if tolua.getpeer(self.leadBox.luk.btnReduce) ~= nil then
- tolua.setpeer(self.leadBox.luk.btnReduce, nil)
- end
- if tolua.getpeer(self.leadBox.luk) ~= nil then
- tolua.setpeer(self.leadBox.luk, nil)
- end
- if tolua.getpeer(self.leadBox.dex.number2) ~= nil then
- tolua.setpeer(self.leadBox.dex.number2, nil)
- end
- if tolua.getpeer(self.leadBox.dex.numberGreen) ~= nil then
- tolua.setpeer(self.leadBox.dex.numberGreen, nil)
- end
- if tolua.getpeer(self.leadBox.dex.number1) ~= nil then
- tolua.setpeer(self.leadBox.dex.number1, nil)
- end
- if tolua.getpeer(self.leadBox.dex.btnIncrease) ~= nil then
- tolua.setpeer(self.leadBox.dex.btnIncrease, nil)
- end
- if tolua.getpeer(self.leadBox.dex.btnReduce) ~= nil then
- tolua.setpeer(self.leadBox.dex.btnReduce, nil)
- end
- if tolua.getpeer(self.leadBox.dex) ~= nil then
- tolua.setpeer(self.leadBox.dex, nil)
- end
- if tolua.getpeer(self.leadBox.int.number2) ~= nil then
- tolua.setpeer(self.leadBox.int.number2, nil)
- end
- if tolua.getpeer(self.leadBox.int.numberGreen) ~= nil then
- tolua.setpeer(self.leadBox.int.numberGreen, nil)
- end
- if tolua.getpeer(self.leadBox.int.number1) ~= nil then
- tolua.setpeer(self.leadBox.int.number1, nil)
- end
- if tolua.getpeer(self.leadBox.int.btnIncrease) ~= nil then
- tolua.setpeer(self.leadBox.int.btnIncrease, nil)
- end
- if tolua.getpeer(self.leadBox.int.btnReduce) ~= nil then
- tolua.setpeer(self.leadBox.int.btnReduce, nil)
- end
- if tolua.getpeer(self.leadBox.int) ~= nil then
- tolua.setpeer(self.leadBox.int, nil)
- end
- if tolua.getpeer(self.leadBox.vit.number2) ~= nil then
- tolua.setpeer(self.leadBox.vit.number2, nil)
- end
- if tolua.getpeer(self.leadBox.vit.numberGreen) ~= nil then
- tolua.setpeer(self.leadBox.vit.numberGreen, nil)
- end
- if tolua.getpeer(self.leadBox.vit.number1) ~= nil then
- tolua.setpeer(self.leadBox.vit.number1, nil)
- end
- if tolua.getpeer(self.leadBox.vit.btnIncrease) ~= nil then
- tolua.setpeer(self.leadBox.vit.btnIncrease, nil)
- end
- if tolua.getpeer(self.leadBox.vit.btnReduce) ~= nil then
- tolua.setpeer(self.leadBox.vit.btnReduce, nil)
- end
- if tolua.getpeer(self.leadBox.vit) ~= nil then
- tolua.setpeer(self.leadBox.vit, nil)
- end
- if tolua.getpeer(self.leadBox.agi.number2) ~= nil then
- tolua.setpeer(self.leadBox.agi.number2, nil)
- end
- if tolua.getpeer(self.leadBox.agi.numberGreen) ~= nil then
- tolua.setpeer(self.leadBox.agi.numberGreen, nil)
- end
- if tolua.getpeer(self.leadBox.agi.number1) ~= nil then
- tolua.setpeer(self.leadBox.agi.number1, nil)
- end
- if tolua.getpeer(self.leadBox.agi.btnIncrease) ~= nil then
- tolua.setpeer(self.leadBox.agi.btnIncrease, nil)
- end
- if tolua.getpeer(self.leadBox.agi.btnReduce) ~= nil then
- tolua.setpeer(self.leadBox.agi.btnReduce, nil)
- end
- if tolua.getpeer(self.leadBox.agi) ~= nil then
- tolua.setpeer(self.leadBox.agi, nil)
- end
- if tolua.getpeer(self.leadBox.str.number2) ~= nil then
- tolua.setpeer(self.leadBox.str.number2, nil)
- end
- if tolua.getpeer(self.leadBox.str.numberGreen) ~= nil then
- tolua.setpeer(self.leadBox.str.numberGreen, nil)
- end
- if tolua.getpeer(self.leadBox.str.number1) ~= nil then
- tolua.setpeer(self.leadBox.str.number1, nil)
- end
- if tolua.getpeer(self.leadBox.str.btnIncrease) ~= nil then
- tolua.setpeer(self.leadBox.str.btnIncrease, nil)
- end
- if tolua.getpeer(self.leadBox.str.btnReduce) ~= nil then
- tolua.setpeer(self.leadBox.str.btnReduce, nil)
- end
- if tolua.getpeer(self.leadBox.str) ~= nil then
- tolua.setpeer(self.leadBox.str, nil)
- end
- if tolua.getpeer(self.addSView.content) ~= nil then
- tolua.setpeer(self.addSView.content, nil)
- end
- if tolua.getpeer(self.baseSView.content) ~= nil then
- tolua.setpeer(self.baseSView.content, nil)
- end
- if tolua.getpeer(self.roleImg.role) ~= nil then
- tolua.setpeer(self.roleImg.role, nil)
- end
- if tolua.getpeer(self.roleImg.textBox) ~= nil then
- tolua.setpeer(self.roleImg.textBox, nil)
- end
- if tolua.getpeer(self.uIAnimator) ~= nil then
- tolua.setpeer(self.uIAnimator, nil)
- end
- self.uIAnimator = nil
- if tolua.getpeer(self.AnyBtn) ~= nil then
- tolua.setpeer(self.AnyBtn, nil)
- end
- self.AnyBtn = nil
- if tolua.getpeer(self.roleImg) ~= nil then
- tolua.setpeer(self.roleImg, nil)
- end
- self.roleImg = nil
- if tolua.getpeer(self.talkBox) ~= nil then
- tolua.setpeer(self.talkBox, nil)
- end
- self.talkBox = nil
- if tolua.getpeer(self.scrollView) ~= nil then
- tolua.setpeer(self.scrollView, nil)
- end
- self.scrollView = nil
- if tolua.getpeer(self.baseAttrs) ~= nil then
- tolua.setpeer(self.baseAttrs, nil)
- end
- self.baseAttrs = nil
- if tolua.getpeer(self.baseSView) ~= nil then
- tolua.setpeer(self.baseSView, nil)
- end
- self.baseSView = nil
- if tolua.getpeer(self.addAttrs) ~= nil then
- tolua.setpeer(self.addAttrs, nil)
- end
- self.addAttrs = nil
- if tolua.getpeer(self.addSView) ~= nil then
- tolua.setpeer(self.addSView, nil)
- end
- self.addSView = nil
- if tolua.getpeer(self.none) ~= nil then
- tolua.setpeer(self.none, nil)
- end
- self.none = nil
- if self.natureAttrItem.GenerateDestroy ~= nil then
- self.natureAttrItem:GenerateDestroy()
- end
- if tolua.getpeer(self.natureAttrItem) ~= nil then
- tolua.setpeer(self.natureAttrItem, nil)
- end
- self.natureAttrItem = nil
- if tolua.getpeer(self.btnAttrInfo) ~= nil then
- tolua.setpeer(self.btnAttrInfo, nil)
- end
- self.btnAttrInfo = nil
- if tolua.getpeer(self.point) ~= nil then
- tolua.setpeer(self.point, nil)
- end
- self.point = nil
- if tolua.getpeer(self.strStart) ~= nil then
- tolua.setpeer(self.strStart, nil)
- end
- self.strStart = nil
- if tolua.getpeer(self.agiStart) ~= nil then
- tolua.setpeer(self.agiStart, nil)
- end
- self.agiStart = nil
- if tolua.getpeer(self.lukEnd) ~= nil then
- tolua.setpeer(self.lukEnd, nil)
- end
- self.lukEnd = nil
- if tolua.getpeer(self.strEnd) ~= nil then
- tolua.setpeer(self.strEnd, nil)
- end
- self.strEnd = nil
- if tolua.getpeer(self.vitEnd) ~= nil then
- tolua.setpeer(self.vitEnd, nil)
- end
- self.vitEnd = nil
- if tolua.getpeer(self.agiEnd) ~= nil then
- tolua.setpeer(self.agiEnd, nil)
- end
- self.agiEnd = nil
- if tolua.getpeer(self.dexEnd) ~= nil then
- tolua.setpeer(self.dexEnd, nil)
- end
- self.dexEnd = nil
- if tolua.getpeer(self.intStart) ~= nil then
- tolua.setpeer(self.intStart, nil)
- end
- self.intStart = nil
- if tolua.getpeer(self.dexStart) ~= nil then
- tolua.setpeer(self.dexStart, nil)
- end
- self.dexStart = nil
- if tolua.getpeer(self.vitStart) ~= nil then
- tolua.setpeer(self.vitStart, nil)
- end
- self.vitStart = nil
- if tolua.getpeer(self.intEnd) ~= nil then
- tolua.setpeer(self.intEnd, nil)
- end
- self.intEnd = nil
- if tolua.getpeer(self.attr_plane) ~= nil then
- tolua.setpeer(self.attr_plane, nil)
- end
- self.attr_plane = nil
- if tolua.getpeer(self.lukStart) ~= nil then
- tolua.setpeer(self.lukStart, nil)
- end
- self.lukStart = nil
- if tolua.getpeer(self.center) ~= nil then
- tolua.setpeer(self.center, nil)
- end
- self.center = nil
- if tolua.getpeer(self.leadBox) ~= nil then
- tolua.setpeer(self.leadBox, nil)
- end
- self.leadBox = nil
- if tolua.getpeer(self.btnInfo) ~= nil then
- tolua.setpeer(self.btnInfo, nil)
- end
- self.btnInfo = nil
- if tolua.getpeer(self.btnInfoImage) ~= nil then
- tolua.setpeer(self.btnInfoImage, nil)
- end
- self.btnInfoImage = nil
- if tolua.getpeer(self.btnReset) ~= nil then
- tolua.setpeer(self.btnReset, nil)
- end
- self.btnReset = nil
- if tolua.getpeer(self.ptBox) ~= nil then
- tolua.setpeer(self.ptBox, nil)
- end
- self.ptBox = nil
- if tolua.getpeer(self.btnPotentialFruit) ~= nil then
- tolua.setpeer(self.btnPotentialFruit, nil)
- end
- self.btnPotentialFruit = nil
- if tolua.getpeer(self.btnRecommend) ~= nil then
- tolua.setpeer(self.btnRecommend, nil)
- end
- self.btnRecommend = nil
- if tolua.getpeer(self.btnConfirm) ~= nil then
- tolua.setpeer(self.btnConfirm, nil)
- end
- self.btnConfirm = nil
- if tolua.getpeer(self.redPointRecommend) ~= nil then
- tolua.setpeer(self.redPointRecommend, nil)
- end
- self.redPointRecommend = nil
- if tolua.getpeer(self.btnLeft) ~= nil then
- tolua.setpeer(self.btnLeft, nil)
- end
- self.btnLeft = nil
- if tolua.getpeer(self.btnRight) ~= nil then
- tolua.setpeer(self.btnRight, nil)
- end
- self.btnRight = nil
- self.transform = nil
- self.gameObject = nil
- self.inited = false
- end
- return UIRoleNaturePointView
|