UIRoleNaturePointView_Generate.lua 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. ---@class UIRoleNaturePoint__Generate_btnRight
  2. ---@field public gameObject UnityEngine.GameObject
  3. ---@field public button UnityEngine.UI.Button
  4. ---@class UIRoleNaturePoint__Generate_btnLeft
  5. ---@field public gameObject UnityEngine.GameObject
  6. ---@field public button UnityEngine.UI.Button
  7. ---@class UIRoleNaturePoint__Generate_btnConfirm
  8. ---@field public gameObject UnityEngine.GameObject
  9. ---@field public button UnityEngine.UI.Button
  10. ---@class UIRoleNaturePoint__Generate_btnRecommend
  11. ---@field public gameObject UnityEngine.GameObject
  12. ---@field public button UnityEngine.UI.Button
  13. ---@class UIRoleNaturePoint__Generate_btnBack
  14. ---@field public gameObject UnityEngine.GameObject
  15. ---@field public button UnityEngine.UI.Button
  16. ---@class UIRoleNaturePoint__Generate_btnPotentialFruit
  17. ---@field public gameObject UnityEngine.GameObject
  18. ---@field public button UnityEngine.UI.Button
  19. ---@class UIRoleNaturePoint__Generate_ptBox_luk_number1
  20. ---@field public gameObject UnityEngine.GameObject
  21. ---@field public text UnityEngine.UI.Text
  22. ---@class UIRoleNaturePoint__Generate_ptBox_luk
  23. ---@field public gameObject UnityEngine.GameObject
  24. ---@field public number1 UIRoleNaturePoint__Generate_ptBox_luk_number1
  25. ---@class UIRoleNaturePoint__Generate_ptBox_dex_number1
  26. ---@field public gameObject UnityEngine.GameObject
  27. ---@field public text UnityEngine.UI.Text
  28. ---@class UIRoleNaturePoint__Generate_ptBox_dex
  29. ---@field public gameObject UnityEngine.GameObject
  30. ---@field public number1 UIRoleNaturePoint__Generate_ptBox_dex_number1
  31. ---@class UIRoleNaturePoint__Generate_ptBox_int_number1
  32. ---@field public gameObject UnityEngine.GameObject
  33. ---@field public text UnityEngine.UI.Text
  34. ---@class UIRoleNaturePoint__Generate_ptBox_int
  35. ---@field public gameObject UnityEngine.GameObject
  36. ---@field public number1 UIRoleNaturePoint__Generate_ptBox_int_number1
  37. ---@class UIRoleNaturePoint__Generate_ptBox_vit_number1
  38. ---@field public gameObject UnityEngine.GameObject
  39. ---@field public text UnityEngine.UI.Text
  40. ---@class UIRoleNaturePoint__Generate_ptBox_vit
  41. ---@field public gameObject UnityEngine.GameObject
  42. ---@field public number1 UIRoleNaturePoint__Generate_ptBox_vit_number1
  43. ---@class UIRoleNaturePoint__Generate_ptBox_agi_number1
  44. ---@field public gameObject UnityEngine.GameObject
  45. ---@field public text UnityEngine.UI.Text
  46. ---@class UIRoleNaturePoint__Generate_ptBox_agi
  47. ---@field public gameObject UnityEngine.GameObject
  48. ---@field public number1 UIRoleNaturePoint__Generate_ptBox_agi_number1
  49. ---@class UIRoleNaturePoint__Generate_ptBox_str_number1
  50. ---@field public gameObject UnityEngine.GameObject
  51. ---@field public text UnityEngine.UI.Text
  52. ---@class UIRoleNaturePoint__Generate_ptBox_str
  53. ---@field public gameObject UnityEngine.GameObject
  54. ---@field public number1 UIRoleNaturePoint__Generate_ptBox_str_number1
  55. ---@class UIRoleNaturePoint__Generate_ptBox
  56. ---@field public gameObject UnityEngine.GameObject
  57. ---@field public str UIRoleNaturePoint__Generate_ptBox_str
  58. ---@field public agi UIRoleNaturePoint__Generate_ptBox_agi
  59. ---@field public vit UIRoleNaturePoint__Generate_ptBox_vit
  60. ---@field public int UIRoleNaturePoint__Generate_ptBox_int
  61. ---@field public dex UIRoleNaturePoint__Generate_ptBox_dex
  62. ---@field public luk UIRoleNaturePoint__Generate_ptBox_luk
  63. ---@class UIRoleNaturePoint__Generate_btnReset
  64. ---@field public gameObject UnityEngine.GameObject
  65. ---@field public button UnityEngine.UI.Button
  66. ---@class UIRoleNaturePoint__Generate_btnInfoImage
  67. ---@field public gameObject UnityEngine.GameObject
  68. ---@field public button UnityEngine.UI.Button
  69. ---@class UIRoleNaturePoint__Generate_btnInfo
  70. ---@field public gameObject UnityEngine.GameObject
  71. ---@field public button UnityEngine.UI.Button
  72. ---@class UIRoleNaturePoint__Generate_leadBox_restPoint_number1
  73. ---@field public gameObject UnityEngine.GameObject
  74. ---@field public text UnityEngine.UI.Text
  75. ---@class UIRoleNaturePoint__Generate_leadBox_restPoint
  76. ---@field public gameObject UnityEngine.GameObject
  77. ---@field public number1 UIRoleNaturePoint__Generate_leadBox_restPoint_number1
  78. ---@class UIRoleNaturePoint__Generate_leadBox_luk_number2
  79. ---@field public gameObject UnityEngine.GameObject
  80. ---@field public text UnityEngine.UI.Text
  81. ---@class UIRoleNaturePoint__Generate_leadBox_luk_numberGreen
  82. ---@field public gameObject UnityEngine.GameObject
  83. ---@field public text UnityEngine.UI.Text
  84. ---@class UIRoleNaturePoint__Generate_leadBox_luk_number1
  85. ---@field public gameObject UnityEngine.GameObject
  86. ---@field public text UnityEngine.UI.Text
  87. ---@class UIRoleNaturePoint__Generate_leadBox_luk_btnIncrease
  88. ---@field public gameObject UnityEngine.GameObject
  89. ---@field public button UnityEngine.UI.Button
  90. ---@field public repeatButton UnityEngine.UI.RepeatButton
  91. ---@class UIRoleNaturePoint__Generate_leadBox_luk_btnReduce
  92. ---@field public gameObject UnityEngine.GameObject
  93. ---@field public button UnityEngine.UI.Button
  94. ---@field public repeatButton UnityEngine.UI.RepeatButton
  95. ---@class UIRoleNaturePoint__Generate_leadBox_luk
  96. ---@field public gameObject UnityEngine.GameObject
  97. ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_luk_btnReduce
  98. ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_luk_btnIncrease
  99. ---@field public number1 UIRoleNaturePoint__Generate_leadBox_luk_number1
  100. ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_luk_numberGreen
  101. ---@field public number2 UIRoleNaturePoint__Generate_leadBox_luk_number2
  102. ---@class UIRoleNaturePoint__Generate_leadBox_dex_number2
  103. ---@field public gameObject UnityEngine.GameObject
  104. ---@field public text UnityEngine.UI.Text
  105. ---@class UIRoleNaturePoint__Generate_leadBox_dex_numberGreen
  106. ---@field public gameObject UnityEngine.GameObject
  107. ---@field public text UnityEngine.UI.Text
  108. ---@class UIRoleNaturePoint__Generate_leadBox_dex_number1
  109. ---@field public gameObject UnityEngine.GameObject
  110. ---@field public text UnityEngine.UI.Text
  111. ---@class UIRoleNaturePoint__Generate_leadBox_dex_btnIncrease
  112. ---@field public gameObject UnityEngine.GameObject
  113. ---@field public button UnityEngine.UI.Button
  114. ---@field public repeatButton UnityEngine.UI.RepeatButton
  115. ---@class UIRoleNaturePoint__Generate_leadBox_dex_btnReduce
  116. ---@field public gameObject UnityEngine.GameObject
  117. ---@field public button UnityEngine.UI.Button
  118. ---@field public repeatButton UnityEngine.UI.RepeatButton
  119. ---@class UIRoleNaturePoint__Generate_leadBox_dex
  120. ---@field public gameObject UnityEngine.GameObject
  121. ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_dex_btnReduce
  122. ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_dex_btnIncrease
  123. ---@field public number1 UIRoleNaturePoint__Generate_leadBox_dex_number1
  124. ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_dex_numberGreen
  125. ---@field public number2 UIRoleNaturePoint__Generate_leadBox_dex_number2
  126. ---@class UIRoleNaturePoint__Generate_leadBox_int_number2
  127. ---@field public gameObject UnityEngine.GameObject
  128. ---@field public text UnityEngine.UI.Text
  129. ---@class UIRoleNaturePoint__Generate_leadBox_int_numberGreen
  130. ---@field public gameObject UnityEngine.GameObject
  131. ---@field public text UnityEngine.UI.Text
  132. ---@class UIRoleNaturePoint__Generate_leadBox_int_number1
  133. ---@field public gameObject UnityEngine.GameObject
  134. ---@field public text UnityEngine.UI.Text
  135. ---@class UIRoleNaturePoint__Generate_leadBox_int_btnIncrease
  136. ---@field public gameObject UnityEngine.GameObject
  137. ---@field public button UnityEngine.UI.Button
  138. ---@field public repeatButton UnityEngine.UI.RepeatButton
  139. ---@class UIRoleNaturePoint__Generate_leadBox_int_btnReduce
  140. ---@field public gameObject UnityEngine.GameObject
  141. ---@field public button UnityEngine.UI.Button
  142. ---@field public repeatButton UnityEngine.UI.RepeatButton
  143. ---@class UIRoleNaturePoint__Generate_leadBox_int
  144. ---@field public gameObject UnityEngine.GameObject
  145. ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_int_btnReduce
  146. ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_int_btnIncrease
  147. ---@field public number1 UIRoleNaturePoint__Generate_leadBox_int_number1
  148. ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_int_numberGreen
  149. ---@field public number2 UIRoleNaturePoint__Generate_leadBox_int_number2
  150. ---@class UIRoleNaturePoint__Generate_leadBox_vit_number2
  151. ---@field public gameObject UnityEngine.GameObject
  152. ---@field public text UnityEngine.UI.Text
  153. ---@class UIRoleNaturePoint__Generate_leadBox_vit_numberGreen
  154. ---@field public gameObject UnityEngine.GameObject
  155. ---@field public text UnityEngine.UI.Text
  156. ---@class UIRoleNaturePoint__Generate_leadBox_vit_number1
  157. ---@field public gameObject UnityEngine.GameObject
  158. ---@field public text UnityEngine.UI.Text
  159. ---@class UIRoleNaturePoint__Generate_leadBox_vit_btnIncrease
  160. ---@field public gameObject UnityEngine.GameObject
  161. ---@field public button UnityEngine.UI.Button
  162. ---@field public repeatButton UnityEngine.UI.RepeatButton
  163. ---@class UIRoleNaturePoint__Generate_leadBox_vit_btnReduce
  164. ---@field public gameObject UnityEngine.GameObject
  165. ---@field public button UnityEngine.UI.Button
  166. ---@field public repeatButton UnityEngine.UI.RepeatButton
  167. ---@class UIRoleNaturePoint__Generate_leadBox_vit
  168. ---@field public gameObject UnityEngine.GameObject
  169. ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_vit_btnReduce
  170. ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_vit_btnIncrease
  171. ---@field public number1 UIRoleNaturePoint__Generate_leadBox_vit_number1
  172. ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_vit_numberGreen
  173. ---@field public number2 UIRoleNaturePoint__Generate_leadBox_vit_number2
  174. ---@class UIRoleNaturePoint__Generate_leadBox_agi_number2
  175. ---@field public gameObject UnityEngine.GameObject
  176. ---@field public text UnityEngine.UI.Text
  177. ---@class UIRoleNaturePoint__Generate_leadBox_agi_numberGreen
  178. ---@field public gameObject UnityEngine.GameObject
  179. ---@field public text UnityEngine.UI.Text
  180. ---@class UIRoleNaturePoint__Generate_leadBox_agi_number1
  181. ---@field public gameObject UnityEngine.GameObject
  182. ---@field public text UnityEngine.UI.Text
  183. ---@class UIRoleNaturePoint__Generate_leadBox_agi_btnIncrease
  184. ---@field public gameObject UnityEngine.GameObject
  185. ---@field public button UnityEngine.UI.Button
  186. ---@field public repeatButton UnityEngine.UI.RepeatButton
  187. ---@class UIRoleNaturePoint__Generate_leadBox_agi_btnReduce
  188. ---@field public gameObject UnityEngine.GameObject
  189. ---@field public button UnityEngine.UI.Button
  190. ---@field public repeatButton UnityEngine.UI.RepeatButton
  191. ---@class UIRoleNaturePoint__Generate_leadBox_agi
  192. ---@field public gameObject UnityEngine.GameObject
  193. ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_agi_btnReduce
  194. ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_agi_btnIncrease
  195. ---@field public number1 UIRoleNaturePoint__Generate_leadBox_agi_number1
  196. ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_agi_numberGreen
  197. ---@field public number2 UIRoleNaturePoint__Generate_leadBox_agi_number2
  198. ---@class UIRoleNaturePoint__Generate_leadBox_str_number2
  199. ---@field public gameObject UnityEngine.GameObject
  200. ---@field public text UnityEngine.UI.Text
  201. ---@class UIRoleNaturePoint__Generate_leadBox_str_numberGreen
  202. ---@field public gameObject UnityEngine.GameObject
  203. ---@field public text UnityEngine.UI.Text
  204. ---@class UIRoleNaturePoint__Generate_leadBox_str_number1
  205. ---@field public gameObject UnityEngine.GameObject
  206. ---@field public text UnityEngine.UI.Text
  207. ---@class UIRoleNaturePoint__Generate_leadBox_str_btnIncrease
  208. ---@field public gameObject UnityEngine.GameObject
  209. ---@field public button UnityEngine.UI.Button
  210. ---@field public repeatButton UnityEngine.UI.RepeatButton
  211. ---@class UIRoleNaturePoint__Generate_leadBox_str_btnReduce
  212. ---@field public gameObject UnityEngine.GameObject
  213. ---@field public button UnityEngine.UI.Button
  214. ---@field public repeatButton UnityEngine.UI.RepeatButton
  215. ---@class UIRoleNaturePoint__Generate_leadBox_str
  216. ---@field public gameObject UnityEngine.GameObject
  217. ---@field public btnReduce UIRoleNaturePoint__Generate_leadBox_str_btnReduce
  218. ---@field public btnIncrease UIRoleNaturePoint__Generate_leadBox_str_btnIncrease
  219. ---@field public number1 UIRoleNaturePoint__Generate_leadBox_str_number1
  220. ---@field public numberGreen UIRoleNaturePoint__Generate_leadBox_str_numberGreen
  221. ---@field public number2 UIRoleNaturePoint__Generate_leadBox_str_number2
  222. ---@class UIRoleNaturePoint__Generate_leadBox
  223. ---@field public gameObject UnityEngine.GameObject
  224. ---@field public str UIRoleNaturePoint__Generate_leadBox_str
  225. ---@field public agi UIRoleNaturePoint__Generate_leadBox_agi
  226. ---@field public vit UIRoleNaturePoint__Generate_leadBox_vit
  227. ---@field public int UIRoleNaturePoint__Generate_leadBox_int
  228. ---@field public dex UIRoleNaturePoint__Generate_leadBox_dex
  229. ---@field public luk UIRoleNaturePoint__Generate_leadBox_luk
  230. ---@field public restPoint UIRoleNaturePoint__Generate_leadBox_restPoint
  231. ---@class UIRoleNaturePoint__Generate_attr_plane
  232. ---@field public gameObject UnityEngine.GameObject
  233. ---@field public cUIPolygon CUIPolygon
  234. ---@class UIRoleNaturePoint__Generate_btnAttrInfo
  235. ---@field public gameObject UnityEngine.GameObject
  236. ---@field public button UnityEngine.UI.Button
  237. ---@class UIRoleNaturePoint__Generate_addSView_content
  238. ---@field public gameObject UnityEngine.GameObject
  239. ---@field public gridLayoutGroup UnityEngine.UI.GridLayoutGroup
  240. ---@class UIRoleNaturePoint__Generate_addSView
  241. ---@field public gameObject UnityEngine.GameObject
  242. ---@field public rectTransform UnityEngine.RectTransform
  243. ---@field public loopVerticalScrollRect UnityEngine.UI.LoopVerticalScrollRect
  244. ---@field public content UIRoleNaturePoint__Generate_addSView_content
  245. ---@class UIRoleNaturePoint__Generate_baseSView_content
  246. ---@field public gameObject UnityEngine.GameObject
  247. ---@field public gridLayoutGroup UnityEngine.UI.GridLayoutGroup
  248. ---@class UIRoleNaturePoint__Generate_baseSView
  249. ---@field public gameObject UnityEngine.GameObject
  250. ---@field public rectTransform UnityEngine.RectTransform
  251. ---@field public loopVerticalScrollRect UnityEngine.UI.LoopVerticalScrollRect
  252. ---@field public content UIRoleNaturePoint__Generate_baseSView_content
  253. ---@class UIRoleNaturePoint__Generate_scrollView
  254. ---@field public gameObject UnityEngine.GameObject
  255. ---@field public rectTransform UnityEngine.RectTransform
  256. ---@class UIRoleNaturePoint__Generate_roleImg_role
  257. ---@field public gameObject UnityEngine.GameObject
  258. ---@field public image UnityEngine.UI.Image
  259. ---@class UIRoleNaturePoint__Generate_roleImg_textBox
  260. ---@field public gameObject UnityEngine.GameObject
  261. ---@field public uILocalizeScript UILocalizeScript
  262. ---@class UIRoleNaturePoint__Generate_roleImg
  263. ---@field public gameObject UnityEngine.GameObject
  264. ---@field public textBox UIRoleNaturePoint__Generate_roleImg_textBox
  265. ---@field public role UIRoleNaturePoint__Generate_roleImg_role
  266. ---@class UIRoleNaturePoint__Generate_AnyBtn
  267. ---@field public gameObject UnityEngine.GameObject
  268. ---@field public button UnityEngine.UI.Button
  269. ---@class UIRoleNaturePoint__Generate_uIAnimator
  270. ---@field public gameObject UnityEngine.GameObject
  271. ---@field public animator UnityEngine.Animator
  272. ---@class UIRoleNaturePoint__Generate
  273. ---@field private gameObject UnityEngine.GameObject
  274. ---@field private transform UnityEngine.Transform
  275. ---@field private uIAnimator UIRoleNaturePoint__Generate_uIAnimator
  276. ---@field private AnyBtn UIRoleNaturePoint__Generate_AnyBtn
  277. ---@field private roleImg UIRoleNaturePoint__Generate_roleImg
  278. ---@field private talkBox UnityEngine.GameObject
  279. ---@field private scrollView UIRoleNaturePoint__Generate_scrollView
  280. ---@field private baseAttrs UnityEngine.GameObject
  281. ---@field private baseSView UIRoleNaturePoint__Generate_baseSView
  282. ---@field private addAttrs UnityEngine.GameObject
  283. ---@field private addSView UIRoleNaturePoint__Generate_addSView
  284. ---@field private none UnityEngine.GameObject
  285. ---@field private natureAttrItem UnityEngine.GameObject
  286. ---@field private btnAttrInfo UIRoleNaturePoint__Generate_btnAttrInfo
  287. ---@field private point UnityEngine.GameObject
  288. ---@field private strStart UnityEngine.GameObject
  289. ---@field private agiStart UnityEngine.GameObject
  290. ---@field private lukEnd UnityEngine.GameObject
  291. ---@field private strEnd UnityEngine.GameObject
  292. ---@field private vitEnd UnityEngine.GameObject
  293. ---@field private agiEnd UnityEngine.GameObject
  294. ---@field private dexEnd UnityEngine.GameObject
  295. ---@field private intStart UnityEngine.GameObject
  296. ---@field private dexStart UnityEngine.GameObject
  297. ---@field private vitStart UnityEngine.GameObject
  298. ---@field private intEnd UnityEngine.GameObject
  299. ---@field private attr_plane UIRoleNaturePoint__Generate_attr_plane
  300. ---@field private lukStart UnityEngine.GameObject
  301. ---@field private center UnityEngine.GameObject
  302. ---@field private leadBox UIRoleNaturePoint__Generate_leadBox
  303. ---@field private btnInfo UIRoleNaturePoint__Generate_btnInfo
  304. ---@field private btnInfoImage UIRoleNaturePoint__Generate_btnInfoImage
  305. ---@field private btnReset UIRoleNaturePoint__Generate_btnReset
  306. ---@field private ptBox UIRoleNaturePoint__Generate_ptBox
  307. ---@field private btnPotentialFruit UIRoleNaturePoint__Generate_btnPotentialFruit
  308. ---@field private btnBack UIRoleNaturePoint__Generate_btnBack
  309. ---@field private btnRecommend UIRoleNaturePoint__Generate_btnRecommend
  310. ---@field private btnConfirm UIRoleNaturePoint__Generate_btnConfirm
  311. ---@field private redPointRecommend UnityEngine.GameObject
  312. ---@field private btnLeft UIRoleNaturePoint__Generate_btnLeft
  313. ---@field private btnRight UIRoleNaturePoint__Generate_btnRight
  314. local UIRoleNaturePointView = class("UIRoleNaturePointView", require("UIViewBase"))
  315. function UIRoleNaturePointView:ctor()
  316. end
  317. ---@private
  318. function UIRoleNaturePointView:SetActive(result)
  319. self.gameObject:SetActive(result)
  320. end
  321. ---@private
  322. function UIRoleNaturePointView:InitGenerate(Root, data)
  323. self.transform = Root
  324. self.inited = true
  325. if self.super.Init then
  326. self.super.Init(self)
  327. end
  328. local tmp
  329. self:InitGenerate__1(Root,data)
  330. self:InitGenerate__2(Root,data)
  331. self:InitGenerate__3(Root,data)
  332. self:InitGenerate__4(Root,data)
  333. self:InitGenerate__5(Root,data)
  334. self:InitGenerate__6(Root,data)
  335. self:InitGenerate__7(Root,data)
  336. self:InitGenerate__8(Root,data)
  337. self:InitGenerate__9(Root,data)
  338. self:InitGenerate__10(Root,data)
  339. self:InitGenerate__11(Root,data)
  340. self:InitGenerate__12(Root,data)
  341. self:InitGenerate__13(Root,data)
  342. self:InitGenerate__14(Root,data)
  343. self:InitGenerate__15(Root,data)
  344. self:InitGenerate__16(Root,data)
  345. self:InitGenerate__17(Root,data)
  346. self:InitGenerate__18(Root,data)
  347. self:InitGenerate__19(Root,data)
  348. self:InitGenerate__20(Root,data)
  349. self:InitGenerate__21(Root,data)
  350. self:InitGenerate__22(Root,data)
  351. self:InitGenerate__23(Root,data)
  352. self:InitGenerate__24(Root,data)
  353. self:InitGenerate__25(Root,data)
  354. self:InitGenerate__26(Root,data)
  355. self:InitGenerate__27(Root,data)
  356. self:InitGenerate__28(Root,data)
  357. self:InitGenerate__29(Root,data)
  358. self:InitGenerate__30(Root,data)
  359. self:InitGenerate__31(Root,data)
  360. self:InitGenerate__32(Root,data)
  361. self:InitGenerate__33(Root,data)
  362. self:InitGenerate__34(Root,data)
  363. self:InitGenerate__35(Root,data)
  364. self:InitGenerate__36(Root,data)
  365. self:InitGenerate__37(Root,data)
  366. self:InitGenerate__38(Root,data)
  367. self:InitGenerate__39(Root,data)
  368. self:InitGenerate__40(Root,data)
  369. self:InitGenerate__41(Root,data)
  370. self:InitGenerate__42(Root,data)
  371. self:InitGenerate__43(Root,data)
  372. self:InitGenerate__44(Root,data)
  373. self:InitGenerate__45(Root,data)
  374. self:InitGenerate__46(Root,data)
  375. self:InitGenerate__47(Root,data)
  376. self:InitGenerate__48(Root,data)
  377. self:InitGenerate__49(Root,data)
  378. self:InitGenerate__50(Root,data)
  379. self:InitGenerate__51(Root,data)
  380. self:InitGenerate__52(Root,data)
  381. self:InitGenerate__53(Root,data)
  382. self:InitGenerate__54(Root,data)
  383. self:InitGenerate__55(Root,data)
  384. self:InitGenerate__56(Root,data)
  385. self:InitGenerate__57(Root,data)
  386. self:InitGenerate__58(Root,data)
  387. self:InitGenerate__59(Root,data)
  388. self:InitGenerate__60(Root,data)
  389. self:InitGenerate__61(Root,data)
  390. self:InitGenerate__62(Root,data)
  391. self:InitGenerate__63(Root,data)
  392. self:InitGenerate__64(Root,data)
  393. self:InitGenerate__65(Root,data)
  394. self:InitGenerate__66(Root,data)
  395. self:InitGenerate__67(Root,data)
  396. self:InitGenerate__68(Root,data)
  397. self:InitGenerate__69(Root,data)
  398. self:InitGenerate__70(Root,data)
  399. self:InitGenerate__71(Root,data)
  400. self:InitGenerate__72(Root,data)
  401. self:InitGenerate__73(Root,data)
  402. self:InitGenerate__74(Root,data)
  403. self:InitGenerate__75(Root,data)
  404. self:InitGenerate__76(Root,data)
  405. self:InitGenerate__77(Root,data)
  406. self:InitGenerate__78(Root,data)
  407. self:InitGenerate__79(Root,data)
  408. self:InitGenerate__80(Root,data)
  409. self:InitGenerate__81(Root,data)
  410. self:InitGenerate__82(Root,data)
  411. self:InitGenerate__83(Root,data)
  412. self:InitGenerate__84(Root,data)
  413. self:InitGenerate__85(Root,data)
  414. self:InitGenerate__86(Root,data)
  415. self:InitGenerate__87(Root,data)
  416. self:InitGenerate__88(Root,data)
  417. self:InitGenerate__89(Root,data)
  418. self:InitGenerate__90(Root,data)
  419. self:InitGenerate__91(Root,data)
  420. self:InitGenerate__92(Root,data)
  421. self:InitGenerate__93(Root,data)
  422. self:InitGenerate__94(Root,data)
  423. end
  424. ---@private
  425. function UIRoleNaturePointView:InitGenerate__1(Root, data)
  426. --[[
  427. Root
  428. --]]
  429. end
  430. ---@private
  431. function UIRoleNaturePointView:InitGenerate__2(Root, data)
  432. --[[
  433. UIAnimator
  434. --]]
  435. local tmp = Root:Find("UIAnimator").gameObject
  436. if tolua.getpeer(tmp) == nil then
  437. tolua.setpeer(tmp, {})
  438. end
  439. self.uIAnimator = tmp
  440. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  441. tmp.animator.logWarnings = false
  442. end
  443. ---@private
  444. function UIRoleNaturePointView:InitGenerate__3(Root, data)
  445. --[[
  446. UIAnimator/Alpha
  447. --]]
  448. local tmp = Root:Find("UIAnimator/Alpha").gameObject
  449. if tolua.getpeer(tmp) == nil then
  450. tolua.setpeer(tmp, {})
  451. end
  452. self.AnyBtn = tmp
  453. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  454. end
  455. ---@private
  456. function UIRoleNaturePointView:InitGenerate__4(Root, data)
  457. --[[
  458. UIAnimator/Window/RoleImg
  459. --]]
  460. local tmp = Root:Find("UIAnimator/Window/RoleImg").gameObject
  461. if tolua.getpeer(tmp) == nil then
  462. tolua.setpeer(tmp, {})
  463. end
  464. self.roleImg = tmp
  465. end
  466. ---@private
  467. function UIRoleNaturePointView:InitGenerate__5(Root, data)
  468. --[[
  469. UIAnimator/Window/RoleImg/TalkBox
  470. --]]
  471. local tmp = Root:Find("UIAnimator/Window/RoleImg/TalkBox").gameObject
  472. if tolua.getpeer(tmp) == nil then
  473. tolua.setpeer(tmp, {})
  474. end
  475. self.talkBox = tmp
  476. end
  477. ---@private
  478. function UIRoleNaturePointView:InitGenerate__6(Root, data)
  479. --[[
  480. UIAnimator/Window/RoleImg/TalkBox/TextBox
  481. --]]
  482. local tmp = Root:Find("UIAnimator/Window/RoleImg/TalkBox/TextBox").gameObject
  483. if tolua.getpeer(tmp) == nil then
  484. tolua.setpeer(tmp, {})
  485. end
  486. self.roleImg.textBox = tmp
  487. tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
  488. end
  489. ---@private
  490. function UIRoleNaturePointView:InitGenerate__7(Root, data)
  491. --[[
  492. UIAnimator/Window/RoleImg/Pos/Role
  493. --]]
  494. local tmp = Root:Find("UIAnimator/Window/RoleImg/Pos/Role").gameObject
  495. if tolua.getpeer(tmp) == nil then
  496. tolua.setpeer(tmp, {})
  497. end
  498. self.roleImg.role = tmp
  499. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  500. end
  501. ---@private
  502. function UIRoleNaturePointView:InitGenerate__8(Root, data)
  503. --[[
  504. UIAnimator/Window/BGWindow/Nature/Scroll View
  505. --]]
  506. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View").gameObject
  507. if tolua.getpeer(tmp) == nil then
  508. tolua.setpeer(tmp, {})
  509. end
  510. self.scrollView = tmp
  511. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  512. end
  513. ---@private
  514. function UIRoleNaturePointView:InitGenerate__9(Root, data)
  515. --[[
  516. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseAttrs
  517. --]]
  518. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseAttrs").gameObject
  519. if tolua.getpeer(tmp) == nil then
  520. tolua.setpeer(tmp, {})
  521. end
  522. self.baseAttrs = tmp
  523. end
  524. ---@private
  525. function UIRoleNaturePointView:InitGenerate__10(Root, data)
  526. --[[
  527. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView
  528. --]]
  529. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView").gameObject
  530. if tolua.getpeer(tmp) == nil then
  531. tolua.setpeer(tmp, {})
  532. end
  533. self.baseSView = tmp
  534. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  535. tmp.loopVerticalScrollRect = tmp:GetComponent(Enum.TypeInfo.LoopVerticalScrollRect)
  536. end
  537. ---@private
  538. function UIRoleNaturePointView:InitGenerate__11(Root, data)
  539. --[[
  540. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView/Viewport/Content
  541. --]]
  542. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/BaseSView/Viewport/Content").gameObject
  543. if tolua.getpeer(tmp) == nil then
  544. tolua.setpeer(tmp, {})
  545. end
  546. self.baseSView.content = tmp
  547. tmp.gridLayoutGroup = tmp:GetComponent(Enum.TypeInfo.GridLayoutGroup)
  548. end
  549. ---@private
  550. function UIRoleNaturePointView:InitGenerate__12(Root, data)
  551. --[[
  552. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddAttrs
  553. --]]
  554. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddAttrs").gameObject
  555. if tolua.getpeer(tmp) == nil then
  556. tolua.setpeer(tmp, {})
  557. end
  558. self.addAttrs = tmp
  559. end
  560. ---@private
  561. function UIRoleNaturePointView:InitGenerate__13(Root, data)
  562. --[[
  563. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView
  564. --]]
  565. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView").gameObject
  566. if tolua.getpeer(tmp) == nil then
  567. tolua.setpeer(tmp, {})
  568. end
  569. self.addSView = tmp
  570. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  571. tmp.loopVerticalScrollRect = tmp:GetComponent(Enum.TypeInfo.LoopVerticalScrollRect)
  572. end
  573. ---@private
  574. function UIRoleNaturePointView:InitGenerate__14(Root, data)
  575. --[[
  576. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView/Viewport/Content
  577. --]]
  578. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/AddSView/Viewport/Content").gameObject
  579. if tolua.getpeer(tmp) == nil then
  580. tolua.setpeer(tmp, {})
  581. end
  582. self.addSView.content = tmp
  583. tmp.gridLayoutGroup = tmp:GetComponent(Enum.TypeInfo.GridLayoutGroup)
  584. end
  585. ---@private
  586. function UIRoleNaturePointView:InitGenerate__15(Root, data)
  587. --[[
  588. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/None
  589. --]]
  590. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/Content/None").gameObject
  591. if tolua.getpeer(tmp) == nil then
  592. tolua.setpeer(tmp, {})
  593. end
  594. self.none = tmp
  595. end
  596. ---@private
  597. function UIRoleNaturePointView:InitGenerate__16(Root, data)
  598. --[[
  599. UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/NatureAttrItem
  600. --]]
  601. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/Scroll View/Viewport/NatureAttrItem").gameObject
  602. if tolua.getpeer(tmp) == nil then
  603. tolua.setpeer(tmp, {})
  604. end
  605. self.natureAttrItem = CommonUtil.BindGridViewItem2LuaStatic("NatureAttrItem", tmp)
  606. self.natureAttrItem.prefabName = "NatureAttrItem"
  607. end
  608. ---@private
  609. function UIRoleNaturePointView:InitGenerate__17(Root, data)
  610. --[[
  611. UIAnimator/Window/BGWindow/Nature/BtnAttrInfo
  612. --]]
  613. local tmp = Root:Find("UIAnimator/Window/BGWindow/Nature/BtnAttrInfo").gameObject
  614. if tolua.getpeer(tmp) == nil then
  615. tolua.setpeer(tmp, {})
  616. end
  617. self.btnAttrInfo = tmp
  618. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  619. end
  620. ---@private
  621. function UIRoleNaturePointView:InitGenerate__18(Root, data)
  622. --[[
  623. UIAnimator/Window/BGWindow/Point
  624. --]]
  625. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point").gameObject
  626. if tolua.getpeer(tmp) == nil then
  627. tolua.setpeer(tmp, {})
  628. end
  629. self.point = tmp
  630. end
  631. ---@private
  632. function UIRoleNaturePointView:InitGenerate__19(Root, data)
  633. --[[
  634. UIAnimator/Window/BGWindow/Point/Figure/StrStart
  635. --]]
  636. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/StrStart").gameObject
  637. if tolua.getpeer(tmp) == nil then
  638. tolua.setpeer(tmp, {})
  639. end
  640. self.strStart = tmp
  641. end
  642. ---@private
  643. function UIRoleNaturePointView:InitGenerate__20(Root, data)
  644. --[[
  645. UIAnimator/Window/BGWindow/Point/Figure/AgiStart
  646. --]]
  647. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/AgiStart").gameObject
  648. if tolua.getpeer(tmp) == nil then
  649. tolua.setpeer(tmp, {})
  650. end
  651. self.agiStart = tmp
  652. end
  653. ---@private
  654. function UIRoleNaturePointView:InitGenerate__21(Root, data)
  655. --[[
  656. UIAnimator/Window/BGWindow/Point/Figure/LukEnd
  657. --]]
  658. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/LukEnd").gameObject
  659. if tolua.getpeer(tmp) == nil then
  660. tolua.setpeer(tmp, {})
  661. end
  662. self.lukEnd = tmp
  663. end
  664. ---@private
  665. function UIRoleNaturePointView:InitGenerate__22(Root, data)
  666. --[[
  667. UIAnimator/Window/BGWindow/Point/Figure/StrEnd
  668. --]]
  669. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/StrEnd").gameObject
  670. if tolua.getpeer(tmp) == nil then
  671. tolua.setpeer(tmp, {})
  672. end
  673. self.strEnd = tmp
  674. end
  675. ---@private
  676. function UIRoleNaturePointView:InitGenerate__23(Root, data)
  677. --[[
  678. UIAnimator/Window/BGWindow/Point/Figure/VitEnd
  679. --]]
  680. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/VitEnd").gameObject
  681. if tolua.getpeer(tmp) == nil then
  682. tolua.setpeer(tmp, {})
  683. end
  684. self.vitEnd = tmp
  685. end
  686. ---@private
  687. function UIRoleNaturePointView:InitGenerate__24(Root, data)
  688. --[[
  689. UIAnimator/Window/BGWindow/Point/Figure/AgiEnd
  690. --]]
  691. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/AgiEnd").gameObject
  692. if tolua.getpeer(tmp) == nil then
  693. tolua.setpeer(tmp, {})
  694. end
  695. self.agiEnd = tmp
  696. end
  697. ---@private
  698. function UIRoleNaturePointView:InitGenerate__25(Root, data)
  699. --[[
  700. UIAnimator/Window/BGWindow/Point/Figure/DexEnd
  701. --]]
  702. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/DexEnd").gameObject
  703. if tolua.getpeer(tmp) == nil then
  704. tolua.setpeer(tmp, {})
  705. end
  706. self.dexEnd = tmp
  707. end
  708. ---@private
  709. function UIRoleNaturePointView:InitGenerate__26(Root, data)
  710. --[[
  711. UIAnimator/Window/BGWindow/Point/Figure/IntStart
  712. --]]
  713. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/IntStart").gameObject
  714. if tolua.getpeer(tmp) == nil then
  715. tolua.setpeer(tmp, {})
  716. end
  717. self.intStart = tmp
  718. end
  719. ---@private
  720. function UIRoleNaturePointView:InitGenerate__27(Root, data)
  721. --[[
  722. UIAnimator/Window/BGWindow/Point/Figure/DexStart
  723. --]]
  724. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/DexStart").gameObject
  725. if tolua.getpeer(tmp) == nil then
  726. tolua.setpeer(tmp, {})
  727. end
  728. self.dexStart = tmp
  729. end
  730. ---@private
  731. function UIRoleNaturePointView:InitGenerate__28(Root, data)
  732. --[[
  733. UIAnimator/Window/BGWindow/Point/Figure/VitStart
  734. --]]
  735. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/VitStart").gameObject
  736. if tolua.getpeer(tmp) == nil then
  737. tolua.setpeer(tmp, {})
  738. end
  739. self.vitStart = tmp
  740. end
  741. ---@private
  742. function UIRoleNaturePointView:InitGenerate__29(Root, data)
  743. --[[
  744. UIAnimator/Window/BGWindow/Point/Figure/IntEnd
  745. --]]
  746. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/IntEnd").gameObject
  747. if tolua.getpeer(tmp) == nil then
  748. tolua.setpeer(tmp, {})
  749. end
  750. self.intEnd = tmp
  751. end
  752. ---@private
  753. function UIRoleNaturePointView:InitGenerate__30(Root, data)
  754. --[[
  755. UIAnimator/Window/BGWindow/Point/Figure/attr_plane
  756. --]]
  757. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/attr_plane").gameObject
  758. if tolua.getpeer(tmp) == nil then
  759. tolua.setpeer(tmp, {})
  760. end
  761. self.attr_plane = tmp
  762. tmp.cUIPolygon = tmp:GetComponent(Enum.TypeInfo.CUIPolygon)
  763. end
  764. ---@private
  765. function UIRoleNaturePointView:InitGenerate__31(Root, data)
  766. --[[
  767. UIAnimator/Window/BGWindow/Point/Figure/LukStart
  768. --]]
  769. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/LukStart").gameObject
  770. if tolua.getpeer(tmp) == nil then
  771. tolua.setpeer(tmp, {})
  772. end
  773. self.lukStart = tmp
  774. end
  775. ---@private
  776. function UIRoleNaturePointView:InitGenerate__32(Root, data)
  777. --[[
  778. UIAnimator/Window/BGWindow/Point/Figure/Center
  779. --]]
  780. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/Figure/Center").gameObject
  781. if tolua.getpeer(tmp) == nil then
  782. tolua.setpeer(tmp, {})
  783. end
  784. self.center = tmp
  785. end
  786. ---@private
  787. function UIRoleNaturePointView:InitGenerate__33(Root, data)
  788. --[[
  789. UIAnimator/Window/BGWindow/Point/LeadBox
  790. --]]
  791. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox").gameObject
  792. if tolua.getpeer(tmp) == nil then
  793. tolua.setpeer(tmp, {})
  794. end
  795. self.leadBox = tmp
  796. end
  797. ---@private
  798. function UIRoleNaturePointView:InitGenerate__34(Root, data)
  799. --[[
  800. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str
  801. --]]
  802. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str").gameObject
  803. if tolua.getpeer(tmp) == nil then
  804. tolua.setpeer(tmp, {})
  805. end
  806. self.leadBox.str = tmp
  807. end
  808. ---@private
  809. function UIRoleNaturePointView:InitGenerate__35(Root, data)
  810. --[[
  811. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnReduce
  812. --]]
  813. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnReduce").gameObject
  814. if tolua.getpeer(tmp) == nil then
  815. tolua.setpeer(tmp, {})
  816. end
  817. self.leadBox.str.btnReduce = tmp
  818. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  819. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  820. end
  821. ---@private
  822. function UIRoleNaturePointView:InitGenerate__36(Root, data)
  823. --[[
  824. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnIncrease
  825. --]]
  826. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/BtnIncrease").gameObject
  827. if tolua.getpeer(tmp) == nil then
  828. tolua.setpeer(tmp, {})
  829. end
  830. self.leadBox.str.btnIncrease = tmp
  831. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  832. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  833. end
  834. ---@private
  835. function UIRoleNaturePointView:InitGenerate__37(Root, data)
  836. --[[
  837. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number1
  838. --]]
  839. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number1").gameObject
  840. if tolua.getpeer(tmp) == nil then
  841. tolua.setpeer(tmp, {})
  842. end
  843. self.leadBox.str.number1 = tmp
  844. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  845. end
  846. ---@private
  847. function UIRoleNaturePointView:InitGenerate__38(Root, data)
  848. --[[
  849. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/NumberGreen
  850. --]]
  851. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/NumberGreen").gameObject
  852. if tolua.getpeer(tmp) == nil then
  853. tolua.setpeer(tmp, {})
  854. end
  855. self.leadBox.str.numberGreen = tmp
  856. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  857. end
  858. ---@private
  859. function UIRoleNaturePointView:InitGenerate__39(Root, data)
  860. --[[
  861. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number2
  862. --]]
  863. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Str/Number2").gameObject
  864. if tolua.getpeer(tmp) == nil then
  865. tolua.setpeer(tmp, {})
  866. end
  867. self.leadBox.str.number2 = tmp
  868. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  869. end
  870. ---@private
  871. function UIRoleNaturePointView:InitGenerate__40(Root, data)
  872. --[[
  873. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi
  874. --]]
  875. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi").gameObject
  876. if tolua.getpeer(tmp) == nil then
  877. tolua.setpeer(tmp, {})
  878. end
  879. self.leadBox.agi = tmp
  880. end
  881. ---@private
  882. function UIRoleNaturePointView:InitGenerate__41(Root, data)
  883. --[[
  884. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnReduce
  885. --]]
  886. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnReduce").gameObject
  887. if tolua.getpeer(tmp) == nil then
  888. tolua.setpeer(tmp, {})
  889. end
  890. self.leadBox.agi.btnReduce = tmp
  891. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  892. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  893. end
  894. ---@private
  895. function UIRoleNaturePointView:InitGenerate__42(Root, data)
  896. --[[
  897. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnIncrease
  898. --]]
  899. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/BtnIncrease").gameObject
  900. if tolua.getpeer(tmp) == nil then
  901. tolua.setpeer(tmp, {})
  902. end
  903. self.leadBox.agi.btnIncrease = tmp
  904. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  905. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  906. end
  907. ---@private
  908. function UIRoleNaturePointView:InitGenerate__43(Root, data)
  909. --[[
  910. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number1
  911. --]]
  912. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number1").gameObject
  913. if tolua.getpeer(tmp) == nil then
  914. tolua.setpeer(tmp, {})
  915. end
  916. self.leadBox.agi.number1 = tmp
  917. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  918. end
  919. ---@private
  920. function UIRoleNaturePointView:InitGenerate__44(Root, data)
  921. --[[
  922. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/NumberGreen
  923. --]]
  924. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/NumberGreen").gameObject
  925. if tolua.getpeer(tmp) == nil then
  926. tolua.setpeer(tmp, {})
  927. end
  928. self.leadBox.agi.numberGreen = tmp
  929. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  930. end
  931. ---@private
  932. function UIRoleNaturePointView:InitGenerate__45(Root, data)
  933. --[[
  934. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number2
  935. --]]
  936. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Agi/Number2").gameObject
  937. if tolua.getpeer(tmp) == nil then
  938. tolua.setpeer(tmp, {})
  939. end
  940. self.leadBox.agi.number2 = tmp
  941. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  942. end
  943. ---@private
  944. function UIRoleNaturePointView:InitGenerate__46(Root, data)
  945. --[[
  946. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit
  947. --]]
  948. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit").gameObject
  949. if tolua.getpeer(tmp) == nil then
  950. tolua.setpeer(tmp, {})
  951. end
  952. self.leadBox.vit = tmp
  953. end
  954. ---@private
  955. function UIRoleNaturePointView:InitGenerate__47(Root, data)
  956. --[[
  957. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnReduce
  958. --]]
  959. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnReduce").gameObject
  960. if tolua.getpeer(tmp) == nil then
  961. tolua.setpeer(tmp, {})
  962. end
  963. self.leadBox.vit.btnReduce = tmp
  964. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  965. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  966. end
  967. ---@private
  968. function UIRoleNaturePointView:InitGenerate__48(Root, data)
  969. --[[
  970. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnIncrease
  971. --]]
  972. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/BtnIncrease").gameObject
  973. if tolua.getpeer(tmp) == nil then
  974. tolua.setpeer(tmp, {})
  975. end
  976. self.leadBox.vit.btnIncrease = tmp
  977. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  978. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  979. end
  980. ---@private
  981. function UIRoleNaturePointView:InitGenerate__49(Root, data)
  982. --[[
  983. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number1
  984. --]]
  985. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number1").gameObject
  986. if tolua.getpeer(tmp) == nil then
  987. tolua.setpeer(tmp, {})
  988. end
  989. self.leadBox.vit.number1 = tmp
  990. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  991. end
  992. ---@private
  993. function UIRoleNaturePointView:InitGenerate__50(Root, data)
  994. --[[
  995. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/NumberGreen
  996. --]]
  997. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/NumberGreen").gameObject
  998. if tolua.getpeer(tmp) == nil then
  999. tolua.setpeer(tmp, {})
  1000. end
  1001. self.leadBox.vit.numberGreen = tmp
  1002. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1003. end
  1004. ---@private
  1005. function UIRoleNaturePointView:InitGenerate__51(Root, data)
  1006. --[[
  1007. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number2
  1008. --]]
  1009. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Vit/Number2").gameObject
  1010. if tolua.getpeer(tmp) == nil then
  1011. tolua.setpeer(tmp, {})
  1012. end
  1013. self.leadBox.vit.number2 = tmp
  1014. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1015. end
  1016. ---@private
  1017. function UIRoleNaturePointView:InitGenerate__52(Root, data)
  1018. --[[
  1019. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int
  1020. --]]
  1021. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int").gameObject
  1022. if tolua.getpeer(tmp) == nil then
  1023. tolua.setpeer(tmp, {})
  1024. end
  1025. self.leadBox.int = tmp
  1026. end
  1027. ---@private
  1028. function UIRoleNaturePointView:InitGenerate__53(Root, data)
  1029. --[[
  1030. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnReduce
  1031. --]]
  1032. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnReduce").gameObject
  1033. if tolua.getpeer(tmp) == nil then
  1034. tolua.setpeer(tmp, {})
  1035. end
  1036. self.leadBox.int.btnReduce = tmp
  1037. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1038. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  1039. end
  1040. ---@private
  1041. function UIRoleNaturePointView:InitGenerate__54(Root, data)
  1042. --[[
  1043. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnIncrease
  1044. --]]
  1045. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/BtnIncrease").gameObject
  1046. if tolua.getpeer(tmp) == nil then
  1047. tolua.setpeer(tmp, {})
  1048. end
  1049. self.leadBox.int.btnIncrease = tmp
  1050. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1051. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  1052. end
  1053. ---@private
  1054. function UIRoleNaturePointView:InitGenerate__55(Root, data)
  1055. --[[
  1056. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number1
  1057. --]]
  1058. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number1").gameObject
  1059. if tolua.getpeer(tmp) == nil then
  1060. tolua.setpeer(tmp, {})
  1061. end
  1062. self.leadBox.int.number1 = tmp
  1063. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1064. end
  1065. ---@private
  1066. function UIRoleNaturePointView:InitGenerate__56(Root, data)
  1067. --[[
  1068. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/NumberGreen
  1069. --]]
  1070. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/NumberGreen").gameObject
  1071. if tolua.getpeer(tmp) == nil then
  1072. tolua.setpeer(tmp, {})
  1073. end
  1074. self.leadBox.int.numberGreen = tmp
  1075. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1076. end
  1077. ---@private
  1078. function UIRoleNaturePointView:InitGenerate__57(Root, data)
  1079. --[[
  1080. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number2
  1081. --]]
  1082. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Int/Number2").gameObject
  1083. if tolua.getpeer(tmp) == nil then
  1084. tolua.setpeer(tmp, {})
  1085. end
  1086. self.leadBox.int.number2 = tmp
  1087. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1088. end
  1089. ---@private
  1090. function UIRoleNaturePointView:InitGenerate__58(Root, data)
  1091. --[[
  1092. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex
  1093. --]]
  1094. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex").gameObject
  1095. if tolua.getpeer(tmp) == nil then
  1096. tolua.setpeer(tmp, {})
  1097. end
  1098. self.leadBox.dex = tmp
  1099. end
  1100. ---@private
  1101. function UIRoleNaturePointView:InitGenerate__59(Root, data)
  1102. --[[
  1103. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnReduce
  1104. --]]
  1105. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnReduce").gameObject
  1106. if tolua.getpeer(tmp) == nil then
  1107. tolua.setpeer(tmp, {})
  1108. end
  1109. self.leadBox.dex.btnReduce = tmp
  1110. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1111. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  1112. end
  1113. ---@private
  1114. function UIRoleNaturePointView:InitGenerate__60(Root, data)
  1115. --[[
  1116. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnIncrease
  1117. --]]
  1118. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/BtnIncrease").gameObject
  1119. if tolua.getpeer(tmp) == nil then
  1120. tolua.setpeer(tmp, {})
  1121. end
  1122. self.leadBox.dex.btnIncrease = tmp
  1123. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1124. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  1125. end
  1126. ---@private
  1127. function UIRoleNaturePointView:InitGenerate__61(Root, data)
  1128. --[[
  1129. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number1
  1130. --]]
  1131. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number1").gameObject
  1132. if tolua.getpeer(tmp) == nil then
  1133. tolua.setpeer(tmp, {})
  1134. end
  1135. self.leadBox.dex.number1 = tmp
  1136. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1137. end
  1138. ---@private
  1139. function UIRoleNaturePointView:InitGenerate__62(Root, data)
  1140. --[[
  1141. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/NumberGreen
  1142. --]]
  1143. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/NumberGreen").gameObject
  1144. if tolua.getpeer(tmp) == nil then
  1145. tolua.setpeer(tmp, {})
  1146. end
  1147. self.leadBox.dex.numberGreen = tmp
  1148. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1149. end
  1150. ---@private
  1151. function UIRoleNaturePointView:InitGenerate__63(Root, data)
  1152. --[[
  1153. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number2
  1154. --]]
  1155. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Dex/Number2").gameObject
  1156. if tolua.getpeer(tmp) == nil then
  1157. tolua.setpeer(tmp, {})
  1158. end
  1159. self.leadBox.dex.number2 = tmp
  1160. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1161. end
  1162. ---@private
  1163. function UIRoleNaturePointView:InitGenerate__64(Root, data)
  1164. --[[
  1165. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk
  1166. --]]
  1167. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk").gameObject
  1168. if tolua.getpeer(tmp) == nil then
  1169. tolua.setpeer(tmp, {})
  1170. end
  1171. self.leadBox.luk = tmp
  1172. end
  1173. ---@private
  1174. function UIRoleNaturePointView:InitGenerate__65(Root, data)
  1175. --[[
  1176. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnReduce
  1177. --]]
  1178. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnReduce").gameObject
  1179. if tolua.getpeer(tmp) == nil then
  1180. tolua.setpeer(tmp, {})
  1181. end
  1182. self.leadBox.luk.btnReduce = tmp
  1183. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1184. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  1185. end
  1186. ---@private
  1187. function UIRoleNaturePointView:InitGenerate__66(Root, data)
  1188. --[[
  1189. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnIncrease
  1190. --]]
  1191. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/BtnIncrease").gameObject
  1192. if tolua.getpeer(tmp) == nil then
  1193. tolua.setpeer(tmp, {})
  1194. end
  1195. self.leadBox.luk.btnIncrease = tmp
  1196. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1197. tmp.repeatButton = tmp:GetComponent(Enum.TypeInfo.RepeatButton)
  1198. end
  1199. ---@private
  1200. function UIRoleNaturePointView:InitGenerate__67(Root, data)
  1201. --[[
  1202. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number1
  1203. --]]
  1204. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number1").gameObject
  1205. if tolua.getpeer(tmp) == nil then
  1206. tolua.setpeer(tmp, {})
  1207. end
  1208. self.leadBox.luk.number1 = tmp
  1209. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1210. end
  1211. ---@private
  1212. function UIRoleNaturePointView:InitGenerate__68(Root, data)
  1213. --[[
  1214. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/NumberGreen
  1215. --]]
  1216. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/NumberGreen").gameObject
  1217. if tolua.getpeer(tmp) == nil then
  1218. tolua.setpeer(tmp, {})
  1219. end
  1220. self.leadBox.luk.numberGreen = tmp
  1221. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1222. end
  1223. ---@private
  1224. function UIRoleNaturePointView:InitGenerate__69(Root, data)
  1225. --[[
  1226. UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number2
  1227. --]]
  1228. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/Box/Luk/Number2").gameObject
  1229. if tolua.getpeer(tmp) == nil then
  1230. tolua.setpeer(tmp, {})
  1231. end
  1232. self.leadBox.luk.number2 = tmp
  1233. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1234. end
  1235. ---@private
  1236. function UIRoleNaturePointView:InitGenerate__70(Root, data)
  1237. --[[
  1238. UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint
  1239. --]]
  1240. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint").gameObject
  1241. if tolua.getpeer(tmp) == nil then
  1242. tolua.setpeer(tmp, {})
  1243. end
  1244. self.leadBox.restPoint = tmp
  1245. end
  1246. ---@private
  1247. function UIRoleNaturePointView:InitGenerate__71(Root, data)
  1248. --[[
  1249. UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/Number1
  1250. --]]
  1251. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/Number1").gameObject
  1252. if tolua.getpeer(tmp) == nil then
  1253. tolua.setpeer(tmp, {})
  1254. end
  1255. self.leadBox.restPoint.number1 = tmp
  1256. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1257. end
  1258. ---@private
  1259. function UIRoleNaturePointView:InitGenerate__72(Root, data)
  1260. --[[
  1261. UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo
  1262. --]]
  1263. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo").gameObject
  1264. if tolua.getpeer(tmp) == nil then
  1265. tolua.setpeer(tmp, {})
  1266. end
  1267. self.btnInfo = tmp
  1268. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1269. end
  1270. ---@private
  1271. function UIRoleNaturePointView:InitGenerate__73(Root, data)
  1272. --[[
  1273. UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo/BtnInfoImage
  1274. --]]
  1275. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/RestPoint/BtnInfo/BtnInfoImage").gameObject
  1276. if tolua.getpeer(tmp) == nil then
  1277. tolua.setpeer(tmp, {})
  1278. end
  1279. self.btnInfoImage = tmp
  1280. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1281. end
  1282. ---@private
  1283. function UIRoleNaturePointView:InitGenerate__74(Root, data)
  1284. --[[
  1285. UIAnimator/Window/BGWindow/Point/LeadBox/BtnReset
  1286. --]]
  1287. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/LeadBox/BtnReset").gameObject
  1288. if tolua.getpeer(tmp) == nil then
  1289. tolua.setpeer(tmp, {})
  1290. end
  1291. self.btnReset = tmp
  1292. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1293. end
  1294. ---@private
  1295. function UIRoleNaturePointView:InitGenerate__75(Root, data)
  1296. --[[
  1297. UIAnimator/Window/BGWindow/Point/PtBox
  1298. --]]
  1299. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox").gameObject
  1300. if tolua.getpeer(tmp) == nil then
  1301. tolua.setpeer(tmp, {})
  1302. end
  1303. self.ptBox = tmp
  1304. end
  1305. ---@private
  1306. function UIRoleNaturePointView:InitGenerate__76(Root, data)
  1307. --[[
  1308. UIAnimator/Window/BGWindow/Point/PtBox/Box/Str
  1309. --]]
  1310. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Str").gameObject
  1311. if tolua.getpeer(tmp) == nil then
  1312. tolua.setpeer(tmp, {})
  1313. end
  1314. self.ptBox.str = tmp
  1315. end
  1316. ---@private
  1317. function UIRoleNaturePointView:InitGenerate__77(Root, data)
  1318. --[[
  1319. UIAnimator/Window/BGWindow/Point/PtBox/Box/Str/Number1
  1320. --]]
  1321. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Str/Number1").gameObject
  1322. if tolua.getpeer(tmp) == nil then
  1323. tolua.setpeer(tmp, {})
  1324. end
  1325. self.ptBox.str.number1 = tmp
  1326. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1327. end
  1328. ---@private
  1329. function UIRoleNaturePointView:InitGenerate__78(Root, data)
  1330. --[[
  1331. UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi
  1332. --]]
  1333. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi").gameObject
  1334. if tolua.getpeer(tmp) == nil then
  1335. tolua.setpeer(tmp, {})
  1336. end
  1337. self.ptBox.agi = tmp
  1338. end
  1339. ---@private
  1340. function UIRoleNaturePointView:InitGenerate__79(Root, data)
  1341. --[[
  1342. UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi/Number1
  1343. --]]
  1344. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Agi/Number1").gameObject
  1345. if tolua.getpeer(tmp) == nil then
  1346. tolua.setpeer(tmp, {})
  1347. end
  1348. self.ptBox.agi.number1 = tmp
  1349. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1350. end
  1351. ---@private
  1352. function UIRoleNaturePointView:InitGenerate__80(Root, data)
  1353. --[[
  1354. UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit
  1355. --]]
  1356. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit").gameObject
  1357. if tolua.getpeer(tmp) == nil then
  1358. tolua.setpeer(tmp, {})
  1359. end
  1360. self.ptBox.vit = tmp
  1361. end
  1362. ---@private
  1363. function UIRoleNaturePointView:InitGenerate__81(Root, data)
  1364. --[[
  1365. UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit/Number1
  1366. --]]
  1367. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Vit/Number1").gameObject
  1368. if tolua.getpeer(tmp) == nil then
  1369. tolua.setpeer(tmp, {})
  1370. end
  1371. self.ptBox.vit.number1 = tmp
  1372. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1373. end
  1374. ---@private
  1375. function UIRoleNaturePointView:InitGenerate__82(Root, data)
  1376. --[[
  1377. UIAnimator/Window/BGWindow/Point/PtBox/Box/Int
  1378. --]]
  1379. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Int").gameObject
  1380. if tolua.getpeer(tmp) == nil then
  1381. tolua.setpeer(tmp, {})
  1382. end
  1383. self.ptBox.int = tmp
  1384. end
  1385. ---@private
  1386. function UIRoleNaturePointView:InitGenerate__83(Root, data)
  1387. --[[
  1388. UIAnimator/Window/BGWindow/Point/PtBox/Box/Int/Number1
  1389. --]]
  1390. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Int/Number1").gameObject
  1391. if tolua.getpeer(tmp) == nil then
  1392. tolua.setpeer(tmp, {})
  1393. end
  1394. self.ptBox.int.number1 = tmp
  1395. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1396. end
  1397. ---@private
  1398. function UIRoleNaturePointView:InitGenerate__84(Root, data)
  1399. --[[
  1400. UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex
  1401. --]]
  1402. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex").gameObject
  1403. if tolua.getpeer(tmp) == nil then
  1404. tolua.setpeer(tmp, {})
  1405. end
  1406. self.ptBox.dex = tmp
  1407. end
  1408. ---@private
  1409. function UIRoleNaturePointView:InitGenerate__85(Root, data)
  1410. --[[
  1411. UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex/Number1
  1412. --]]
  1413. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Dex/Number1").gameObject
  1414. if tolua.getpeer(tmp) == nil then
  1415. tolua.setpeer(tmp, {})
  1416. end
  1417. self.ptBox.dex.number1 = tmp
  1418. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1419. end
  1420. ---@private
  1421. function UIRoleNaturePointView:InitGenerate__86(Root, data)
  1422. --[[
  1423. UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk
  1424. --]]
  1425. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk").gameObject
  1426. if tolua.getpeer(tmp) == nil then
  1427. tolua.setpeer(tmp, {})
  1428. end
  1429. self.ptBox.luk = tmp
  1430. end
  1431. ---@private
  1432. function UIRoleNaturePointView:InitGenerate__87(Root, data)
  1433. --[[
  1434. UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk/Number1
  1435. --]]
  1436. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/PtBox/Box/Luk/Number1").gameObject
  1437. if tolua.getpeer(tmp) == nil then
  1438. tolua.setpeer(tmp, {})
  1439. end
  1440. self.ptBox.luk.number1 = tmp
  1441. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1442. end
  1443. ---@private
  1444. function UIRoleNaturePointView:InitGenerate__88(Root, data)
  1445. --[[
  1446. UIAnimator/Window/BGWindow/Point/BtnPotentialFruit
  1447. --]]
  1448. local tmp = Root:Find("UIAnimator/Window/BGWindow/Point/BtnPotentialFruit").gameObject
  1449. if tolua.getpeer(tmp) == nil then
  1450. tolua.setpeer(tmp, {})
  1451. end
  1452. self.btnPotentialFruit = tmp
  1453. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1454. end
  1455. ---@private
  1456. function UIRoleNaturePointView:InitGenerate__89(Root, data)
  1457. --[[
  1458. UIAnimator/Window/Bottom/BtnBack
  1459. --]]
  1460. local tmp = Root:Find("UIAnimator/Window/Bottom/BtnBack").gameObject
  1461. if tolua.getpeer(tmp) == nil then
  1462. tolua.setpeer(tmp, {})
  1463. end
  1464. self.btnBack = tmp
  1465. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1466. end
  1467. ---@private
  1468. function UIRoleNaturePointView:InitGenerate__90(Root, data)
  1469. --[[
  1470. UIAnimator/Window/Bottom/BtnRecommend
  1471. --]]
  1472. local tmp = Root:Find("UIAnimator/Window/Bottom/BtnRecommend").gameObject
  1473. if tolua.getpeer(tmp) == nil then
  1474. tolua.setpeer(tmp, {})
  1475. end
  1476. self.btnRecommend = tmp
  1477. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1478. end
  1479. ---@private
  1480. function UIRoleNaturePointView:InitGenerate__91(Root, data)
  1481. --[[
  1482. UIAnimator/Window/Bottom/BtnConfirm
  1483. --]]
  1484. local tmp = Root:Find("UIAnimator/Window/Bottom/BtnConfirm").gameObject
  1485. if tolua.getpeer(tmp) == nil then
  1486. tolua.setpeer(tmp, {})
  1487. end
  1488. self.btnConfirm = tmp
  1489. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1490. end
  1491. ---@private
  1492. function UIRoleNaturePointView:InitGenerate__92(Root, data)
  1493. --[[
  1494. UIAnimator/Window/Bottom/RedPointRecommend
  1495. --]]
  1496. local tmp = Root:Find("UIAnimator/Window/Bottom/RedPointRecommend").gameObject
  1497. if tolua.getpeer(tmp) == nil then
  1498. tolua.setpeer(tmp, {})
  1499. end
  1500. self.redPointRecommend = tmp
  1501. end
  1502. ---@private
  1503. function UIRoleNaturePointView:InitGenerate__93(Root, data)
  1504. --[[
  1505. UIAnimator/Window/SwitchButtons/BtnLeft
  1506. --]]
  1507. local tmp = Root:Find("UIAnimator/Window/SwitchButtons/BtnLeft").gameObject
  1508. if tolua.getpeer(tmp) == nil then
  1509. tolua.setpeer(tmp, {})
  1510. end
  1511. self.btnLeft = tmp
  1512. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1513. end
  1514. ---@private
  1515. function UIRoleNaturePointView:InitGenerate__94(Root, data)
  1516. --[[
  1517. UIAnimator/Window/SwitchButtons/BtnRight
  1518. --]]
  1519. local tmp = Root:Find("UIAnimator/Window/SwitchButtons/BtnRight").gameObject
  1520. if tolua.getpeer(tmp) == nil then
  1521. tolua.setpeer(tmp, {})
  1522. end
  1523. self.btnRight = tmp
  1524. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1525. end
  1526. ---@private
  1527. function UIRoleNaturePointView:GenerateDestroy()
  1528. if tolua.getpeer(self.btnBack) ~= nil then
  1529. tolua.setpeer(self.btnBack, nil)
  1530. end
  1531. if tolua.getpeer(self.ptBox.luk.number1) ~= nil then
  1532. tolua.setpeer(self.ptBox.luk.number1, nil)
  1533. end
  1534. if tolua.getpeer(self.ptBox.luk) ~= nil then
  1535. tolua.setpeer(self.ptBox.luk, nil)
  1536. end
  1537. if tolua.getpeer(self.ptBox.dex.number1) ~= nil then
  1538. tolua.setpeer(self.ptBox.dex.number1, nil)
  1539. end
  1540. if tolua.getpeer(self.ptBox.dex) ~= nil then
  1541. tolua.setpeer(self.ptBox.dex, nil)
  1542. end
  1543. if tolua.getpeer(self.ptBox.int.number1) ~= nil then
  1544. tolua.setpeer(self.ptBox.int.number1, nil)
  1545. end
  1546. if tolua.getpeer(self.ptBox.int) ~= nil then
  1547. tolua.setpeer(self.ptBox.int, nil)
  1548. end
  1549. if tolua.getpeer(self.ptBox.vit.number1) ~= nil then
  1550. tolua.setpeer(self.ptBox.vit.number1, nil)
  1551. end
  1552. if tolua.getpeer(self.ptBox.vit) ~= nil then
  1553. tolua.setpeer(self.ptBox.vit, nil)
  1554. end
  1555. if tolua.getpeer(self.ptBox.agi.number1) ~= nil then
  1556. tolua.setpeer(self.ptBox.agi.number1, nil)
  1557. end
  1558. if tolua.getpeer(self.ptBox.agi) ~= nil then
  1559. tolua.setpeer(self.ptBox.agi, nil)
  1560. end
  1561. if tolua.getpeer(self.ptBox.str.number1) ~= nil then
  1562. tolua.setpeer(self.ptBox.str.number1, nil)
  1563. end
  1564. if tolua.getpeer(self.ptBox.str) ~= nil then
  1565. tolua.setpeer(self.ptBox.str, nil)
  1566. end
  1567. if tolua.getpeer(self.leadBox.restPoint.number1) ~= nil then
  1568. tolua.setpeer(self.leadBox.restPoint.number1, nil)
  1569. end
  1570. if tolua.getpeer(self.leadBox.restPoint) ~= nil then
  1571. tolua.setpeer(self.leadBox.restPoint, nil)
  1572. end
  1573. if tolua.getpeer(self.leadBox.luk.number2) ~= nil then
  1574. tolua.setpeer(self.leadBox.luk.number2, nil)
  1575. end
  1576. if tolua.getpeer(self.leadBox.luk.numberGreen) ~= nil then
  1577. tolua.setpeer(self.leadBox.luk.numberGreen, nil)
  1578. end
  1579. if tolua.getpeer(self.leadBox.luk.number1) ~= nil then
  1580. tolua.setpeer(self.leadBox.luk.number1, nil)
  1581. end
  1582. if tolua.getpeer(self.leadBox.luk.btnIncrease) ~= nil then
  1583. tolua.setpeer(self.leadBox.luk.btnIncrease, nil)
  1584. end
  1585. if tolua.getpeer(self.leadBox.luk.btnReduce) ~= nil then
  1586. tolua.setpeer(self.leadBox.luk.btnReduce, nil)
  1587. end
  1588. if tolua.getpeer(self.leadBox.luk) ~= nil then
  1589. tolua.setpeer(self.leadBox.luk, nil)
  1590. end
  1591. if tolua.getpeer(self.leadBox.dex.number2) ~= nil then
  1592. tolua.setpeer(self.leadBox.dex.number2, nil)
  1593. end
  1594. if tolua.getpeer(self.leadBox.dex.numberGreen) ~= nil then
  1595. tolua.setpeer(self.leadBox.dex.numberGreen, nil)
  1596. end
  1597. if tolua.getpeer(self.leadBox.dex.number1) ~= nil then
  1598. tolua.setpeer(self.leadBox.dex.number1, nil)
  1599. end
  1600. if tolua.getpeer(self.leadBox.dex.btnIncrease) ~= nil then
  1601. tolua.setpeer(self.leadBox.dex.btnIncrease, nil)
  1602. end
  1603. if tolua.getpeer(self.leadBox.dex.btnReduce) ~= nil then
  1604. tolua.setpeer(self.leadBox.dex.btnReduce, nil)
  1605. end
  1606. if tolua.getpeer(self.leadBox.dex) ~= nil then
  1607. tolua.setpeer(self.leadBox.dex, nil)
  1608. end
  1609. if tolua.getpeer(self.leadBox.int.number2) ~= nil then
  1610. tolua.setpeer(self.leadBox.int.number2, nil)
  1611. end
  1612. if tolua.getpeer(self.leadBox.int.numberGreen) ~= nil then
  1613. tolua.setpeer(self.leadBox.int.numberGreen, nil)
  1614. end
  1615. if tolua.getpeer(self.leadBox.int.number1) ~= nil then
  1616. tolua.setpeer(self.leadBox.int.number1, nil)
  1617. end
  1618. if tolua.getpeer(self.leadBox.int.btnIncrease) ~= nil then
  1619. tolua.setpeer(self.leadBox.int.btnIncrease, nil)
  1620. end
  1621. if tolua.getpeer(self.leadBox.int.btnReduce) ~= nil then
  1622. tolua.setpeer(self.leadBox.int.btnReduce, nil)
  1623. end
  1624. if tolua.getpeer(self.leadBox.int) ~= nil then
  1625. tolua.setpeer(self.leadBox.int, nil)
  1626. end
  1627. if tolua.getpeer(self.leadBox.vit.number2) ~= nil then
  1628. tolua.setpeer(self.leadBox.vit.number2, nil)
  1629. end
  1630. if tolua.getpeer(self.leadBox.vit.numberGreen) ~= nil then
  1631. tolua.setpeer(self.leadBox.vit.numberGreen, nil)
  1632. end
  1633. if tolua.getpeer(self.leadBox.vit.number1) ~= nil then
  1634. tolua.setpeer(self.leadBox.vit.number1, nil)
  1635. end
  1636. if tolua.getpeer(self.leadBox.vit.btnIncrease) ~= nil then
  1637. tolua.setpeer(self.leadBox.vit.btnIncrease, nil)
  1638. end
  1639. if tolua.getpeer(self.leadBox.vit.btnReduce) ~= nil then
  1640. tolua.setpeer(self.leadBox.vit.btnReduce, nil)
  1641. end
  1642. if tolua.getpeer(self.leadBox.vit) ~= nil then
  1643. tolua.setpeer(self.leadBox.vit, nil)
  1644. end
  1645. if tolua.getpeer(self.leadBox.agi.number2) ~= nil then
  1646. tolua.setpeer(self.leadBox.agi.number2, nil)
  1647. end
  1648. if tolua.getpeer(self.leadBox.agi.numberGreen) ~= nil then
  1649. tolua.setpeer(self.leadBox.agi.numberGreen, nil)
  1650. end
  1651. if tolua.getpeer(self.leadBox.agi.number1) ~= nil then
  1652. tolua.setpeer(self.leadBox.agi.number1, nil)
  1653. end
  1654. if tolua.getpeer(self.leadBox.agi.btnIncrease) ~= nil then
  1655. tolua.setpeer(self.leadBox.agi.btnIncrease, nil)
  1656. end
  1657. if tolua.getpeer(self.leadBox.agi.btnReduce) ~= nil then
  1658. tolua.setpeer(self.leadBox.agi.btnReduce, nil)
  1659. end
  1660. if tolua.getpeer(self.leadBox.agi) ~= nil then
  1661. tolua.setpeer(self.leadBox.agi, nil)
  1662. end
  1663. if tolua.getpeer(self.leadBox.str.number2) ~= nil then
  1664. tolua.setpeer(self.leadBox.str.number2, nil)
  1665. end
  1666. if tolua.getpeer(self.leadBox.str.numberGreen) ~= nil then
  1667. tolua.setpeer(self.leadBox.str.numberGreen, nil)
  1668. end
  1669. if tolua.getpeer(self.leadBox.str.number1) ~= nil then
  1670. tolua.setpeer(self.leadBox.str.number1, nil)
  1671. end
  1672. if tolua.getpeer(self.leadBox.str.btnIncrease) ~= nil then
  1673. tolua.setpeer(self.leadBox.str.btnIncrease, nil)
  1674. end
  1675. if tolua.getpeer(self.leadBox.str.btnReduce) ~= nil then
  1676. tolua.setpeer(self.leadBox.str.btnReduce, nil)
  1677. end
  1678. if tolua.getpeer(self.leadBox.str) ~= nil then
  1679. tolua.setpeer(self.leadBox.str, nil)
  1680. end
  1681. if tolua.getpeer(self.addSView.content) ~= nil then
  1682. tolua.setpeer(self.addSView.content, nil)
  1683. end
  1684. if tolua.getpeer(self.baseSView.content) ~= nil then
  1685. tolua.setpeer(self.baseSView.content, nil)
  1686. end
  1687. if tolua.getpeer(self.roleImg.role) ~= nil then
  1688. tolua.setpeer(self.roleImg.role, nil)
  1689. end
  1690. if tolua.getpeer(self.roleImg.textBox) ~= nil then
  1691. tolua.setpeer(self.roleImg.textBox, nil)
  1692. end
  1693. if tolua.getpeer(self.uIAnimator) ~= nil then
  1694. tolua.setpeer(self.uIAnimator, nil)
  1695. end
  1696. self.uIAnimator = nil
  1697. if tolua.getpeer(self.AnyBtn) ~= nil then
  1698. tolua.setpeer(self.AnyBtn, nil)
  1699. end
  1700. self.AnyBtn = nil
  1701. if tolua.getpeer(self.roleImg) ~= nil then
  1702. tolua.setpeer(self.roleImg, nil)
  1703. end
  1704. self.roleImg = nil
  1705. if tolua.getpeer(self.talkBox) ~= nil then
  1706. tolua.setpeer(self.talkBox, nil)
  1707. end
  1708. self.talkBox = nil
  1709. if tolua.getpeer(self.scrollView) ~= nil then
  1710. tolua.setpeer(self.scrollView, nil)
  1711. end
  1712. self.scrollView = nil
  1713. if tolua.getpeer(self.baseAttrs) ~= nil then
  1714. tolua.setpeer(self.baseAttrs, nil)
  1715. end
  1716. self.baseAttrs = nil
  1717. if tolua.getpeer(self.baseSView) ~= nil then
  1718. tolua.setpeer(self.baseSView, nil)
  1719. end
  1720. self.baseSView = nil
  1721. if tolua.getpeer(self.addAttrs) ~= nil then
  1722. tolua.setpeer(self.addAttrs, nil)
  1723. end
  1724. self.addAttrs = nil
  1725. if tolua.getpeer(self.addSView) ~= nil then
  1726. tolua.setpeer(self.addSView, nil)
  1727. end
  1728. self.addSView = nil
  1729. if tolua.getpeer(self.none) ~= nil then
  1730. tolua.setpeer(self.none, nil)
  1731. end
  1732. self.none = nil
  1733. if self.natureAttrItem.GenerateDestroy ~= nil then
  1734. self.natureAttrItem:GenerateDestroy()
  1735. end
  1736. if tolua.getpeer(self.natureAttrItem) ~= nil then
  1737. tolua.setpeer(self.natureAttrItem, nil)
  1738. end
  1739. self.natureAttrItem = nil
  1740. if tolua.getpeer(self.btnAttrInfo) ~= nil then
  1741. tolua.setpeer(self.btnAttrInfo, nil)
  1742. end
  1743. self.btnAttrInfo = nil
  1744. if tolua.getpeer(self.point) ~= nil then
  1745. tolua.setpeer(self.point, nil)
  1746. end
  1747. self.point = nil
  1748. if tolua.getpeer(self.strStart) ~= nil then
  1749. tolua.setpeer(self.strStart, nil)
  1750. end
  1751. self.strStart = nil
  1752. if tolua.getpeer(self.agiStart) ~= nil then
  1753. tolua.setpeer(self.agiStart, nil)
  1754. end
  1755. self.agiStart = nil
  1756. if tolua.getpeer(self.lukEnd) ~= nil then
  1757. tolua.setpeer(self.lukEnd, nil)
  1758. end
  1759. self.lukEnd = nil
  1760. if tolua.getpeer(self.strEnd) ~= nil then
  1761. tolua.setpeer(self.strEnd, nil)
  1762. end
  1763. self.strEnd = nil
  1764. if tolua.getpeer(self.vitEnd) ~= nil then
  1765. tolua.setpeer(self.vitEnd, nil)
  1766. end
  1767. self.vitEnd = nil
  1768. if tolua.getpeer(self.agiEnd) ~= nil then
  1769. tolua.setpeer(self.agiEnd, nil)
  1770. end
  1771. self.agiEnd = nil
  1772. if tolua.getpeer(self.dexEnd) ~= nil then
  1773. tolua.setpeer(self.dexEnd, nil)
  1774. end
  1775. self.dexEnd = nil
  1776. if tolua.getpeer(self.intStart) ~= nil then
  1777. tolua.setpeer(self.intStart, nil)
  1778. end
  1779. self.intStart = nil
  1780. if tolua.getpeer(self.dexStart) ~= nil then
  1781. tolua.setpeer(self.dexStart, nil)
  1782. end
  1783. self.dexStart = nil
  1784. if tolua.getpeer(self.vitStart) ~= nil then
  1785. tolua.setpeer(self.vitStart, nil)
  1786. end
  1787. self.vitStart = nil
  1788. if tolua.getpeer(self.intEnd) ~= nil then
  1789. tolua.setpeer(self.intEnd, nil)
  1790. end
  1791. self.intEnd = nil
  1792. if tolua.getpeer(self.attr_plane) ~= nil then
  1793. tolua.setpeer(self.attr_plane, nil)
  1794. end
  1795. self.attr_plane = nil
  1796. if tolua.getpeer(self.lukStart) ~= nil then
  1797. tolua.setpeer(self.lukStart, nil)
  1798. end
  1799. self.lukStart = nil
  1800. if tolua.getpeer(self.center) ~= nil then
  1801. tolua.setpeer(self.center, nil)
  1802. end
  1803. self.center = nil
  1804. if tolua.getpeer(self.leadBox) ~= nil then
  1805. tolua.setpeer(self.leadBox, nil)
  1806. end
  1807. self.leadBox = nil
  1808. if tolua.getpeer(self.btnInfo) ~= nil then
  1809. tolua.setpeer(self.btnInfo, nil)
  1810. end
  1811. self.btnInfo = nil
  1812. if tolua.getpeer(self.btnInfoImage) ~= nil then
  1813. tolua.setpeer(self.btnInfoImage, nil)
  1814. end
  1815. self.btnInfoImage = nil
  1816. if tolua.getpeer(self.btnReset) ~= nil then
  1817. tolua.setpeer(self.btnReset, nil)
  1818. end
  1819. self.btnReset = nil
  1820. if tolua.getpeer(self.ptBox) ~= nil then
  1821. tolua.setpeer(self.ptBox, nil)
  1822. end
  1823. self.ptBox = nil
  1824. if tolua.getpeer(self.btnPotentialFruit) ~= nil then
  1825. tolua.setpeer(self.btnPotentialFruit, nil)
  1826. end
  1827. self.btnPotentialFruit = nil
  1828. if tolua.getpeer(self.btnRecommend) ~= nil then
  1829. tolua.setpeer(self.btnRecommend, nil)
  1830. end
  1831. self.btnRecommend = nil
  1832. if tolua.getpeer(self.btnConfirm) ~= nil then
  1833. tolua.setpeer(self.btnConfirm, nil)
  1834. end
  1835. self.btnConfirm = nil
  1836. if tolua.getpeer(self.redPointRecommend) ~= nil then
  1837. tolua.setpeer(self.redPointRecommend, nil)
  1838. end
  1839. self.redPointRecommend = nil
  1840. if tolua.getpeer(self.btnLeft) ~= nil then
  1841. tolua.setpeer(self.btnLeft, nil)
  1842. end
  1843. self.btnLeft = nil
  1844. if tolua.getpeer(self.btnRight) ~= nil then
  1845. tolua.setpeer(self.btnRight, nil)
  1846. end
  1847. self.btnRight = nil
  1848. self.transform = nil
  1849. self.gameObject = nil
  1850. self.inited = false
  1851. end
  1852. return UIRoleNaturePointView