| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643 |
- //this source code was auto-generated by tolua#, do not modify it
- using System;
- using LuaInterface;
- public class UnityEngine_KeyCodeWrap
- {
- public static void Register(LuaState L)
- {
- L.BeginEnum(typeof(UnityEngine.KeyCode), "KeyCode");
- L.RegVar("None", get_None, null);
- L.RegVar("Backspace", get_Backspace, null);
- L.RegVar("Delete", get_Delete, null);
- L.RegVar("Tab", get_Tab, null);
- L.RegVar("Clear", get_Clear, null);
- L.RegVar("Return", get_Return, null);
- L.RegVar("Pause", get_Pause, null);
- L.RegVar("Escape", get_Escape, null);
- L.RegVar("Space", get_Space, null);
- L.RegVar("Keypad0", get_Keypad0, null);
- L.RegVar("Keypad1", get_Keypad1, null);
- L.RegVar("Keypad2", get_Keypad2, null);
- L.RegVar("Keypad3", get_Keypad3, null);
- L.RegVar("Keypad4", get_Keypad4, null);
- L.RegVar("Keypad5", get_Keypad5, null);
- L.RegVar("Keypad6", get_Keypad6, null);
- L.RegVar("Keypad7", get_Keypad7, null);
- L.RegVar("Keypad8", get_Keypad8, null);
- L.RegVar("Keypad9", get_Keypad9, null);
- L.RegVar("KeypadPeriod", get_KeypadPeriod, null);
- L.RegVar("KeypadDivide", get_KeypadDivide, null);
- L.RegVar("KeypadMultiply", get_KeypadMultiply, null);
- L.RegVar("KeypadMinus", get_KeypadMinus, null);
- L.RegVar("KeypadPlus", get_KeypadPlus, null);
- L.RegVar("KeypadEnter", get_KeypadEnter, null);
- L.RegVar("KeypadEquals", get_KeypadEquals, null);
- L.RegVar("UpArrow", get_UpArrow, null);
- L.RegVar("DownArrow", get_DownArrow, null);
- L.RegVar("RightArrow", get_RightArrow, null);
- L.RegVar("LeftArrow", get_LeftArrow, null);
- L.RegVar("Insert", get_Insert, null);
- L.RegVar("Home", get_Home, null);
- L.RegVar("End", get_End, null);
- L.RegVar("PageUp", get_PageUp, null);
- L.RegVar("PageDown", get_PageDown, null);
- L.RegVar("F1", get_F1, null);
- L.RegVar("F2", get_F2, null);
- L.RegVar("F3", get_F3, null);
- L.RegVar("F4", get_F4, null);
- L.RegVar("F5", get_F5, null);
- L.RegVar("F6", get_F6, null);
- L.RegVar("F7", get_F7, null);
- L.RegVar("F8", get_F8, null);
- L.RegVar("F9", get_F9, null);
- L.RegVar("F10", get_F10, null);
- L.RegVar("F11", get_F11, null);
- L.RegVar("F12", get_F12, null);
- L.RegVar("F13", get_F13, null);
- L.RegVar("F14", get_F14, null);
- L.RegVar("F15", get_F15, null);
- L.RegVar("Alpha0", get_Alpha0, null);
- L.RegVar("Alpha1", get_Alpha1, null);
- L.RegVar("Alpha2", get_Alpha2, null);
- L.RegVar("Alpha3", get_Alpha3, null);
- L.RegVar("Alpha4", get_Alpha4, null);
- L.RegVar("Alpha5", get_Alpha5, null);
- L.RegVar("Alpha6", get_Alpha6, null);
- L.RegVar("Alpha7", get_Alpha7, null);
- L.RegVar("Alpha8", get_Alpha8, null);
- L.RegVar("Alpha9", get_Alpha9, null);
- L.RegVar("Exclaim", get_Exclaim, null);
- L.RegVar("DoubleQuote", get_DoubleQuote, null);
- L.RegVar("Hash", get_Hash, null);
- L.RegVar("Dollar", get_Dollar, null);
- L.RegVar("Percent", get_Percent, null);
- L.RegVar("Ampersand", get_Ampersand, null);
- L.RegVar("Quote", get_Quote, null);
- L.RegVar("LeftParen", get_LeftParen, null);
- L.RegVar("RightParen", get_RightParen, null);
- L.RegVar("Asterisk", get_Asterisk, null);
- L.RegVar("Plus", get_Plus, null);
- L.RegVar("Comma", get_Comma, null);
- L.RegVar("Minus", get_Minus, null);
- L.RegVar("Period", get_Period, null);
- L.RegVar("Slash", get_Slash, null);
- L.RegVar("Colon", get_Colon, null);
- L.RegVar("Semicolon", get_Semicolon, null);
- L.RegVar("Less", get_Less, null);
- L.RegVar("Equals", get_Equals, null);
- L.RegVar("Greater", get_Greater, null);
- L.RegVar("Question", get_Question, null);
- L.RegVar("At", get_At, null);
- L.RegVar("LeftBracket", get_LeftBracket, null);
- L.RegVar("Backslash", get_Backslash, null);
- L.RegVar("RightBracket", get_RightBracket, null);
- L.RegVar("Caret", get_Caret, null);
- L.RegVar("Underscore", get_Underscore, null);
- L.RegVar("BackQuote", get_BackQuote, null);
- L.RegVar("A", get_A, null);
- L.RegVar("B", get_B, null);
- L.RegVar("C", get_C, null);
- L.RegVar("D", get_D, null);
- L.RegVar("E", get_E, null);
- L.RegVar("F", get_F, null);
- L.RegVar("G", get_G, null);
- L.RegVar("H", get_H, null);
- L.RegVar("I", get_I, null);
- L.RegVar("J", get_J, null);
- L.RegVar("K", get_K, null);
- L.RegVar("L", get_L, null);
- L.RegVar("M", get_M, null);
- L.RegVar("N", get_N, null);
- L.RegVar("O", get_O, null);
- L.RegVar("P", get_P, null);
- L.RegVar("Q", get_Q, null);
- L.RegVar("R", get_R, null);
- L.RegVar("S", get_S, null);
- L.RegVar("T", get_T, null);
- L.RegVar("U", get_U, null);
- L.RegVar("V", get_V, null);
- L.RegVar("W", get_W, null);
- L.RegVar("X", get_X, null);
- L.RegVar("Y", get_Y, null);
- L.RegVar("Z", get_Z, null);
- L.RegVar("LeftCurlyBracket", get_LeftCurlyBracket, null);
- L.RegVar("Pipe", get_Pipe, null);
- L.RegVar("RightCurlyBracket", get_RightCurlyBracket, null);
- L.RegVar("Tilde", get_Tilde, null);
- L.RegVar("Numlock", get_Numlock, null);
- L.RegVar("CapsLock", get_CapsLock, null);
- L.RegVar("ScrollLock", get_ScrollLock, null);
- L.RegVar("RightShift", get_RightShift, null);
- L.RegVar("LeftShift", get_LeftShift, null);
- L.RegVar("RightControl", get_RightControl, null);
- L.RegVar("LeftControl", get_LeftControl, null);
- L.RegVar("RightAlt", get_RightAlt, null);
- L.RegVar("LeftAlt", get_LeftAlt, null);
- L.RegVar("LeftCommand", get_LeftCommand, null);
- L.RegVar("LeftApple", get_LeftApple, null);
- L.RegVar("LeftWindows", get_LeftWindows, null);
- L.RegVar("RightCommand", get_RightCommand, null);
- L.RegVar("RightApple", get_RightApple, null);
- L.RegVar("RightWindows", get_RightWindows, null);
- L.RegVar("AltGr", get_AltGr, null);
- L.RegVar("Help", get_Help, null);
- L.RegVar("Print", get_Print, null);
- L.RegVar("SysReq", get_SysReq, null);
- L.RegVar("Break", get_Break, null);
- L.RegVar("Menu", get_Menu, null);
- L.RegVar("Mouse0", get_Mouse0, null);
- L.RegVar("Mouse1", get_Mouse1, null);
- L.RegVar("Mouse2", get_Mouse2, null);
- L.RegVar("Mouse3", get_Mouse3, null);
- L.RegVar("Mouse4", get_Mouse4, null);
- L.RegVar("Mouse5", get_Mouse5, null);
- L.RegVar("Mouse6", get_Mouse6, null);
- L.RegVar("JoystickButton0", get_JoystickButton0, null);
- L.RegVar("JoystickButton1", get_JoystickButton1, null);
- L.RegVar("JoystickButton2", get_JoystickButton2, null);
- L.RegVar("JoystickButton3", get_JoystickButton3, null);
- L.RegVar("JoystickButton4", get_JoystickButton4, null);
- L.RegVar("JoystickButton5", get_JoystickButton5, null);
- L.RegVar("JoystickButton6", get_JoystickButton6, null);
- L.RegVar("JoystickButton7", get_JoystickButton7, null);
- L.RegVar("JoystickButton8", get_JoystickButton8, null);
- L.RegVar("JoystickButton9", get_JoystickButton9, null);
- L.RegVar("JoystickButton10", get_JoystickButton10, null);
- L.RegVar("JoystickButton11", get_JoystickButton11, null);
- L.RegVar("JoystickButton12", get_JoystickButton12, null);
- L.RegVar("JoystickButton13", get_JoystickButton13, null);
- L.RegVar("JoystickButton14", get_JoystickButton14, null);
- L.RegVar("JoystickButton15", get_JoystickButton15, null);
- L.RegVar("JoystickButton16", get_JoystickButton16, null);
- L.RegVar("JoystickButton17", get_JoystickButton17, null);
- L.RegVar("JoystickButton18", get_JoystickButton18, null);
- L.RegVar("JoystickButton19", get_JoystickButton19, null);
- L.RegVar("Joystick1Button0", get_Joystick1Button0, null);
- L.RegVar("Joystick1Button1", get_Joystick1Button1, null);
- L.RegVar("Joystick1Button2", get_Joystick1Button2, null);
- L.RegVar("Joystick1Button3", get_Joystick1Button3, null);
- L.RegVar("Joystick1Button4", get_Joystick1Button4, null);
- L.RegVar("Joystick1Button5", get_Joystick1Button5, null);
- L.RegVar("Joystick1Button6", get_Joystick1Button6, null);
- L.RegVar("Joystick1Button7", get_Joystick1Button7, null);
- L.RegVar("Joystick1Button8", get_Joystick1Button8, null);
- L.RegVar("Joystick1Button9", get_Joystick1Button9, null);
- L.RegVar("Joystick1Button10", get_Joystick1Button10, null);
- L.RegVar("Joystick1Button11", get_Joystick1Button11, null);
- L.RegVar("Joystick1Button12", get_Joystick1Button12, null);
- L.RegVar("Joystick1Button13", get_Joystick1Button13, null);
- L.RegVar("Joystick1Button14", get_Joystick1Button14, null);
- L.RegVar("Joystick1Button15", get_Joystick1Button15, null);
- L.RegVar("Joystick1Button16", get_Joystick1Button16, null);
- L.RegVar("Joystick1Button17", get_Joystick1Button17, null);
- L.RegVar("Joystick1Button18", get_Joystick1Button18, null);
- L.RegVar("Joystick1Button19", get_Joystick1Button19, null);
- L.RegVar("Joystick2Button0", get_Joystick2Button0, null);
- L.RegVar("Joystick2Button1", get_Joystick2Button1, null);
- L.RegVar("Joystick2Button2", get_Joystick2Button2, null);
- L.RegVar("Joystick2Button3", get_Joystick2Button3, null);
- L.RegVar("Joystick2Button4", get_Joystick2Button4, null);
- L.RegVar("Joystick2Button5", get_Joystick2Button5, null);
- L.RegVar("Joystick2Button6", get_Joystick2Button6, null);
- L.RegVar("Joystick2Button7", get_Joystick2Button7, null);
- L.RegVar("Joystick2Button8", get_Joystick2Button8, null);
- L.RegVar("Joystick2Button9", get_Joystick2Button9, null);
- L.RegVar("Joystick2Button10", get_Joystick2Button10, null);
- L.RegVar("Joystick2Button11", get_Joystick2Button11, null);
- L.RegVar("Joystick2Button12", get_Joystick2Button12, null);
- L.RegVar("Joystick2Button13", get_Joystick2Button13, null);
- L.RegVar("Joystick2Button14", get_Joystick2Button14, null);
- L.RegVar("Joystick2Button15", get_Joystick2Button15, null);
- L.RegVar("Joystick2Button16", get_Joystick2Button16, null);
- L.RegVar("Joystick2Button17", get_Joystick2Button17, null);
- L.RegVar("Joystick2Button18", get_Joystick2Button18, null);
- L.RegVar("Joystick2Button19", get_Joystick2Button19, null);
- L.RegVar("Joystick3Button0", get_Joystick3Button0, null);
- L.RegVar("Joystick3Button1", get_Joystick3Button1, null);
- L.RegVar("Joystick3Button2", get_Joystick3Button2, null);
- L.RegVar("Joystick3Button3", get_Joystick3Button3, null);
- L.RegVar("Joystick3Button4", get_Joystick3Button4, null);
- L.RegVar("Joystick3Button5", get_Joystick3Button5, null);
- L.RegVar("Joystick3Button6", get_Joystick3Button6, null);
- L.RegVar("Joystick3Button7", get_Joystick3Button7, null);
- L.RegVar("Joystick3Button8", get_Joystick3Button8, null);
- L.RegVar("Joystick3Button9", get_Joystick3Button9, null);
- L.RegVar("Joystick3Button10", get_Joystick3Button10, null);
- L.RegVar("Joystick3Button11", get_Joystick3Button11, null);
- L.RegVar("Joystick3Button12", get_Joystick3Button12, null);
- L.RegVar("Joystick3Button13", get_Joystick3Button13, null);
- L.RegVar("Joystick3Button14", get_Joystick3Button14, null);
- L.RegVar("Joystick3Button15", get_Joystick3Button15, null);
- L.RegVar("Joystick3Button16", get_Joystick3Button16, null);
- L.RegVar("Joystick3Button17", get_Joystick3Button17, null);
- L.RegVar("Joystick3Button18", get_Joystick3Button18, null);
- L.RegVar("Joystick3Button19", get_Joystick3Button19, null);
- L.RegVar("Joystick4Button0", get_Joystick4Button0, null);
- L.RegVar("Joystick4Button1", get_Joystick4Button1, null);
- L.RegVar("Joystick4Button2", get_Joystick4Button2, null);
- L.RegVar("Joystick4Button3", get_Joystick4Button3, null);
- L.RegVar("Joystick4Button4", get_Joystick4Button4, null);
- L.RegVar("Joystick4Button5", get_Joystick4Button5, null);
- L.RegVar("Joystick4Button6", get_Joystick4Button6, null);
- L.RegVar("Joystick4Button7", get_Joystick4Button7, null);
- L.RegVar("Joystick4Button8", get_Joystick4Button8, null);
- L.RegVar("Joystick4Button9", get_Joystick4Button9, null);
- L.RegVar("Joystick4Button10", get_Joystick4Button10, null);
- L.RegVar("Joystick4Button11", get_Joystick4Button11, null);
- L.RegVar("Joystick4Button12", get_Joystick4Button12, null);
- L.RegVar("Joystick4Button13", get_Joystick4Button13, null);
- L.RegVar("Joystick4Button14", get_Joystick4Button14, null);
- L.RegVar("Joystick4Button15", get_Joystick4Button15, null);
- L.RegVar("Joystick4Button16", get_Joystick4Button16, null);
- L.RegVar("Joystick4Button17", get_Joystick4Button17, null);
- L.RegVar("Joystick4Button18", get_Joystick4Button18, null);
- L.RegVar("Joystick4Button19", get_Joystick4Button19, null);
- L.RegVar("Joystick5Button0", get_Joystick5Button0, null);
- L.RegVar("Joystick5Button1", get_Joystick5Button1, null);
- L.RegVar("Joystick5Button2", get_Joystick5Button2, null);
- L.RegVar("Joystick5Button3", get_Joystick5Button3, null);
- L.RegVar("Joystick5Button4", get_Joystick5Button4, null);
- L.RegVar("Joystick5Button5", get_Joystick5Button5, null);
- L.RegVar("Joystick5Button6", get_Joystick5Button6, null);
- L.RegVar("Joystick5Button7", get_Joystick5Button7, null);
- L.RegVar("Joystick5Button8", get_Joystick5Button8, null);
- L.RegVar("Joystick5Button9", get_Joystick5Button9, null);
- L.RegVar("Joystick5Button10", get_Joystick5Button10, null);
- L.RegVar("Joystick5Button11", get_Joystick5Button11, null);
- L.RegVar("Joystick5Button12", get_Joystick5Button12, null);
- L.RegVar("Joystick5Button13", get_Joystick5Button13, null);
- L.RegVar("Joystick5Button14", get_Joystick5Button14, null);
- L.RegVar("Joystick5Button15", get_Joystick5Button15, null);
- L.RegVar("Joystick5Button16", get_Joystick5Button16, null);
- L.RegVar("Joystick5Button17", get_Joystick5Button17, null);
- L.RegVar("Joystick5Button18", get_Joystick5Button18, null);
- L.RegVar("Joystick5Button19", get_Joystick5Button19, null);
- L.RegVar("Joystick6Button0", get_Joystick6Button0, null);
- L.RegVar("Joystick6Button1", get_Joystick6Button1, null);
- L.RegVar("Joystick6Button2", get_Joystick6Button2, null);
- L.RegVar("Joystick6Button3", get_Joystick6Button3, null);
- L.RegVar("Joystick6Button4", get_Joystick6Button4, null);
- L.RegVar("Joystick6Button5", get_Joystick6Button5, null);
- L.RegVar("Joystick6Button6", get_Joystick6Button6, null);
- L.RegVar("Joystick6Button7", get_Joystick6Button7, null);
- L.RegVar("Joystick6Button8", get_Joystick6Button8, null);
- L.RegVar("Joystick6Button9", get_Joystick6Button9, null);
- L.RegVar("Joystick6Button10", get_Joystick6Button10, null);
- L.RegVar("Joystick6Button11", get_Joystick6Button11, null);
- L.RegVar("Joystick6Button12", get_Joystick6Button12, null);
- L.RegVar("Joystick6Button13", get_Joystick6Button13, null);
- L.RegVar("Joystick6Button14", get_Joystick6Button14, null);
- L.RegVar("Joystick6Button15", get_Joystick6Button15, null);
- L.RegVar("Joystick6Button16", get_Joystick6Button16, null);
- L.RegVar("Joystick6Button17", get_Joystick6Button17, null);
- L.RegVar("Joystick6Button18", get_Joystick6Button18, null);
- L.RegVar("Joystick6Button19", get_Joystick6Button19, null);
- L.RegVar("Joystick7Button0", get_Joystick7Button0, null);
- L.RegVar("Joystick7Button1", get_Joystick7Button1, null);
- L.RegVar("Joystick7Button2", get_Joystick7Button2, null);
- L.RegVar("Joystick7Button3", get_Joystick7Button3, null);
- L.RegVar("Joystick7Button4", get_Joystick7Button4, null);
- L.RegVar("Joystick7Button5", get_Joystick7Button5, null);
- L.RegVar("Joystick7Button6", get_Joystick7Button6, null);
- L.RegVar("Joystick7Button7", get_Joystick7Button7, null);
- L.RegVar("Joystick7Button8", get_Joystick7Button8, null);
- L.RegVar("Joystick7Button9", get_Joystick7Button9, null);
- L.RegVar("Joystick7Button10", get_Joystick7Button10, null);
- L.RegVar("Joystick7Button11", get_Joystick7Button11, null);
- L.RegVar("Joystick7Button12", get_Joystick7Button12, null);
- L.RegVar("Joystick7Button13", get_Joystick7Button13, null);
- L.RegVar("Joystick7Button14", get_Joystick7Button14, null);
- L.RegVar("Joystick7Button15", get_Joystick7Button15, null);
- L.RegVar("Joystick7Button16", get_Joystick7Button16, null);
- L.RegVar("Joystick7Button17", get_Joystick7Button17, null);
- L.RegVar("Joystick7Button18", get_Joystick7Button18, null);
- L.RegVar("Joystick7Button19", get_Joystick7Button19, null);
- L.RegVar("Joystick8Button0", get_Joystick8Button0, null);
- L.RegVar("Joystick8Button1", get_Joystick8Button1, null);
- L.RegVar("Joystick8Button2", get_Joystick8Button2, null);
- L.RegVar("Joystick8Button3", get_Joystick8Button3, null);
- L.RegVar("Joystick8Button4", get_Joystick8Button4, null);
- L.RegVar("Joystick8Button5", get_Joystick8Button5, null);
- L.RegVar("Joystick8Button6", get_Joystick8Button6, null);
- L.RegVar("Joystick8Button7", get_Joystick8Button7, null);
- L.RegVar("Joystick8Button8", get_Joystick8Button8, null);
- L.RegVar("Joystick8Button9", get_Joystick8Button9, null);
- L.RegVar("Joystick8Button10", get_Joystick8Button10, null);
- L.RegVar("Joystick8Button11", get_Joystick8Button11, null);
- L.RegVar("Joystick8Button12", get_Joystick8Button12, null);
- L.RegVar("Joystick8Button13", get_Joystick8Button13, null);
- L.RegVar("Joystick8Button14", get_Joystick8Button14, null);
- L.RegVar("Joystick8Button15", get_Joystick8Button15, null);
- L.RegVar("Joystick8Button16", get_Joystick8Button16, null);
- L.RegVar("Joystick8Button17", get_Joystick8Button17, null);
- L.RegVar("Joystick8Button18", get_Joystick8Button18, null);
- L.RegVar("Joystick8Button19", get_Joystick8Button19, null);
- L.RegFunction("IntToEnum", IntToEnum);
- L.EndEnum();
- TypeTraits<UnityEngine.KeyCode>.Check = CheckType;
- StackTraits<UnityEngine.KeyCode>.Push = Push;
- }
- static void Push(IntPtr L, UnityEngine.KeyCode arg)
- {
- ToLua.Push(L, arg);
- }
- static bool CheckType(IntPtr L, int pos)
- {
- return TypeChecker.CheckEnumType(typeof(UnityEngine.KeyCode), L, pos);
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_None(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.None);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Backspace(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Backspace);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Delete(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Delete);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Tab(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Tab);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Clear(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Clear);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Return(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Return);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Pause(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Pause);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Escape(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Escape);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Space(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Space);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Keypad9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Keypad9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_KeypadPeriod(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.KeypadPeriod);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_KeypadDivide(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.KeypadDivide);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_KeypadMultiply(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.KeypadMultiply);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_KeypadMinus(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.KeypadMinus);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_KeypadPlus(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.KeypadPlus);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_KeypadEnter(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.KeypadEnter);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_KeypadEquals(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.KeypadEquals);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_UpArrow(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.UpArrow);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_DownArrow(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.DownArrow);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightArrow(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightArrow);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftArrow(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftArrow);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Insert(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Insert);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Home(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Home);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_End(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.End);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_PageUp(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.PageUp);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_PageDown(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.PageDown);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Alpha9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Alpha9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Exclaim(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Exclaim);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_DoubleQuote(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.DoubleQuote);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Hash(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Hash);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Dollar(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Dollar);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Percent(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Percent);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Ampersand(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Ampersand);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Quote(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Quote);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftParen(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftParen);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightParen(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightParen);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Asterisk(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Asterisk);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Plus(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Plus);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Comma(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Comma);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Minus(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Minus);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Period(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Period);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Slash(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Slash);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Colon(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Colon);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Semicolon(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Semicolon);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Less(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Less);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Equals(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Equals);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Greater(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Greater);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Question(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Question);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_At(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.At);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftBracket(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftBracket);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Backslash(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Backslash);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightBracket(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightBracket);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Caret(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Caret);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Underscore(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Underscore);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_BackQuote(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.BackQuote);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_A(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.A);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_B(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.B);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_C(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.C);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_D(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.D);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_E(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.E);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_F(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.F);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_G(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.G);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_H(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.H);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_I(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.I);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_J(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.J);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_K(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.K);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_L(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.L);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_M(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.M);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_N(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.N);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_O(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.O);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_P(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.P);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Q(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Q);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_R(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.R);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_S(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.S);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_T(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.T);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_U(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.U);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_V(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.V);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_W(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.W);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_X(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.X);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Y(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Y);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Z(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Z);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftCurlyBracket(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftCurlyBracket);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Pipe(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Pipe);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightCurlyBracket(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightCurlyBracket);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Tilde(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Tilde);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Numlock(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Numlock);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_CapsLock(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.CapsLock);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_ScrollLock(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.ScrollLock);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightShift(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightShift);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftShift(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftShift);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightControl(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightControl);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftControl(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftControl);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightAlt(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightAlt);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftAlt(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftAlt);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftCommand(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftCommand);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftApple(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftApple);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_LeftWindows(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.LeftWindows);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightCommand(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightCommand);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightApple(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightApple);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_RightWindows(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.RightWindows);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_AltGr(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.AltGr);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Help(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Help);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Print(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Print);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_SysReq(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.SysReq);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Break(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Break);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Menu(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Menu);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Mouse0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Mouse0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Mouse1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Mouse1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Mouse2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Mouse2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Mouse3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Mouse3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Mouse4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Mouse4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Mouse5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Mouse5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Mouse6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Mouse6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_JoystickButton19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.JoystickButton19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick1Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick1Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick2Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick2Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick3Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick3Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick4Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick4Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick5Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick5Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick6Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick6Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick7Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick7Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button0(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button0);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button1(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button1);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button2(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button2);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button3(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button3);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button4(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button4);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button5(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button5);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button6(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button6);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button7(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button7);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button8(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button8);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button9(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button9);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button10(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button10);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button11(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button11);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button12(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button12);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button13(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button13);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button14(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button14);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button15(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button15);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button16(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button16);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button17(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button17);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button18(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button18);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Joystick8Button19(IntPtr L)
- {
- ToLua.Push(L, UnityEngine.KeyCode.Joystick8Button19);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int IntToEnum(IntPtr L)
- {
- int arg0 = (int)LuaDLL.lua_tonumber(L, 1);
- UnityEngine.KeyCode o = (UnityEngine.KeyCode)arg0;
- ToLua.Push(L, o);
- return 1;
- }
- }
|