UnityEngine_KeyCodeWrap.cs 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643
  1. //this source code was auto-generated by tolua#, do not modify it
  2. using System;
  3. using LuaInterface;
  4. public class UnityEngine_KeyCodeWrap
  5. {
  6. public static void Register(LuaState L)
  7. {
  8. L.BeginEnum(typeof(UnityEngine.KeyCode));
  9. L.RegVar("None", get_None, null);
  10. L.RegVar("Backspace", get_Backspace, null);
  11. L.RegVar("Delete", get_Delete, null);
  12. L.RegVar("Tab", get_Tab, null);
  13. L.RegVar("Clear", get_Clear, null);
  14. L.RegVar("Return", get_Return, null);
  15. L.RegVar("Pause", get_Pause, null);
  16. L.RegVar("Escape", get_Escape, null);
  17. L.RegVar("Space", get_Space, null);
  18. L.RegVar("Keypad0", get_Keypad0, null);
  19. L.RegVar("Keypad1", get_Keypad1, null);
  20. L.RegVar("Keypad2", get_Keypad2, null);
  21. L.RegVar("Keypad3", get_Keypad3, null);
  22. L.RegVar("Keypad4", get_Keypad4, null);
  23. L.RegVar("Keypad5", get_Keypad5, null);
  24. L.RegVar("Keypad6", get_Keypad6, null);
  25. L.RegVar("Keypad7", get_Keypad7, null);
  26. L.RegVar("Keypad8", get_Keypad8, null);
  27. L.RegVar("Keypad9", get_Keypad9, null);
  28. L.RegVar("KeypadPeriod", get_KeypadPeriod, null);
  29. L.RegVar("KeypadDivide", get_KeypadDivide, null);
  30. L.RegVar("KeypadMultiply", get_KeypadMultiply, null);
  31. L.RegVar("KeypadMinus", get_KeypadMinus, null);
  32. L.RegVar("KeypadPlus", get_KeypadPlus, null);
  33. L.RegVar("KeypadEnter", get_KeypadEnter, null);
  34. L.RegVar("KeypadEquals", get_KeypadEquals, null);
  35. L.RegVar("UpArrow", get_UpArrow, null);
  36. L.RegVar("DownArrow", get_DownArrow, null);
  37. L.RegVar("RightArrow", get_RightArrow, null);
  38. L.RegVar("LeftArrow", get_LeftArrow, null);
  39. L.RegVar("Insert", get_Insert, null);
  40. L.RegVar("Home", get_Home, null);
  41. L.RegVar("End", get_End, null);
  42. L.RegVar("PageUp", get_PageUp, null);
  43. L.RegVar("PageDown", get_PageDown, null);
  44. L.RegVar("F1", get_F1, null);
  45. L.RegVar("F2", get_F2, null);
  46. L.RegVar("F3", get_F3, null);
  47. L.RegVar("F4", get_F4, null);
  48. L.RegVar("F5", get_F5, null);
  49. L.RegVar("F6", get_F6, null);
  50. L.RegVar("F7", get_F7, null);
  51. L.RegVar("F8", get_F8, null);
  52. L.RegVar("F9", get_F9, null);
  53. L.RegVar("F10", get_F10, null);
  54. L.RegVar("F11", get_F11, null);
  55. L.RegVar("F12", get_F12, null);
  56. L.RegVar("F13", get_F13, null);
  57. L.RegVar("F14", get_F14, null);
  58. L.RegVar("F15", get_F15, null);
  59. L.RegVar("Alpha0", get_Alpha0, null);
  60. L.RegVar("Alpha1", get_Alpha1, null);
  61. L.RegVar("Alpha2", get_Alpha2, null);
  62. L.RegVar("Alpha3", get_Alpha3, null);
  63. L.RegVar("Alpha4", get_Alpha4, null);
  64. L.RegVar("Alpha5", get_Alpha5, null);
  65. L.RegVar("Alpha6", get_Alpha6, null);
  66. L.RegVar("Alpha7", get_Alpha7, null);
  67. L.RegVar("Alpha8", get_Alpha8, null);
  68. L.RegVar("Alpha9", get_Alpha9, null);
  69. L.RegVar("Exclaim", get_Exclaim, null);
  70. L.RegVar("DoubleQuote", get_DoubleQuote, null);
  71. L.RegVar("Hash", get_Hash, null);
  72. L.RegVar("Dollar", get_Dollar, null);
  73. L.RegVar("Percent", get_Percent, null);
  74. L.RegVar("Ampersand", get_Ampersand, null);
  75. L.RegVar("Quote", get_Quote, null);
  76. L.RegVar("LeftParen", get_LeftParen, null);
  77. L.RegVar("RightParen", get_RightParen, null);
  78. L.RegVar("Asterisk", get_Asterisk, null);
  79. L.RegVar("Plus", get_Plus, null);
  80. L.RegVar("Comma", get_Comma, null);
  81. L.RegVar("Minus", get_Minus, null);
  82. L.RegVar("Period", get_Period, null);
  83. L.RegVar("Slash", get_Slash, null);
  84. L.RegVar("Colon", get_Colon, null);
  85. L.RegVar("Semicolon", get_Semicolon, null);
  86. L.RegVar("Less", get_Less, null);
  87. L.RegVar("Equals", get_Equals, null);
  88. L.RegVar("Greater", get_Greater, null);
  89. L.RegVar("Question", get_Question, null);
  90. L.RegVar("At", get_At, null);
  91. L.RegVar("LeftBracket", get_LeftBracket, null);
  92. L.RegVar("Backslash", get_Backslash, null);
  93. L.RegVar("RightBracket", get_RightBracket, null);
  94. L.RegVar("Caret", get_Caret, null);
  95. L.RegVar("Underscore", get_Underscore, null);
  96. L.RegVar("BackQuote", get_BackQuote, null);
  97. L.RegVar("A", get_A, null);
  98. L.RegVar("B", get_B, null);
  99. L.RegVar("C", get_C, null);
  100. L.RegVar("D", get_D, null);
  101. L.RegVar("E", get_E, null);
  102. L.RegVar("F", get_F, null);
  103. L.RegVar("G", get_G, null);
  104. L.RegVar("H", get_H, null);
  105. L.RegVar("I", get_I, null);
  106. L.RegVar("J", get_J, null);
  107. L.RegVar("K", get_K, null);
  108. L.RegVar("L", get_L, null);
  109. L.RegVar("M", get_M, null);
  110. L.RegVar("N", get_N, null);
  111. L.RegVar("O", get_O, null);
  112. L.RegVar("P", get_P, null);
  113. L.RegVar("Q", get_Q, null);
  114. L.RegVar("R", get_R, null);
  115. L.RegVar("S", get_S, null);
  116. L.RegVar("T", get_T, null);
  117. L.RegVar("U", get_U, null);
  118. L.RegVar("V", get_V, null);
  119. L.RegVar("W", get_W, null);
  120. L.RegVar("X", get_X, null);
  121. L.RegVar("Y", get_Y, null);
  122. L.RegVar("Z", get_Z, null);
  123. L.RegVar("LeftCurlyBracket", get_LeftCurlyBracket, null);
  124. L.RegVar("Pipe", get_Pipe, null);
  125. L.RegVar("RightCurlyBracket", get_RightCurlyBracket, null);
  126. L.RegVar("Tilde", get_Tilde, null);
  127. L.RegVar("Numlock", get_Numlock, null);
  128. L.RegVar("CapsLock", get_CapsLock, null);
  129. L.RegVar("ScrollLock", get_ScrollLock, null);
  130. L.RegVar("RightShift", get_RightShift, null);
  131. L.RegVar("LeftShift", get_LeftShift, null);
  132. L.RegVar("RightControl", get_RightControl, null);
  133. L.RegVar("LeftControl", get_LeftControl, null);
  134. L.RegVar("RightAlt", get_RightAlt, null);
  135. L.RegVar("LeftAlt", get_LeftAlt, null);
  136. L.RegVar("LeftCommand", get_LeftCommand, null);
  137. L.RegVar("LeftApple", get_LeftApple, null);
  138. L.RegVar("LeftWindows", get_LeftWindows, null);
  139. L.RegVar("RightCommand", get_RightCommand, null);
  140. L.RegVar("RightApple", get_RightApple, null);
  141. L.RegVar("RightWindows", get_RightWindows, null);
  142. L.RegVar("AltGr", get_AltGr, null);
  143. L.RegVar("Help", get_Help, null);
  144. L.RegVar("Print", get_Print, null);
  145. L.RegVar("SysReq", get_SysReq, null);
  146. L.RegVar("Break", get_Break, null);
  147. L.RegVar("Menu", get_Menu, null);
  148. L.RegVar("Mouse0", get_Mouse0, null);
  149. L.RegVar("Mouse1", get_Mouse1, null);
  150. L.RegVar("Mouse2", get_Mouse2, null);
  151. L.RegVar("Mouse3", get_Mouse3, null);
  152. L.RegVar("Mouse4", get_Mouse4, null);
  153. L.RegVar("Mouse5", get_Mouse5, null);
  154. L.RegVar("Mouse6", get_Mouse6, null);
  155. L.RegVar("JoystickButton0", get_JoystickButton0, null);
  156. L.RegVar("JoystickButton1", get_JoystickButton1, null);
  157. L.RegVar("JoystickButton2", get_JoystickButton2, null);
  158. L.RegVar("JoystickButton3", get_JoystickButton3, null);
  159. L.RegVar("JoystickButton4", get_JoystickButton4, null);
  160. L.RegVar("JoystickButton5", get_JoystickButton5, null);
  161. L.RegVar("JoystickButton6", get_JoystickButton6, null);
  162. L.RegVar("JoystickButton7", get_JoystickButton7, null);
  163. L.RegVar("JoystickButton8", get_JoystickButton8, null);
  164. L.RegVar("JoystickButton9", get_JoystickButton9, null);
  165. L.RegVar("JoystickButton10", get_JoystickButton10, null);
  166. L.RegVar("JoystickButton11", get_JoystickButton11, null);
  167. L.RegVar("JoystickButton12", get_JoystickButton12, null);
  168. L.RegVar("JoystickButton13", get_JoystickButton13, null);
  169. L.RegVar("JoystickButton14", get_JoystickButton14, null);
  170. L.RegVar("JoystickButton15", get_JoystickButton15, null);
  171. L.RegVar("JoystickButton16", get_JoystickButton16, null);
  172. L.RegVar("JoystickButton17", get_JoystickButton17, null);
  173. L.RegVar("JoystickButton18", get_JoystickButton18, null);
  174. L.RegVar("JoystickButton19", get_JoystickButton19, null);
  175. L.RegVar("Joystick1Button0", get_Joystick1Button0, null);
  176. L.RegVar("Joystick1Button1", get_Joystick1Button1, null);
  177. L.RegVar("Joystick1Button2", get_Joystick1Button2, null);
  178. L.RegVar("Joystick1Button3", get_Joystick1Button3, null);
  179. L.RegVar("Joystick1Button4", get_Joystick1Button4, null);
  180. L.RegVar("Joystick1Button5", get_Joystick1Button5, null);
  181. L.RegVar("Joystick1Button6", get_Joystick1Button6, null);
  182. L.RegVar("Joystick1Button7", get_Joystick1Button7, null);
  183. L.RegVar("Joystick1Button8", get_Joystick1Button8, null);
  184. L.RegVar("Joystick1Button9", get_Joystick1Button9, null);
  185. L.RegVar("Joystick1Button10", get_Joystick1Button10, null);
  186. L.RegVar("Joystick1Button11", get_Joystick1Button11, null);
  187. L.RegVar("Joystick1Button12", get_Joystick1Button12, null);
  188. L.RegVar("Joystick1Button13", get_Joystick1Button13, null);
  189. L.RegVar("Joystick1Button14", get_Joystick1Button14, null);
  190. L.RegVar("Joystick1Button15", get_Joystick1Button15, null);
  191. L.RegVar("Joystick1Button16", get_Joystick1Button16, null);
  192. L.RegVar("Joystick1Button17", get_Joystick1Button17, null);
  193. L.RegVar("Joystick1Button18", get_Joystick1Button18, null);
  194. L.RegVar("Joystick1Button19", get_Joystick1Button19, null);
  195. L.RegVar("Joystick2Button0", get_Joystick2Button0, null);
  196. L.RegVar("Joystick2Button1", get_Joystick2Button1, null);
  197. L.RegVar("Joystick2Button2", get_Joystick2Button2, null);
  198. L.RegVar("Joystick2Button3", get_Joystick2Button3, null);
  199. L.RegVar("Joystick2Button4", get_Joystick2Button4, null);
  200. L.RegVar("Joystick2Button5", get_Joystick2Button5, null);
  201. L.RegVar("Joystick2Button6", get_Joystick2Button6, null);
  202. L.RegVar("Joystick2Button7", get_Joystick2Button7, null);
  203. L.RegVar("Joystick2Button8", get_Joystick2Button8, null);
  204. L.RegVar("Joystick2Button9", get_Joystick2Button9, null);
  205. L.RegVar("Joystick2Button10", get_Joystick2Button10, null);
  206. L.RegVar("Joystick2Button11", get_Joystick2Button11, null);
  207. L.RegVar("Joystick2Button12", get_Joystick2Button12, null);
  208. L.RegVar("Joystick2Button13", get_Joystick2Button13, null);
  209. L.RegVar("Joystick2Button14", get_Joystick2Button14, null);
  210. L.RegVar("Joystick2Button15", get_Joystick2Button15, null);
  211. L.RegVar("Joystick2Button16", get_Joystick2Button16, null);
  212. L.RegVar("Joystick2Button17", get_Joystick2Button17, null);
  213. L.RegVar("Joystick2Button18", get_Joystick2Button18, null);
  214. L.RegVar("Joystick2Button19", get_Joystick2Button19, null);
  215. L.RegVar("Joystick3Button0", get_Joystick3Button0, null);
  216. L.RegVar("Joystick3Button1", get_Joystick3Button1, null);
  217. L.RegVar("Joystick3Button2", get_Joystick3Button2, null);
  218. L.RegVar("Joystick3Button3", get_Joystick3Button3, null);
  219. L.RegVar("Joystick3Button4", get_Joystick3Button4, null);
  220. L.RegVar("Joystick3Button5", get_Joystick3Button5, null);
  221. L.RegVar("Joystick3Button6", get_Joystick3Button6, null);
  222. L.RegVar("Joystick3Button7", get_Joystick3Button7, null);
  223. L.RegVar("Joystick3Button8", get_Joystick3Button8, null);
  224. L.RegVar("Joystick3Button9", get_Joystick3Button9, null);
  225. L.RegVar("Joystick3Button10", get_Joystick3Button10, null);
  226. L.RegVar("Joystick3Button11", get_Joystick3Button11, null);
  227. L.RegVar("Joystick3Button12", get_Joystick3Button12, null);
  228. L.RegVar("Joystick3Button13", get_Joystick3Button13, null);
  229. L.RegVar("Joystick3Button14", get_Joystick3Button14, null);
  230. L.RegVar("Joystick3Button15", get_Joystick3Button15, null);
  231. L.RegVar("Joystick3Button16", get_Joystick3Button16, null);
  232. L.RegVar("Joystick3Button17", get_Joystick3Button17, null);
  233. L.RegVar("Joystick3Button18", get_Joystick3Button18, null);
  234. L.RegVar("Joystick3Button19", get_Joystick3Button19, null);
  235. L.RegVar("Joystick4Button0", get_Joystick4Button0, null);
  236. L.RegVar("Joystick4Button1", get_Joystick4Button1, null);
  237. L.RegVar("Joystick4Button2", get_Joystick4Button2, null);
  238. L.RegVar("Joystick4Button3", get_Joystick4Button3, null);
  239. L.RegVar("Joystick4Button4", get_Joystick4Button4, null);
  240. L.RegVar("Joystick4Button5", get_Joystick4Button5, null);
  241. L.RegVar("Joystick4Button6", get_Joystick4Button6, null);
  242. L.RegVar("Joystick4Button7", get_Joystick4Button7, null);
  243. L.RegVar("Joystick4Button8", get_Joystick4Button8, null);
  244. L.RegVar("Joystick4Button9", get_Joystick4Button9, null);
  245. L.RegVar("Joystick4Button10", get_Joystick4Button10, null);
  246. L.RegVar("Joystick4Button11", get_Joystick4Button11, null);
  247. L.RegVar("Joystick4Button12", get_Joystick4Button12, null);
  248. L.RegVar("Joystick4Button13", get_Joystick4Button13, null);
  249. L.RegVar("Joystick4Button14", get_Joystick4Button14, null);
  250. L.RegVar("Joystick4Button15", get_Joystick4Button15, null);
  251. L.RegVar("Joystick4Button16", get_Joystick4Button16, null);
  252. L.RegVar("Joystick4Button17", get_Joystick4Button17, null);
  253. L.RegVar("Joystick4Button18", get_Joystick4Button18, null);
  254. L.RegVar("Joystick4Button19", get_Joystick4Button19, null);
  255. L.RegVar("Joystick5Button0", get_Joystick5Button0, null);
  256. L.RegVar("Joystick5Button1", get_Joystick5Button1, null);
  257. L.RegVar("Joystick5Button2", get_Joystick5Button2, null);
  258. L.RegVar("Joystick5Button3", get_Joystick5Button3, null);
  259. L.RegVar("Joystick5Button4", get_Joystick5Button4, null);
  260. L.RegVar("Joystick5Button5", get_Joystick5Button5, null);
  261. L.RegVar("Joystick5Button6", get_Joystick5Button6, null);
  262. L.RegVar("Joystick5Button7", get_Joystick5Button7, null);
  263. L.RegVar("Joystick5Button8", get_Joystick5Button8, null);
  264. L.RegVar("Joystick5Button9", get_Joystick5Button9, null);
  265. L.RegVar("Joystick5Button10", get_Joystick5Button10, null);
  266. L.RegVar("Joystick5Button11", get_Joystick5Button11, null);
  267. L.RegVar("Joystick5Button12", get_Joystick5Button12, null);
  268. L.RegVar("Joystick5Button13", get_Joystick5Button13, null);
  269. L.RegVar("Joystick5Button14", get_Joystick5Button14, null);
  270. L.RegVar("Joystick5Button15", get_Joystick5Button15, null);
  271. L.RegVar("Joystick5Button16", get_Joystick5Button16, null);
  272. L.RegVar("Joystick5Button17", get_Joystick5Button17, null);
  273. L.RegVar("Joystick5Button18", get_Joystick5Button18, null);
  274. L.RegVar("Joystick5Button19", get_Joystick5Button19, null);
  275. L.RegVar("Joystick6Button0", get_Joystick6Button0, null);
  276. L.RegVar("Joystick6Button1", get_Joystick6Button1, null);
  277. L.RegVar("Joystick6Button2", get_Joystick6Button2, null);
  278. L.RegVar("Joystick6Button3", get_Joystick6Button3, null);
  279. L.RegVar("Joystick6Button4", get_Joystick6Button4, null);
  280. L.RegVar("Joystick6Button5", get_Joystick6Button5, null);
  281. L.RegVar("Joystick6Button6", get_Joystick6Button6, null);
  282. L.RegVar("Joystick6Button7", get_Joystick6Button7, null);
  283. L.RegVar("Joystick6Button8", get_Joystick6Button8, null);
  284. L.RegVar("Joystick6Button9", get_Joystick6Button9, null);
  285. L.RegVar("Joystick6Button10", get_Joystick6Button10, null);
  286. L.RegVar("Joystick6Button11", get_Joystick6Button11, null);
  287. L.RegVar("Joystick6Button12", get_Joystick6Button12, null);
  288. L.RegVar("Joystick6Button13", get_Joystick6Button13, null);
  289. L.RegVar("Joystick6Button14", get_Joystick6Button14, null);
  290. L.RegVar("Joystick6Button15", get_Joystick6Button15, null);
  291. L.RegVar("Joystick6Button16", get_Joystick6Button16, null);
  292. L.RegVar("Joystick6Button17", get_Joystick6Button17, null);
  293. L.RegVar("Joystick6Button18", get_Joystick6Button18, null);
  294. L.RegVar("Joystick6Button19", get_Joystick6Button19, null);
  295. L.RegVar("Joystick7Button0", get_Joystick7Button0, null);
  296. L.RegVar("Joystick7Button1", get_Joystick7Button1, null);
  297. L.RegVar("Joystick7Button2", get_Joystick7Button2, null);
  298. L.RegVar("Joystick7Button3", get_Joystick7Button3, null);
  299. L.RegVar("Joystick7Button4", get_Joystick7Button4, null);
  300. L.RegVar("Joystick7Button5", get_Joystick7Button5, null);
  301. L.RegVar("Joystick7Button6", get_Joystick7Button6, null);
  302. L.RegVar("Joystick7Button7", get_Joystick7Button7, null);
  303. L.RegVar("Joystick7Button8", get_Joystick7Button8, null);
  304. L.RegVar("Joystick7Button9", get_Joystick7Button9, null);
  305. L.RegVar("Joystick7Button10", get_Joystick7Button10, null);
  306. L.RegVar("Joystick7Button11", get_Joystick7Button11, null);
  307. L.RegVar("Joystick7Button12", get_Joystick7Button12, null);
  308. L.RegVar("Joystick7Button13", get_Joystick7Button13, null);
  309. L.RegVar("Joystick7Button14", get_Joystick7Button14, null);
  310. L.RegVar("Joystick7Button15", get_Joystick7Button15, null);
  311. L.RegVar("Joystick7Button16", get_Joystick7Button16, null);
  312. L.RegVar("Joystick7Button17", get_Joystick7Button17, null);
  313. L.RegVar("Joystick7Button18", get_Joystick7Button18, null);
  314. L.RegVar("Joystick7Button19", get_Joystick7Button19, null);
  315. L.RegVar("Joystick8Button0", get_Joystick8Button0, null);
  316. L.RegVar("Joystick8Button1", get_Joystick8Button1, null);
  317. L.RegVar("Joystick8Button2", get_Joystick8Button2, null);
  318. L.RegVar("Joystick8Button3", get_Joystick8Button3, null);
  319. L.RegVar("Joystick8Button4", get_Joystick8Button4, null);
  320. L.RegVar("Joystick8Button5", get_Joystick8Button5, null);
  321. L.RegVar("Joystick8Button6", get_Joystick8Button6, null);
  322. L.RegVar("Joystick8Button7", get_Joystick8Button7, null);
  323. L.RegVar("Joystick8Button8", get_Joystick8Button8, null);
  324. L.RegVar("Joystick8Button9", get_Joystick8Button9, null);
  325. L.RegVar("Joystick8Button10", get_Joystick8Button10, null);
  326. L.RegVar("Joystick8Button11", get_Joystick8Button11, null);
  327. L.RegVar("Joystick8Button12", get_Joystick8Button12, null);
  328. L.RegVar("Joystick8Button13", get_Joystick8Button13, null);
  329. L.RegVar("Joystick8Button14", get_Joystick8Button14, null);
  330. L.RegVar("Joystick8Button15", get_Joystick8Button15, null);
  331. L.RegVar("Joystick8Button16", get_Joystick8Button16, null);
  332. L.RegVar("Joystick8Button17", get_Joystick8Button17, null);
  333. L.RegVar("Joystick8Button18", get_Joystick8Button18, null);
  334. L.RegVar("Joystick8Button19", get_Joystick8Button19, null);
  335. L.RegFunction("IntToEnum", IntToEnum);
  336. L.EndEnum();
  337. TypeTraits<UnityEngine.KeyCode>.Check = CheckType;
  338. StackTraits<UnityEngine.KeyCode>.Push = Push;
  339. }
  340. static void Push(IntPtr L, UnityEngine.KeyCode arg)
  341. {
  342. ToLua.Push(L, arg);
  343. }
  344. static bool CheckType(IntPtr L, int pos)
  345. {
  346. return TypeChecker.CheckEnumType(typeof(UnityEngine.KeyCode), L, pos);
  347. }
  348. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  349. static int get_None(IntPtr L)
  350. {
  351. ToLua.Push(L, UnityEngine.KeyCode.None);
  352. return 1;
  353. }
  354. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  355. static int get_Backspace(IntPtr L)
  356. {
  357. ToLua.Push(L, UnityEngine.KeyCode.Backspace);
  358. return 1;
  359. }
  360. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  361. static int get_Delete(IntPtr L)
  362. {
  363. ToLua.Push(L, UnityEngine.KeyCode.Delete);
  364. return 1;
  365. }
  366. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  367. static int get_Tab(IntPtr L)
  368. {
  369. ToLua.Push(L, UnityEngine.KeyCode.Tab);
  370. return 1;
  371. }
  372. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  373. static int get_Clear(IntPtr L)
  374. {
  375. ToLua.Push(L, UnityEngine.KeyCode.Clear);
  376. return 1;
  377. }
  378. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  379. static int get_Return(IntPtr L)
  380. {
  381. ToLua.Push(L, UnityEngine.KeyCode.Return);
  382. return 1;
  383. }
  384. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  385. static int get_Pause(IntPtr L)
  386. {
  387. ToLua.Push(L, UnityEngine.KeyCode.Pause);
  388. return 1;
  389. }
  390. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  391. static int get_Escape(IntPtr L)
  392. {
  393. ToLua.Push(L, UnityEngine.KeyCode.Escape);
  394. return 1;
  395. }
  396. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  397. static int get_Space(IntPtr L)
  398. {
  399. ToLua.Push(L, UnityEngine.KeyCode.Space);
  400. return 1;
  401. }
  402. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  403. static int get_Keypad0(IntPtr L)
  404. {
  405. ToLua.Push(L, UnityEngine.KeyCode.Keypad0);
  406. return 1;
  407. }
  408. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  409. static int get_Keypad1(IntPtr L)
  410. {
  411. ToLua.Push(L, UnityEngine.KeyCode.Keypad1);
  412. return 1;
  413. }
  414. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  415. static int get_Keypad2(IntPtr L)
  416. {
  417. ToLua.Push(L, UnityEngine.KeyCode.Keypad2);
  418. return 1;
  419. }
  420. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  421. static int get_Keypad3(IntPtr L)
  422. {
  423. ToLua.Push(L, UnityEngine.KeyCode.Keypad3);
  424. return 1;
  425. }
  426. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  427. static int get_Keypad4(IntPtr L)
  428. {
  429. ToLua.Push(L, UnityEngine.KeyCode.Keypad4);
  430. return 1;
  431. }
  432. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  433. static int get_Keypad5(IntPtr L)
  434. {
  435. ToLua.Push(L, UnityEngine.KeyCode.Keypad5);
  436. return 1;
  437. }
  438. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  439. static int get_Keypad6(IntPtr L)
  440. {
  441. ToLua.Push(L, UnityEngine.KeyCode.Keypad6);
  442. return 1;
  443. }
  444. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  445. static int get_Keypad7(IntPtr L)
  446. {
  447. ToLua.Push(L, UnityEngine.KeyCode.Keypad7);
  448. return 1;
  449. }
  450. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  451. static int get_Keypad8(IntPtr L)
  452. {
  453. ToLua.Push(L, UnityEngine.KeyCode.Keypad8);
  454. return 1;
  455. }
  456. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  457. static int get_Keypad9(IntPtr L)
  458. {
  459. ToLua.Push(L, UnityEngine.KeyCode.Keypad9);
  460. return 1;
  461. }
  462. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  463. static int get_KeypadPeriod(IntPtr L)
  464. {
  465. ToLua.Push(L, UnityEngine.KeyCode.KeypadPeriod);
  466. return 1;
  467. }
  468. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  469. static int get_KeypadDivide(IntPtr L)
  470. {
  471. ToLua.Push(L, UnityEngine.KeyCode.KeypadDivide);
  472. return 1;
  473. }
  474. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  475. static int get_KeypadMultiply(IntPtr L)
  476. {
  477. ToLua.Push(L, UnityEngine.KeyCode.KeypadMultiply);
  478. return 1;
  479. }
  480. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  481. static int get_KeypadMinus(IntPtr L)
  482. {
  483. ToLua.Push(L, UnityEngine.KeyCode.KeypadMinus);
  484. return 1;
  485. }
  486. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  487. static int get_KeypadPlus(IntPtr L)
  488. {
  489. ToLua.Push(L, UnityEngine.KeyCode.KeypadPlus);
  490. return 1;
  491. }
  492. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  493. static int get_KeypadEnter(IntPtr L)
  494. {
  495. ToLua.Push(L, UnityEngine.KeyCode.KeypadEnter);
  496. return 1;
  497. }
  498. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  499. static int get_KeypadEquals(IntPtr L)
  500. {
  501. ToLua.Push(L, UnityEngine.KeyCode.KeypadEquals);
  502. return 1;
  503. }
  504. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  505. static int get_UpArrow(IntPtr L)
  506. {
  507. ToLua.Push(L, UnityEngine.KeyCode.UpArrow);
  508. return 1;
  509. }
  510. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  511. static int get_DownArrow(IntPtr L)
  512. {
  513. ToLua.Push(L, UnityEngine.KeyCode.DownArrow);
  514. return 1;
  515. }
  516. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  517. static int get_RightArrow(IntPtr L)
  518. {
  519. ToLua.Push(L, UnityEngine.KeyCode.RightArrow);
  520. return 1;
  521. }
  522. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  523. static int get_LeftArrow(IntPtr L)
  524. {
  525. ToLua.Push(L, UnityEngine.KeyCode.LeftArrow);
  526. return 1;
  527. }
  528. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  529. static int get_Insert(IntPtr L)
  530. {
  531. ToLua.Push(L, UnityEngine.KeyCode.Insert);
  532. return 1;
  533. }
  534. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  535. static int get_Home(IntPtr L)
  536. {
  537. ToLua.Push(L, UnityEngine.KeyCode.Home);
  538. return 1;
  539. }
  540. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  541. static int get_End(IntPtr L)
  542. {
  543. ToLua.Push(L, UnityEngine.KeyCode.End);
  544. return 1;
  545. }
  546. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  547. static int get_PageUp(IntPtr L)
  548. {
  549. ToLua.Push(L, UnityEngine.KeyCode.PageUp);
  550. return 1;
  551. }
  552. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  553. static int get_PageDown(IntPtr L)
  554. {
  555. ToLua.Push(L, UnityEngine.KeyCode.PageDown);
  556. return 1;
  557. }
  558. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  559. static int get_F1(IntPtr L)
  560. {
  561. ToLua.Push(L, UnityEngine.KeyCode.F1);
  562. return 1;
  563. }
  564. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  565. static int get_F2(IntPtr L)
  566. {
  567. ToLua.Push(L, UnityEngine.KeyCode.F2);
  568. return 1;
  569. }
  570. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  571. static int get_F3(IntPtr L)
  572. {
  573. ToLua.Push(L, UnityEngine.KeyCode.F3);
  574. return 1;
  575. }
  576. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  577. static int get_F4(IntPtr L)
  578. {
  579. ToLua.Push(L, UnityEngine.KeyCode.F4);
  580. return 1;
  581. }
  582. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  583. static int get_F5(IntPtr L)
  584. {
  585. ToLua.Push(L, UnityEngine.KeyCode.F5);
  586. return 1;
  587. }
  588. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  589. static int get_F6(IntPtr L)
  590. {
  591. ToLua.Push(L, UnityEngine.KeyCode.F6);
  592. return 1;
  593. }
  594. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  595. static int get_F7(IntPtr L)
  596. {
  597. ToLua.Push(L, UnityEngine.KeyCode.F7);
  598. return 1;
  599. }
  600. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  601. static int get_F8(IntPtr L)
  602. {
  603. ToLua.Push(L, UnityEngine.KeyCode.F8);
  604. return 1;
  605. }
  606. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  607. static int get_F9(IntPtr L)
  608. {
  609. ToLua.Push(L, UnityEngine.KeyCode.F9);
  610. return 1;
  611. }
  612. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  613. static int get_F10(IntPtr L)
  614. {
  615. ToLua.Push(L, UnityEngine.KeyCode.F10);
  616. return 1;
  617. }
  618. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  619. static int get_F11(IntPtr L)
  620. {
  621. ToLua.Push(L, UnityEngine.KeyCode.F11);
  622. return 1;
  623. }
  624. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  625. static int get_F12(IntPtr L)
  626. {
  627. ToLua.Push(L, UnityEngine.KeyCode.F12);
  628. return 1;
  629. }
  630. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  631. static int get_F13(IntPtr L)
  632. {
  633. ToLua.Push(L, UnityEngine.KeyCode.F13);
  634. return 1;
  635. }
  636. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  637. static int get_F14(IntPtr L)
  638. {
  639. ToLua.Push(L, UnityEngine.KeyCode.F14);
  640. return 1;
  641. }
  642. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  643. static int get_F15(IntPtr L)
  644. {
  645. ToLua.Push(L, UnityEngine.KeyCode.F15);
  646. return 1;
  647. }
  648. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  649. static int get_Alpha0(IntPtr L)
  650. {
  651. ToLua.Push(L, UnityEngine.KeyCode.Alpha0);
  652. return 1;
  653. }
  654. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  655. static int get_Alpha1(IntPtr L)
  656. {
  657. ToLua.Push(L, UnityEngine.KeyCode.Alpha1);
  658. return 1;
  659. }
  660. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  661. static int get_Alpha2(IntPtr L)
  662. {
  663. ToLua.Push(L, UnityEngine.KeyCode.Alpha2);
  664. return 1;
  665. }
  666. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  667. static int get_Alpha3(IntPtr L)
  668. {
  669. ToLua.Push(L, UnityEngine.KeyCode.Alpha3);
  670. return 1;
  671. }
  672. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  673. static int get_Alpha4(IntPtr L)
  674. {
  675. ToLua.Push(L, UnityEngine.KeyCode.Alpha4);
  676. return 1;
  677. }
  678. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  679. static int get_Alpha5(IntPtr L)
  680. {
  681. ToLua.Push(L, UnityEngine.KeyCode.Alpha5);
  682. return 1;
  683. }
  684. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  685. static int get_Alpha6(IntPtr L)
  686. {
  687. ToLua.Push(L, UnityEngine.KeyCode.Alpha6);
  688. return 1;
  689. }
  690. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  691. static int get_Alpha7(IntPtr L)
  692. {
  693. ToLua.Push(L, UnityEngine.KeyCode.Alpha7);
  694. return 1;
  695. }
  696. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  697. static int get_Alpha8(IntPtr L)
  698. {
  699. ToLua.Push(L, UnityEngine.KeyCode.Alpha8);
  700. return 1;
  701. }
  702. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  703. static int get_Alpha9(IntPtr L)
  704. {
  705. ToLua.Push(L, UnityEngine.KeyCode.Alpha9);
  706. return 1;
  707. }
  708. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  709. static int get_Exclaim(IntPtr L)
  710. {
  711. ToLua.Push(L, UnityEngine.KeyCode.Exclaim);
  712. return 1;
  713. }
  714. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  715. static int get_DoubleQuote(IntPtr L)
  716. {
  717. ToLua.Push(L, UnityEngine.KeyCode.DoubleQuote);
  718. return 1;
  719. }
  720. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  721. static int get_Hash(IntPtr L)
  722. {
  723. ToLua.Push(L, UnityEngine.KeyCode.Hash);
  724. return 1;
  725. }
  726. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  727. static int get_Dollar(IntPtr L)
  728. {
  729. ToLua.Push(L, UnityEngine.KeyCode.Dollar);
  730. return 1;
  731. }
  732. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  733. static int get_Percent(IntPtr L)
  734. {
  735. ToLua.Push(L, UnityEngine.KeyCode.Percent);
  736. return 1;
  737. }
  738. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  739. static int get_Ampersand(IntPtr L)
  740. {
  741. ToLua.Push(L, UnityEngine.KeyCode.Ampersand);
  742. return 1;
  743. }
  744. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  745. static int get_Quote(IntPtr L)
  746. {
  747. ToLua.Push(L, UnityEngine.KeyCode.Quote);
  748. return 1;
  749. }
  750. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  751. static int get_LeftParen(IntPtr L)
  752. {
  753. ToLua.Push(L, UnityEngine.KeyCode.LeftParen);
  754. return 1;
  755. }
  756. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  757. static int get_RightParen(IntPtr L)
  758. {
  759. ToLua.Push(L, UnityEngine.KeyCode.RightParen);
  760. return 1;
  761. }
  762. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  763. static int get_Asterisk(IntPtr L)
  764. {
  765. ToLua.Push(L, UnityEngine.KeyCode.Asterisk);
  766. return 1;
  767. }
  768. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  769. static int get_Plus(IntPtr L)
  770. {
  771. ToLua.Push(L, UnityEngine.KeyCode.Plus);
  772. return 1;
  773. }
  774. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  775. static int get_Comma(IntPtr L)
  776. {
  777. ToLua.Push(L, UnityEngine.KeyCode.Comma);
  778. return 1;
  779. }
  780. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  781. static int get_Minus(IntPtr L)
  782. {
  783. ToLua.Push(L, UnityEngine.KeyCode.Minus);
  784. return 1;
  785. }
  786. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  787. static int get_Period(IntPtr L)
  788. {
  789. ToLua.Push(L, UnityEngine.KeyCode.Period);
  790. return 1;
  791. }
  792. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  793. static int get_Slash(IntPtr L)
  794. {
  795. ToLua.Push(L, UnityEngine.KeyCode.Slash);
  796. return 1;
  797. }
  798. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  799. static int get_Colon(IntPtr L)
  800. {
  801. ToLua.Push(L, UnityEngine.KeyCode.Colon);
  802. return 1;
  803. }
  804. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  805. static int get_Semicolon(IntPtr L)
  806. {
  807. ToLua.Push(L, UnityEngine.KeyCode.Semicolon);
  808. return 1;
  809. }
  810. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  811. static int get_Less(IntPtr L)
  812. {
  813. ToLua.Push(L, UnityEngine.KeyCode.Less);
  814. return 1;
  815. }
  816. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  817. static int get_Equals(IntPtr L)
  818. {
  819. ToLua.Push(L, UnityEngine.KeyCode.Equals);
  820. return 1;
  821. }
  822. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  823. static int get_Greater(IntPtr L)
  824. {
  825. ToLua.Push(L, UnityEngine.KeyCode.Greater);
  826. return 1;
  827. }
  828. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  829. static int get_Question(IntPtr L)
  830. {
  831. ToLua.Push(L, UnityEngine.KeyCode.Question);
  832. return 1;
  833. }
  834. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  835. static int get_At(IntPtr L)
  836. {
  837. ToLua.Push(L, UnityEngine.KeyCode.At);
  838. return 1;
  839. }
  840. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  841. static int get_LeftBracket(IntPtr L)
  842. {
  843. ToLua.Push(L, UnityEngine.KeyCode.LeftBracket);
  844. return 1;
  845. }
  846. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  847. static int get_Backslash(IntPtr L)
  848. {
  849. ToLua.Push(L, UnityEngine.KeyCode.Backslash);
  850. return 1;
  851. }
  852. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  853. static int get_RightBracket(IntPtr L)
  854. {
  855. ToLua.Push(L, UnityEngine.KeyCode.RightBracket);
  856. return 1;
  857. }
  858. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  859. static int get_Caret(IntPtr L)
  860. {
  861. ToLua.Push(L, UnityEngine.KeyCode.Caret);
  862. return 1;
  863. }
  864. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  865. static int get_Underscore(IntPtr L)
  866. {
  867. ToLua.Push(L, UnityEngine.KeyCode.Underscore);
  868. return 1;
  869. }
  870. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  871. static int get_BackQuote(IntPtr L)
  872. {
  873. ToLua.Push(L, UnityEngine.KeyCode.BackQuote);
  874. return 1;
  875. }
  876. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  877. static int get_A(IntPtr L)
  878. {
  879. ToLua.Push(L, UnityEngine.KeyCode.A);
  880. return 1;
  881. }
  882. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  883. static int get_B(IntPtr L)
  884. {
  885. ToLua.Push(L, UnityEngine.KeyCode.B);
  886. return 1;
  887. }
  888. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  889. static int get_C(IntPtr L)
  890. {
  891. ToLua.Push(L, UnityEngine.KeyCode.C);
  892. return 1;
  893. }
  894. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  895. static int get_D(IntPtr L)
  896. {
  897. ToLua.Push(L, UnityEngine.KeyCode.D);
  898. return 1;
  899. }
  900. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  901. static int get_E(IntPtr L)
  902. {
  903. ToLua.Push(L, UnityEngine.KeyCode.E);
  904. return 1;
  905. }
  906. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  907. static int get_F(IntPtr L)
  908. {
  909. ToLua.Push(L, UnityEngine.KeyCode.F);
  910. return 1;
  911. }
  912. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  913. static int get_G(IntPtr L)
  914. {
  915. ToLua.Push(L, UnityEngine.KeyCode.G);
  916. return 1;
  917. }
  918. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  919. static int get_H(IntPtr L)
  920. {
  921. ToLua.Push(L, UnityEngine.KeyCode.H);
  922. return 1;
  923. }
  924. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  925. static int get_I(IntPtr L)
  926. {
  927. ToLua.Push(L, UnityEngine.KeyCode.I);
  928. return 1;
  929. }
  930. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  931. static int get_J(IntPtr L)
  932. {
  933. ToLua.Push(L, UnityEngine.KeyCode.J);
  934. return 1;
  935. }
  936. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  937. static int get_K(IntPtr L)
  938. {
  939. ToLua.Push(L, UnityEngine.KeyCode.K);
  940. return 1;
  941. }
  942. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  943. static int get_L(IntPtr L)
  944. {
  945. ToLua.Push(L, UnityEngine.KeyCode.L);
  946. return 1;
  947. }
  948. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  949. static int get_M(IntPtr L)
  950. {
  951. ToLua.Push(L, UnityEngine.KeyCode.M);
  952. return 1;
  953. }
  954. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  955. static int get_N(IntPtr L)
  956. {
  957. ToLua.Push(L, UnityEngine.KeyCode.N);
  958. return 1;
  959. }
  960. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  961. static int get_O(IntPtr L)
  962. {
  963. ToLua.Push(L, UnityEngine.KeyCode.O);
  964. return 1;
  965. }
  966. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  967. static int get_P(IntPtr L)
  968. {
  969. ToLua.Push(L, UnityEngine.KeyCode.P);
  970. return 1;
  971. }
  972. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  973. static int get_Q(IntPtr L)
  974. {
  975. ToLua.Push(L, UnityEngine.KeyCode.Q);
  976. return 1;
  977. }
  978. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  979. static int get_R(IntPtr L)
  980. {
  981. ToLua.Push(L, UnityEngine.KeyCode.R);
  982. return 1;
  983. }
  984. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  985. static int get_S(IntPtr L)
  986. {
  987. ToLua.Push(L, UnityEngine.KeyCode.S);
  988. return 1;
  989. }
  990. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  991. static int get_T(IntPtr L)
  992. {
  993. ToLua.Push(L, UnityEngine.KeyCode.T);
  994. return 1;
  995. }
  996. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  997. static int get_U(IntPtr L)
  998. {
  999. ToLua.Push(L, UnityEngine.KeyCode.U);
  1000. return 1;
  1001. }
  1002. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1003. static int get_V(IntPtr L)
  1004. {
  1005. ToLua.Push(L, UnityEngine.KeyCode.V);
  1006. return 1;
  1007. }
  1008. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1009. static int get_W(IntPtr L)
  1010. {
  1011. ToLua.Push(L, UnityEngine.KeyCode.W);
  1012. return 1;
  1013. }
  1014. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1015. static int get_X(IntPtr L)
  1016. {
  1017. ToLua.Push(L, UnityEngine.KeyCode.X);
  1018. return 1;
  1019. }
  1020. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1021. static int get_Y(IntPtr L)
  1022. {
  1023. ToLua.Push(L, UnityEngine.KeyCode.Y);
  1024. return 1;
  1025. }
  1026. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1027. static int get_Z(IntPtr L)
  1028. {
  1029. ToLua.Push(L, UnityEngine.KeyCode.Z);
  1030. return 1;
  1031. }
  1032. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1033. static int get_LeftCurlyBracket(IntPtr L)
  1034. {
  1035. ToLua.Push(L, UnityEngine.KeyCode.LeftCurlyBracket);
  1036. return 1;
  1037. }
  1038. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1039. static int get_Pipe(IntPtr L)
  1040. {
  1041. ToLua.Push(L, UnityEngine.KeyCode.Pipe);
  1042. return 1;
  1043. }
  1044. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1045. static int get_RightCurlyBracket(IntPtr L)
  1046. {
  1047. ToLua.Push(L, UnityEngine.KeyCode.RightCurlyBracket);
  1048. return 1;
  1049. }
  1050. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1051. static int get_Tilde(IntPtr L)
  1052. {
  1053. ToLua.Push(L, UnityEngine.KeyCode.Tilde);
  1054. return 1;
  1055. }
  1056. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1057. static int get_Numlock(IntPtr L)
  1058. {
  1059. ToLua.Push(L, UnityEngine.KeyCode.Numlock);
  1060. return 1;
  1061. }
  1062. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1063. static int get_CapsLock(IntPtr L)
  1064. {
  1065. ToLua.Push(L, UnityEngine.KeyCode.CapsLock);
  1066. return 1;
  1067. }
  1068. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1069. static int get_ScrollLock(IntPtr L)
  1070. {
  1071. ToLua.Push(L, UnityEngine.KeyCode.ScrollLock);
  1072. return 1;
  1073. }
  1074. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1075. static int get_RightShift(IntPtr L)
  1076. {
  1077. ToLua.Push(L, UnityEngine.KeyCode.RightShift);
  1078. return 1;
  1079. }
  1080. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1081. static int get_LeftShift(IntPtr L)
  1082. {
  1083. ToLua.Push(L, UnityEngine.KeyCode.LeftShift);
  1084. return 1;
  1085. }
  1086. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1087. static int get_RightControl(IntPtr L)
  1088. {
  1089. ToLua.Push(L, UnityEngine.KeyCode.RightControl);
  1090. return 1;
  1091. }
  1092. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1093. static int get_LeftControl(IntPtr L)
  1094. {
  1095. ToLua.Push(L, UnityEngine.KeyCode.LeftControl);
  1096. return 1;
  1097. }
  1098. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1099. static int get_RightAlt(IntPtr L)
  1100. {
  1101. ToLua.Push(L, UnityEngine.KeyCode.RightAlt);
  1102. return 1;
  1103. }
  1104. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1105. static int get_LeftAlt(IntPtr L)
  1106. {
  1107. ToLua.Push(L, UnityEngine.KeyCode.LeftAlt);
  1108. return 1;
  1109. }
  1110. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1111. static int get_LeftCommand(IntPtr L)
  1112. {
  1113. ToLua.Push(L, UnityEngine.KeyCode.LeftCommand);
  1114. return 1;
  1115. }
  1116. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1117. static int get_LeftApple(IntPtr L)
  1118. {
  1119. ToLua.Push(L, UnityEngine.KeyCode.LeftApple);
  1120. return 1;
  1121. }
  1122. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1123. static int get_LeftWindows(IntPtr L)
  1124. {
  1125. ToLua.Push(L, UnityEngine.KeyCode.LeftWindows);
  1126. return 1;
  1127. }
  1128. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1129. static int get_RightCommand(IntPtr L)
  1130. {
  1131. ToLua.Push(L, UnityEngine.KeyCode.RightCommand);
  1132. return 1;
  1133. }
  1134. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1135. static int get_RightApple(IntPtr L)
  1136. {
  1137. ToLua.Push(L, UnityEngine.KeyCode.RightApple);
  1138. return 1;
  1139. }
  1140. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1141. static int get_RightWindows(IntPtr L)
  1142. {
  1143. ToLua.Push(L, UnityEngine.KeyCode.RightWindows);
  1144. return 1;
  1145. }
  1146. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1147. static int get_AltGr(IntPtr L)
  1148. {
  1149. ToLua.Push(L, UnityEngine.KeyCode.AltGr);
  1150. return 1;
  1151. }
  1152. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1153. static int get_Help(IntPtr L)
  1154. {
  1155. ToLua.Push(L, UnityEngine.KeyCode.Help);
  1156. return 1;
  1157. }
  1158. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1159. static int get_Print(IntPtr L)
  1160. {
  1161. ToLua.Push(L, UnityEngine.KeyCode.Print);
  1162. return 1;
  1163. }
  1164. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1165. static int get_SysReq(IntPtr L)
  1166. {
  1167. ToLua.Push(L, UnityEngine.KeyCode.SysReq);
  1168. return 1;
  1169. }
  1170. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1171. static int get_Break(IntPtr L)
  1172. {
  1173. ToLua.Push(L, UnityEngine.KeyCode.Break);
  1174. return 1;
  1175. }
  1176. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1177. static int get_Menu(IntPtr L)
  1178. {
  1179. ToLua.Push(L, UnityEngine.KeyCode.Menu);
  1180. return 1;
  1181. }
  1182. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1183. static int get_Mouse0(IntPtr L)
  1184. {
  1185. ToLua.Push(L, UnityEngine.KeyCode.Mouse0);
  1186. return 1;
  1187. }
  1188. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1189. static int get_Mouse1(IntPtr L)
  1190. {
  1191. ToLua.Push(L, UnityEngine.KeyCode.Mouse1);
  1192. return 1;
  1193. }
  1194. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1195. static int get_Mouse2(IntPtr L)
  1196. {
  1197. ToLua.Push(L, UnityEngine.KeyCode.Mouse2);
  1198. return 1;
  1199. }
  1200. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1201. static int get_Mouse3(IntPtr L)
  1202. {
  1203. ToLua.Push(L, UnityEngine.KeyCode.Mouse3);
  1204. return 1;
  1205. }
  1206. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1207. static int get_Mouse4(IntPtr L)
  1208. {
  1209. ToLua.Push(L, UnityEngine.KeyCode.Mouse4);
  1210. return 1;
  1211. }
  1212. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1213. static int get_Mouse5(IntPtr L)
  1214. {
  1215. ToLua.Push(L, UnityEngine.KeyCode.Mouse5);
  1216. return 1;
  1217. }
  1218. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1219. static int get_Mouse6(IntPtr L)
  1220. {
  1221. ToLua.Push(L, UnityEngine.KeyCode.Mouse6);
  1222. return 1;
  1223. }
  1224. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1225. static int get_JoystickButton0(IntPtr L)
  1226. {
  1227. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton0);
  1228. return 1;
  1229. }
  1230. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1231. static int get_JoystickButton1(IntPtr L)
  1232. {
  1233. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton1);
  1234. return 1;
  1235. }
  1236. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1237. static int get_JoystickButton2(IntPtr L)
  1238. {
  1239. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton2);
  1240. return 1;
  1241. }
  1242. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1243. static int get_JoystickButton3(IntPtr L)
  1244. {
  1245. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton3);
  1246. return 1;
  1247. }
  1248. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1249. static int get_JoystickButton4(IntPtr L)
  1250. {
  1251. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton4);
  1252. return 1;
  1253. }
  1254. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1255. static int get_JoystickButton5(IntPtr L)
  1256. {
  1257. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton5);
  1258. return 1;
  1259. }
  1260. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1261. static int get_JoystickButton6(IntPtr L)
  1262. {
  1263. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton6);
  1264. return 1;
  1265. }
  1266. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1267. static int get_JoystickButton7(IntPtr L)
  1268. {
  1269. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton7);
  1270. return 1;
  1271. }
  1272. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1273. static int get_JoystickButton8(IntPtr L)
  1274. {
  1275. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton8);
  1276. return 1;
  1277. }
  1278. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1279. static int get_JoystickButton9(IntPtr L)
  1280. {
  1281. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton9);
  1282. return 1;
  1283. }
  1284. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1285. static int get_JoystickButton10(IntPtr L)
  1286. {
  1287. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton10);
  1288. return 1;
  1289. }
  1290. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1291. static int get_JoystickButton11(IntPtr L)
  1292. {
  1293. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton11);
  1294. return 1;
  1295. }
  1296. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1297. static int get_JoystickButton12(IntPtr L)
  1298. {
  1299. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton12);
  1300. return 1;
  1301. }
  1302. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1303. static int get_JoystickButton13(IntPtr L)
  1304. {
  1305. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton13);
  1306. return 1;
  1307. }
  1308. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1309. static int get_JoystickButton14(IntPtr L)
  1310. {
  1311. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton14);
  1312. return 1;
  1313. }
  1314. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1315. static int get_JoystickButton15(IntPtr L)
  1316. {
  1317. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton15);
  1318. return 1;
  1319. }
  1320. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1321. static int get_JoystickButton16(IntPtr L)
  1322. {
  1323. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton16);
  1324. return 1;
  1325. }
  1326. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1327. static int get_JoystickButton17(IntPtr L)
  1328. {
  1329. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton17);
  1330. return 1;
  1331. }
  1332. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1333. static int get_JoystickButton18(IntPtr L)
  1334. {
  1335. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton18);
  1336. return 1;
  1337. }
  1338. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1339. static int get_JoystickButton19(IntPtr L)
  1340. {
  1341. ToLua.Push(L, UnityEngine.KeyCode.JoystickButton19);
  1342. return 1;
  1343. }
  1344. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1345. static int get_Joystick1Button0(IntPtr L)
  1346. {
  1347. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button0);
  1348. return 1;
  1349. }
  1350. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1351. static int get_Joystick1Button1(IntPtr L)
  1352. {
  1353. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button1);
  1354. return 1;
  1355. }
  1356. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1357. static int get_Joystick1Button2(IntPtr L)
  1358. {
  1359. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button2);
  1360. return 1;
  1361. }
  1362. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1363. static int get_Joystick1Button3(IntPtr L)
  1364. {
  1365. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button3);
  1366. return 1;
  1367. }
  1368. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1369. static int get_Joystick1Button4(IntPtr L)
  1370. {
  1371. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button4);
  1372. return 1;
  1373. }
  1374. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1375. static int get_Joystick1Button5(IntPtr L)
  1376. {
  1377. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button5);
  1378. return 1;
  1379. }
  1380. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1381. static int get_Joystick1Button6(IntPtr L)
  1382. {
  1383. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button6);
  1384. return 1;
  1385. }
  1386. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1387. static int get_Joystick1Button7(IntPtr L)
  1388. {
  1389. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button7);
  1390. return 1;
  1391. }
  1392. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1393. static int get_Joystick1Button8(IntPtr L)
  1394. {
  1395. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button8);
  1396. return 1;
  1397. }
  1398. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1399. static int get_Joystick1Button9(IntPtr L)
  1400. {
  1401. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button9);
  1402. return 1;
  1403. }
  1404. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1405. static int get_Joystick1Button10(IntPtr L)
  1406. {
  1407. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button10);
  1408. return 1;
  1409. }
  1410. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1411. static int get_Joystick1Button11(IntPtr L)
  1412. {
  1413. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button11);
  1414. return 1;
  1415. }
  1416. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1417. static int get_Joystick1Button12(IntPtr L)
  1418. {
  1419. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button12);
  1420. return 1;
  1421. }
  1422. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1423. static int get_Joystick1Button13(IntPtr L)
  1424. {
  1425. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button13);
  1426. return 1;
  1427. }
  1428. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1429. static int get_Joystick1Button14(IntPtr L)
  1430. {
  1431. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button14);
  1432. return 1;
  1433. }
  1434. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1435. static int get_Joystick1Button15(IntPtr L)
  1436. {
  1437. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button15);
  1438. return 1;
  1439. }
  1440. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1441. static int get_Joystick1Button16(IntPtr L)
  1442. {
  1443. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button16);
  1444. return 1;
  1445. }
  1446. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1447. static int get_Joystick1Button17(IntPtr L)
  1448. {
  1449. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button17);
  1450. return 1;
  1451. }
  1452. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1453. static int get_Joystick1Button18(IntPtr L)
  1454. {
  1455. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button18);
  1456. return 1;
  1457. }
  1458. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1459. static int get_Joystick1Button19(IntPtr L)
  1460. {
  1461. ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button19);
  1462. return 1;
  1463. }
  1464. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1465. static int get_Joystick2Button0(IntPtr L)
  1466. {
  1467. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button0);
  1468. return 1;
  1469. }
  1470. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1471. static int get_Joystick2Button1(IntPtr L)
  1472. {
  1473. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button1);
  1474. return 1;
  1475. }
  1476. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1477. static int get_Joystick2Button2(IntPtr L)
  1478. {
  1479. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button2);
  1480. return 1;
  1481. }
  1482. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1483. static int get_Joystick2Button3(IntPtr L)
  1484. {
  1485. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button3);
  1486. return 1;
  1487. }
  1488. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1489. static int get_Joystick2Button4(IntPtr L)
  1490. {
  1491. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button4);
  1492. return 1;
  1493. }
  1494. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1495. static int get_Joystick2Button5(IntPtr L)
  1496. {
  1497. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button5);
  1498. return 1;
  1499. }
  1500. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1501. static int get_Joystick2Button6(IntPtr L)
  1502. {
  1503. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button6);
  1504. return 1;
  1505. }
  1506. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1507. static int get_Joystick2Button7(IntPtr L)
  1508. {
  1509. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button7);
  1510. return 1;
  1511. }
  1512. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1513. static int get_Joystick2Button8(IntPtr L)
  1514. {
  1515. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button8);
  1516. return 1;
  1517. }
  1518. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1519. static int get_Joystick2Button9(IntPtr L)
  1520. {
  1521. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button9);
  1522. return 1;
  1523. }
  1524. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1525. static int get_Joystick2Button10(IntPtr L)
  1526. {
  1527. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button10);
  1528. return 1;
  1529. }
  1530. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1531. static int get_Joystick2Button11(IntPtr L)
  1532. {
  1533. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button11);
  1534. return 1;
  1535. }
  1536. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1537. static int get_Joystick2Button12(IntPtr L)
  1538. {
  1539. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button12);
  1540. return 1;
  1541. }
  1542. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1543. static int get_Joystick2Button13(IntPtr L)
  1544. {
  1545. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button13);
  1546. return 1;
  1547. }
  1548. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1549. static int get_Joystick2Button14(IntPtr L)
  1550. {
  1551. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button14);
  1552. return 1;
  1553. }
  1554. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1555. static int get_Joystick2Button15(IntPtr L)
  1556. {
  1557. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button15);
  1558. return 1;
  1559. }
  1560. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1561. static int get_Joystick2Button16(IntPtr L)
  1562. {
  1563. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button16);
  1564. return 1;
  1565. }
  1566. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1567. static int get_Joystick2Button17(IntPtr L)
  1568. {
  1569. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button17);
  1570. return 1;
  1571. }
  1572. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1573. static int get_Joystick2Button18(IntPtr L)
  1574. {
  1575. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button18);
  1576. return 1;
  1577. }
  1578. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1579. static int get_Joystick2Button19(IntPtr L)
  1580. {
  1581. ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button19);
  1582. return 1;
  1583. }
  1584. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1585. static int get_Joystick3Button0(IntPtr L)
  1586. {
  1587. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button0);
  1588. return 1;
  1589. }
  1590. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1591. static int get_Joystick3Button1(IntPtr L)
  1592. {
  1593. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button1);
  1594. return 1;
  1595. }
  1596. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1597. static int get_Joystick3Button2(IntPtr L)
  1598. {
  1599. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button2);
  1600. return 1;
  1601. }
  1602. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1603. static int get_Joystick3Button3(IntPtr L)
  1604. {
  1605. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button3);
  1606. return 1;
  1607. }
  1608. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1609. static int get_Joystick3Button4(IntPtr L)
  1610. {
  1611. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button4);
  1612. return 1;
  1613. }
  1614. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1615. static int get_Joystick3Button5(IntPtr L)
  1616. {
  1617. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button5);
  1618. return 1;
  1619. }
  1620. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1621. static int get_Joystick3Button6(IntPtr L)
  1622. {
  1623. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button6);
  1624. return 1;
  1625. }
  1626. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1627. static int get_Joystick3Button7(IntPtr L)
  1628. {
  1629. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button7);
  1630. return 1;
  1631. }
  1632. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1633. static int get_Joystick3Button8(IntPtr L)
  1634. {
  1635. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button8);
  1636. return 1;
  1637. }
  1638. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1639. static int get_Joystick3Button9(IntPtr L)
  1640. {
  1641. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button9);
  1642. return 1;
  1643. }
  1644. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1645. static int get_Joystick3Button10(IntPtr L)
  1646. {
  1647. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button10);
  1648. return 1;
  1649. }
  1650. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1651. static int get_Joystick3Button11(IntPtr L)
  1652. {
  1653. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button11);
  1654. return 1;
  1655. }
  1656. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1657. static int get_Joystick3Button12(IntPtr L)
  1658. {
  1659. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button12);
  1660. return 1;
  1661. }
  1662. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1663. static int get_Joystick3Button13(IntPtr L)
  1664. {
  1665. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button13);
  1666. return 1;
  1667. }
  1668. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1669. static int get_Joystick3Button14(IntPtr L)
  1670. {
  1671. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button14);
  1672. return 1;
  1673. }
  1674. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1675. static int get_Joystick3Button15(IntPtr L)
  1676. {
  1677. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button15);
  1678. return 1;
  1679. }
  1680. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1681. static int get_Joystick3Button16(IntPtr L)
  1682. {
  1683. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button16);
  1684. return 1;
  1685. }
  1686. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1687. static int get_Joystick3Button17(IntPtr L)
  1688. {
  1689. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button17);
  1690. return 1;
  1691. }
  1692. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1693. static int get_Joystick3Button18(IntPtr L)
  1694. {
  1695. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button18);
  1696. return 1;
  1697. }
  1698. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1699. static int get_Joystick3Button19(IntPtr L)
  1700. {
  1701. ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button19);
  1702. return 1;
  1703. }
  1704. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1705. static int get_Joystick4Button0(IntPtr L)
  1706. {
  1707. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button0);
  1708. return 1;
  1709. }
  1710. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1711. static int get_Joystick4Button1(IntPtr L)
  1712. {
  1713. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button1);
  1714. return 1;
  1715. }
  1716. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1717. static int get_Joystick4Button2(IntPtr L)
  1718. {
  1719. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button2);
  1720. return 1;
  1721. }
  1722. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1723. static int get_Joystick4Button3(IntPtr L)
  1724. {
  1725. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button3);
  1726. return 1;
  1727. }
  1728. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1729. static int get_Joystick4Button4(IntPtr L)
  1730. {
  1731. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button4);
  1732. return 1;
  1733. }
  1734. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1735. static int get_Joystick4Button5(IntPtr L)
  1736. {
  1737. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button5);
  1738. return 1;
  1739. }
  1740. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1741. static int get_Joystick4Button6(IntPtr L)
  1742. {
  1743. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button6);
  1744. return 1;
  1745. }
  1746. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1747. static int get_Joystick4Button7(IntPtr L)
  1748. {
  1749. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button7);
  1750. return 1;
  1751. }
  1752. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1753. static int get_Joystick4Button8(IntPtr L)
  1754. {
  1755. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button8);
  1756. return 1;
  1757. }
  1758. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1759. static int get_Joystick4Button9(IntPtr L)
  1760. {
  1761. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button9);
  1762. return 1;
  1763. }
  1764. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1765. static int get_Joystick4Button10(IntPtr L)
  1766. {
  1767. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button10);
  1768. return 1;
  1769. }
  1770. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1771. static int get_Joystick4Button11(IntPtr L)
  1772. {
  1773. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button11);
  1774. return 1;
  1775. }
  1776. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1777. static int get_Joystick4Button12(IntPtr L)
  1778. {
  1779. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button12);
  1780. return 1;
  1781. }
  1782. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1783. static int get_Joystick4Button13(IntPtr L)
  1784. {
  1785. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button13);
  1786. return 1;
  1787. }
  1788. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1789. static int get_Joystick4Button14(IntPtr L)
  1790. {
  1791. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button14);
  1792. return 1;
  1793. }
  1794. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1795. static int get_Joystick4Button15(IntPtr L)
  1796. {
  1797. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button15);
  1798. return 1;
  1799. }
  1800. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1801. static int get_Joystick4Button16(IntPtr L)
  1802. {
  1803. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button16);
  1804. return 1;
  1805. }
  1806. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1807. static int get_Joystick4Button17(IntPtr L)
  1808. {
  1809. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button17);
  1810. return 1;
  1811. }
  1812. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1813. static int get_Joystick4Button18(IntPtr L)
  1814. {
  1815. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button18);
  1816. return 1;
  1817. }
  1818. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1819. static int get_Joystick4Button19(IntPtr L)
  1820. {
  1821. ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button19);
  1822. return 1;
  1823. }
  1824. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1825. static int get_Joystick5Button0(IntPtr L)
  1826. {
  1827. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button0);
  1828. return 1;
  1829. }
  1830. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1831. static int get_Joystick5Button1(IntPtr L)
  1832. {
  1833. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button1);
  1834. return 1;
  1835. }
  1836. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1837. static int get_Joystick5Button2(IntPtr L)
  1838. {
  1839. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button2);
  1840. return 1;
  1841. }
  1842. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1843. static int get_Joystick5Button3(IntPtr L)
  1844. {
  1845. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button3);
  1846. return 1;
  1847. }
  1848. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1849. static int get_Joystick5Button4(IntPtr L)
  1850. {
  1851. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button4);
  1852. return 1;
  1853. }
  1854. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1855. static int get_Joystick5Button5(IntPtr L)
  1856. {
  1857. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button5);
  1858. return 1;
  1859. }
  1860. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1861. static int get_Joystick5Button6(IntPtr L)
  1862. {
  1863. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button6);
  1864. return 1;
  1865. }
  1866. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1867. static int get_Joystick5Button7(IntPtr L)
  1868. {
  1869. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button7);
  1870. return 1;
  1871. }
  1872. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1873. static int get_Joystick5Button8(IntPtr L)
  1874. {
  1875. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button8);
  1876. return 1;
  1877. }
  1878. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1879. static int get_Joystick5Button9(IntPtr L)
  1880. {
  1881. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button9);
  1882. return 1;
  1883. }
  1884. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1885. static int get_Joystick5Button10(IntPtr L)
  1886. {
  1887. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button10);
  1888. return 1;
  1889. }
  1890. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1891. static int get_Joystick5Button11(IntPtr L)
  1892. {
  1893. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button11);
  1894. return 1;
  1895. }
  1896. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1897. static int get_Joystick5Button12(IntPtr L)
  1898. {
  1899. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button12);
  1900. return 1;
  1901. }
  1902. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1903. static int get_Joystick5Button13(IntPtr L)
  1904. {
  1905. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button13);
  1906. return 1;
  1907. }
  1908. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1909. static int get_Joystick5Button14(IntPtr L)
  1910. {
  1911. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button14);
  1912. return 1;
  1913. }
  1914. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1915. static int get_Joystick5Button15(IntPtr L)
  1916. {
  1917. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button15);
  1918. return 1;
  1919. }
  1920. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1921. static int get_Joystick5Button16(IntPtr L)
  1922. {
  1923. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button16);
  1924. return 1;
  1925. }
  1926. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1927. static int get_Joystick5Button17(IntPtr L)
  1928. {
  1929. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button17);
  1930. return 1;
  1931. }
  1932. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1933. static int get_Joystick5Button18(IntPtr L)
  1934. {
  1935. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button18);
  1936. return 1;
  1937. }
  1938. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1939. static int get_Joystick5Button19(IntPtr L)
  1940. {
  1941. ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button19);
  1942. return 1;
  1943. }
  1944. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1945. static int get_Joystick6Button0(IntPtr L)
  1946. {
  1947. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button0);
  1948. return 1;
  1949. }
  1950. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1951. static int get_Joystick6Button1(IntPtr L)
  1952. {
  1953. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button1);
  1954. return 1;
  1955. }
  1956. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1957. static int get_Joystick6Button2(IntPtr L)
  1958. {
  1959. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button2);
  1960. return 1;
  1961. }
  1962. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1963. static int get_Joystick6Button3(IntPtr L)
  1964. {
  1965. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button3);
  1966. return 1;
  1967. }
  1968. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1969. static int get_Joystick6Button4(IntPtr L)
  1970. {
  1971. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button4);
  1972. return 1;
  1973. }
  1974. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1975. static int get_Joystick6Button5(IntPtr L)
  1976. {
  1977. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button5);
  1978. return 1;
  1979. }
  1980. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1981. static int get_Joystick6Button6(IntPtr L)
  1982. {
  1983. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button6);
  1984. return 1;
  1985. }
  1986. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1987. static int get_Joystick6Button7(IntPtr L)
  1988. {
  1989. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button7);
  1990. return 1;
  1991. }
  1992. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1993. static int get_Joystick6Button8(IntPtr L)
  1994. {
  1995. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button8);
  1996. return 1;
  1997. }
  1998. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  1999. static int get_Joystick6Button9(IntPtr L)
  2000. {
  2001. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button9);
  2002. return 1;
  2003. }
  2004. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2005. static int get_Joystick6Button10(IntPtr L)
  2006. {
  2007. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button10);
  2008. return 1;
  2009. }
  2010. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2011. static int get_Joystick6Button11(IntPtr L)
  2012. {
  2013. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button11);
  2014. return 1;
  2015. }
  2016. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2017. static int get_Joystick6Button12(IntPtr L)
  2018. {
  2019. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button12);
  2020. return 1;
  2021. }
  2022. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2023. static int get_Joystick6Button13(IntPtr L)
  2024. {
  2025. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button13);
  2026. return 1;
  2027. }
  2028. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2029. static int get_Joystick6Button14(IntPtr L)
  2030. {
  2031. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button14);
  2032. return 1;
  2033. }
  2034. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2035. static int get_Joystick6Button15(IntPtr L)
  2036. {
  2037. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button15);
  2038. return 1;
  2039. }
  2040. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2041. static int get_Joystick6Button16(IntPtr L)
  2042. {
  2043. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button16);
  2044. return 1;
  2045. }
  2046. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2047. static int get_Joystick6Button17(IntPtr L)
  2048. {
  2049. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button17);
  2050. return 1;
  2051. }
  2052. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2053. static int get_Joystick6Button18(IntPtr L)
  2054. {
  2055. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button18);
  2056. return 1;
  2057. }
  2058. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2059. static int get_Joystick6Button19(IntPtr L)
  2060. {
  2061. ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button19);
  2062. return 1;
  2063. }
  2064. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2065. static int get_Joystick7Button0(IntPtr L)
  2066. {
  2067. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button0);
  2068. return 1;
  2069. }
  2070. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2071. static int get_Joystick7Button1(IntPtr L)
  2072. {
  2073. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button1);
  2074. return 1;
  2075. }
  2076. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2077. static int get_Joystick7Button2(IntPtr L)
  2078. {
  2079. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button2);
  2080. return 1;
  2081. }
  2082. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2083. static int get_Joystick7Button3(IntPtr L)
  2084. {
  2085. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button3);
  2086. return 1;
  2087. }
  2088. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2089. static int get_Joystick7Button4(IntPtr L)
  2090. {
  2091. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button4);
  2092. return 1;
  2093. }
  2094. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2095. static int get_Joystick7Button5(IntPtr L)
  2096. {
  2097. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button5);
  2098. return 1;
  2099. }
  2100. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2101. static int get_Joystick7Button6(IntPtr L)
  2102. {
  2103. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button6);
  2104. return 1;
  2105. }
  2106. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2107. static int get_Joystick7Button7(IntPtr L)
  2108. {
  2109. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button7);
  2110. return 1;
  2111. }
  2112. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2113. static int get_Joystick7Button8(IntPtr L)
  2114. {
  2115. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button8);
  2116. return 1;
  2117. }
  2118. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2119. static int get_Joystick7Button9(IntPtr L)
  2120. {
  2121. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button9);
  2122. return 1;
  2123. }
  2124. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2125. static int get_Joystick7Button10(IntPtr L)
  2126. {
  2127. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button10);
  2128. return 1;
  2129. }
  2130. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2131. static int get_Joystick7Button11(IntPtr L)
  2132. {
  2133. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button11);
  2134. return 1;
  2135. }
  2136. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2137. static int get_Joystick7Button12(IntPtr L)
  2138. {
  2139. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button12);
  2140. return 1;
  2141. }
  2142. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2143. static int get_Joystick7Button13(IntPtr L)
  2144. {
  2145. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button13);
  2146. return 1;
  2147. }
  2148. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2149. static int get_Joystick7Button14(IntPtr L)
  2150. {
  2151. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button14);
  2152. return 1;
  2153. }
  2154. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2155. static int get_Joystick7Button15(IntPtr L)
  2156. {
  2157. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button15);
  2158. return 1;
  2159. }
  2160. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2161. static int get_Joystick7Button16(IntPtr L)
  2162. {
  2163. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button16);
  2164. return 1;
  2165. }
  2166. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2167. static int get_Joystick7Button17(IntPtr L)
  2168. {
  2169. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button17);
  2170. return 1;
  2171. }
  2172. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2173. static int get_Joystick7Button18(IntPtr L)
  2174. {
  2175. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button18);
  2176. return 1;
  2177. }
  2178. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2179. static int get_Joystick7Button19(IntPtr L)
  2180. {
  2181. ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button19);
  2182. return 1;
  2183. }
  2184. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2185. static int get_Joystick8Button0(IntPtr L)
  2186. {
  2187. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button0);
  2188. return 1;
  2189. }
  2190. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2191. static int get_Joystick8Button1(IntPtr L)
  2192. {
  2193. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button1);
  2194. return 1;
  2195. }
  2196. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2197. static int get_Joystick8Button2(IntPtr L)
  2198. {
  2199. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button2);
  2200. return 1;
  2201. }
  2202. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2203. static int get_Joystick8Button3(IntPtr L)
  2204. {
  2205. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button3);
  2206. return 1;
  2207. }
  2208. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2209. static int get_Joystick8Button4(IntPtr L)
  2210. {
  2211. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button4);
  2212. return 1;
  2213. }
  2214. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2215. static int get_Joystick8Button5(IntPtr L)
  2216. {
  2217. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button5);
  2218. return 1;
  2219. }
  2220. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2221. static int get_Joystick8Button6(IntPtr L)
  2222. {
  2223. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button6);
  2224. return 1;
  2225. }
  2226. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2227. static int get_Joystick8Button7(IntPtr L)
  2228. {
  2229. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button7);
  2230. return 1;
  2231. }
  2232. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2233. static int get_Joystick8Button8(IntPtr L)
  2234. {
  2235. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button8);
  2236. return 1;
  2237. }
  2238. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2239. static int get_Joystick8Button9(IntPtr L)
  2240. {
  2241. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button9);
  2242. return 1;
  2243. }
  2244. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2245. static int get_Joystick8Button10(IntPtr L)
  2246. {
  2247. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button10);
  2248. return 1;
  2249. }
  2250. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2251. static int get_Joystick8Button11(IntPtr L)
  2252. {
  2253. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button11);
  2254. return 1;
  2255. }
  2256. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2257. static int get_Joystick8Button12(IntPtr L)
  2258. {
  2259. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button12);
  2260. return 1;
  2261. }
  2262. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2263. static int get_Joystick8Button13(IntPtr L)
  2264. {
  2265. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button13);
  2266. return 1;
  2267. }
  2268. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2269. static int get_Joystick8Button14(IntPtr L)
  2270. {
  2271. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button14);
  2272. return 1;
  2273. }
  2274. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2275. static int get_Joystick8Button15(IntPtr L)
  2276. {
  2277. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button15);
  2278. return 1;
  2279. }
  2280. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2281. static int get_Joystick8Button16(IntPtr L)
  2282. {
  2283. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button16);
  2284. return 1;
  2285. }
  2286. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2287. static int get_Joystick8Button17(IntPtr L)
  2288. {
  2289. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button17);
  2290. return 1;
  2291. }
  2292. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2293. static int get_Joystick8Button18(IntPtr L)
  2294. {
  2295. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button18);
  2296. return 1;
  2297. }
  2298. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2299. static int get_Joystick8Button19(IntPtr L)
  2300. {
  2301. ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button19);
  2302. return 1;
  2303. }
  2304. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  2305. static int IntToEnum(IntPtr L)
  2306. {
  2307. int arg0 = (int)LuaDLL.lua_tonumber(L, 1);
  2308. UnityEngine.KeyCode o = (UnityEngine.KeyCode)arg0;
  2309. ToLua.Push(L, o);
  2310. return 1;
  2311. }
  2312. }