Generated_Members_M.cpp 233 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268
  1. // DO NOT EDIT. This file is generated
  2. #include "../Precompiled.h"
  3. #include "../AngelScript/APITemplates.h"
  4. #include "../Core/Mutex.h"
  5. #include "../Graphics/Material.h"
  6. #include "../Graphics/Model.h"
  7. #include "../Math/Matrix2.h"
  8. #include "../Math/Matrix3.h"
  9. #include "../Math/Matrix3x4.h"
  10. #include "../Math/Matrix4.h"
  11. #ifdef URHO3D_PHYSICS
  12. #include "../Physics/PhysicsWorld.h"
  13. #endif
  14. #include "../UI/Menu.h"
  15. #include "../UI/MessageBox.h"
  16. #include "../AngelScript/Manual.h"
  17. namespace Urho3D
  18. {
  19. void FakeAddRef(void* ptr);
  20. void FakeReleaseRef(void* ptr);
  21. // SharedPtr<Material> Material::Clone(const String& cloneName=String::EMPTY) const | File: ../Graphics/Material.h
  22. static Material* Material_Clone_String(Material* ptr, const String& cloneName)
  23. {
  24. SharedPtr<Material> result = ptr->Clone(cloneName);
  25. return result.Detach();
  26. }
  27. // explicit Material::Material(Context* context) | File: ../Graphics/Material.h
  28. static Material* Material_Material_Context()
  29. {
  30. return new Material(GetScriptContext());
  31. }
  32. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  33. static void Material_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool(Material* ptr, CScriptArray* exceptions, bool onlyUserData)
  34. {
  35. PODVector<StringHash> param0 = ArrayToPODVector<StringHash>(exceptions);
  36. ptr->UnsubscribeFromAllEventsExcept(param0, onlyUserData);
  37. }
  38. // Matrix2::Matrix2(const Matrix2& matrix) noexcept=default | File: ../Math/Matrix2.h
  39. static void Matrix2_Matrix2_Matrix2(Matrix2* ptr, const Matrix2 &matrix)
  40. {
  41. new(ptr) Matrix2(matrix);
  42. }
  43. // Matrix2::Matrix2(float v00, float v01, float v10, float v11) noexcept | File: ../Math/Matrix2.h
  44. static void Matrix2_Matrix2_float_float_float_float(Matrix2* ptr, float v00, float v01, float v10, float v11)
  45. {
  46. new(ptr) Matrix2(v00, v01, v10, v11);
  47. }
  48. // Matrix3::Matrix3(const Matrix3& matrix) noexcept=default | File: ../Math/Matrix3.h
  49. static void Matrix3_Matrix3_Matrix3(Matrix3* ptr, const Matrix3 &matrix)
  50. {
  51. new(ptr) Matrix3(matrix);
  52. }
  53. // Matrix3::Matrix3(float v00, float v01, float v02, float v10, float v11, float v12, float v20, float v21, float v22) noexcept | File: ../Math/Matrix3.h
  54. static void Matrix3_Matrix3_float_float_float_float_float_float_float_float_float(Matrix3* ptr, float v00, float v01, float v02, float v10, float v11, float v12, float v20, float v21, float v22)
  55. {
  56. new(ptr) Matrix3(v00, v01, v02, v10, v11, v12, v20, v21, v22);
  57. }
  58. // Matrix3x4::Matrix3x4(const Matrix3x4& matrix) noexcept=default | File: ../Math/Matrix3x4.h
  59. static void Matrix3x4_Matrix3x4_Matrix3x4(Matrix3x4* ptr, const Matrix3x4 &matrix)
  60. {
  61. new(ptr) Matrix3x4(matrix);
  62. }
  63. // explicit Matrix3x4::Matrix3x4(const Matrix3& matrix) noexcept | File: ../Math/Matrix3x4.h
  64. static void Matrix3x4_Matrix3x4_Matrix3(Matrix3x4* ptr, const Matrix3 &matrix)
  65. {
  66. new(ptr) Matrix3x4(matrix);
  67. }
  68. // explicit Matrix3x4::Matrix3x4(const Matrix4& matrix) noexcept | File: ../Math/Matrix3x4.h
  69. static void Matrix3x4_Matrix3x4_Matrix4(Matrix3x4* ptr, const Matrix4 &matrix)
  70. {
  71. new(ptr) Matrix3x4(matrix);
  72. }
  73. // Matrix3x4::Matrix3x4(float v00, float v01, float v02, float v03, float v10, float v11, float v12, float v13, float v20, float v21, float v22, float v23) noexcept | File: ../Math/Matrix3x4.h
  74. static void Matrix3x4_Matrix3x4_float_float_float_float_float_float_float_float_float_float_float_float(Matrix3x4* ptr, float v00, float v01, float v02, float v03, float v10, float v11, float v12, float v13, float v20, float v21, float v22, float v23)
  75. {
  76. new(ptr) Matrix3x4(v00, v01, v02, v03, v10, v11, v12, v13, v20, v21, v22, v23);
  77. }
  78. // Matrix3x4::Matrix3x4(const Vector3& translation, const Quaternion& rotation, float scale) noexcept | File: ../Math/Matrix3x4.h
  79. static void Matrix3x4_Matrix3x4_Vector3_Quaternion_float(Matrix3x4* ptr, const Vector3 &translation, const Quaternion &rotation, float scale)
  80. {
  81. new(ptr) Matrix3x4(translation, rotation, scale);
  82. }
  83. // Matrix3x4::Matrix3x4(const Vector3& translation, const Quaternion& rotation, const Vector3& scale) noexcept | File: ../Math/Matrix3x4.h
  84. static void Matrix3x4_Matrix3x4_Vector3_Quaternion_Vector3(Matrix3x4* ptr, const Vector3 &translation, const Quaternion &rotation, const Vector3 &scale)
  85. {
  86. new(ptr) Matrix3x4(translation, rotation, scale);
  87. }
  88. // Matrix4::Matrix4(const Matrix4& matrix) noexcept | File: ../Math/Matrix4.h
  89. static void Matrix4_Matrix4_Matrix4(Matrix4* ptr, const Matrix4 &matrix)
  90. {
  91. new(ptr) Matrix4(matrix);
  92. }
  93. // explicit Matrix4::Matrix4(const Matrix3& matrix) noexcept | File: ../Math/Matrix4.h
  94. static void Matrix4_Matrix4_Matrix3(Matrix4* ptr, const Matrix3 &matrix)
  95. {
  96. new(ptr) Matrix4(matrix);
  97. }
  98. // Matrix4::Matrix4(float v00, float v01, float v02, float v03, float v10, float v11, float v12, float v13, float v20, float v21, float v22, float v23, float v30, float v31, float v32, float v33) noexcept | File: ../Math/Matrix4.h
  99. static void Matrix4_Matrix4_float_float_float_float_float_float_float_float_float_float_float_float_float_float_float_float(Matrix4* ptr, float v00, float v01, float v02, float v03, float v10, float v11, float v12, float v13, float v20, float v21, float v22, float v23, float v30, float v31, float v32, float v33)
  100. {
  101. new(ptr) Matrix4(v00, v01, v02, v03, v10, v11, v12, v13, v20, v21, v22, v23, v30, v31, v32, v33);
  102. }
  103. // const Vector<SharedPtr<UIElement>>& UIElement::GetChildren() const | File: ../UI/UIElement.h
  104. static CScriptArray* Menu_GetChildren_void(Menu* ptr)
  105. {
  106. const Vector<SharedPtr<UIElement>>& result = ptr->GetChildren();
  107. return VectorToHandleArray(result, "Array<UIElement@>");
  108. }
  109. // PODVector<UIElement*> UIElement::GetChildren(bool recursive) const | File: ../UI/UIElement.h
  110. static CScriptArray* Menu_GetChildren_bool(Menu* ptr, bool recursive)
  111. {
  112. PODVector<UIElement*> result = ptr->GetChildren(recursive);
  113. return VectorToHandleArray(result, "Array<UIElement@>");
  114. }
  115. // PODVector<UIElement*> UIElement::GetChildrenWithTag(const String& tag, bool recursive=false) const | File: ../UI/UIElement.h
  116. static CScriptArray* Menu_GetChildrenWithTag_String_bool(Menu* ptr, const String& tag, bool recursive)
  117. {
  118. PODVector<UIElement*> result = ptr->GetChildrenWithTag(tag, recursive);
  119. return VectorToHandleArray(result, "Array<UIElement@>");
  120. }
  121. // const StringVector& UIElement::GetTags() const | File: ../UI/UIElement.h
  122. static CScriptArray* Menu_GetTags_void(Menu* ptr)
  123. {
  124. const StringVector& result = ptr->GetTags();
  125. return VectorToArray<String>(result, "Array<String>");
  126. }
  127. // explicit Menu::Menu(Context* context) | File: ../UI/Menu.h
  128. static Menu* Menu_Menu_Context()
  129. {
  130. return new Menu(GetScriptContext());
  131. }
  132. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  133. static void Menu_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool(Menu* ptr, CScriptArray* exceptions, bool onlyUserData)
  134. {
  135. PODVector<StringHash> param0 = ArrayToPODVector<StringHash>(exceptions);
  136. ptr->UnsubscribeFromAllEventsExcept(param0, onlyUserData);
  137. }
  138. // explicit MessageBox::MessageBox(Context* context, const String& messageString=String::EMPTY, const String& titleString=String::EMPTY, XMLFile* layoutFile=nullptr, XMLFile* styleFile=nullptr) | File: ../UI/MessageBox.h
  139. static MessageBox* MessageBox_MessageBox_Context_String_String_XMLFile_XMLFile(const String &messageString=String::EMPTY, const String &titleString=String::EMPTY, XMLFile *layoutFile=nullptr, XMLFile *styleFile=nullptr)
  140. {
  141. return new MessageBox(GetScriptContext(), messageString, titleString, layoutFile, styleFile);
  142. }
  143. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  144. static void MessageBox_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool(MessageBox* ptr, CScriptArray* exceptions, bool onlyUserData)
  145. {
  146. PODVector<StringHash> param0 = ArrayToPODVector<StringHash>(exceptions);
  147. ptr->UnsubscribeFromAllEventsExcept(param0, onlyUserData);
  148. }
  149. // SharedPtr<Model> Model::Clone(const String& cloneName=String::EMPTY) const | File: ../Graphics/Model.h
  150. static Model* Model_Clone_String(Model* ptr, const String& cloneName)
  151. {
  152. SharedPtr<Model> result = ptr->Clone(cloneName);
  153. return result.Detach();
  154. }
  155. // const PODVector<Vector3>& Model::GetGeometryCenters() const | File: ../Graphics/Model.h
  156. static CScriptArray* Model_GetGeometryCenters_void(Model* ptr)
  157. {
  158. const PODVector<Vector3>& result = ptr->GetGeometryCenters();
  159. return VectorToArray(result, "Array<Vector3>");
  160. }
  161. // const Vector<SharedPtr<IndexBuffer>>& Model::GetIndexBuffers() const | File: ../Graphics/Model.h
  162. static CScriptArray* Model_GetIndexBuffers_void(Model* ptr)
  163. {
  164. const Vector<SharedPtr<IndexBuffer>>& result = ptr->GetIndexBuffers();
  165. return VectorToHandleArray(result, "Array<IndexBuffer@>");
  166. }
  167. // const Vector<SharedPtr<VertexBuffer>>& Model::GetVertexBuffers() const | File: ../Graphics/Model.h
  168. static CScriptArray* Model_GetVertexBuffers_void(Model* ptr)
  169. {
  170. const Vector<SharedPtr<VertexBuffer>>& result = ptr->GetVertexBuffers();
  171. return VectorToHandleArray(result, "Array<VertexBuffer@>");
  172. }
  173. // explicit Model::Model(Context* context) | File: ../Graphics/Model.h
  174. static Model* Model_Model_Context()
  175. {
  176. return new Model(GetScriptContext());
  177. }
  178. // bool Model::SetIndexBuffers(const Vector<SharedPtr<IndexBuffer>>& buffers) | File: ../Graphics/Model.h
  179. static bool Model_SetIndexBuffers_VectorSharedPtrIndexBuffer(Model* ptr, CScriptArray* buffers)
  180. {
  181. Vector<SharedPtr<IndexBuffer> > param0 = HandleArrayToVector<IndexBuffer>(buffers);
  182. bool result = ptr->SetIndexBuffers(param0);
  183. return result;
  184. }
  185. // bool Model::SetVertexBuffers(const Vector<SharedPtr<VertexBuffer>>& buffers, const PODVector<unsigned>& morphRangeStarts, const PODVector<unsigned>& morphRangeCounts) | File: ../Graphics/Model.h
  186. static bool Model_SetVertexBuffers_VectorSharedPtrVertexBuffer_PODVectorunsigned_PODVectorunsigned(Model* ptr, CScriptArray* buffers, CScriptArray* morphRangeStarts, CScriptArray* morphRangeCounts)
  187. {
  188. Vector<SharedPtr<VertexBuffer> > param0 = HandleArrayToVector<VertexBuffer>(buffers);
  189. PODVector<unsigned> param1 = ArrayToPODVector<unsigned>(morphRangeStarts);
  190. PODVector<unsigned> param2 = ArrayToPODVector<unsigned>(morphRangeCounts);
  191. bool result = ptr->SetVertexBuffers(param0, param1, param2);
  192. return result;
  193. }
  194. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  195. static void Model_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool(Model* ptr, CScriptArray* exceptions, bool onlyUserData)
  196. {
  197. PODVector<StringHash> param0 = ArrayToPODVector<StringHash>(exceptions);
  198. ptr->UnsubscribeFromAllEventsExcept(param0, onlyUserData);
  199. }
  200. // Mutex::~Mutex() | File: ../Core/Mutex.h
  201. static void Mutex_Destructor_Mutex_void(Mutex* ptr)
  202. {
  203. ptr->~Mutex();
  204. }
  205. // explicit MutexLock::MutexLock(Mutex& mutex) | File: ../Core/Mutex.h
  206. static void MutexLock_MutexLock_Mutex(MutexLock* ptr, Mutex &mutex)
  207. {
  208. new(ptr) MutexLock(mutex);
  209. }
  210. // MutexLock::~MutexLock() | File: ../Core/Mutex.h
  211. static void MutexLock_Destructor_MutexLock_void(MutexLock* ptr)
  212. {
  213. ptr->~MutexLock();
  214. }
  215. #ifdef URHO3D_PHYSICS
  216. // ManifoldPair::~ManifoldPair() | Implicitly-declared
  217. static void ManifoldPair_Destructor(ManifoldPair* ptr)
  218. {
  219. ptr->~ManifoldPair();
  220. }
  221. #endif
  222. // MaterialShaderParameter::~MaterialShaderParameter() | Implicitly-declared
  223. static void MaterialShaderParameter_Destructor(MaterialShaderParameter* ptr)
  224. {
  225. ptr->~MaterialShaderParameter();
  226. }
  227. // ModelMorph::~ModelMorph() | Implicitly-declared
  228. static void ModelMorph_Destructor(ModelMorph* ptr)
  229. {
  230. ptr->~ModelMorph();
  231. }
  232. void ASRegisterGenerated_Members_M(asIScriptEngine* engine)
  233. {
  234. // void RefCounted::AddRef() | File: ../Container/RefCounted.h
  235. engine->RegisterObjectBehaviour("Material", asBEHAVE_ADDREF, "void f()", asMETHODPR(Material, AddRef, (), void), asCALL_THISCALL);
  236. // bool Material::BeginLoad(Deserializer& source) override | File: ../Graphics/Material.h
  237. engine->RegisterObjectMethod("Material", "bool BeginLoad(Deserializer&)", asMETHODPR(Material, BeginLoad, (Deserializer&), bool), asCALL_THISCALL);
  238. // template<typename T> T* Object::Cast() | File: ../Core/Object.h
  239. // Not registered because template
  240. // template<typename T> const T* Object::Cast() const | File: ../Core/Object.h
  241. // Not registered because template
  242. // SharedPtr<Material> Material::Clone(const String& cloneName=String::EMPTY) const | File: ../Graphics/Material.h
  243. engine->RegisterObjectMethod("Material", "Material@+ Clone(const String&in = String::EMPTY) const", asFUNCTION(Material_Clone_String), asCALL_CDECL_OBJFIRST);
  244. // bool Material::EndLoad() override | File: ../Graphics/Material.h
  245. engine->RegisterObjectMethod("Material", "bool EndLoad()", asMETHODPR(Material, EndLoad, (), bool), asCALL_THISCALL);
  246. // bool Material::GetAlphaToCoverage() const | File: ../Graphics/Material.h
  247. engine->RegisterObjectMethod("Material", "bool GetAlphaToCoverage() const", asMETHODPR(Material, GetAlphaToCoverage, () const, bool), asCALL_THISCALL);
  248. engine->RegisterObjectMethod("Material", "bool get_alphaToCoverage() const", asMETHODPR(Material, GetAlphaToCoverage, () const, bool), asCALL_THISCALL);
  249. // AsyncLoadState Resource::GetAsyncLoadState() const | File: ../Resource/Resource.h
  250. engine->RegisterObjectMethod("Material", "AsyncLoadState GetAsyncLoadState() const", asMETHODPR(Material, GetAsyncLoadState, () const, AsyncLoadState), asCALL_THISCALL);
  251. // unsigned Material::GetAuxViewFrameNumber() const | File: ../Graphics/Material.h
  252. engine->RegisterObjectMethod("Material", "uint GetAuxViewFrameNumber() const", asMETHODPR(Material, GetAuxViewFrameNumber, () const, unsigned), asCALL_THISCALL);
  253. // bool Object::GetBlockEvents() const | File: ../Core/Object.h
  254. engine->RegisterObjectMethod("Material", "bool GetBlockEvents() const", asMETHODPR(Material, GetBlockEvents, () const, bool), asCALL_THISCALL);
  255. // const String& Object::GetCategory() const | File: ../Core/Object.h
  256. engine->RegisterObjectMethod("Material", "const String& GetCategory() const", asMETHODPR(Material, GetCategory, () const, const String&), asCALL_THISCALL);
  257. engine->RegisterObjectMethod("Material", "const String& get_category() const", asMETHODPR(Material, GetCategory, () const, const String&), asCALL_THISCALL);
  258. // Context* Object::GetContext() const | File: ../Core/Object.h
  259. // Error: type "Context*" can not be returned
  260. // CullMode Material::GetCullMode() const | File: ../Graphics/Material.h
  261. engine->RegisterObjectMethod("Material", "CullMode GetCullMode() const", asMETHODPR(Material, GetCullMode, () const, CullMode), asCALL_THISCALL);
  262. engine->RegisterObjectMethod("Material", "CullMode get_cullMode() const", asMETHODPR(Material, GetCullMode, () const, CullMode), asCALL_THISCALL);
  263. // const BiasParameters& Material::GetDepthBias() const | File: ../Graphics/Material.h
  264. engine->RegisterObjectMethod("Material", "const BiasParameters& GetDepthBias() const", asMETHODPR(Material, GetDepthBias, () const, const BiasParameters&), asCALL_THISCALL);
  265. engine->RegisterObjectMethod("Material", "const BiasParameters& get_depthBias() const", asMETHODPR(Material, GetDepthBias, () const, const BiasParameters&), asCALL_THISCALL);
  266. // VariantMap& Object::GetEventDataMap() const | File: ../Core/Object.h
  267. engine->RegisterObjectMethod("Material", "VariantMap& GetEventDataMap() const", asMETHODPR(Material, GetEventDataMap, () const, VariantMap&), asCALL_THISCALL);
  268. // EventHandler* Object::GetEventHandler() const | File: ../Core/Object.h
  269. // Error: type "EventHandler*" can not automatically bind
  270. // Object* Object::GetEventSender() const | File: ../Core/Object.h
  271. engine->RegisterObjectMethod("Material", "Object@+ GetEventSender() const", asMETHODPR(Material, GetEventSender, () const, Object*), asCALL_THISCALL);
  272. // FillMode Material::GetFillMode() const | File: ../Graphics/Material.h
  273. engine->RegisterObjectMethod("Material", "FillMode GetFillMode() const", asMETHODPR(Material, GetFillMode, () const, FillMode), asCALL_THISCALL);
  274. engine->RegisterObjectMethod("Material", "FillMode get_fillMode() const", asMETHODPR(Material, GetFillMode, () const, FillMode), asCALL_THISCALL);
  275. // const Variant& Object::GetGlobalVar(StringHash key) const | File: ../Core/Object.h
  276. engine->RegisterObjectMethod("Material", "const Variant& GetGlobalVar(StringHash) const", asMETHODPR(Material, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  277. engine->RegisterObjectMethod("Material", "const Variant& get_globalVar(StringHash) const", asMETHODPR(Material, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  278. // const VariantMap& Object::GetGlobalVars() const | File: ../Core/Object.h
  279. engine->RegisterObjectMethod("Material", "const VariantMap& GetGlobalVars() const", asMETHODPR(Material, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  280. engine->RegisterObjectMethod("Material", "const VariantMap& get_globalVars() const", asMETHODPR(Material, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  281. // bool Material::GetLineAntiAlias() const | File: ../Graphics/Material.h
  282. engine->RegisterObjectMethod("Material", "bool GetLineAntiAlias() const", asMETHODPR(Material, GetLineAntiAlias, () const, bool), asCALL_THISCALL);
  283. engine->RegisterObjectMethod("Material", "bool get_lineAntiAlias() const", asMETHODPR(Material, GetLineAntiAlias, () const, bool), asCALL_THISCALL);
  284. // unsigned Resource::GetMemoryUse() const | File: ../Resource/Resource.h
  285. engine->RegisterObjectMethod("Material", "uint GetMemoryUse() const", asMETHODPR(Material, GetMemoryUse, () const, unsigned), asCALL_THISCALL);
  286. engine->RegisterObjectMethod("Material", "uint get_memoryUse() const", asMETHODPR(Material, GetMemoryUse, () const, unsigned), asCALL_THISCALL);
  287. // const String& Resource::GetName() const | File: ../Resource/Resource.h
  288. engine->RegisterObjectMethod("Material", "const String& GetName() const", asMETHODPR(Material, GetName, () const, const String&), asCALL_THISCALL);
  289. engine->RegisterObjectMethod("Material", "const String& get_name() const", asMETHODPR(Material, GetName, () const, const String&), asCALL_THISCALL);
  290. // StringHash Resource::GetNameHash() const | File: ../Resource/Resource.h
  291. engine->RegisterObjectMethod("Material", "StringHash GetNameHash() const", asMETHODPR(Material, GetNameHash, () const, StringHash), asCALL_THISCALL);
  292. // unsigned Material::GetNumTechniques() const | File: ../Graphics/Material.h
  293. engine->RegisterObjectMethod("Material", "uint GetNumTechniques() const", asMETHODPR(Material, GetNumTechniques, () const, unsigned), asCALL_THISCALL);
  294. engine->RegisterObjectMethod("Material", "uint get_numTechniques() const", asMETHODPR(Material, GetNumTechniques, () const, unsigned), asCALL_THISCALL);
  295. // bool Material::GetOcclusion() const | File: ../Graphics/Material.h
  296. engine->RegisterObjectMethod("Material", "bool GetOcclusion() const", asMETHODPR(Material, GetOcclusion, () const, bool), asCALL_THISCALL);
  297. engine->RegisterObjectMethod("Material", "bool get_occlusion() const", asMETHODPR(Material, GetOcclusion, () const, bool), asCALL_THISCALL);
  298. // Pass* Material::GetPass(unsigned index, const String& passName) const | File: ../Graphics/Material.h
  299. engine->RegisterObjectMethod("Material", "Pass@+ GetPass(uint, const String&in) const", asMETHODPR(Material, GetPass, (unsigned, const String&) const, Pass*), asCALL_THISCALL);
  300. // const String& Material::GetPixelShaderDefines() const | File: ../Graphics/Material.h
  301. engine->RegisterObjectMethod("Material", "const String& GetPixelShaderDefines() const", asMETHODPR(Material, GetPixelShaderDefines, () const, const String&), asCALL_THISCALL);
  302. engine->RegisterObjectMethod("Material", "const String& get_pixelShaderDefines() const", asMETHODPR(Material, GetPixelShaderDefines, () const, const String&), asCALL_THISCALL);
  303. // unsigned char Material::GetRenderOrder() const | File: ../Graphics/Material.h
  304. engine->RegisterObjectMethod("Material", "uint8 GetRenderOrder() const", asMETHODPR(Material, GetRenderOrder, () const, unsigned char), asCALL_THISCALL);
  305. engine->RegisterObjectMethod("Material", "uint8 get_renderOrder() const", asMETHODPR(Material, GetRenderOrder, () const, unsigned char), asCALL_THISCALL);
  306. // Scene* Material::GetScene() const | File: ../Graphics/Material.h
  307. engine->RegisterObjectMethod("Material", "Scene@+ GetScene() const", asMETHODPR(Material, GetScene, () const, Scene*), asCALL_THISCALL);
  308. engine->RegisterObjectMethod("Material", "Scene@+ get_scene() const", asMETHODPR(Material, GetScene, () const, Scene*), asCALL_THISCALL);
  309. // const Variant& Material::GetShaderParameter(const String& name) const | File: ../Graphics/Material.h
  310. engine->RegisterObjectMethod("Material", "const Variant& GetShaderParameter(const String&in) const", asMETHODPR(Material, GetShaderParameter, (const String&) const, const Variant&), asCALL_THISCALL);
  311. engine->RegisterObjectMethod("Material", "const Variant& get_shaderParameters(const String&in) const", asMETHODPR(Material, GetShaderParameter, (const String&) const, const Variant&), asCALL_THISCALL);
  312. // ValueAnimation* Material::GetShaderParameterAnimation(const String& name) const | File: ../Graphics/Material.h
  313. engine->RegisterObjectMethod("Material", "ValueAnimation@+ GetShaderParameterAnimation(const String&in) const", asMETHODPR(Material, GetShaderParameterAnimation, (const String&) const, ValueAnimation*), asCALL_THISCALL);
  314. // float Material::GetShaderParameterAnimationSpeed(const String& name) const | File: ../Graphics/Material.h
  315. engine->RegisterObjectMethod("Material", "float GetShaderParameterAnimationSpeed(const String&in) const", asMETHODPR(Material, GetShaderParameterAnimationSpeed, (const String&) const, float), asCALL_THISCALL);
  316. // WrapMode Material::GetShaderParameterAnimationWrapMode(const String& name) const | File: ../Graphics/Material.h
  317. engine->RegisterObjectMethod("Material", "WrapMode GetShaderParameterAnimationWrapMode(const String&in) const", asMETHODPR(Material, GetShaderParameterAnimationWrapMode, (const String&) const, WrapMode), asCALL_THISCALL);
  318. // unsigned Material::GetShaderParameterHash() const | File: ../Graphics/Material.h
  319. engine->RegisterObjectMethod("Material", "uint GetShaderParameterHash() const", asMETHODPR(Material, GetShaderParameterHash, () const, unsigned), asCALL_THISCALL);
  320. // const HashMap<StringHash, MaterialShaderParameter>& Material::GetShaderParameters() const | File: ../Graphics/Material.h
  321. // Error: type "const HashMap<StringHash, MaterialShaderParameter>&" can not automatically bind
  322. // CullMode Material::GetShadowCullMode() const | File: ../Graphics/Material.h
  323. engine->RegisterObjectMethod("Material", "CullMode GetShadowCullMode() const", asMETHODPR(Material, GetShadowCullMode, () const, CullMode), asCALL_THISCALL);
  324. engine->RegisterObjectMethod("Material", "CullMode get_shadowCullMode() const", asMETHODPR(Material, GetShadowCullMode, () const, CullMode), asCALL_THISCALL);
  325. // bool Material::GetSpecular() const | File: ../Graphics/Material.h
  326. engine->RegisterObjectMethod("Material", "bool GetSpecular() const", asMETHODPR(Material, GetSpecular, () const, bool), asCALL_THISCALL);
  327. // Object* Object::GetSubsystem(StringHash type) const | File: ../Core/Object.h
  328. engine->RegisterObjectMethod("Material", "Object@+ GetSubsystem(StringHash) const", asMETHODPR(Material, GetSubsystem, (StringHash) const, Object*), asCALL_THISCALL);
  329. // template<class T> T* Object::GetSubsystem() const | File: ../Core/Object.h
  330. // Not registered because template
  331. // Technique* Material::GetTechnique(unsigned index) const | File: ../Graphics/Material.h
  332. engine->RegisterObjectMethod("Material", "Technique@+ GetTechnique(uint) const", asMETHODPR(Material, GetTechnique, (unsigned) const, Technique*), asCALL_THISCALL);
  333. engine->RegisterObjectMethod("Material", "Technique@+ get_techniques(uint) const", asMETHODPR(Material, GetTechnique, (unsigned) const, Technique*), asCALL_THISCALL);
  334. // const TechniqueEntry& Material::GetTechniqueEntry(unsigned index) const | File: ../Graphics/Material.h
  335. engine->RegisterObjectMethod("Material", "const TechniqueEntry& GetTechniqueEntry(uint) const", asMETHODPR(Material, GetTechniqueEntry, (unsigned) const, const TechniqueEntry&), asCALL_THISCALL);
  336. // const Vector<TechniqueEntry>& Material::GetTechniques() const | File: ../Graphics/Material.h
  337. // Error: type "const Vector<TechniqueEntry>&" can not automatically bind
  338. // Texture* Material::GetTexture(TextureUnit unit) const | File: ../Graphics/Material.h
  339. engine->RegisterObjectMethod("Material", "Texture@+ GetTexture(TextureUnit) const", asMETHODPR(Material, GetTexture, (TextureUnit) const, Texture*), asCALL_THISCALL);
  340. engine->RegisterObjectMethod("Material", "Texture@+ get_textures(TextureUnit) const", asMETHODPR(Material, GetTexture, (TextureUnit) const, Texture*), asCALL_THISCALL);
  341. // const HashMap<TextureUnit, SharedPtr<Texture>>& Material::GetTextures() const | File: ../Graphics/Material.h
  342. // Error: type "const HashMap<TextureUnit, SharedPtr<Texture>>&" can not automatically bind
  343. // static String Material::GetTextureUnitName(TextureUnit unit) | File: ../Graphics/Material.h
  344. engine->SetDefaultNamespace("Material");
  345. engine->RegisterGlobalFunction("String GetTextureUnitName(TextureUnit)", asFUNCTIONPR(Material::GetTextureUnitName, (TextureUnit), String), asCALL_CDECL);
  346. engine->SetDefaultNamespace("");
  347. // virtual StringHash Object::GetType() const =0 | File: ../Core/Object.h
  348. engine->RegisterObjectMethod("Material", "StringHash GetType() const", asMETHODPR(Material, GetType, () const, StringHash), asCALL_THISCALL);
  349. engine->RegisterObjectMethod("Material", "StringHash get_type() const", asMETHODPR(Material, GetType, () const, StringHash), asCALL_THISCALL);
  350. // virtual const TypeInfo* Object::GetTypeInfo() const =0 | File: ../Core/Object.h
  351. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  352. // static const TypeInfo* Object::GetTypeInfoStatic() | File: ../Core/Object.h
  353. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  354. // virtual const String& Object::GetTypeName() const =0 | File: ../Core/Object.h
  355. engine->RegisterObjectMethod("Material", "const String& GetTypeName() const", asMETHODPR(Material, GetTypeName, () const, const String&), asCALL_THISCALL);
  356. engine->RegisterObjectMethod("Material", "const String& get_typeName() const", asMETHODPR(Material, GetTypeName, () const, const String&), asCALL_THISCALL);
  357. // unsigned Resource::GetUseTimer() | File: ../Resource/Resource.h
  358. engine->RegisterObjectMethod("Material", "uint GetUseTimer()", asMETHODPR(Material, GetUseTimer, (), unsigned), asCALL_THISCALL);
  359. engine->RegisterObjectMethod("Material", "uint get_useTimer()", asMETHODPR(Material, GetUseTimer, (), unsigned), asCALL_THISCALL);
  360. // const String& Material::GetVertexShaderDefines() const | File: ../Graphics/Material.h
  361. engine->RegisterObjectMethod("Material", "const String& GetVertexShaderDefines() const", asMETHODPR(Material, GetVertexShaderDefines, () const, const String&), asCALL_THISCALL);
  362. engine->RegisterObjectMethod("Material", "const String& get_vertexShaderDefines() const", asMETHODPR(Material, GetVertexShaderDefines, () const, const String&), asCALL_THISCALL);
  363. // bool Object::HasEventHandlers() const | File: ../Core/Object.h
  364. engine->RegisterObjectMethod("Material", "bool HasEventHandlers() const", asMETHODPR(Material, HasEventHandlers, () const, bool), asCALL_THISCALL);
  365. // bool Object::HasSubscribedToEvent(StringHash eventType) const | File: ../Core/Object.h
  366. engine->RegisterObjectMethod("Material", "bool HasSubscribedToEvent(StringHash) const", asMETHODPR(Material, HasSubscribedToEvent, (StringHash) const, bool), asCALL_THISCALL);
  367. // bool Object::HasSubscribedToEvent(Object* sender, StringHash eventType) const | File: ../Core/Object.h
  368. engine->RegisterObjectMethod("Material", "bool HasSubscribedToEvent(Object@+, StringHash) const", asMETHODPR(Material, HasSubscribedToEvent, (Object*, StringHash) const, bool), asCALL_THISCALL);
  369. // bool Object::IsInstanceOf(StringHash type) const | File: ../Core/Object.h
  370. engine->RegisterObjectMethod("Material", "bool IsInstanceOf(StringHash) const", asMETHODPR(Material, IsInstanceOf, (StringHash) const, bool), asCALL_THISCALL);
  371. // bool Object::IsInstanceOf(const TypeInfo* typeInfo) const | File: ../Core/Object.h
  372. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  373. // template<typename T> bool Object::IsInstanceOf() const | File: ../Core/Object.h
  374. // Not registered because template
  375. // bool Material::Load(const XMLElement& source) | File: ../Graphics/Material.h
  376. engine->RegisterObjectMethod("Material", "bool Load(const XMLElement&in)", asMETHODPR(Material, Load, (const XMLElement&), bool), asCALL_THISCALL);
  377. // bool Material::Load(const JSONValue& source) | File: ../Graphics/Material.h
  378. engine->RegisterObjectMethod("Material", "bool Load(const JSONValue&in)", asMETHODPR(Material, Load, (const JSONValue&), bool), asCALL_THISCALL);
  379. // bool Resource::LoadFile(const String& fileName) | File: ../Resource/Resource.h
  380. engine->RegisterObjectMethod("Material", "bool LoadFile(const String&in)", asMETHODPR(Material, LoadFile, (const String&), bool), asCALL_THISCALL);
  381. engine->RegisterObjectMethod("Material", "bool Load(const String&in)", asMETHODPR(Material, LoadFile, (const String&), bool), asCALL_THISCALL);
  382. // void Material::MarkForAuxView(unsigned frameNumber) | File: ../Graphics/Material.h
  383. engine->RegisterObjectMethod("Material", "void MarkForAuxView(uint)", asMETHODPR(Material, MarkForAuxView, (unsigned), void), asCALL_THISCALL);
  384. // explicit Material::Material(Context* context) | File: ../Graphics/Material.h
  385. engine->RegisterObjectBehaviour("Material", asBEHAVE_FACTORY, "Material@+ f()", asFUNCTION(Material_Material_Context), asCALL_CDECL);
  386. // virtual void Object::OnEvent(Object* sender, StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  387. engine->RegisterObjectMethod("Material", "void OnEvent(Object@+, StringHash, VariantMap&)", asMETHODPR(Material, OnEvent, (Object*, StringHash, VariantMap&), void), asCALL_THISCALL);
  388. // static Variant Material::ParseShaderParameterValue(const String& value) | File: ../Graphics/Material.h
  389. engine->SetDefaultNamespace("Material");
  390. engine->RegisterGlobalFunction("Variant ParseShaderParameterValue(const String&in)", asFUNCTIONPR(Material::ParseShaderParameterValue, (const String&), Variant), asCALL_CDECL);
  391. engine->SetDefaultNamespace("");
  392. // RefCount* RefCounted::RefCountPtr() | File: ../Container/RefCounted.h
  393. // Error: type "RefCount*" can not automatically bind
  394. // int RefCounted::Refs() const | File: ../Container/RefCounted.h
  395. engine->RegisterObjectMethod("Material", "int Refs() const", asMETHODPR(Material, Refs, () const, int), asCALL_THISCALL);
  396. engine->RegisterObjectMethod("Material", "int get_refs() const", asMETHODPR(Material, Refs, () const, int), asCALL_THISCALL);
  397. // static void Material::RegisterObject(Context* context) | File: ../Graphics/Material.h
  398. // Context can be used as firs parameter of constructors only
  399. // void RefCounted::ReleaseRef() | File: ../Container/RefCounted.h
  400. engine->RegisterObjectBehaviour("Material", asBEHAVE_RELEASE, "void f()", asMETHODPR(Material, ReleaseRef, (), void), asCALL_THISCALL);
  401. // void Material::ReleaseShaders() | File: ../Graphics/Material.h
  402. engine->RegisterObjectMethod("Material", "void ReleaseShaders()", asMETHODPR(Material, ReleaseShaders, (), void), asCALL_THISCALL);
  403. // void Material::RemoveShaderParameter(const String& name) | File: ../Graphics/Material.h
  404. engine->RegisterObjectMethod("Material", "void RemoveShaderParameter(const String&in)", asMETHODPR(Material, RemoveShaderParameter, (const String&), void), asCALL_THISCALL);
  405. // void Resource::ResetUseTimer() | File: ../Resource/Resource.h
  406. engine->RegisterObjectMethod("Material", "void ResetUseTimer()", asMETHODPR(Material, ResetUseTimer, (), void), asCALL_THISCALL);
  407. // bool Material::Save(Serializer& dest) const override | File: ../Graphics/Material.h
  408. engine->RegisterObjectMethod("Material", "bool Save(Serializer&) const", asMETHODPR(Material, Save, (Serializer&) const, bool), asCALL_THISCALL);
  409. // bool Material::Save(XMLElement& dest) const | File: ../Graphics/Material.h
  410. engine->RegisterObjectMethod("Material", "bool Save(XMLElement&) const", asMETHODPR(Material, Save, (XMLElement&) const, bool), asCALL_THISCALL);
  411. // bool Material::Save(JSONValue& dest) const | File: ../Graphics/Material.h
  412. engine->RegisterObjectMethod("Material", "bool Save(JSONValue&) const", asMETHODPR(Material, Save, (JSONValue&) const, bool), asCALL_THISCALL);
  413. // virtual bool Resource::SaveFile(const String& fileName) const | File: ../Resource/Resource.h
  414. engine->RegisterObjectMethod("Material", "bool SaveFile(const String&in) const", asMETHODPR(Material, SaveFile, (const String&) const, bool), asCALL_THISCALL);
  415. engine->RegisterObjectMethod("Material", "bool Save(const String&in) const", asMETHODPR(Material, SaveFile, (const String&) const, bool), asCALL_THISCALL);
  416. // void Object::SendEvent(StringHash eventType) | File: ../Core/Object.h
  417. engine->RegisterObjectMethod("Material", "void SendEvent(StringHash)", asMETHODPR(Material, SendEvent, (StringHash), void), asCALL_THISCALL);
  418. // void Object::SendEvent(StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  419. engine->RegisterObjectMethod("Material", "void SendEvent(StringHash, VariantMap&)", asMETHODPR(Material, SendEvent, (StringHash, VariantMap&), void), asCALL_THISCALL);
  420. // template<typename... Args> void Object::SendEvent(StringHash eventType, Args... args) | File: ../Core/Object.h
  421. // Not registered because template
  422. // void Material::SetAlphaToCoverage(bool enable) | File: ../Graphics/Material.h
  423. engine->RegisterObjectMethod("Material", "void SetAlphaToCoverage(bool)", asMETHODPR(Material, SetAlphaToCoverage, (bool), void), asCALL_THISCALL);
  424. engine->RegisterObjectMethod("Material", "void set_alphaToCoverage(bool)", asMETHODPR(Material, SetAlphaToCoverage, (bool), void), asCALL_THISCALL);
  425. // void Resource::SetAsyncLoadState(AsyncLoadState newState) | File: ../Resource/Resource.h
  426. engine->RegisterObjectMethod("Material", "void SetAsyncLoadState(AsyncLoadState)", asMETHODPR(Material, SetAsyncLoadState, (AsyncLoadState), void), asCALL_THISCALL);
  427. // void Object::SetBlockEvents(bool block) | File: ../Core/Object.h
  428. engine->RegisterObjectMethod("Material", "void SetBlockEvents(bool)", asMETHODPR(Material, SetBlockEvents, (bool), void), asCALL_THISCALL);
  429. // void Material::SetCullMode(CullMode mode) | File: ../Graphics/Material.h
  430. engine->RegisterObjectMethod("Material", "void SetCullMode(CullMode)", asMETHODPR(Material, SetCullMode, (CullMode), void), asCALL_THISCALL);
  431. engine->RegisterObjectMethod("Material", "void set_cullMode(CullMode)", asMETHODPR(Material, SetCullMode, (CullMode), void), asCALL_THISCALL);
  432. // void Material::SetDepthBias(const BiasParameters& parameters) | File: ../Graphics/Material.h
  433. engine->RegisterObjectMethod("Material", "void SetDepthBias(const BiasParameters&in)", asMETHODPR(Material, SetDepthBias, (const BiasParameters&), void), asCALL_THISCALL);
  434. engine->RegisterObjectMethod("Material", "void set_depthBias(const BiasParameters&in)", asMETHODPR(Material, SetDepthBias, (const BiasParameters&), void), asCALL_THISCALL);
  435. // void Material::SetFillMode(FillMode mode) | File: ../Graphics/Material.h
  436. engine->RegisterObjectMethod("Material", "void SetFillMode(FillMode)", asMETHODPR(Material, SetFillMode, (FillMode), void), asCALL_THISCALL);
  437. engine->RegisterObjectMethod("Material", "void set_fillMode(FillMode)", asMETHODPR(Material, SetFillMode, (FillMode), void), asCALL_THISCALL);
  438. // void Object::SetGlobalVar(StringHash key, const Variant& value) | File: ../Core/Object.h
  439. engine->RegisterObjectMethod("Material", "void SetGlobalVar(StringHash, const Variant&in)", asMETHODPR(Material, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  440. engine->RegisterObjectMethod("Material", "void set_globalVar(StringHash, const Variant&in)", asMETHODPR(Material, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  441. // void Material::SetLineAntiAlias(bool enable) | File: ../Graphics/Material.h
  442. engine->RegisterObjectMethod("Material", "void SetLineAntiAlias(bool)", asMETHODPR(Material, SetLineAntiAlias, (bool), void), asCALL_THISCALL);
  443. engine->RegisterObjectMethod("Material", "void set_lineAntiAlias(bool)", asMETHODPR(Material, SetLineAntiAlias, (bool), void), asCALL_THISCALL);
  444. // void Resource::SetMemoryUse(unsigned size) | File: ../Resource/Resource.h
  445. engine->RegisterObjectMethod("Material", "void SetMemoryUse(uint)", asMETHODPR(Material, SetMemoryUse, (unsigned), void), asCALL_THISCALL);
  446. // void Resource::SetName(const String& name) | File: ../Resource/Resource.h
  447. engine->RegisterObjectMethod("Material", "void SetName(const String&in)", asMETHODPR(Material, SetName, (const String&), void), asCALL_THISCALL);
  448. engine->RegisterObjectMethod("Material", "void set_name(const String&in)", asMETHODPR(Material, SetName, (const String&), void), asCALL_THISCALL);
  449. // void Material::SetNumTechniques(unsigned num) | File: ../Graphics/Material.h
  450. engine->RegisterObjectMethod("Material", "void SetNumTechniques(uint)", asMETHODPR(Material, SetNumTechniques, (unsigned), void), asCALL_THISCALL);
  451. engine->RegisterObjectMethod("Material", "void set_numTechniques(uint)", asMETHODPR(Material, SetNumTechniques, (unsigned), void), asCALL_THISCALL);
  452. // void Material::SetOcclusion(bool enable) | File: ../Graphics/Material.h
  453. engine->RegisterObjectMethod("Material", "void SetOcclusion(bool)", asMETHODPR(Material, SetOcclusion, (bool), void), asCALL_THISCALL);
  454. engine->RegisterObjectMethod("Material", "void set_occlusion(bool)", asMETHODPR(Material, SetOcclusion, (bool), void), asCALL_THISCALL);
  455. // void Material::SetPixelShaderDefines(const String& defines) | File: ../Graphics/Material.h
  456. engine->RegisterObjectMethod("Material", "void SetPixelShaderDefines(const String&in)", asMETHODPR(Material, SetPixelShaderDefines, (const String&), void), asCALL_THISCALL);
  457. engine->RegisterObjectMethod("Material", "void set_pixelShaderDefines(const String&in)", asMETHODPR(Material, SetPixelShaderDefines, (const String&), void), asCALL_THISCALL);
  458. // void Material::SetRenderOrder(unsigned char order) | File: ../Graphics/Material.h
  459. engine->RegisterObjectMethod("Material", "void SetRenderOrder(uint8)", asMETHODPR(Material, SetRenderOrder, (unsigned char), void), asCALL_THISCALL);
  460. engine->RegisterObjectMethod("Material", "void set_renderOrder(uint8)", asMETHODPR(Material, SetRenderOrder, (unsigned char), void), asCALL_THISCALL);
  461. // void Material::SetScene(Scene* scene) | File: ../Graphics/Material.h
  462. engine->RegisterObjectMethod("Material", "void SetScene(Scene@+)", asMETHODPR(Material, SetScene, (Scene*), void), asCALL_THISCALL);
  463. engine->RegisterObjectMethod("Material", "void set_scene(Scene@+)", asMETHODPR(Material, SetScene, (Scene*), void), asCALL_THISCALL);
  464. // void Material::SetShaderParameter(const String& name, const Variant& value) | File: ../Graphics/Material.h
  465. engine->RegisterObjectMethod("Material", "void SetShaderParameter(const String&in, const Variant&in)", asMETHODPR(Material, SetShaderParameter, (const String&, const Variant&), void), asCALL_THISCALL);
  466. engine->RegisterObjectMethod("Material", "void set_shaderParameters(const String&in, const Variant&in)", asMETHODPR(Material, SetShaderParameter, (const String&, const Variant&), void), asCALL_THISCALL);
  467. // void Material::SetShaderParameterAnimation(const String& name, ValueAnimation* animation, WrapMode wrapMode=WM_LOOP, float speed=1.0f) | File: ../Graphics/Material.h
  468. engine->RegisterObjectMethod("Material", "void SetShaderParameterAnimation(const String&in, ValueAnimation@+, WrapMode = WM_LOOP, float = 1.0f)", asMETHODPR(Material, SetShaderParameterAnimation, (const String&, ValueAnimation*, WrapMode, float), void), asCALL_THISCALL);
  469. // void Material::SetShaderParameterAnimationSpeed(const String& name, float speed) | File: ../Graphics/Material.h
  470. engine->RegisterObjectMethod("Material", "void SetShaderParameterAnimationSpeed(const String&in, float)", asMETHODPR(Material, SetShaderParameterAnimationSpeed, (const String&, float), void), asCALL_THISCALL);
  471. // void Material::SetShaderParameterAnimationWrapMode(const String& name, WrapMode wrapMode) | File: ../Graphics/Material.h
  472. engine->RegisterObjectMethod("Material", "void SetShaderParameterAnimationWrapMode(const String&in, WrapMode)", asMETHODPR(Material, SetShaderParameterAnimationWrapMode, (const String&, WrapMode), void), asCALL_THISCALL);
  473. // void Material::SetShadowCullMode(CullMode mode) | File: ../Graphics/Material.h
  474. engine->RegisterObjectMethod("Material", "void SetShadowCullMode(CullMode)", asMETHODPR(Material, SetShadowCullMode, (CullMode), void), asCALL_THISCALL);
  475. engine->RegisterObjectMethod("Material", "void set_shadowCullMode(CullMode)", asMETHODPR(Material, SetShadowCullMode, (CullMode), void), asCALL_THISCALL);
  476. // void Material::SetTechnique(unsigned index, Technique* tech, MaterialQuality qualityLevel=QUALITY_LOW, float lodDistance=0.0f) | File: ../Graphics/Material.h
  477. engine->RegisterObjectMethod("Material", "void SetTechnique(uint, Technique@+, MaterialQuality = QUALITY_LOW, float = 0.0f)", asMETHODPR(Material, SetTechnique, (unsigned, Technique*, MaterialQuality, float), void), asCALL_THISCALL);
  478. // void Material::SetTexture(TextureUnit unit, Texture* texture) | File: ../Graphics/Material.h
  479. engine->RegisterObjectMethod("Material", "void SetTexture(TextureUnit, Texture@+)", asMETHODPR(Material, SetTexture, (TextureUnit, Texture*), void), asCALL_THISCALL);
  480. engine->RegisterObjectMethod("Material", "void set_textures(TextureUnit, Texture@+)", asMETHODPR(Material, SetTexture, (TextureUnit, Texture*), void), asCALL_THISCALL);
  481. // void Material::SetUVTransform(const Vector2& offset, float rotation, const Vector2& repeat) | File: ../Graphics/Material.h
  482. engine->RegisterObjectMethod("Material", "void SetUVTransform(const Vector2&in, float, const Vector2&in)", asMETHODPR(Material, SetUVTransform, (const Vector2&, float, const Vector2&), void), asCALL_THISCALL);
  483. // void Material::SetUVTransform(const Vector2& offset, float rotation, float repeat) | File: ../Graphics/Material.h
  484. engine->RegisterObjectMethod("Material", "void SetUVTransform(const Vector2&in, float, float)", asMETHODPR(Material, SetUVTransform, (const Vector2&, float, float), void), asCALL_THISCALL);
  485. // void Material::SetVertexShaderDefines(const String& defines) | File: ../Graphics/Material.h
  486. engine->RegisterObjectMethod("Material", "void SetVertexShaderDefines(const String&in)", asMETHODPR(Material, SetVertexShaderDefines, (const String&), void), asCALL_THISCALL);
  487. engine->RegisterObjectMethod("Material", "void set_vertexShaderDefines(const String&in)", asMETHODPR(Material, SetVertexShaderDefines, (const String&), void), asCALL_THISCALL);
  488. // void Material::SortTechniques() | File: ../Graphics/Material.h
  489. engine->RegisterObjectMethod("Material", "void SortTechniques()", asMETHODPR(Material, SortTechniques, (), void), asCALL_THISCALL);
  490. // void Object::SubscribeToEvent(StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  491. // Error: type "EventHandler*" can not automatically bind
  492. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  493. // Error: type "EventHandler*" can not automatically bind
  494. // void Object::SubscribeToEvent(StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  495. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  496. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  497. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  498. // void Object::UnsubscribeFromAllEvents() | File: ../Core/Object.h
  499. engine->RegisterObjectMethod("Material", "void UnsubscribeFromAllEvents()", asMETHODPR(Material, UnsubscribeFromAllEvents, (), void), asCALL_THISCALL);
  500. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  501. engine->RegisterObjectMethod("Material", "void UnsubscribeFromAllEventsExcept(Array<StringHash>@+, bool)", asFUNCTION(Material_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool), asCALL_CDECL_OBJFIRST);
  502. // void Object::UnsubscribeFromEvent(StringHash eventType) | File: ../Core/Object.h
  503. engine->RegisterObjectMethod("Material", "void UnsubscribeFromEvent(StringHash)", asMETHODPR(Material, UnsubscribeFromEvent, (StringHash), void), asCALL_THISCALL);
  504. // void Object::UnsubscribeFromEvent(Object* sender, StringHash eventType) | File: ../Core/Object.h
  505. engine->RegisterObjectMethod("Material", "void UnsubscribeFromEvent(Object@+, StringHash)", asMETHODPR(Material, UnsubscribeFromEvent, (Object*, StringHash), void), asCALL_THISCALL);
  506. // void Object::UnsubscribeFromEvents(Object* sender) | File: ../Core/Object.h
  507. engine->RegisterObjectMethod("Material", "void UnsubscribeFromEvents(Object@+)", asMETHODPR(Material, UnsubscribeFromEvents, (Object*), void), asCALL_THISCALL);
  508. // int RefCounted::WeakRefs() const | File: ../Container/RefCounted.h
  509. engine->RegisterObjectMethod("Material", "int WeakRefs() const", asMETHODPR(Material, WeakRefs, () const, int), asCALL_THISCALL);
  510. engine->RegisterObjectMethod("Material", "int get_weakRefs() const", asMETHODPR(Material, WeakRefs, () const, int), asCALL_THISCALL);
  511. #ifdef REGISTER_MANUAL_PART_Resource
  512. REGISTER_MANUAL_PART_Resource(Material, "Material")
  513. #endif
  514. #ifdef REGISTER_MANUAL_PART_Object
  515. REGISTER_MANUAL_PART_Object(Material, "Material")
  516. #endif
  517. #ifdef REGISTER_MANUAL_PART_RefCounted
  518. REGISTER_MANUAL_PART_RefCounted(Material, "Material")
  519. #endif
  520. #ifdef REGISTER_MANUAL_PART_Material
  521. REGISTER_MANUAL_PART_Material(Material, "Material")
  522. #endif
  523. RegisterSubclass<Resource, Material>(engine, "Resource", "Material");
  524. RegisterSubclass<Object, Material>(engine, "Object", "Material");
  525. RegisterSubclass<RefCounted, Material>(engine, "RefCounted", "Material");
  526. // const Matrix2 Matrix2::IDENTITY | File: ../Math/Matrix2.h
  527. engine->SetDefaultNamespace("Matrix2");
  528. engine->RegisterGlobalProperty("const Matrix2 IDENTITY", (void*)&Matrix2::IDENTITY);
  529. engine->SetDefaultNamespace("");
  530. // float Matrix2::m00_ | File: ../Math/Matrix2.h
  531. engine->RegisterObjectProperty("Matrix2", "float m00", offsetof(Matrix2, m00_));
  532. // float Matrix2::m01_ | File: ../Math/Matrix2.h
  533. engine->RegisterObjectProperty("Matrix2", "float m01", offsetof(Matrix2, m01_));
  534. // float Matrix2::m10_ | File: ../Math/Matrix2.h
  535. engine->RegisterObjectProperty("Matrix2", "float m10", offsetof(Matrix2, m10_));
  536. // float Matrix2::m11_ | File: ../Math/Matrix2.h
  537. engine->RegisterObjectProperty("Matrix2", "float m11", offsetof(Matrix2, m11_));
  538. // const Matrix2 Matrix2::ZERO | File: ../Math/Matrix2.h
  539. engine->SetDefaultNamespace("Matrix2");
  540. engine->RegisterGlobalProperty("const Matrix2 ZERO", (void*)&Matrix2::ZERO);
  541. engine->SetDefaultNamespace("");
  542. // static void Matrix2::BulkTranspose(float* dest, const float* src, unsigned count) | File: ../Math/Matrix2.h
  543. // Error: type "float*" can not automatically bind
  544. // const float* Matrix2::Data() const | File: ../Math/Matrix2.h
  545. // Error: type "const float*" can not automatically bind
  546. // bool Matrix2::Equals(const Matrix2& rhs) const | File: ../Math/Matrix2.h
  547. engine->RegisterObjectMethod("Matrix2", "bool Equals(const Matrix2&in) const", asMETHODPR(Matrix2, Equals, (const Matrix2&) const, bool), asCALL_THISCALL);
  548. // Matrix2 Matrix2::Inverse() const | File: ../Math/Matrix2.h
  549. engine->RegisterObjectMethod("Matrix2", "Matrix2 Inverse() const", asMETHODPR(Matrix2, Inverse, () const, Matrix2), asCALL_THISCALL);
  550. // bool Matrix2::IsInf() const | File: ../Math/Matrix2.h
  551. engine->RegisterObjectMethod("Matrix2", "bool IsInf() const", asMETHODPR(Matrix2, IsInf, () const, bool), asCALL_THISCALL);
  552. // bool Matrix2::IsNaN() const | File: ../Math/Matrix2.h
  553. engine->RegisterObjectMethod("Matrix2", "bool IsNaN() const", asMETHODPR(Matrix2, IsNaN, () const, bool), asCALL_THISCALL);
  554. // Matrix2::Matrix2(const Matrix2& matrix) noexcept=default | File: ../Math/Matrix2.h
  555. engine->RegisterObjectBehaviour("Matrix2", asBEHAVE_CONSTRUCT, "void f(const Matrix2&in)", asFUNCTION(Matrix2_Matrix2_Matrix2), asCALL_CDECL_OBJFIRST);
  556. // Matrix2::Matrix2(float v00, float v01, float v10, float v11) noexcept | File: ../Math/Matrix2.h
  557. engine->RegisterObjectBehaviour("Matrix2", asBEHAVE_CONSTRUCT, "void f(float, float, float, float)", asFUNCTION(Matrix2_Matrix2_float_float_float_float), asCALL_CDECL_OBJFIRST);
  558. // explicit Matrix2::Matrix2(const float* data) noexcept | File: ../Math/Matrix2.h
  559. // Error: type "const float*" can not automatically bind
  560. // Vector2 Matrix2::operator*(const Vector2& rhs) const | File: ../Math/Matrix2.h
  561. engine->RegisterObjectMethod("Matrix2", "Vector2 opMul(const Vector2&in) const", asMETHODPR(Matrix2, operator*, (const Vector2&) const, Vector2), asCALL_THISCALL);
  562. // Matrix2 Matrix2::operator*(float rhs) const | File: ../Math/Matrix2.h
  563. engine->RegisterObjectMethod("Matrix2", "Matrix2 opMul(float) const", asMETHODPR(Matrix2, operator*, (float) const, Matrix2), asCALL_THISCALL);
  564. // Matrix2 Matrix2::operator*(const Matrix2& rhs) const | File: ../Math/Matrix2.h
  565. engine->RegisterObjectMethod("Matrix2", "Matrix2 opMul(const Matrix2&in) const", asMETHODPR(Matrix2, operator*, (const Matrix2&) const, Matrix2), asCALL_THISCALL);
  566. // Matrix2 Matrix2::operator+(const Matrix2& rhs) const | File: ../Math/Matrix2.h
  567. engine->RegisterObjectMethod("Matrix2", "Matrix2 opAdd(const Matrix2&in) const", asMETHODPR(Matrix2, operator+, (const Matrix2&) const, Matrix2), asCALL_THISCALL);
  568. // Matrix2 Matrix2::operator-(const Matrix2& rhs) const | File: ../Math/Matrix2.h
  569. engine->RegisterObjectMethod("Matrix2", "Matrix2 opSub(const Matrix2&in) const", asMETHODPR(Matrix2, operator-, (const Matrix2&) const, Matrix2), asCALL_THISCALL);
  570. // Matrix2& Matrix2::operator=(const Matrix2& rhs) noexcept=default | File: ../Math/Matrix2.h
  571. engine->RegisterObjectMethod("Matrix2", "Matrix2& opAssign(const Matrix2&in)", asMETHODPR(Matrix2, operator=, (const Matrix2&), Matrix2&), asCALL_THISCALL);
  572. // bool Matrix2::operator==(const Matrix2& rhs) const | File: ../Math/Matrix2.h
  573. engine->RegisterObjectMethod("Matrix2", "bool opEquals(const Matrix2&in) const", asMETHODPR(Matrix2, operator==, (const Matrix2&) const, bool), asCALL_THISCALL);
  574. // Vector2 Matrix2::Scale() const | File: ../Math/Matrix2.h
  575. engine->RegisterObjectMethod("Matrix2", "Vector2 Scale() const", asMETHODPR(Matrix2, Scale, () const, Vector2), asCALL_THISCALL);
  576. // Matrix2 Matrix2::Scaled(const Vector2& scale) const | File: ../Math/Matrix2.h
  577. engine->RegisterObjectMethod("Matrix2", "Matrix2 Scaled(const Vector2&in) const", asMETHODPR(Matrix2, Scaled, (const Vector2&) const, Matrix2), asCALL_THISCALL);
  578. // void Matrix2::SetScale(const Vector2& scale) | File: ../Math/Matrix2.h
  579. engine->RegisterObjectMethod("Matrix2", "void SetScale(const Vector2&in)", asMETHODPR(Matrix2, SetScale, (const Vector2&), void), asCALL_THISCALL);
  580. // void Matrix2::SetScale(float scale) | File: ../Math/Matrix2.h
  581. engine->RegisterObjectMethod("Matrix2", "void SetScale(float)", asMETHODPR(Matrix2, SetScale, (float), void), asCALL_THISCALL);
  582. // String Matrix2::ToString() const | File: ../Math/Matrix2.h
  583. engine->RegisterObjectMethod("Matrix2", "String ToString() const", asMETHODPR(Matrix2, ToString, () const, String), asCALL_THISCALL);
  584. // Matrix2 Matrix2::Transpose() const | File: ../Math/Matrix2.h
  585. engine->RegisterObjectMethod("Matrix2", "Matrix2 Transpose() const", asMETHODPR(Matrix2, Transpose, () const, Matrix2), asCALL_THISCALL);
  586. #ifdef REGISTER_MANUAL_PART_Matrix2
  587. REGISTER_MANUAL_PART_Matrix2(Matrix2, "Matrix2")
  588. #endif
  589. // const Matrix3 Matrix3::IDENTITY | File: ../Math/Matrix3.h
  590. engine->SetDefaultNamespace("Matrix3");
  591. engine->RegisterGlobalProperty("const Matrix3 IDENTITY", (void*)&Matrix3::IDENTITY);
  592. engine->SetDefaultNamespace("");
  593. // float Matrix3::m00_ | File: ../Math/Matrix3.h
  594. engine->RegisterObjectProperty("Matrix3", "float m00", offsetof(Matrix3, m00_));
  595. // float Matrix3::m01_ | File: ../Math/Matrix3.h
  596. engine->RegisterObjectProperty("Matrix3", "float m01", offsetof(Matrix3, m01_));
  597. // float Matrix3::m02_ | File: ../Math/Matrix3.h
  598. engine->RegisterObjectProperty("Matrix3", "float m02", offsetof(Matrix3, m02_));
  599. // float Matrix3::m10_ | File: ../Math/Matrix3.h
  600. engine->RegisterObjectProperty("Matrix3", "float m10", offsetof(Matrix3, m10_));
  601. // float Matrix3::m11_ | File: ../Math/Matrix3.h
  602. engine->RegisterObjectProperty("Matrix3", "float m11", offsetof(Matrix3, m11_));
  603. // float Matrix3::m12_ | File: ../Math/Matrix3.h
  604. engine->RegisterObjectProperty("Matrix3", "float m12", offsetof(Matrix3, m12_));
  605. // float Matrix3::m20_ | File: ../Math/Matrix3.h
  606. engine->RegisterObjectProperty("Matrix3", "float m20", offsetof(Matrix3, m20_));
  607. // float Matrix3::m21_ | File: ../Math/Matrix3.h
  608. engine->RegisterObjectProperty("Matrix3", "float m21", offsetof(Matrix3, m21_));
  609. // float Matrix3::m22_ | File: ../Math/Matrix3.h
  610. engine->RegisterObjectProperty("Matrix3", "float m22", offsetof(Matrix3, m22_));
  611. // const Matrix3 Matrix3::ZERO | File: ../Math/Matrix3.h
  612. engine->SetDefaultNamespace("Matrix3");
  613. engine->RegisterGlobalProperty("const Matrix3 ZERO", (void*)&Matrix3::ZERO);
  614. engine->SetDefaultNamespace("");
  615. // static void Matrix3::BulkTranspose(float* dest, const float* src, unsigned count) | File: ../Math/Matrix3.h
  616. // Error: type "float*" can not automatically bind
  617. // Vector3 Matrix3::Column(unsigned j) const | File: ../Math/Matrix3.h
  618. engine->RegisterObjectMethod("Matrix3", "Vector3 Column(uint) const", asMETHODPR(Matrix3, Column, (unsigned) const, Vector3), asCALL_THISCALL);
  619. // const float* Matrix3::Data() const | File: ../Math/Matrix3.h
  620. // Error: type "const float*" can not automatically bind
  621. // float Matrix3::Element(unsigned i, unsigned j) const | File: ../Math/Matrix3.h
  622. engine->RegisterObjectMethod("Matrix3", "float Element(uint, uint) const", asMETHODPR(Matrix3, Element, (unsigned, unsigned) const, float), asCALL_THISCALL);
  623. // bool Matrix3::Equals(const Matrix3& rhs) const | File: ../Math/Matrix3.h
  624. engine->RegisterObjectMethod("Matrix3", "bool Equals(const Matrix3&in) const", asMETHODPR(Matrix3, Equals, (const Matrix3&) const, bool), asCALL_THISCALL);
  625. // Matrix3 Matrix3::Inverse() const | File: ../Math/Matrix3.h
  626. engine->RegisterObjectMethod("Matrix3", "Matrix3 Inverse() const", asMETHODPR(Matrix3, Inverse, () const, Matrix3), asCALL_THISCALL);
  627. // bool Matrix3::IsInf() const | File: ../Math/Matrix3.h
  628. engine->RegisterObjectMethod("Matrix3", "bool IsInf() const", asMETHODPR(Matrix3, IsInf, () const, bool), asCALL_THISCALL);
  629. // bool Matrix3::IsNaN() const | File: ../Math/Matrix3.h
  630. engine->RegisterObjectMethod("Matrix3", "bool IsNaN() const", asMETHODPR(Matrix3, IsNaN, () const, bool), asCALL_THISCALL);
  631. // Matrix3::Matrix3(const Matrix3& matrix) noexcept=default | File: ../Math/Matrix3.h
  632. engine->RegisterObjectBehaviour("Matrix3", asBEHAVE_CONSTRUCT, "void f(const Matrix3&in)", asFUNCTION(Matrix3_Matrix3_Matrix3), asCALL_CDECL_OBJFIRST);
  633. // Matrix3::Matrix3(float v00, float v01, float v02, float v10, float v11, float v12, float v20, float v21, float v22) noexcept | File: ../Math/Matrix3.h
  634. engine->RegisterObjectBehaviour("Matrix3", asBEHAVE_CONSTRUCT, "void f(float, float, float, float, float, float, float, float, float)", asFUNCTION(Matrix3_Matrix3_float_float_float_float_float_float_float_float_float), asCALL_CDECL_OBJFIRST);
  635. // explicit Matrix3::Matrix3(const float* data) noexcept | File: ../Math/Matrix3.h
  636. // Error: type "const float*" can not automatically bind
  637. // Vector3 Matrix3::operator*(const Vector3& rhs) const | File: ../Math/Matrix3.h
  638. engine->RegisterObjectMethod("Matrix3", "Vector3 opMul(const Vector3&in) const", asMETHODPR(Matrix3, operator*, (const Vector3&) const, Vector3), asCALL_THISCALL);
  639. // Matrix3 Matrix3::operator*(float rhs) const | File: ../Math/Matrix3.h
  640. engine->RegisterObjectMethod("Matrix3", "Matrix3 opMul(float) const", asMETHODPR(Matrix3, operator*, (float) const, Matrix3), asCALL_THISCALL);
  641. // Matrix3 Matrix3::operator*(const Matrix3& rhs) const | File: ../Math/Matrix3.h
  642. engine->RegisterObjectMethod("Matrix3", "Matrix3 opMul(const Matrix3&in) const", asMETHODPR(Matrix3, operator*, (const Matrix3&) const, Matrix3), asCALL_THISCALL);
  643. // Matrix3 Matrix3::operator+(const Matrix3& rhs) const | File: ../Math/Matrix3.h
  644. engine->RegisterObjectMethod("Matrix3", "Matrix3 opAdd(const Matrix3&in) const", asMETHODPR(Matrix3, operator+, (const Matrix3&) const, Matrix3), asCALL_THISCALL);
  645. // Matrix3 Matrix3::operator-(const Matrix3& rhs) const | File: ../Math/Matrix3.h
  646. engine->RegisterObjectMethod("Matrix3", "Matrix3 opSub(const Matrix3&in) const", asMETHODPR(Matrix3, operator-, (const Matrix3&) const, Matrix3), asCALL_THISCALL);
  647. // Matrix3& Matrix3::operator=(const Matrix3& rhs) noexcept=default | File: ../Math/Matrix3.h
  648. engine->RegisterObjectMethod("Matrix3", "Matrix3& opAssign(const Matrix3&in)", asMETHODPR(Matrix3, operator=, (const Matrix3&), Matrix3&), asCALL_THISCALL);
  649. // bool Matrix3::operator==(const Matrix3& rhs) const | File: ../Math/Matrix3.h
  650. engine->RegisterObjectMethod("Matrix3", "bool opEquals(const Matrix3&in) const", asMETHODPR(Matrix3, operator==, (const Matrix3&) const, bool), asCALL_THISCALL);
  651. // Vector3 Matrix3::Row(unsigned i) const | File: ../Math/Matrix3.h
  652. engine->RegisterObjectMethod("Matrix3", "Vector3 Row(uint) const", asMETHODPR(Matrix3, Row, (unsigned) const, Vector3), asCALL_THISCALL);
  653. // Vector3 Matrix3::Scale() const | File: ../Math/Matrix3.h
  654. engine->RegisterObjectMethod("Matrix3", "Vector3 Scale() const", asMETHODPR(Matrix3, Scale, () const, Vector3), asCALL_THISCALL);
  655. // Matrix3 Matrix3::Scaled(const Vector3& scale) const | File: ../Math/Matrix3.h
  656. engine->RegisterObjectMethod("Matrix3", "Matrix3 Scaled(const Vector3&in) const", asMETHODPR(Matrix3, Scaled, (const Vector3&) const, Matrix3), asCALL_THISCALL);
  657. // void Matrix3::SetScale(const Vector3& scale) | File: ../Math/Matrix3.h
  658. engine->RegisterObjectMethod("Matrix3", "void SetScale(const Vector3&in)", asMETHODPR(Matrix3, SetScale, (const Vector3&), void), asCALL_THISCALL);
  659. // void Matrix3::SetScale(float scale) | File: ../Math/Matrix3.h
  660. engine->RegisterObjectMethod("Matrix3", "void SetScale(float)", asMETHODPR(Matrix3, SetScale, (float), void), asCALL_THISCALL);
  661. // Vector3 Matrix3::SignedScale(const Matrix3& rotation) const | File: ../Math/Matrix3.h
  662. engine->RegisterObjectMethod("Matrix3", "Vector3 SignedScale(const Matrix3&in) const", asMETHODPR(Matrix3, SignedScale, (const Matrix3&) const, Vector3), asCALL_THISCALL);
  663. // String Matrix3::ToString() const | File: ../Math/Matrix3.h
  664. engine->RegisterObjectMethod("Matrix3", "String ToString() const", asMETHODPR(Matrix3, ToString, () const, String), asCALL_THISCALL);
  665. // Matrix3 Matrix3::Transpose() const | File: ../Math/Matrix3.h
  666. engine->RegisterObjectMethod("Matrix3", "Matrix3 Transpose() const", asMETHODPR(Matrix3, Transpose, () const, Matrix3), asCALL_THISCALL);
  667. #ifdef REGISTER_MANUAL_PART_Matrix3
  668. REGISTER_MANUAL_PART_Matrix3(Matrix3, "Matrix3")
  669. #endif
  670. // const Matrix3x4 Matrix3x4::IDENTITY | File: ../Math/Matrix3x4.h
  671. engine->SetDefaultNamespace("Matrix3x4");
  672. engine->RegisterGlobalProperty("const Matrix3x4 IDENTITY", (void*)&Matrix3x4::IDENTITY);
  673. engine->SetDefaultNamespace("");
  674. // float Matrix3x4::m00_ | File: ../Math/Matrix3x4.h
  675. engine->RegisterObjectProperty("Matrix3x4", "float m00", offsetof(Matrix3x4, m00_));
  676. // float Matrix3x4::m01_ | File: ../Math/Matrix3x4.h
  677. engine->RegisterObjectProperty("Matrix3x4", "float m01", offsetof(Matrix3x4, m01_));
  678. // float Matrix3x4::m02_ | File: ../Math/Matrix3x4.h
  679. engine->RegisterObjectProperty("Matrix3x4", "float m02", offsetof(Matrix3x4, m02_));
  680. // float Matrix3x4::m03_ | File: ../Math/Matrix3x4.h
  681. engine->RegisterObjectProperty("Matrix3x4", "float m03", offsetof(Matrix3x4, m03_));
  682. // float Matrix3x4::m10_ | File: ../Math/Matrix3x4.h
  683. engine->RegisterObjectProperty("Matrix3x4", "float m10", offsetof(Matrix3x4, m10_));
  684. // float Matrix3x4::m11_ | File: ../Math/Matrix3x4.h
  685. engine->RegisterObjectProperty("Matrix3x4", "float m11", offsetof(Matrix3x4, m11_));
  686. // float Matrix3x4::m12_ | File: ../Math/Matrix3x4.h
  687. engine->RegisterObjectProperty("Matrix3x4", "float m12", offsetof(Matrix3x4, m12_));
  688. // float Matrix3x4::m13_ | File: ../Math/Matrix3x4.h
  689. engine->RegisterObjectProperty("Matrix3x4", "float m13", offsetof(Matrix3x4, m13_));
  690. // float Matrix3x4::m20_ | File: ../Math/Matrix3x4.h
  691. engine->RegisterObjectProperty("Matrix3x4", "float m20", offsetof(Matrix3x4, m20_));
  692. // float Matrix3x4::m21_ | File: ../Math/Matrix3x4.h
  693. engine->RegisterObjectProperty("Matrix3x4", "float m21", offsetof(Matrix3x4, m21_));
  694. // float Matrix3x4::m22_ | File: ../Math/Matrix3x4.h
  695. engine->RegisterObjectProperty("Matrix3x4", "float m22", offsetof(Matrix3x4, m22_));
  696. // float Matrix3x4::m23_ | File: ../Math/Matrix3x4.h
  697. engine->RegisterObjectProperty("Matrix3x4", "float m23", offsetof(Matrix3x4, m23_));
  698. // const Matrix3x4 Matrix3x4::ZERO | File: ../Math/Matrix3x4.h
  699. engine->SetDefaultNamespace("Matrix3x4");
  700. engine->RegisterGlobalProperty("const Matrix3x4 ZERO", (void*)&Matrix3x4::ZERO);
  701. engine->SetDefaultNamespace("");
  702. // Vector3 Matrix3x4::Column(unsigned j) const | File: ../Math/Matrix3x4.h
  703. engine->RegisterObjectMethod("Matrix3x4", "Vector3 Column(uint) const", asMETHODPR(Matrix3x4, Column, (unsigned) const, Vector3), asCALL_THISCALL);
  704. // const float* Matrix3x4::Data() const | File: ../Math/Matrix3x4.h
  705. // Error: type "const float*" can not automatically bind
  706. // void Matrix3x4::Decompose(Vector3& translation, Quaternion& rotation, Vector3& scale) const | File: ../Math/Matrix3x4.h
  707. engine->RegisterObjectMethod("Matrix3x4", "void Decompose(Vector3&, Quaternion&, Vector3&) const", asMETHODPR(Matrix3x4, Decompose, (Vector3&, Quaternion&, Vector3&) const, void), asCALL_THISCALL);
  708. // float Matrix3x4::Element(unsigned i, unsigned j) const | File: ../Math/Matrix3x4.h
  709. engine->RegisterObjectMethod("Matrix3x4", "float Element(uint, uint) const", asMETHODPR(Matrix3x4, Element, (unsigned, unsigned) const, float), asCALL_THISCALL);
  710. // bool Matrix3x4::Equals(const Matrix3x4& rhs) const | File: ../Math/Matrix3x4.h
  711. engine->RegisterObjectMethod("Matrix3x4", "bool Equals(const Matrix3x4&in) const", asMETHODPR(Matrix3x4, Equals, (const Matrix3x4&) const, bool), asCALL_THISCALL);
  712. // Matrix3x4 Matrix3x4::Inverse() const | File: ../Math/Matrix3x4.h
  713. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4 Inverse() const", asMETHODPR(Matrix3x4, Inverse, () const, Matrix3x4), asCALL_THISCALL);
  714. // bool Matrix3x4::IsInf() const | File: ../Math/Matrix3x4.h
  715. engine->RegisterObjectMethod("Matrix3x4", "bool IsInf() const", asMETHODPR(Matrix3x4, IsInf, () const, bool), asCALL_THISCALL);
  716. // bool Matrix3x4::IsNaN() const | File: ../Math/Matrix3x4.h
  717. engine->RegisterObjectMethod("Matrix3x4", "bool IsNaN() const", asMETHODPR(Matrix3x4, IsNaN, () const, bool), asCALL_THISCALL);
  718. // Matrix3x4::Matrix3x4(const Matrix3x4& matrix) noexcept=default | File: ../Math/Matrix3x4.h
  719. engine->RegisterObjectBehaviour("Matrix3x4", asBEHAVE_CONSTRUCT, "void f(const Matrix3x4&in)", asFUNCTION(Matrix3x4_Matrix3x4_Matrix3x4), asCALL_CDECL_OBJFIRST);
  720. // explicit Matrix3x4::Matrix3x4(const Matrix3& matrix) noexcept | File: ../Math/Matrix3x4.h
  721. engine->RegisterObjectBehaviour("Matrix3x4", asBEHAVE_CONSTRUCT, "void f(const Matrix3&in)", asFUNCTION(Matrix3x4_Matrix3x4_Matrix3), asCALL_CDECL_OBJFIRST);
  722. // explicit Matrix3x4::Matrix3x4(const Matrix4& matrix) noexcept | File: ../Math/Matrix3x4.h
  723. engine->RegisterObjectBehaviour("Matrix3x4", asBEHAVE_CONSTRUCT, "void f(const Matrix4&in)", asFUNCTION(Matrix3x4_Matrix3x4_Matrix4), asCALL_CDECL_OBJFIRST);
  724. // Matrix3x4::Matrix3x4(float v00, float v01, float v02, float v03, float v10, float v11, float v12, float v13, float v20, float v21, float v22, float v23) noexcept | File: ../Math/Matrix3x4.h
  725. engine->RegisterObjectBehaviour("Matrix3x4", asBEHAVE_CONSTRUCT, "void f(float, float, float, float, float, float, float, float, float, float, float, float)", asFUNCTION(Matrix3x4_Matrix3x4_float_float_float_float_float_float_float_float_float_float_float_float), asCALL_CDECL_OBJFIRST);
  726. // explicit Matrix3x4::Matrix3x4(const float* data) noexcept | File: ../Math/Matrix3x4.h
  727. // Error: type "const float*" can not automatically bind
  728. // Matrix3x4::Matrix3x4(const Vector3& translation, const Quaternion& rotation, float scale) noexcept | File: ../Math/Matrix3x4.h
  729. engine->RegisterObjectBehaviour("Matrix3x4", asBEHAVE_CONSTRUCT, "void f(const Vector3&in, const Quaternion&in, float)", asFUNCTION(Matrix3x4_Matrix3x4_Vector3_Quaternion_float), asCALL_CDECL_OBJFIRST);
  730. // Matrix3x4::Matrix3x4(const Vector3& translation, const Quaternion& rotation, const Vector3& scale) noexcept | File: ../Math/Matrix3x4.h
  731. engine->RegisterObjectBehaviour("Matrix3x4", asBEHAVE_CONSTRUCT, "void f(const Vector3&in, const Quaternion&in, const Vector3&in)", asFUNCTION(Matrix3x4_Matrix3x4_Vector3_Quaternion_Vector3), asCALL_CDECL_OBJFIRST);
  732. // Vector3 Matrix3x4::operator*(const Vector3& rhs) const | File: ../Math/Matrix3x4.h
  733. engine->RegisterObjectMethod("Matrix3x4", "Vector3 opMul(const Vector3&in) const", asMETHODPR(Matrix3x4, operator*, (const Vector3&) const, Vector3), asCALL_THISCALL);
  734. // Vector3 Matrix3x4::operator*(const Vector4& rhs) const | File: ../Math/Matrix3x4.h
  735. engine->RegisterObjectMethod("Matrix3x4", "Vector3 opMul(const Vector4&in) const", asMETHODPR(Matrix3x4, operator*, (const Vector4&) const, Vector3), asCALL_THISCALL);
  736. // Matrix3x4 Matrix3x4::operator*(float rhs) const | File: ../Math/Matrix3x4.h
  737. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4 opMul(float) const", asMETHODPR(Matrix3x4, operator*, (float) const, Matrix3x4), asCALL_THISCALL);
  738. // Matrix3x4 Matrix3x4::operator*(const Matrix3x4& rhs) const | File: ../Math/Matrix3x4.h
  739. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4 opMul(const Matrix3x4&in) const", asMETHODPR(Matrix3x4, operator*, (const Matrix3x4&) const, Matrix3x4), asCALL_THISCALL);
  740. // Matrix4 Matrix3x4::operator*(const Matrix4& rhs) const | File: ../Math/Matrix3x4.h
  741. engine->RegisterObjectMethod("Matrix3x4", "Matrix4 opMul(const Matrix4&in) const", asMETHODPR(Matrix3x4, operator*, (const Matrix4&) const, Matrix4), asCALL_THISCALL);
  742. // Matrix3x4 Matrix3x4::operator+(const Matrix3x4& rhs) const | File: ../Math/Matrix3x4.h
  743. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4 opAdd(const Matrix3x4&in) const", asMETHODPR(Matrix3x4, operator+, (const Matrix3x4&) const, Matrix3x4), asCALL_THISCALL);
  744. // Matrix3x4 Matrix3x4::operator-(const Matrix3x4& rhs) const | File: ../Math/Matrix3x4.h
  745. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4 opSub(const Matrix3x4&in) const", asMETHODPR(Matrix3x4, operator-, (const Matrix3x4&) const, Matrix3x4), asCALL_THISCALL);
  746. // Matrix3x4& Matrix3x4::operator=(const Matrix3x4& rhs) noexcept=default | File: ../Math/Matrix3x4.h
  747. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4& opAssign(const Matrix3x4&in)", asMETHODPR(Matrix3x4, operator=, (const Matrix3x4&), Matrix3x4&), asCALL_THISCALL);
  748. // Matrix3x4& Matrix3x4::operator=(const Matrix3& rhs) noexcept | File: ../Math/Matrix3x4.h
  749. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4& opAssign(const Matrix3&in)", asMETHODPR(Matrix3x4, operator=, (const Matrix3&), Matrix3x4&), asCALL_THISCALL);
  750. // Matrix3x4& Matrix3x4::operator=(const Matrix4& rhs) noexcept | File: ../Math/Matrix3x4.h
  751. engine->RegisterObjectMethod("Matrix3x4", "Matrix3x4& opAssign(const Matrix4&in)", asMETHODPR(Matrix3x4, operator=, (const Matrix4&), Matrix3x4&), asCALL_THISCALL);
  752. // bool Matrix3x4::operator==(const Matrix3x4& rhs) const | File: ../Math/Matrix3x4.h
  753. engine->RegisterObjectMethod("Matrix3x4", "bool opEquals(const Matrix3x4&in) const", asMETHODPR(Matrix3x4, operator==, (const Matrix3x4&) const, bool), asCALL_THISCALL);
  754. // Quaternion Matrix3x4::Rotation() const | File: ../Math/Matrix3x4.h
  755. engine->RegisterObjectMethod("Matrix3x4", "Quaternion Rotation() const", asMETHODPR(Matrix3x4, Rotation, () const, Quaternion), asCALL_THISCALL);
  756. // Matrix3 Matrix3x4::RotationMatrix() const | File: ../Math/Matrix3x4.h
  757. engine->RegisterObjectMethod("Matrix3x4", "Matrix3 RotationMatrix() const", asMETHODPR(Matrix3x4, RotationMatrix, () const, Matrix3), asCALL_THISCALL);
  758. // Vector4 Matrix3x4::Row(unsigned i) const | File: ../Math/Matrix3x4.h
  759. engine->RegisterObjectMethod("Matrix3x4", "Vector4 Row(uint) const", asMETHODPR(Matrix3x4, Row, (unsigned) const, Vector4), asCALL_THISCALL);
  760. // Vector3 Matrix3x4::Scale() const | File: ../Math/Matrix3x4.h
  761. engine->RegisterObjectMethod("Matrix3x4", "Vector3 Scale() const", asMETHODPR(Matrix3x4, Scale, () const, Vector3), asCALL_THISCALL);
  762. // void Matrix3x4::SetRotation(const Matrix3& rotation) | File: ../Math/Matrix3x4.h
  763. engine->RegisterObjectMethod("Matrix3x4", "void SetRotation(const Matrix3&in)", asMETHODPR(Matrix3x4, SetRotation, (const Matrix3&), void), asCALL_THISCALL);
  764. // void Matrix3x4::SetScale(const Vector3& scale) | File: ../Math/Matrix3x4.h
  765. engine->RegisterObjectMethod("Matrix3x4", "void SetScale(const Vector3&in)", asMETHODPR(Matrix3x4, SetScale, (const Vector3&), void), asCALL_THISCALL);
  766. // void Matrix3x4::SetScale(float scale) | File: ../Math/Matrix3x4.h
  767. engine->RegisterObjectMethod("Matrix3x4", "void SetScale(float)", asMETHODPR(Matrix3x4, SetScale, (float), void), asCALL_THISCALL);
  768. // void Matrix3x4::SetTranslation(const Vector3& translation) | File: ../Math/Matrix3x4.h
  769. engine->RegisterObjectMethod("Matrix3x4", "void SetTranslation(const Vector3&in)", asMETHODPR(Matrix3x4, SetTranslation, (const Vector3&), void), asCALL_THISCALL);
  770. // Vector3 Matrix3x4::SignedScale(const Matrix3& rotation) const | File: ../Math/Matrix3x4.h
  771. engine->RegisterObjectMethod("Matrix3x4", "Vector3 SignedScale(const Matrix3&in) const", asMETHODPR(Matrix3x4, SignedScale, (const Matrix3&) const, Vector3), asCALL_THISCALL);
  772. // Matrix3 Matrix3x4::ToMatrix3() const | File: ../Math/Matrix3x4.h
  773. engine->RegisterObjectMethod("Matrix3x4", "Matrix3 ToMatrix3() const", asMETHODPR(Matrix3x4, ToMatrix3, () const, Matrix3), asCALL_THISCALL);
  774. // Matrix4 Matrix3x4::ToMatrix4() const | File: ../Math/Matrix3x4.h
  775. engine->RegisterObjectMethod("Matrix3x4", "Matrix4 ToMatrix4() const", asMETHODPR(Matrix3x4, ToMatrix4, () const, Matrix4), asCALL_THISCALL);
  776. // String Matrix3x4::ToString() const | File: ../Math/Matrix3x4.h
  777. engine->RegisterObjectMethod("Matrix3x4", "String ToString() const", asMETHODPR(Matrix3x4, ToString, () const, String), asCALL_THISCALL);
  778. // Vector3 Matrix3x4::Translation() const | File: ../Math/Matrix3x4.h
  779. engine->RegisterObjectMethod("Matrix3x4", "Vector3 Translation() const", asMETHODPR(Matrix3x4, Translation, () const, Vector3), asCALL_THISCALL);
  780. #ifdef REGISTER_MANUAL_PART_Matrix3x4
  781. REGISTER_MANUAL_PART_Matrix3x4(Matrix3x4, "Matrix3x4")
  782. #endif
  783. // const Matrix4 Matrix4::IDENTITY | File: ../Math/Matrix4.h
  784. engine->SetDefaultNamespace("Matrix4");
  785. engine->RegisterGlobalProperty("const Matrix4 IDENTITY", (void*)&Matrix4::IDENTITY);
  786. engine->SetDefaultNamespace("");
  787. // float Matrix4::m00_ | File: ../Math/Matrix4.h
  788. engine->RegisterObjectProperty("Matrix4", "float m00", offsetof(Matrix4, m00_));
  789. // float Matrix4::m01_ | File: ../Math/Matrix4.h
  790. engine->RegisterObjectProperty("Matrix4", "float m01", offsetof(Matrix4, m01_));
  791. // float Matrix4::m02_ | File: ../Math/Matrix4.h
  792. engine->RegisterObjectProperty("Matrix4", "float m02", offsetof(Matrix4, m02_));
  793. // float Matrix4::m03_ | File: ../Math/Matrix4.h
  794. engine->RegisterObjectProperty("Matrix4", "float m03", offsetof(Matrix4, m03_));
  795. // float Matrix4::m10_ | File: ../Math/Matrix4.h
  796. engine->RegisterObjectProperty("Matrix4", "float m10", offsetof(Matrix4, m10_));
  797. // float Matrix4::m11_ | File: ../Math/Matrix4.h
  798. engine->RegisterObjectProperty("Matrix4", "float m11", offsetof(Matrix4, m11_));
  799. // float Matrix4::m12_ | File: ../Math/Matrix4.h
  800. engine->RegisterObjectProperty("Matrix4", "float m12", offsetof(Matrix4, m12_));
  801. // float Matrix4::m13_ | File: ../Math/Matrix4.h
  802. engine->RegisterObjectProperty("Matrix4", "float m13", offsetof(Matrix4, m13_));
  803. // float Matrix4::m20_ | File: ../Math/Matrix4.h
  804. engine->RegisterObjectProperty("Matrix4", "float m20", offsetof(Matrix4, m20_));
  805. // float Matrix4::m21_ | File: ../Math/Matrix4.h
  806. engine->RegisterObjectProperty("Matrix4", "float m21", offsetof(Matrix4, m21_));
  807. // float Matrix4::m22_ | File: ../Math/Matrix4.h
  808. engine->RegisterObjectProperty("Matrix4", "float m22", offsetof(Matrix4, m22_));
  809. // float Matrix4::m23_ | File: ../Math/Matrix4.h
  810. engine->RegisterObjectProperty("Matrix4", "float m23", offsetof(Matrix4, m23_));
  811. // float Matrix4::m30_ | File: ../Math/Matrix4.h
  812. engine->RegisterObjectProperty("Matrix4", "float m30", offsetof(Matrix4, m30_));
  813. // float Matrix4::m31_ | File: ../Math/Matrix4.h
  814. engine->RegisterObjectProperty("Matrix4", "float m31", offsetof(Matrix4, m31_));
  815. // float Matrix4::m32_ | File: ../Math/Matrix4.h
  816. engine->RegisterObjectProperty("Matrix4", "float m32", offsetof(Matrix4, m32_));
  817. // float Matrix4::m33_ | File: ../Math/Matrix4.h
  818. engine->RegisterObjectProperty("Matrix4", "float m33", offsetof(Matrix4, m33_));
  819. // const Matrix4 Matrix4::ZERO | File: ../Math/Matrix4.h
  820. engine->SetDefaultNamespace("Matrix4");
  821. engine->RegisterGlobalProperty("const Matrix4 ZERO", (void*)&Matrix4::ZERO);
  822. engine->SetDefaultNamespace("");
  823. // static void Matrix4::BulkTranspose(float* dest, const float* src, unsigned count) | File: ../Math/Matrix4.h
  824. // Error: type "float*" can not automatically bind
  825. // Vector4 Matrix4::Column(unsigned j) const | File: ../Math/Matrix4.h
  826. engine->RegisterObjectMethod("Matrix4", "Vector4 Column(uint) const", asMETHODPR(Matrix4, Column, (unsigned) const, Vector4), asCALL_THISCALL);
  827. // const float* Matrix4::Data() const | File: ../Math/Matrix4.h
  828. // Error: type "const float*" can not automatically bind
  829. // void Matrix4::Decompose(Vector3& translation, Quaternion& rotation, Vector3& scale) const | File: ../Math/Matrix4.h
  830. engine->RegisterObjectMethod("Matrix4", "void Decompose(Vector3&, Quaternion&, Vector3&) const", asMETHODPR(Matrix4, Decompose, (Vector3&, Quaternion&, Vector3&) const, void), asCALL_THISCALL);
  831. // float Matrix4::Element(unsigned i, unsigned j) const | File: ../Math/Matrix4.h
  832. engine->RegisterObjectMethod("Matrix4", "float Element(uint, uint) const", asMETHODPR(Matrix4, Element, (unsigned, unsigned) const, float), asCALL_THISCALL);
  833. // bool Matrix4::Equals(const Matrix4& rhs) const | File: ../Math/Matrix4.h
  834. engine->RegisterObjectMethod("Matrix4", "bool Equals(const Matrix4&in) const", asMETHODPR(Matrix4, Equals, (const Matrix4&) const, bool), asCALL_THISCALL);
  835. // Matrix4 Matrix4::Inverse() const | File: ../Math/Matrix4.h
  836. engine->RegisterObjectMethod("Matrix4", "Matrix4 Inverse() const", asMETHODPR(Matrix4, Inverse, () const, Matrix4), asCALL_THISCALL);
  837. // bool Matrix4::IsInf() const | File: ../Math/Matrix4.h
  838. engine->RegisterObjectMethod("Matrix4", "bool IsInf() const", asMETHODPR(Matrix4, IsInf, () const, bool), asCALL_THISCALL);
  839. // bool Matrix4::IsNaN() const | File: ../Math/Matrix4.h
  840. engine->RegisterObjectMethod("Matrix4", "bool IsNaN() const", asMETHODPR(Matrix4, IsNaN, () const, bool), asCALL_THISCALL);
  841. // Matrix4::Matrix4(const Matrix4& matrix) noexcept | File: ../Math/Matrix4.h
  842. engine->RegisterObjectBehaviour("Matrix4", asBEHAVE_CONSTRUCT, "void f(const Matrix4&in)", asFUNCTION(Matrix4_Matrix4_Matrix4), asCALL_CDECL_OBJFIRST);
  843. // explicit Matrix4::Matrix4(const Matrix3& matrix) noexcept | File: ../Math/Matrix4.h
  844. engine->RegisterObjectBehaviour("Matrix4", asBEHAVE_CONSTRUCT, "void f(const Matrix3&in)", asFUNCTION(Matrix4_Matrix4_Matrix3), asCALL_CDECL_OBJFIRST);
  845. // Matrix4::Matrix4(float v00, float v01, float v02, float v03, float v10, float v11, float v12, float v13, float v20, float v21, float v22, float v23, float v30, float v31, float v32, float v33) noexcept | File: ../Math/Matrix4.h
  846. engine->RegisterObjectBehaviour("Matrix4", asBEHAVE_CONSTRUCT, "void f(float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float)", asFUNCTION(Matrix4_Matrix4_float_float_float_float_float_float_float_float_float_float_float_float_float_float_float_float), asCALL_CDECL_OBJFIRST);
  847. // explicit Matrix4::Matrix4(const float* data) noexcept | File: ../Math/Matrix4.h
  848. // Error: type "const float*" can not automatically bind
  849. // Vector3 Matrix4::operator*(const Vector3& rhs) const | File: ../Math/Matrix4.h
  850. engine->RegisterObjectMethod("Matrix4", "Vector3 opMul(const Vector3&in) const", asMETHODPR(Matrix4, operator*, (const Vector3&) const, Vector3), asCALL_THISCALL);
  851. // Vector4 Matrix4::operator*(const Vector4& rhs) const | File: ../Math/Matrix4.h
  852. engine->RegisterObjectMethod("Matrix4", "Vector4 opMul(const Vector4&in) const", asMETHODPR(Matrix4, operator*, (const Vector4&) const, Vector4), asCALL_THISCALL);
  853. // Matrix4 Matrix4::operator*(float rhs) const | File: ../Math/Matrix4.h
  854. engine->RegisterObjectMethod("Matrix4", "Matrix4 opMul(float) const", asMETHODPR(Matrix4, operator*, (float) const, Matrix4), asCALL_THISCALL);
  855. // Matrix4 Matrix4::operator*(const Matrix4& rhs) const | File: ../Math/Matrix4.h
  856. engine->RegisterObjectMethod("Matrix4", "Matrix4 opMul(const Matrix4&in) const", asMETHODPR(Matrix4, operator*, (const Matrix4&) const, Matrix4), asCALL_THISCALL);
  857. // Matrix4 Matrix4::operator*(const Matrix3x4& rhs) const | File: ../Math/Matrix4.h
  858. engine->RegisterObjectMethod("Matrix4", "Matrix4 opMul(const Matrix3x4&in) const", asMETHODPR(Matrix4, operator*, (const Matrix3x4&) const, Matrix4), asCALL_THISCALL);
  859. // Matrix4 Matrix4::operator+(const Matrix4& rhs) const | File: ../Math/Matrix4.h
  860. engine->RegisterObjectMethod("Matrix4", "Matrix4 opAdd(const Matrix4&in) const", asMETHODPR(Matrix4, operator+, (const Matrix4&) const, Matrix4), asCALL_THISCALL);
  861. // Matrix4 Matrix4::operator-(const Matrix4& rhs) const | File: ../Math/Matrix4.h
  862. engine->RegisterObjectMethod("Matrix4", "Matrix4 opSub(const Matrix4&in) const", asMETHODPR(Matrix4, operator-, (const Matrix4&) const, Matrix4), asCALL_THISCALL);
  863. // Matrix4& Matrix4::operator=(const Matrix4& rhs) noexcept | File: ../Math/Matrix4.h
  864. engine->RegisterObjectMethod("Matrix4", "Matrix4& opAssign(const Matrix4&in)", asMETHODPR(Matrix4, operator=, (const Matrix4&), Matrix4&), asCALL_THISCALL);
  865. // Matrix4& Matrix4::operator=(const Matrix3& rhs) noexcept | File: ../Math/Matrix4.h
  866. engine->RegisterObjectMethod("Matrix4", "Matrix4& opAssign(const Matrix3&in)", asMETHODPR(Matrix4, operator=, (const Matrix3&), Matrix4&), asCALL_THISCALL);
  867. // bool Matrix4::operator==(const Matrix4& rhs) const | File: ../Math/Matrix4.h
  868. engine->RegisterObjectMethod("Matrix4", "bool opEquals(const Matrix4&in) const", asMETHODPR(Matrix4, operator==, (const Matrix4&) const, bool), asCALL_THISCALL);
  869. // Quaternion Matrix4::Rotation() const | File: ../Math/Matrix4.h
  870. engine->RegisterObjectMethod("Matrix4", "Quaternion Rotation() const", asMETHODPR(Matrix4, Rotation, () const, Quaternion), asCALL_THISCALL);
  871. // Matrix3 Matrix4::RotationMatrix() const | File: ../Math/Matrix4.h
  872. engine->RegisterObjectMethod("Matrix4", "Matrix3 RotationMatrix() const", asMETHODPR(Matrix4, RotationMatrix, () const, Matrix3), asCALL_THISCALL);
  873. // Vector4 Matrix4::Row(unsigned i) const | File: ../Math/Matrix4.h
  874. engine->RegisterObjectMethod("Matrix4", "Vector4 Row(uint) const", asMETHODPR(Matrix4, Row, (unsigned) const, Vector4), asCALL_THISCALL);
  875. // Vector3 Matrix4::Scale() const | File: ../Math/Matrix4.h
  876. engine->RegisterObjectMethod("Matrix4", "Vector3 Scale() const", asMETHODPR(Matrix4, Scale, () const, Vector3), asCALL_THISCALL);
  877. // void Matrix4::SetRotation(const Matrix3& rotation) | File: ../Math/Matrix4.h
  878. engine->RegisterObjectMethod("Matrix4", "void SetRotation(const Matrix3&in)", asMETHODPR(Matrix4, SetRotation, (const Matrix3&), void), asCALL_THISCALL);
  879. // void Matrix4::SetScale(const Vector3& scale) | File: ../Math/Matrix4.h
  880. engine->RegisterObjectMethod("Matrix4", "void SetScale(const Vector3&in)", asMETHODPR(Matrix4, SetScale, (const Vector3&), void), asCALL_THISCALL);
  881. // void Matrix4::SetScale(float scale) | File: ../Math/Matrix4.h
  882. engine->RegisterObjectMethod("Matrix4", "void SetScale(float)", asMETHODPR(Matrix4, SetScale, (float), void), asCALL_THISCALL);
  883. // void Matrix4::SetTranslation(const Vector3& translation) | File: ../Math/Matrix4.h
  884. engine->RegisterObjectMethod("Matrix4", "void SetTranslation(const Vector3&in)", asMETHODPR(Matrix4, SetTranslation, (const Vector3&), void), asCALL_THISCALL);
  885. // Vector3 Matrix4::SignedScale(const Matrix3& rotation) const | File: ../Math/Matrix4.h
  886. engine->RegisterObjectMethod("Matrix4", "Vector3 SignedScale(const Matrix3&in) const", asMETHODPR(Matrix4, SignedScale, (const Matrix3&) const, Vector3), asCALL_THISCALL);
  887. // Matrix3 Matrix4::ToMatrix3() const | File: ../Math/Matrix4.h
  888. engine->RegisterObjectMethod("Matrix4", "Matrix3 ToMatrix3() const", asMETHODPR(Matrix4, ToMatrix3, () const, Matrix3), asCALL_THISCALL);
  889. // String Matrix4::ToString() const | File: ../Math/Matrix4.h
  890. engine->RegisterObjectMethod("Matrix4", "String ToString() const", asMETHODPR(Matrix4, ToString, () const, String), asCALL_THISCALL);
  891. // Vector3 Matrix4::Translation() const | File: ../Math/Matrix4.h
  892. engine->RegisterObjectMethod("Matrix4", "Vector3 Translation() const", asMETHODPR(Matrix4, Translation, () const, Vector3), asCALL_THISCALL);
  893. // Matrix4 Matrix4::Transpose() const | File: ../Math/Matrix4.h
  894. engine->RegisterObjectMethod("Matrix4", "Matrix4 Transpose() const", asMETHODPR(Matrix4, Transpose, () const, Matrix4), asCALL_THISCALL);
  895. #ifdef REGISTER_MANUAL_PART_Matrix4
  896. REGISTER_MANUAL_PART_Matrix4(Matrix4, "Matrix4")
  897. #endif
  898. // void UIElement::AddChild(UIElement* element) | File: ../UI/UIElement.h
  899. engine->RegisterObjectMethod("Menu", "void AddChild(UIElement@+)", asMETHODPR(Menu, AddChild, (UIElement*), void), asCALL_THISCALL);
  900. // void RefCounted::AddRef() | File: ../Container/RefCounted.h
  901. engine->RegisterObjectBehaviour("Menu", asBEHAVE_ADDREF, "void f()", asMETHODPR(Menu, AddRef, (), void), asCALL_THISCALL);
  902. // void UIElement::AddTag(const String& tag) | File: ../UI/UIElement.h
  903. engine->RegisterObjectMethod("Menu", "void AddTag(const String&in)", asMETHODPR(Menu, AddTag, (const String&), void), asCALL_THISCALL);
  904. // void UIElement::AddTags(const String& tags, char separator=';') | File: ../UI/UIElement.h
  905. engine->RegisterObjectMethod("Menu", "void AddTags(const String&in, int8 = ';')", asMETHODPR(Menu, AddTags, (const String&, char), void), asCALL_THISCALL);
  906. // void UIElement::AddTags(const StringVector& tags) | File: ../UI/UIElement.h
  907. // Error: type "const StringVector&" can not automatically bind
  908. // void UIElement::AdjustScissor(IntRect& currentScissor) | File: ../UI/UIElement.h
  909. engine->RegisterObjectMethod("Menu", "void AdjustScissor(IntRect&)", asMETHODPR(Menu, AdjustScissor, (IntRect&), void), asCALL_THISCALL);
  910. // void Serializable::AllocateNetworkState() | File: ../Scene/Serializable.h
  911. engine->RegisterObjectMethod("Menu", "void AllocateNetworkState()", asMETHODPR(Menu, AllocateNetworkState, (), void), asCALL_THISCALL);
  912. // void UIElement::ApplyAttributes() override | File: ../UI/UIElement.h
  913. engine->RegisterObjectMethod("Menu", "void ApplyAttributes()", asMETHODPR(Menu, ApplyAttributes, (), void), asCALL_THISCALL);
  914. // void UIElement::BringToFront() | File: ../UI/UIElement.h
  915. engine->RegisterObjectMethod("Menu", "void BringToFront()", asMETHODPR(Menu, BringToFront, (), void), asCALL_THISCALL);
  916. // template<typename T> T* Object::Cast() | File: ../Core/Object.h
  917. // Not registered because template
  918. // template<typename T> const T* Object::Cast() const | File: ../Core/Object.h
  919. // Not registered because template
  920. // UIElement* UIElement::CreateChild(StringHash type, const String& name=String::EMPTY, unsigned index=M_MAX_UNSIGNED) | File: ../UI/UIElement.h
  921. engine->RegisterObjectMethod("Menu", "UIElement@+ CreateChild(StringHash, const String&in = String::EMPTY, uint = M_MAX_UNSIGNED)", asMETHODPR(Menu, CreateChild, (StringHash, const String&, unsigned), UIElement*), asCALL_THISCALL);
  922. // template<class T> T* UIElement::CreateChild(const String& name=String::EMPTY, unsigned index=M_MAX_UNSIGNED) | File: ../UI/UIElement.h
  923. // Not registered because template
  924. // void UIElement::DisableLayoutUpdate() | File: ../UI/UIElement.h
  925. engine->RegisterObjectMethod("Menu", "void DisableLayoutUpdate()", asMETHODPR(Menu, DisableLayoutUpdate, (), void), asCALL_THISCALL);
  926. // virtual IntVector2 UIElement::ElementToScreen(const IntVector2& position) | File: ../UI/UIElement.h
  927. engine->RegisterObjectMethod("Menu", "IntVector2 ElementToScreen(const IntVector2&in)", asMETHODPR(Menu, ElementToScreen, (const IntVector2&), IntVector2), asCALL_THISCALL);
  928. // void UIElement::EnableLayoutUpdate() | File: ../UI/UIElement.h
  929. engine->RegisterObjectMethod("Menu", "void EnableLayoutUpdate()", asMETHODPR(Menu, EnableLayoutUpdate, (), void), asCALL_THISCALL);
  930. // bool UIElement::FilterAttributes(XMLElement& dest) const | File: ../UI/UIElement.h
  931. engine->RegisterObjectMethod("Menu", "bool FilterAttributes(XMLElement&) const", asMETHODPR(Menu, FilterAttributes, (XMLElement&) const, bool), asCALL_THISCALL);
  932. // unsigned UIElement::FindChild(UIElement* element) const | File: ../UI/UIElement.h
  933. engine->RegisterObjectMethod("Menu", "uint FindChild(UIElement@+) const", asMETHODPR(Menu, FindChild, (UIElement*) const, unsigned), asCALL_THISCALL);
  934. // int Menu::GetAcceleratorKey() const | File: ../UI/Menu.h
  935. engine->RegisterObjectMethod("Menu", "int GetAcceleratorKey() const", asMETHODPR(Menu, GetAcceleratorKey, () const, int), asCALL_THISCALL);
  936. engine->RegisterObjectMethod("Menu", "int get_acceleratorKey() const", asMETHODPR(Menu, GetAcceleratorKey, () const, int), asCALL_THISCALL);
  937. // int Menu::GetAcceleratorQualifiers() const | File: ../UI/Menu.h
  938. engine->RegisterObjectMethod("Menu", "int GetAcceleratorQualifiers() const", asMETHODPR(Menu, GetAcceleratorQualifiers, () const, int), asCALL_THISCALL);
  939. engine->RegisterObjectMethod("Menu", "int get_acceleratorQualifiers() const", asMETHODPR(Menu, GetAcceleratorQualifiers, () const, int), asCALL_THISCALL);
  940. // bool Animatable::GetAnimationEnabled() const | File: ../Scene/Animatable.h
  941. engine->RegisterObjectMethod("Menu", "bool GetAnimationEnabled() const", asMETHODPR(Menu, GetAnimationEnabled, () const, bool), asCALL_THISCALL);
  942. engine->RegisterObjectMethod("Menu", "bool get_animationEnabled() const", asMETHODPR(Menu, GetAnimationEnabled, () const, bool), asCALL_THISCALL);
  943. // const String& UIElement::GetAppliedStyle() const | File: ../UI/UIElement.h
  944. engine->RegisterObjectMethod("Menu", "const String& GetAppliedStyle() const", asMETHODPR(Menu, GetAppliedStyle, () const, const String&), asCALL_THISCALL);
  945. engine->RegisterObjectMethod("Menu", "const String& get_style() const", asMETHODPR(Menu, GetAppliedStyle, () const, const String&), asCALL_THISCALL);
  946. // Variant Serializable::GetAttribute(unsigned index) const | File: ../Scene/Serializable.h
  947. engine->RegisterObjectMethod("Menu", "Variant GetAttribute(uint) const", asMETHODPR(Menu, GetAttribute, (unsigned) const, Variant), asCALL_THISCALL);
  948. engine->RegisterObjectMethod("Menu", "Variant get_attributes(uint) const", asMETHODPR(Menu, GetAttribute, (unsigned) const, Variant), asCALL_THISCALL);
  949. // Variant Serializable::GetAttribute(const String& name) const | File: ../Scene/Serializable.h
  950. engine->RegisterObjectMethod("Menu", "Variant GetAttribute(const String&in) const", asMETHODPR(Menu, GetAttribute, (const String&) const, Variant), asCALL_THISCALL);
  951. // ValueAnimation* Animatable::GetAttributeAnimation(const String& name) const | File: ../Scene/Animatable.h
  952. engine->RegisterObjectMethod("Menu", "ValueAnimation@+ GetAttributeAnimation(const String&in) const", asMETHODPR(Menu, GetAttributeAnimation, (const String&) const, ValueAnimation*), asCALL_THISCALL);
  953. // float Animatable::GetAttributeAnimationSpeed(const String& name) const | File: ../Scene/Animatable.h
  954. engine->RegisterObjectMethod("Menu", "float GetAttributeAnimationSpeed(const String&in) const", asMETHODPR(Menu, GetAttributeAnimationSpeed, (const String&) const, float), asCALL_THISCALL);
  955. // float Animatable::GetAttributeAnimationTime(const String& name) const | File: ../Scene/Animatable.h
  956. engine->RegisterObjectMethod("Menu", "float GetAttributeAnimationTime(const String&in) const", asMETHODPR(Menu, GetAttributeAnimationTime, (const String&) const, float), asCALL_THISCALL);
  957. // WrapMode Animatable::GetAttributeAnimationWrapMode(const String& name) const | File: ../Scene/Animatable.h
  958. engine->RegisterObjectMethod("Menu", "WrapMode GetAttributeAnimationWrapMode(const String&in) const", asMETHODPR(Menu, GetAttributeAnimationWrapMode, (const String&) const, WrapMode), asCALL_THISCALL);
  959. // Variant Serializable::GetAttributeDefault(unsigned index) const | File: ../Scene/Serializable.h
  960. engine->RegisterObjectMethod("Menu", "Variant GetAttributeDefault(uint) const", asMETHODPR(Menu, GetAttributeDefault, (unsigned) const, Variant), asCALL_THISCALL);
  961. engine->RegisterObjectMethod("Menu", "Variant get_attributeDefaults(uint) const", asMETHODPR(Menu, GetAttributeDefault, (unsigned) const, Variant), asCALL_THISCALL);
  962. // Variant Serializable::GetAttributeDefault(const String& name) const | File: ../Scene/Serializable.h
  963. engine->RegisterObjectMethod("Menu", "Variant GetAttributeDefault(const String&in) const", asMETHODPR(Menu, GetAttributeDefault, (const String&) const, Variant), asCALL_THISCALL);
  964. // virtual const Vector<AttributeInfo>* Serializable::GetAttributes() const | File: ../Scene/Serializable.h
  965. // Error: type "const Vector<AttributeInfo>*" can not automatically bind
  966. // void Button::GetBatches(PODVector<UIBatch>& batches, PODVector<float>& vertexData, const IntRect& currentScissor) override | File: ../UI/Button.h
  967. // Error: type "PODVector<UIBatch>&" can not automatically bind
  968. // void UIElement::GetBatchesWithOffset(IntVector2& offset, PODVector<UIBatch>& batches, PODVector<float>& vertexData, IntRect currentScissor) | File: ../UI/UIElement.h
  969. // Error: type "PODVector<UIBatch>&" can not automatically bind
  970. // BlendMode BorderImage::GetBlendMode() const | File: ../UI/BorderImage.h
  971. engine->RegisterObjectMethod("Menu", "BlendMode GetBlendMode() const", asMETHODPR(Menu, GetBlendMode, () const, BlendMode), asCALL_THISCALL);
  972. engine->RegisterObjectMethod("Menu", "BlendMode get_blendMode() const", asMETHODPR(Menu, GetBlendMode, () const, BlendMode), asCALL_THISCALL);
  973. // bool Object::GetBlockEvents() const | File: ../Core/Object.h
  974. engine->RegisterObjectMethod("Menu", "bool GetBlockEvents() const", asMETHODPR(Menu, GetBlockEvents, () const, bool), asCALL_THISCALL);
  975. // const IntRect& BorderImage::GetBorder() const | File: ../UI/BorderImage.h
  976. engine->RegisterObjectMethod("Menu", "const IntRect& GetBorder() const", asMETHODPR(Menu, GetBorder, () const, const IntRect&), asCALL_THISCALL);
  977. engine->RegisterObjectMethod("Menu", "const IntRect& get_border() const", asMETHODPR(Menu, GetBorder, () const, const IntRect&), asCALL_THISCALL);
  978. // bool UIElement::GetBringToBack() const | File: ../UI/UIElement.h
  979. engine->RegisterObjectMethod("Menu", "bool GetBringToBack() const", asMETHODPR(Menu, GetBringToBack, () const, bool), asCALL_THISCALL);
  980. engine->RegisterObjectMethod("Menu", "bool get_bringToBack() const", asMETHODPR(Menu, GetBringToBack, () const, bool), asCALL_THISCALL);
  981. // bool UIElement::GetBringToFront() const | File: ../UI/UIElement.h
  982. engine->RegisterObjectMethod("Menu", "bool GetBringToFront() const", asMETHODPR(Menu, GetBringToFront, () const, bool), asCALL_THISCALL);
  983. engine->RegisterObjectMethod("Menu", "bool get_bringToFront() const", asMETHODPR(Menu, GetBringToFront, () const, bool), asCALL_THISCALL);
  984. // const String& Object::GetCategory() const | File: ../Core/Object.h
  985. engine->RegisterObjectMethod("Menu", "const String& GetCategory() const", asMETHODPR(Menu, GetCategory, () const, const String&), asCALL_THISCALL);
  986. engine->RegisterObjectMethod("Menu", "const String& get_category() const", asMETHODPR(Menu, GetCategory, () const, const String&), asCALL_THISCALL);
  987. // UIElement* UIElement::GetChild(unsigned index) const | File: ../UI/UIElement.h
  988. engine->RegisterObjectMethod("Menu", "UIElement@+ GetChild(uint) const", asMETHODPR(Menu, GetChild, (unsigned) const, UIElement*), asCALL_THISCALL);
  989. engine->RegisterObjectMethod("Menu", "UIElement@+ get_children(uint) const", asMETHODPR(Menu, GetChild, (unsigned) const, UIElement*), asCALL_THISCALL);
  990. // UIElement* UIElement::GetChild(const String& name, bool recursive=false) const | File: ../UI/UIElement.h
  991. engine->RegisterObjectMethod("Menu", "UIElement@+ GetChild(const String&in, bool = false) const", asMETHODPR(Menu, GetChild, (const String&, bool) const, UIElement*), asCALL_THISCALL);
  992. // UIElement* UIElement::GetChild(const StringHash& key, const Variant& value=Variant::EMPTY, bool recursive=false) const | File: ../UI/UIElement.h
  993. engine->RegisterObjectMethod("Menu", "UIElement@+ GetChild(const StringHash&in, const Variant&in = Variant::EMPTY, bool = false) const", asMETHODPR(Menu, GetChild, (const StringHash&, const Variant&, bool) const, UIElement*), asCALL_THISCALL);
  994. // template<class T> T* UIElement::GetChildDynamicCast(unsigned index) const | File: ../UI/UIElement.h
  995. // Not registered because template
  996. // template<class T> T* UIElement::GetChildDynamicCast(const String& name, bool recursive=false) const | File: ../UI/UIElement.h
  997. // Not registered because template
  998. // template<class T> T* UIElement::GetChildDynamicCast(const StringHash& key, const Variant& value=Variant::EMPTY, bool recursive=false) const | File: ../UI/UIElement.h
  999. // Not registered because template
  1000. // const IntVector2& UIElement::GetChildOffset() const | File: ../UI/UIElement.h
  1001. engine->RegisterObjectMethod("Menu", "const IntVector2& GetChildOffset() const", asMETHODPR(Menu, GetChildOffset, () const, const IntVector2&), asCALL_THISCALL);
  1002. engine->RegisterObjectMethod("Menu", "const IntVector2& get_childOffset() const", asMETHODPR(Menu, GetChildOffset, () const, const IntVector2&), asCALL_THISCALL);
  1003. // const Vector<SharedPtr<UIElement>>& UIElement::GetChildren() const | File: ../UI/UIElement.h
  1004. engine->RegisterObjectMethod("Menu", "Array<UIElement@>@ GetChildren() const", asFUNCTION(Menu_GetChildren_void), asCALL_CDECL_OBJFIRST);
  1005. // void UIElement::GetChildren(PODVector<UIElement*>& dest, bool recursive=false) const | File: ../UI/UIElement.h
  1006. // Error: type "PODVector<UIElement*>&" can not automatically bind
  1007. // PODVector<UIElement*> UIElement::GetChildren(bool recursive) const | File: ../UI/UIElement.h
  1008. engine->RegisterObjectMethod("Menu", "Array<UIElement@>@ GetChildren(bool) const", asFUNCTION(Menu_GetChildren_bool), asCALL_CDECL_OBJFIRST);
  1009. // void UIElement::GetChildrenWithTag(PODVector<UIElement*>& dest, const String& tag, bool recursive=false) const | File: ../UI/UIElement.h
  1010. // Error: type "PODVector<UIElement*>&" can not automatically bind
  1011. // PODVector<UIElement*> UIElement::GetChildrenWithTag(const String& tag, bool recursive=false) const | File: ../UI/UIElement.h
  1012. engine->RegisterObjectMethod("Menu", "Array<UIElement@>@ GetChildrenWithTag(const String&in, bool = false) const", asFUNCTION(Menu_GetChildrenWithTag_String_bool), asCALL_CDECL_OBJFIRST);
  1013. // template<class T> T* UIElement::GetChildStaticCast(unsigned index) const | File: ../UI/UIElement.h
  1014. // Not registered because template
  1015. // template<class T> T* UIElement::GetChildStaticCast(const String& name, bool recursive=false) const | File: ../UI/UIElement.h
  1016. // Not registered because template
  1017. // template<class T> T* UIElement::GetChildStaticCast(const StringHash& key, const Variant& value=Variant::EMPTY, bool recursive=false) const | File: ../UI/UIElement.h
  1018. // Not registered because template
  1019. // const IntRect& UIElement::GetClipBorder() const | File: ../UI/UIElement.h
  1020. engine->RegisterObjectMethod("Menu", "const IntRect& GetClipBorder() const", asMETHODPR(Menu, GetClipBorder, () const, const IntRect&), asCALL_THISCALL);
  1021. engine->RegisterObjectMethod("Menu", "const IntRect& get_clipBorder() const", asMETHODPR(Menu, GetClipBorder, () const, const IntRect&), asCALL_THISCALL);
  1022. // bool UIElement::GetClipChildren() const | File: ../UI/UIElement.h
  1023. engine->RegisterObjectMethod("Menu", "bool GetClipChildren() const", asMETHODPR(Menu, GetClipChildren, () const, bool), asCALL_THISCALL);
  1024. engine->RegisterObjectMethod("Menu", "bool get_clipChildren() const", asMETHODPR(Menu, GetClipChildren, () const, bool), asCALL_THISCALL);
  1025. // const Color& UIElement::GetColor(Corner corner) const | File: ../UI/UIElement.h
  1026. engine->RegisterObjectMethod("Menu", "const Color& GetColor(Corner) const", asMETHODPR(Menu, GetColor, (Corner) const, const Color&), asCALL_THISCALL);
  1027. engine->RegisterObjectMethod("Menu", "const Color& get_colors(Corner) const", asMETHODPR(Menu, GetColor, (Corner) const, const Color&), asCALL_THISCALL);
  1028. // const Color& UIElement::GetColorAttr() const | File: ../UI/UIElement.h
  1029. engine->RegisterObjectMethod("Menu", "const Color& GetColorAttr() const", asMETHODPR(Menu, GetColorAttr, () const, const Color&), asCALL_THISCALL);
  1030. // IntRect UIElement::GetCombinedScreenRect() | File: ../UI/UIElement.h
  1031. engine->RegisterObjectMethod("Menu", "IntRect GetCombinedScreenRect()", asMETHODPR(Menu, GetCombinedScreenRect, (), IntRect), asCALL_THISCALL);
  1032. engine->RegisterObjectMethod("Menu", "IntRect get_combinedScreenRect()", asMETHODPR(Menu, GetCombinedScreenRect, (), IntRect), asCALL_THISCALL);
  1033. // Context* Object::GetContext() const | File: ../Core/Object.h
  1034. // Error: type "Context*" can not be returned
  1035. // virtual void UIElement::GetDebugDrawBatches(PODVector<UIBatch>& batches, PODVector<float>& vertexData, const IntRect& currentScissor) | File: ../UI/UIElement.h
  1036. // Error: type "PODVector<UIBatch>&" can not automatically bind
  1037. // XMLFile* UIElement::GetDefaultStyle(bool recursiveUp=true) const | File: ../UI/UIElement.h
  1038. engine->RegisterObjectMethod("Menu", "XMLFile@+ GetDefaultStyle(bool = true) const", asMETHODPR(Menu, GetDefaultStyle, (bool) const, XMLFile*), asCALL_THISCALL);
  1039. // const Color& UIElement::GetDerivedColor() const | File: ../UI/UIElement.h
  1040. engine->RegisterObjectMethod("Menu", "const Color& GetDerivedColor() const", asMETHODPR(Menu, GetDerivedColor, () const, const Color&), asCALL_THISCALL);
  1041. // float UIElement::GetDerivedOpacity() const | File: ../UI/UIElement.h
  1042. engine->RegisterObjectMethod("Menu", "float GetDerivedOpacity() const", asMETHODPR(Menu, GetDerivedOpacity, () const, float), asCALL_THISCALL);
  1043. engine->RegisterObjectMethod("Menu", "float get_derivedOpacity() const", asMETHODPR(Menu, GetDerivedOpacity, () const, float), asCALL_THISCALL);
  1044. // const IntVector2& BorderImage::GetDisabledOffset() const | File: ../UI/BorderImage.h
  1045. engine->RegisterObjectMethod("Menu", "const IntVector2& GetDisabledOffset() const", asMETHODPR(Menu, GetDisabledOffset, () const, const IntVector2&), asCALL_THISCALL);
  1046. engine->RegisterObjectMethod("Menu", "const IntVector2& get_disabledOffset() const", asMETHODPR(Menu, GetDisabledOffset, () const, const IntVector2&), asCALL_THISCALL);
  1047. // MouseButtonFlags UIElement::GetDragButtonCombo() const | File: ../UI/UIElement.h
  1048. engine->RegisterObjectMethod("Menu", "MouseButtonFlags GetDragButtonCombo() const", asMETHODPR(Menu, GetDragButtonCombo, () const, MouseButtonFlags), asCALL_THISCALL);
  1049. engine->RegisterObjectMethod("Menu", "MouseButtonFlags get_dragButtonCombo() const", asMETHODPR(Menu, GetDragButtonCombo, () const, MouseButtonFlags), asCALL_THISCALL);
  1050. // unsigned UIElement::GetDragButtonCount() const | File: ../UI/UIElement.h
  1051. engine->RegisterObjectMethod("Menu", "uint GetDragButtonCount() const", asMETHODPR(Menu, GetDragButtonCount, () const, unsigned), asCALL_THISCALL);
  1052. engine->RegisterObjectMethod("Menu", "uint get_dragButtonCount() const", asMETHODPR(Menu, GetDragButtonCount, () const, unsigned), asCALL_THISCALL);
  1053. // DragAndDropModeFlags UIElement::GetDragDropMode() const | File: ../UI/UIElement.h
  1054. engine->RegisterObjectMethod("Menu", "DragAndDropModeFlags GetDragDropMode() const", asMETHODPR(Menu, GetDragDropMode, () const, DragAndDropModeFlags), asCALL_THISCALL);
  1055. engine->RegisterObjectMethod("Menu", "DragAndDropModeFlags get_dragDropMode() const", asMETHODPR(Menu, GetDragDropMode, () const, DragAndDropModeFlags), asCALL_THISCALL);
  1056. // IntVector2 UIElement::GetEffectiveMinSize() const | File: ../UI/UIElement.h
  1057. engine->RegisterObjectMethod("Menu", "IntVector2 GetEffectiveMinSize() const", asMETHODPR(Menu, GetEffectiveMinSize, () const, IntVector2), asCALL_THISCALL);
  1058. // UIElement* UIElement::GetElementEventSender() const | File: ../UI/UIElement.h
  1059. engine->RegisterObjectMethod("Menu", "UIElement@+ GetElementEventSender() const", asMETHODPR(Menu, GetElementEventSender, () const, UIElement*), asCALL_THISCALL);
  1060. // bool UIElement::GetEnableAnchor() const | File: ../UI/UIElement.h
  1061. engine->RegisterObjectMethod("Menu", "bool GetEnableAnchor() const", asMETHODPR(Menu, GetEnableAnchor, () const, bool), asCALL_THISCALL);
  1062. engine->RegisterObjectMethod("Menu", "bool get_enableAnchor() const", asMETHODPR(Menu, GetEnableAnchor, () const, bool), asCALL_THISCALL);
  1063. // VariantMap& Object::GetEventDataMap() const | File: ../Core/Object.h
  1064. engine->RegisterObjectMethod("Menu", "VariantMap& GetEventDataMap() const", asMETHODPR(Menu, GetEventDataMap, () const, VariantMap&), asCALL_THISCALL);
  1065. // EventHandler* Object::GetEventHandler() const | File: ../Core/Object.h
  1066. // Error: type "EventHandler*" can not automatically bind
  1067. // Object* Object::GetEventSender() const | File: ../Core/Object.h
  1068. engine->RegisterObjectMethod("Menu", "Object@+ GetEventSender() const", asMETHODPR(Menu, GetEventSender, () const, Object*), asCALL_THISCALL);
  1069. // FocusMode UIElement::GetFocusMode() const | File: ../UI/UIElement.h
  1070. engine->RegisterObjectMethod("Menu", "FocusMode GetFocusMode() const", asMETHODPR(Menu, GetFocusMode, () const, FocusMode), asCALL_THISCALL);
  1071. engine->RegisterObjectMethod("Menu", "FocusMode get_focusMode() const", asMETHODPR(Menu, GetFocusMode, () const, FocusMode), asCALL_THISCALL);
  1072. // const Variant& Object::GetGlobalVar(StringHash key) const | File: ../Core/Object.h
  1073. engine->RegisterObjectMethod("Menu", "const Variant& GetGlobalVar(StringHash) const", asMETHODPR(Menu, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  1074. engine->RegisterObjectMethod("Menu", "const Variant& get_globalVar(StringHash) const", asMETHODPR(Menu, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  1075. // const VariantMap& Object::GetGlobalVars() const | File: ../Core/Object.h
  1076. engine->RegisterObjectMethod("Menu", "const VariantMap& GetGlobalVars() const", asMETHODPR(Menu, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  1077. engine->RegisterObjectMethod("Menu", "const VariantMap& get_globalVars() const", asMETHODPR(Menu, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  1078. // int UIElement::GetHeight() const | File: ../UI/UIElement.h
  1079. engine->RegisterObjectMethod("Menu", "int GetHeight() const", asMETHODPR(Menu, GetHeight, () const, int), asCALL_THISCALL);
  1080. engine->RegisterObjectMethod("Menu", "int get_height() const", asMETHODPR(Menu, GetHeight, () const, int), asCALL_THISCALL);
  1081. // HorizontalAlignment UIElement::GetHorizontalAlignment() const | File: ../UI/UIElement.h
  1082. engine->RegisterObjectMethod("Menu", "HorizontalAlignment GetHorizontalAlignment() const", asMETHODPR(Menu, GetHorizontalAlignment, () const, HorizontalAlignment), asCALL_THISCALL);
  1083. engine->RegisterObjectMethod("Menu", "HorizontalAlignment get_horizontalAlignment() const", asMETHODPR(Menu, GetHorizontalAlignment, () const, HorizontalAlignment), asCALL_THISCALL);
  1084. // const IntVector2& BorderImage::GetHoverOffset() const | File: ../UI/BorderImage.h
  1085. engine->RegisterObjectMethod("Menu", "const IntVector2& GetHoverOffset() const", asMETHODPR(Menu, GetHoverOffset, () const, const IntVector2&), asCALL_THISCALL);
  1086. engine->RegisterObjectMethod("Menu", "const IntVector2& get_hoverOffset() const", asMETHODPR(Menu, GetHoverOffset, () const, const IntVector2&), asCALL_THISCALL);
  1087. // const IntRect& BorderImage::GetImageBorder() const | File: ../UI/BorderImage.h
  1088. engine->RegisterObjectMethod("Menu", "const IntRect& GetImageBorder() const", asMETHODPR(Menu, GetImageBorder, () const, const IntRect&), asCALL_THISCALL);
  1089. engine->RegisterObjectMethod("Menu", "const IntRect& get_imageBorder() const", asMETHODPR(Menu, GetImageBorder, () const, const IntRect&), asCALL_THISCALL);
  1090. // const IntRect& BorderImage::GetImageRect() const | File: ../UI/BorderImage.h
  1091. engine->RegisterObjectMethod("Menu", "const IntRect& GetImageRect() const", asMETHODPR(Menu, GetImageRect, () const, const IntRect&), asCALL_THISCALL);
  1092. engine->RegisterObjectMethod("Menu", "const IntRect& get_imageRect() const", asMETHODPR(Menu, GetImageRect, () const, const IntRect&), asCALL_THISCALL);
  1093. // int UIElement::GetIndent() const | File: ../UI/UIElement.h
  1094. engine->RegisterObjectMethod("Menu", "int GetIndent() const", asMETHODPR(Menu, GetIndent, () const, int), asCALL_THISCALL);
  1095. engine->RegisterObjectMethod("Menu", "int get_indent() const", asMETHODPR(Menu, GetIndent, () const, int), asCALL_THISCALL);
  1096. // int UIElement::GetIndentSpacing() const | File: ../UI/UIElement.h
  1097. engine->RegisterObjectMethod("Menu", "int GetIndentSpacing() const", asMETHODPR(Menu, GetIndentSpacing, () const, int), asCALL_THISCALL);
  1098. engine->RegisterObjectMethod("Menu", "int get_indentSpacing() const", asMETHODPR(Menu, GetIndentSpacing, () const, int), asCALL_THISCALL);
  1099. // int UIElement::GetIndentWidth() const | File: ../UI/UIElement.h
  1100. engine->RegisterObjectMethod("Menu", "int GetIndentWidth() const", asMETHODPR(Menu, GetIndentWidth, () const, int), asCALL_THISCALL);
  1101. engine->RegisterObjectMethod("Menu", "int get_indentWidth() const", asMETHODPR(Menu, GetIndentWidth, () const, int), asCALL_THISCALL);
  1102. // bool Serializable::GetInterceptNetworkUpdate(const String& attributeName) const | File: ../Scene/Serializable.h
  1103. engine->RegisterObjectMethod("Menu", "bool GetInterceptNetworkUpdate(const String&in) const", asMETHODPR(Menu, GetInterceptNetworkUpdate, (const String&) const, bool), asCALL_THISCALL);
  1104. // const IntRect& UIElement::GetLayoutBorder() const | File: ../UI/UIElement.h
  1105. engine->RegisterObjectMethod("Menu", "const IntRect& GetLayoutBorder() const", asMETHODPR(Menu, GetLayoutBorder, () const, const IntRect&), asCALL_THISCALL);
  1106. engine->RegisterObjectMethod("Menu", "const IntRect& get_layoutBorder() const", asMETHODPR(Menu, GetLayoutBorder, () const, const IntRect&), asCALL_THISCALL);
  1107. // int UIElement::GetLayoutElementMaxSize() const | File: ../UI/UIElement.h
  1108. engine->RegisterObjectMethod("Menu", "int GetLayoutElementMaxSize() const", asMETHODPR(Menu, GetLayoutElementMaxSize, () const, int), asCALL_THISCALL);
  1109. // const Vector2& UIElement::GetLayoutFlexScale() const | File: ../UI/UIElement.h
  1110. engine->RegisterObjectMethod("Menu", "const Vector2& GetLayoutFlexScale() const", asMETHODPR(Menu, GetLayoutFlexScale, () const, const Vector2&), asCALL_THISCALL);
  1111. engine->RegisterObjectMethod("Menu", "const Vector2& get_layoutFlexScale() const", asMETHODPR(Menu, GetLayoutFlexScale, () const, const Vector2&), asCALL_THISCALL);
  1112. // LayoutMode UIElement::GetLayoutMode() const | File: ../UI/UIElement.h
  1113. engine->RegisterObjectMethod("Menu", "LayoutMode GetLayoutMode() const", asMETHODPR(Menu, GetLayoutMode, () const, LayoutMode), asCALL_THISCALL);
  1114. engine->RegisterObjectMethod("Menu", "LayoutMode get_layoutMode() const", asMETHODPR(Menu, GetLayoutMode, () const, LayoutMode), asCALL_THISCALL);
  1115. // int UIElement::GetLayoutSpacing() const | File: ../UI/UIElement.h
  1116. engine->RegisterObjectMethod("Menu", "int GetLayoutSpacing() const", asMETHODPR(Menu, GetLayoutSpacing, () const, int), asCALL_THISCALL);
  1117. engine->RegisterObjectMethod("Menu", "int get_layoutSpacing() const", asMETHODPR(Menu, GetLayoutSpacing, () const, int), asCALL_THISCALL);
  1118. // Material* BorderImage::GetMaterial() const | File: ../UI/BorderImage.h
  1119. engine->RegisterObjectMethod("Menu", "Material@+ GetMaterial() const", asMETHODPR(Menu, GetMaterial, () const, Material*), asCALL_THISCALL);
  1120. engine->RegisterObjectMethod("Menu", "Material@+ get_material() const", asMETHODPR(Menu, GetMaterial, () const, Material*), asCALL_THISCALL);
  1121. // ResourceRef BorderImage::GetMaterialAttr() const | File: ../UI/BorderImage.h
  1122. engine->RegisterObjectMethod("Menu", "ResourceRef GetMaterialAttr() const", asMETHODPR(Menu, GetMaterialAttr, () const, ResourceRef), asCALL_THISCALL);
  1123. // const Vector2& UIElement::GetMaxAnchor() const | File: ../UI/UIElement.h
  1124. engine->RegisterObjectMethod("Menu", "const Vector2& GetMaxAnchor() const", asMETHODPR(Menu, GetMaxAnchor, () const, const Vector2&), asCALL_THISCALL);
  1125. engine->RegisterObjectMethod("Menu", "const Vector2& get_maxAnchor() const", asMETHODPR(Menu, GetMaxAnchor, () const, const Vector2&), asCALL_THISCALL);
  1126. // int UIElement::GetMaxHeight() const | File: ../UI/UIElement.h
  1127. engine->RegisterObjectMethod("Menu", "int GetMaxHeight() const", asMETHODPR(Menu, GetMaxHeight, () const, int), asCALL_THISCALL);
  1128. engine->RegisterObjectMethod("Menu", "int get_maxHeight() const", asMETHODPR(Menu, GetMaxHeight, () const, int), asCALL_THISCALL);
  1129. // const IntVector2& UIElement::GetMaxOffset() const | File: ../UI/UIElement.h
  1130. engine->RegisterObjectMethod("Menu", "const IntVector2& GetMaxOffset() const", asMETHODPR(Menu, GetMaxOffset, () const, const IntVector2&), asCALL_THISCALL);
  1131. engine->RegisterObjectMethod("Menu", "const IntVector2& get_maxOffset() const", asMETHODPR(Menu, GetMaxOffset, () const, const IntVector2&), asCALL_THISCALL);
  1132. // const IntVector2& UIElement::GetMaxSize() const | File: ../UI/UIElement.h
  1133. engine->RegisterObjectMethod("Menu", "const IntVector2& GetMaxSize() const", asMETHODPR(Menu, GetMaxSize, () const, const IntVector2&), asCALL_THISCALL);
  1134. engine->RegisterObjectMethod("Menu", "const IntVector2& get_maxSize() const", asMETHODPR(Menu, GetMaxSize, () const, const IntVector2&), asCALL_THISCALL);
  1135. // int UIElement::GetMaxWidth() const | File: ../UI/UIElement.h
  1136. engine->RegisterObjectMethod("Menu", "int GetMaxWidth() const", asMETHODPR(Menu, GetMaxWidth, () const, int), asCALL_THISCALL);
  1137. engine->RegisterObjectMethod("Menu", "int get_maxWidth() const", asMETHODPR(Menu, GetMaxWidth, () const, int), asCALL_THISCALL);
  1138. // const Vector2& UIElement::GetMinAnchor() const | File: ../UI/UIElement.h
  1139. engine->RegisterObjectMethod("Menu", "const Vector2& GetMinAnchor() const", asMETHODPR(Menu, GetMinAnchor, () const, const Vector2&), asCALL_THISCALL);
  1140. engine->RegisterObjectMethod("Menu", "const Vector2& get_minAnchor() const", asMETHODPR(Menu, GetMinAnchor, () const, const Vector2&), asCALL_THISCALL);
  1141. // int UIElement::GetMinHeight() const | File: ../UI/UIElement.h
  1142. engine->RegisterObjectMethod("Menu", "int GetMinHeight() const", asMETHODPR(Menu, GetMinHeight, () const, int), asCALL_THISCALL);
  1143. engine->RegisterObjectMethod("Menu", "int get_minHeight() const", asMETHODPR(Menu, GetMinHeight, () const, int), asCALL_THISCALL);
  1144. // const IntVector2& UIElement::GetMinOffset() const | File: ../UI/UIElement.h
  1145. engine->RegisterObjectMethod("Menu", "const IntVector2& GetMinOffset() const", asMETHODPR(Menu, GetMinOffset, () const, const IntVector2&), asCALL_THISCALL);
  1146. engine->RegisterObjectMethod("Menu", "const IntVector2& get_minOffset() const", asMETHODPR(Menu, GetMinOffset, () const, const IntVector2&), asCALL_THISCALL);
  1147. // const IntVector2& UIElement::GetMinSize() const | File: ../UI/UIElement.h
  1148. engine->RegisterObjectMethod("Menu", "const IntVector2& GetMinSize() const", asMETHODPR(Menu, GetMinSize, () const, const IntVector2&), asCALL_THISCALL);
  1149. engine->RegisterObjectMethod("Menu", "const IntVector2& get_minSize() const", asMETHODPR(Menu, GetMinSize, () const, const IntVector2&), asCALL_THISCALL);
  1150. // int UIElement::GetMinWidth() const | File: ../UI/UIElement.h
  1151. engine->RegisterObjectMethod("Menu", "int GetMinWidth() const", asMETHODPR(Menu, GetMinWidth, () const, int), asCALL_THISCALL);
  1152. engine->RegisterObjectMethod("Menu", "int get_minWidth() const", asMETHODPR(Menu, GetMinWidth, () const, int), asCALL_THISCALL);
  1153. // const String& UIElement::GetName() const | File: ../UI/UIElement.h
  1154. engine->RegisterObjectMethod("Menu", "const String& GetName() const", asMETHODPR(Menu, GetName, () const, const String&), asCALL_THISCALL);
  1155. engine->RegisterObjectMethod("Menu", "const String& get_name() const", asMETHODPR(Menu, GetName, () const, const String&), asCALL_THISCALL);
  1156. // virtual const Vector<AttributeInfo>* Serializable::GetNetworkAttributes() const | File: ../Scene/Serializable.h
  1157. // Error: type "const Vector<AttributeInfo>*" can not automatically bind
  1158. // NetworkState* Serializable::GetNetworkState() const | File: ../Scene/Serializable.h
  1159. // Error: type "NetworkState*" can not automatically bind
  1160. // unsigned Serializable::GetNumAttributes() const | File: ../Scene/Serializable.h
  1161. engine->RegisterObjectMethod("Menu", "uint GetNumAttributes() const", asMETHODPR(Menu, GetNumAttributes, () const, unsigned), asCALL_THISCALL);
  1162. engine->RegisterObjectMethod("Menu", "uint get_numAttributes() const", asMETHODPR(Menu, GetNumAttributes, () const, unsigned), asCALL_THISCALL);
  1163. // unsigned UIElement::GetNumChildren(bool recursive=false) const | File: ../UI/UIElement.h
  1164. engine->RegisterObjectMethod("Menu", "uint GetNumChildren(bool = false) const", asMETHODPR(Menu, GetNumChildren, (bool) const, unsigned), asCALL_THISCALL);
  1165. engine->RegisterObjectMethod("Menu", "uint get_numChildren(bool = false) const", asMETHODPR(Menu, GetNumChildren, (bool) const, unsigned), asCALL_THISCALL);
  1166. // unsigned Serializable::GetNumNetworkAttributes() const | File: ../Scene/Serializable.h
  1167. engine->RegisterObjectMethod("Menu", "uint GetNumNetworkAttributes() const", asMETHODPR(Menu, GetNumNetworkAttributes, () const, unsigned), asCALL_THISCALL);
  1168. // ObjectAnimation* Animatable::GetObjectAnimation() const | File: ../Scene/Animatable.h
  1169. engine->RegisterObjectMethod("Menu", "ObjectAnimation@+ GetObjectAnimation() const", asMETHODPR(Menu, GetObjectAnimation, () const, ObjectAnimation*), asCALL_THISCALL);
  1170. engine->RegisterObjectMethod("Menu", "ObjectAnimation@+ get_objectAnimation() const", asMETHODPR(Menu, GetObjectAnimation, () const, ObjectAnimation*), asCALL_THISCALL);
  1171. // ResourceRef Animatable::GetObjectAnimationAttr() const | File: ../Scene/Animatable.h
  1172. engine->RegisterObjectMethod("Menu", "ResourceRef GetObjectAnimationAttr() const", asMETHODPR(Menu, GetObjectAnimationAttr, () const, ResourceRef), asCALL_THISCALL);
  1173. // float UIElement::GetOpacity() const | File: ../UI/UIElement.h
  1174. engine->RegisterObjectMethod("Menu", "float GetOpacity() const", asMETHODPR(Menu, GetOpacity, () const, float), asCALL_THISCALL);
  1175. engine->RegisterObjectMethod("Menu", "float get_opacity() const", asMETHODPR(Menu, GetOpacity, () const, float), asCALL_THISCALL);
  1176. // UIElement* UIElement::GetParent() const | File: ../UI/UIElement.h
  1177. engine->RegisterObjectMethod("Menu", "UIElement@+ GetParent() const", asMETHODPR(Menu, GetParent, () const, UIElement*), asCALL_THISCALL);
  1178. engine->RegisterObjectMethod("Menu", "UIElement@+ get_parent() const", asMETHODPR(Menu, GetParent, () const, UIElement*), asCALL_THISCALL);
  1179. // const Vector2& UIElement::GetPivot() const | File: ../UI/UIElement.h
  1180. engine->RegisterObjectMethod("Menu", "const Vector2& GetPivot() const", asMETHODPR(Menu, GetPivot, () const, const Vector2&), asCALL_THISCALL);
  1181. engine->RegisterObjectMethod("Menu", "const Vector2& get_pivot() const", asMETHODPR(Menu, GetPivot, () const, const Vector2&), asCALL_THISCALL);
  1182. // UIElement* Menu::GetPopup() const | File: ../UI/Menu.h
  1183. engine->RegisterObjectMethod("Menu", "UIElement@+ GetPopup() const", asMETHODPR(Menu, GetPopup, () const, UIElement*), asCALL_THISCALL);
  1184. engine->RegisterObjectMethod("Menu", "UIElement@+ get_popup() const", asMETHODPR(Menu, GetPopup, () const, UIElement*), asCALL_THISCALL);
  1185. // const IntVector2& Menu::GetPopupOffset() const | File: ../UI/Menu.h
  1186. engine->RegisterObjectMethod("Menu", "const IntVector2& GetPopupOffset() const", asMETHODPR(Menu, GetPopupOffset, () const, const IntVector2&), asCALL_THISCALL);
  1187. engine->RegisterObjectMethod("Menu", "const IntVector2& get_popupOffset() const", asMETHODPR(Menu, GetPopupOffset, () const, const IntVector2&), asCALL_THISCALL);
  1188. // const IntVector2& UIElement::GetPosition() const | File: ../UI/UIElement.h
  1189. engine->RegisterObjectMethod("Menu", "const IntVector2& GetPosition() const", asMETHODPR(Menu, GetPosition, () const, const IntVector2&), asCALL_THISCALL);
  1190. engine->RegisterObjectMethod("Menu", "const IntVector2& get_position() const", asMETHODPR(Menu, GetPosition, () const, const IntVector2&), asCALL_THISCALL);
  1191. // const IntVector2& Button::GetPressedChildOffset() const | File: ../UI/Button.h
  1192. engine->RegisterObjectMethod("Menu", "const IntVector2& GetPressedChildOffset() const", asMETHODPR(Menu, GetPressedChildOffset, () const, const IntVector2&), asCALL_THISCALL);
  1193. engine->RegisterObjectMethod("Menu", "const IntVector2& get_pressedChildOffset() const", asMETHODPR(Menu, GetPressedChildOffset, () const, const IntVector2&), asCALL_THISCALL);
  1194. // const IntVector2& Button::GetPressedOffset() const | File: ../UI/Button.h
  1195. engine->RegisterObjectMethod("Menu", "const IntVector2& GetPressedOffset() const", asMETHODPR(Menu, GetPressedOffset, () const, const IntVector2&), asCALL_THISCALL);
  1196. engine->RegisterObjectMethod("Menu", "const IntVector2& get_pressedOffset() const", asMETHODPR(Menu, GetPressedOffset, () const, const IntVector2&), asCALL_THISCALL);
  1197. // int UIElement::GetPriority() const | File: ../UI/UIElement.h
  1198. engine->RegisterObjectMethod("Menu", "int GetPriority() const", asMETHODPR(Menu, GetPriority, () const, int), asCALL_THISCALL);
  1199. engine->RegisterObjectMethod("Menu", "int get_priority() const", asMETHODPR(Menu, GetPriority, () const, int), asCALL_THISCALL);
  1200. // float Button::GetRepeatDelay() const | File: ../UI/Button.h
  1201. engine->RegisterObjectMethod("Menu", "float GetRepeatDelay() const", asMETHODPR(Menu, GetRepeatDelay, () const, float), asCALL_THISCALL);
  1202. engine->RegisterObjectMethod("Menu", "float get_repeatDelay() const", asMETHODPR(Menu, GetRepeatDelay, () const, float), asCALL_THISCALL);
  1203. // float Button::GetRepeatRate() const | File: ../UI/Button.h
  1204. engine->RegisterObjectMethod("Menu", "float GetRepeatRate() const", asMETHODPR(Menu, GetRepeatRate, () const, float), asCALL_THISCALL);
  1205. engine->RegisterObjectMethod("Menu", "float get_repeatRate() const", asMETHODPR(Menu, GetRepeatRate, () const, float), asCALL_THISCALL);
  1206. // UIElement* UIElement::GetRoot() const | File: ../UI/UIElement.h
  1207. engine->RegisterObjectMethod("Menu", "UIElement@+ GetRoot() const", asMETHODPR(Menu, GetRoot, () const, UIElement*), asCALL_THISCALL);
  1208. engine->RegisterObjectMethod("Menu", "UIElement@+ get_root() const", asMETHODPR(Menu, GetRoot, () const, UIElement*), asCALL_THISCALL);
  1209. // virtual const IntVector2& UIElement::GetScreenPosition() const | File: ../UI/UIElement.h
  1210. engine->RegisterObjectMethod("Menu", "const IntVector2& GetScreenPosition() const", asMETHODPR(Menu, GetScreenPosition, () const, const IntVector2&), asCALL_THISCALL);
  1211. engine->RegisterObjectMethod("Menu", "const IntVector2& get_screenPosition() const", asMETHODPR(Menu, GetScreenPosition, () const, const IntVector2&), asCALL_THISCALL);
  1212. // bool Menu::GetShowPopup() const | File: ../UI/Menu.h
  1213. engine->RegisterObjectMethod("Menu", "bool GetShowPopup() const", asMETHODPR(Menu, GetShowPopup, () const, bool), asCALL_THISCALL);
  1214. engine->RegisterObjectMethod("Menu", "bool get_showPopup() const", asMETHODPR(Menu, GetShowPopup, () const, bool), asCALL_THISCALL);
  1215. // const IntVector2& UIElement::GetSize() const | File: ../UI/UIElement.h
  1216. engine->RegisterObjectMethod("Menu", "const IntVector2& GetSize() const", asMETHODPR(Menu, GetSize, () const, const IntVector2&), asCALL_THISCALL);
  1217. engine->RegisterObjectMethod("Menu", "const IntVector2& get_size() const", asMETHODPR(Menu, GetSize, () const, const IntVector2&), asCALL_THISCALL);
  1218. // bool UIElement::GetSortChildren() const | File: ../UI/UIElement.h
  1219. engine->RegisterObjectMethod("Menu", "bool GetSortChildren() const", asMETHODPR(Menu, GetSortChildren, () const, bool), asCALL_THISCALL);
  1220. engine->RegisterObjectMethod("Menu", "bool get_sortChildren() const", asMETHODPR(Menu, GetSortChildren, () const, bool), asCALL_THISCALL);
  1221. // Object* Object::GetSubsystem(StringHash type) const | File: ../Core/Object.h
  1222. engine->RegisterObjectMethod("Menu", "Object@+ GetSubsystem(StringHash) const", asMETHODPR(Menu, GetSubsystem, (StringHash) const, Object*), asCALL_THISCALL);
  1223. // template<class T> T* Object::GetSubsystem() const | File: ../Core/Object.h
  1224. // Not registered because template
  1225. // const StringVector& UIElement::GetTags() const | File: ../UI/UIElement.h
  1226. engine->RegisterObjectMethod("Menu", "Array<String>@ GetTags() const", asFUNCTION(Menu_GetTags_void), asCALL_CDECL_OBJFIRST);
  1227. engine->RegisterObjectMethod("Menu", "Array<String>@ get_tags() const", asFUNCTION(Menu_GetTags_void), asCALL_CDECL_OBJFIRST);
  1228. // Texture* BorderImage::GetTexture() const | File: ../UI/BorderImage.h
  1229. engine->RegisterObjectMethod("Menu", "Texture@+ GetTexture() const", asMETHODPR(Menu, GetTexture, () const, Texture*), asCALL_THISCALL);
  1230. engine->RegisterObjectMethod("Menu", "Texture@+ get_texture() const", asMETHODPR(Menu, GetTexture, () const, Texture*), asCALL_THISCALL);
  1231. // ResourceRef BorderImage::GetTextureAttr() const | File: ../UI/BorderImage.h
  1232. engine->RegisterObjectMethod("Menu", "ResourceRef GetTextureAttr() const", asMETHODPR(Menu, GetTextureAttr, () const, ResourceRef), asCALL_THISCALL);
  1233. // TraversalMode UIElement::GetTraversalMode() const | File: ../UI/UIElement.h
  1234. engine->RegisterObjectMethod("Menu", "TraversalMode GetTraversalMode() const", asMETHODPR(Menu, GetTraversalMode, () const, TraversalMode), asCALL_THISCALL);
  1235. engine->RegisterObjectMethod("Menu", "TraversalMode get_traversalMode() const", asMETHODPR(Menu, GetTraversalMode, () const, TraversalMode), asCALL_THISCALL);
  1236. // virtual StringHash Object::GetType() const =0 | File: ../Core/Object.h
  1237. engine->RegisterObjectMethod("Menu", "StringHash GetType() const", asMETHODPR(Menu, GetType, () const, StringHash), asCALL_THISCALL);
  1238. engine->RegisterObjectMethod("Menu", "StringHash get_type() const", asMETHODPR(Menu, GetType, () const, StringHash), asCALL_THISCALL);
  1239. // virtual const TypeInfo* Object::GetTypeInfo() const =0 | File: ../Core/Object.h
  1240. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  1241. // static const TypeInfo* Object::GetTypeInfoStatic() | File: ../Core/Object.h
  1242. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  1243. // virtual const String& Object::GetTypeName() const =0 | File: ../Core/Object.h
  1244. engine->RegisterObjectMethod("Menu", "const String& GetTypeName() const", asMETHODPR(Menu, GetTypeName, () const, const String&), asCALL_THISCALL);
  1245. engine->RegisterObjectMethod("Menu", "const String& get_typeName() const", asMETHODPR(Menu, GetTypeName, () const, const String&), asCALL_THISCALL);
  1246. // bool UIElement::GetUseDerivedOpacity() const | File: ../UI/UIElement.h
  1247. engine->RegisterObjectMethod("Menu", "bool GetUseDerivedOpacity() const", asMETHODPR(Menu, GetUseDerivedOpacity, () const, bool), asCALL_THISCALL);
  1248. engine->RegisterObjectMethod("Menu", "bool get_useDerivedOpacity() const", asMETHODPR(Menu, GetUseDerivedOpacity, () const, bool), asCALL_THISCALL);
  1249. // const Variant& UIElement::GetVar(const StringHash& key) const | File: ../UI/UIElement.h
  1250. engine->RegisterObjectMethod("Menu", "const Variant& GetVar(const StringHash&in) const", asMETHODPR(Menu, GetVar, (const StringHash&) const, const Variant&), asCALL_THISCALL);
  1251. // const VariantMap& UIElement::GetVars() const | File: ../UI/UIElement.h
  1252. engine->RegisterObjectMethod("Menu", "const VariantMap& GetVars() const", asMETHODPR(Menu, GetVars, () const, const VariantMap&), asCALL_THISCALL);
  1253. // VerticalAlignment UIElement::GetVerticalAlignment() const | File: ../UI/UIElement.h
  1254. engine->RegisterObjectMethod("Menu", "VerticalAlignment GetVerticalAlignment() const", asMETHODPR(Menu, GetVerticalAlignment, () const, VerticalAlignment), asCALL_THISCALL);
  1255. engine->RegisterObjectMethod("Menu", "VerticalAlignment get_verticalAlignment() const", asMETHODPR(Menu, GetVerticalAlignment, () const, VerticalAlignment), asCALL_THISCALL);
  1256. // int UIElement::GetWidth() const | File: ../UI/UIElement.h
  1257. engine->RegisterObjectMethod("Menu", "int GetWidth() const", asMETHODPR(Menu, GetWidth, () const, int), asCALL_THISCALL);
  1258. engine->RegisterObjectMethod("Menu", "int get_width() const", asMETHODPR(Menu, GetWidth, () const, int), asCALL_THISCALL);
  1259. // bool UIElement::HasColorGradient() const | File: ../UI/UIElement.h
  1260. engine->RegisterObjectMethod("Menu", "bool HasColorGradient() const", asMETHODPR(Menu, HasColorGradient, () const, bool), asCALL_THISCALL);
  1261. engine->RegisterObjectMethod("Menu", "bool get_colorGradient() const", asMETHODPR(Menu, HasColorGradient, () const, bool), asCALL_THISCALL);
  1262. // bool Object::HasEventHandlers() const | File: ../Core/Object.h
  1263. engine->RegisterObjectMethod("Menu", "bool HasEventHandlers() const", asMETHODPR(Menu, HasEventHandlers, () const, bool), asCALL_THISCALL);
  1264. // bool UIElement::HasFocus() const | File: ../UI/UIElement.h
  1265. engine->RegisterObjectMethod("Menu", "bool HasFocus() const", asMETHODPR(Menu, HasFocus, () const, bool), asCALL_THISCALL);
  1266. engine->RegisterObjectMethod("Menu", "bool get_focus() const", asMETHODPR(Menu, HasFocus, () const, bool), asCALL_THISCALL);
  1267. // bool Object::HasSubscribedToEvent(StringHash eventType) const | File: ../Core/Object.h
  1268. engine->RegisterObjectMethod("Menu", "bool HasSubscribedToEvent(StringHash) const", asMETHODPR(Menu, HasSubscribedToEvent, (StringHash) const, bool), asCALL_THISCALL);
  1269. // bool Object::HasSubscribedToEvent(Object* sender, StringHash eventType) const | File: ../Core/Object.h
  1270. engine->RegisterObjectMethod("Menu", "bool HasSubscribedToEvent(Object@+, StringHash) const", asMETHODPR(Menu, HasSubscribedToEvent, (Object*, StringHash) const, bool), asCALL_THISCALL);
  1271. // bool UIElement::HasTag(const String& tag) const | File: ../UI/UIElement.h
  1272. engine->RegisterObjectMethod("Menu", "bool HasTag(const String&in) const", asMETHODPR(Menu, HasTag, (const String&) const, bool), asCALL_THISCALL);
  1273. // void UIElement::InsertChild(unsigned index, UIElement* element) | File: ../UI/UIElement.h
  1274. engine->RegisterObjectMethod("Menu", "void InsertChild(uint, UIElement@+)", asMETHODPR(Menu, InsertChild, (unsigned, UIElement*), void), asCALL_THISCALL);
  1275. // bool UIElement::IsChildOf(UIElement* element) const | File: ../UI/UIElement.h
  1276. engine->RegisterObjectMethod("Menu", "bool IsChildOf(UIElement@+) const", asMETHODPR(Menu, IsChildOf, (UIElement*) const, bool), asCALL_THISCALL);
  1277. // bool UIElement::IsEditable() const | File: ../UI/UIElement.h
  1278. engine->RegisterObjectMethod("Menu", "bool IsEditable() const", asMETHODPR(Menu, IsEditable, () const, bool), asCALL_THISCALL);
  1279. engine->RegisterObjectMethod("Menu", "bool get_editable() const", asMETHODPR(Menu, IsEditable, () const, bool), asCALL_THISCALL);
  1280. // bool UIElement::IsElementEventSender() const | File: ../UI/UIElement.h
  1281. engine->RegisterObjectMethod("Menu", "bool IsElementEventSender() const", asMETHODPR(Menu, IsElementEventSender, () const, bool), asCALL_THISCALL);
  1282. engine->RegisterObjectMethod("Menu", "bool get_elementEventSender() const", asMETHODPR(Menu, IsElementEventSender, () const, bool), asCALL_THISCALL);
  1283. // bool UIElement::IsEnabled() const | File: ../UI/UIElement.h
  1284. engine->RegisterObjectMethod("Menu", "bool IsEnabled() const", asMETHODPR(Menu, IsEnabled, () const, bool), asCALL_THISCALL);
  1285. engine->RegisterObjectMethod("Menu", "bool get_enabled() const", asMETHODPR(Menu, IsEnabled, () const, bool), asCALL_THISCALL);
  1286. // bool UIElement::IsEnabledSelf() const | File: ../UI/UIElement.h
  1287. engine->RegisterObjectMethod("Menu", "bool IsEnabledSelf() const", asMETHODPR(Menu, IsEnabledSelf, () const, bool), asCALL_THISCALL);
  1288. engine->RegisterObjectMethod("Menu", "bool get_enabledSelf() const", asMETHODPR(Menu, IsEnabledSelf, () const, bool), asCALL_THISCALL);
  1289. // bool UIElement::IsFixedHeight() const | File: ../UI/UIElement.h
  1290. engine->RegisterObjectMethod("Menu", "bool IsFixedHeight() const", asMETHODPR(Menu, IsFixedHeight, () const, bool), asCALL_THISCALL);
  1291. engine->RegisterObjectMethod("Menu", "bool get_fixedHeight() const", asMETHODPR(Menu, IsFixedHeight, () const, bool), asCALL_THISCALL);
  1292. // bool UIElement::IsFixedSize() const | File: ../UI/UIElement.h
  1293. engine->RegisterObjectMethod("Menu", "bool IsFixedSize() const", asMETHODPR(Menu, IsFixedSize, () const, bool), asCALL_THISCALL);
  1294. engine->RegisterObjectMethod("Menu", "bool get_fixedSize() const", asMETHODPR(Menu, IsFixedSize, () const, bool), asCALL_THISCALL);
  1295. // bool UIElement::IsFixedWidth() const | File: ../UI/UIElement.h
  1296. engine->RegisterObjectMethod("Menu", "bool IsFixedWidth() const", asMETHODPR(Menu, IsFixedWidth, () const, bool), asCALL_THISCALL);
  1297. engine->RegisterObjectMethod("Menu", "bool get_fixedWidth() const", asMETHODPR(Menu, IsFixedWidth, () const, bool), asCALL_THISCALL);
  1298. // bool UIElement::IsHovering() const | File: ../UI/UIElement.h
  1299. engine->RegisterObjectMethod("Menu", "bool IsHovering() const", asMETHODPR(Menu, IsHovering, () const, bool), asCALL_THISCALL);
  1300. engine->RegisterObjectMethod("Menu", "bool get_hovering() const", asMETHODPR(Menu, IsHovering, () const, bool), asCALL_THISCALL);
  1301. // bool UIElement::IsInside(IntVector2 position, bool isScreen) | File: ../UI/UIElement.h
  1302. engine->RegisterObjectMethod("Menu", "bool IsInside(IntVector2, bool)", asMETHODPR(Menu, IsInside, (IntVector2, bool), bool), asCALL_THISCALL);
  1303. // bool UIElement::IsInsideCombined(IntVector2 position, bool isScreen) | File: ../UI/UIElement.h
  1304. engine->RegisterObjectMethod("Menu", "bool IsInsideCombined(IntVector2, bool)", asMETHODPR(Menu, IsInsideCombined, (IntVector2, bool), bool), asCALL_THISCALL);
  1305. // bool Object::IsInstanceOf(StringHash type) const | File: ../Core/Object.h
  1306. engine->RegisterObjectMethod("Menu", "bool IsInstanceOf(StringHash) const", asMETHODPR(Menu, IsInstanceOf, (StringHash) const, bool), asCALL_THISCALL);
  1307. // bool Object::IsInstanceOf(const TypeInfo* typeInfo) const | File: ../Core/Object.h
  1308. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  1309. // template<typename T> bool Object::IsInstanceOf() const | File: ../Core/Object.h
  1310. // Not registered because template
  1311. // bool UIElement::IsInternal() const | File: ../UI/UIElement.h
  1312. engine->RegisterObjectMethod("Menu", "bool IsInternal() const", asMETHODPR(Menu, IsInternal, () const, bool), asCALL_THISCALL);
  1313. engine->RegisterObjectMethod("Menu", "bool get_internal() const", asMETHODPR(Menu, IsInternal, () const, bool), asCALL_THISCALL);
  1314. // bool Button::IsPressed() const | File: ../UI/Button.h
  1315. engine->RegisterObjectMethod("Menu", "bool IsPressed() const", asMETHODPR(Menu, IsPressed, () const, bool), asCALL_THISCALL);
  1316. engine->RegisterObjectMethod("Menu", "bool get_pressed() const", asMETHODPR(Menu, IsPressed, () const, bool), asCALL_THISCALL);
  1317. // bool UIElement::IsSelected() const | File: ../UI/UIElement.h
  1318. engine->RegisterObjectMethod("Menu", "bool IsSelected() const", asMETHODPR(Menu, IsSelected, () const, bool), asCALL_THISCALL);
  1319. engine->RegisterObjectMethod("Menu", "bool get_selected() const", asMETHODPR(Menu, IsSelected, () const, bool), asCALL_THISCALL);
  1320. // bool Serializable::IsTemporary() const | File: ../Scene/Serializable.h
  1321. engine->RegisterObjectMethod("Menu", "bool IsTemporary() const", asMETHODPR(Menu, IsTemporary, () const, bool), asCALL_THISCALL);
  1322. engine->RegisterObjectMethod("Menu", "bool get_temporary() const", asMETHODPR(Menu, IsTemporary, () const, bool), asCALL_THISCALL);
  1323. // bool BorderImage::IsTiled() const | File: ../UI/BorderImage.h
  1324. engine->RegisterObjectMethod("Menu", "bool IsTiled() const", asMETHODPR(Menu, IsTiled, () const, bool), asCALL_THISCALL);
  1325. engine->RegisterObjectMethod("Menu", "bool get_tiled() const", asMETHODPR(Menu, IsTiled, () const, bool), asCALL_THISCALL);
  1326. // bool UIElement::IsVisible() const | File: ../UI/UIElement.h
  1327. engine->RegisterObjectMethod("Menu", "bool IsVisible() const", asMETHODPR(Menu, IsVisible, () const, bool), asCALL_THISCALL);
  1328. engine->RegisterObjectMethod("Menu", "bool get_visible() const", asMETHODPR(Menu, IsVisible, () const, bool), asCALL_THISCALL);
  1329. // bool UIElement::IsVisibleEffective() const | File: ../UI/UIElement.h
  1330. engine->RegisterObjectMethod("Menu", "bool IsVisibleEffective() const", asMETHODPR(Menu, IsVisibleEffective, () const, bool), asCALL_THISCALL);
  1331. engine->RegisterObjectMethod("Menu", "bool get_visibleEffective() const", asMETHODPR(Menu, IsVisibleEffective, () const, bool), asCALL_THISCALL);
  1332. // virtual bool UIElement::IsWheelHandler() const | File: ../UI/UIElement.h
  1333. engine->RegisterObjectMethod("Menu", "bool IsWheelHandler() const", asMETHODPR(Menu, IsWheelHandler, () const, bool), asCALL_THISCALL);
  1334. // virtual bool UIElement::IsWithinScissor(const IntRect& currentScissor) | File: ../UI/UIElement.h
  1335. engine->RegisterObjectMethod("Menu", "bool IsWithinScissor(const IntRect&in)", asMETHODPR(Menu, IsWithinScissor, (const IntRect&), bool), asCALL_THISCALL);
  1336. // virtual bool Serializable::Load(Deserializer& source) | File: ../Scene/Serializable.h
  1337. engine->RegisterObjectMethod("Menu", "bool Load(Deserializer&)", asMETHODPR(Menu, Load, (Deserializer&), bool), asCALL_THISCALL);
  1338. // virtual UIElement* UIElement::LoadChildXML(const XMLElement& childElem, XMLFile* styleFile) | File: ../UI/UIElement.h
  1339. engine->RegisterObjectMethod("Menu", "UIElement@+ LoadChildXML(const XMLElement&in, XMLFile@+)", asMETHODPR(Menu, LoadChildXML, (const XMLElement&, XMLFile*), UIElement*), asCALL_THISCALL);
  1340. // bool Animatable::LoadJSON(const JSONValue& source) override | File: ../Scene/Animatable.h
  1341. engine->RegisterObjectMethod("Menu", "bool LoadJSON(const JSONValue&in)", asMETHODPR(Menu, LoadJSON, (const JSONValue&), bool), asCALL_THISCALL);
  1342. // bool Menu::LoadXML(const XMLElement& source, XMLFile* styleFile) override | File: ../UI/Menu.h
  1343. engine->RegisterObjectMethod("Menu", "bool LoadXML(const XMLElement&in, XMLFile@+)", asMETHODPR(Menu, LoadXML, (const XMLElement&, XMLFile*), bool), asCALL_THISCALL);
  1344. // virtual void Serializable::MarkNetworkUpdate() | File: ../Scene/Serializable.h
  1345. engine->RegisterObjectMethod("Menu", "void MarkNetworkUpdate()", asMETHODPR(Menu, MarkNetworkUpdate, (), void), asCALL_THISCALL);
  1346. // explicit Menu::Menu(Context* context) | File: ../UI/Menu.h
  1347. engine->RegisterObjectBehaviour("Menu", asBEHAVE_FACTORY, "Menu@+ f()", asFUNCTION(Menu_Menu_Context), asCALL_CDECL);
  1348. // void Button::OnClickBegin(const IntVector2& position, const IntVector2& screenPosition, MouseButton button, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) override | File: ../UI/Button.h
  1349. engine->RegisterObjectMethod("Menu", "void OnClickBegin(const IntVector2&in, const IntVector2&in, MouseButton, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(Menu, OnClickBegin, (const IntVector2&, const IntVector2&, MouseButton, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  1350. // void Button::OnClickEnd(const IntVector2& position, const IntVector2& screenPosition, MouseButton button, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor, UIElement* beginElement) override | File: ../UI/Button.h
  1351. engine->RegisterObjectMethod("Menu", "void OnClickEnd(const IntVector2&in, const IntVector2&in, MouseButton, MouseButtonFlags, QualifierFlags, Cursor@+, UIElement@+)", asMETHODPR(Menu, OnClickEnd, (const IntVector2&, const IntVector2&, MouseButton, MouseButtonFlags, QualifierFlags, Cursor*, UIElement*), void), asCALL_THISCALL);
  1352. // virtual void UIElement::OnDoubleClick(const IntVector2& position, const IntVector2& screenPosition, MouseButton button, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) | File: ../UI/UIElement.h
  1353. engine->RegisterObjectMethod("Menu", "void OnDoubleClick(const IntVector2&in, const IntVector2&in, MouseButton, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(Menu, OnDoubleClick, (const IntVector2&, const IntVector2&, MouseButton, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  1354. // virtual void UIElement::OnDragBegin(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) | File: ../UI/UIElement.h
  1355. engine->RegisterObjectMethod("Menu", "void OnDragBegin(const IntVector2&in, const IntVector2&in, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(Menu, OnDragBegin, (const IntVector2&, const IntVector2&, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  1356. // virtual void UIElement::OnDragCancel(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags dragButtons, MouseButtonFlags cancelButtons, Cursor* cursor) | File: ../UI/UIElement.h
  1357. engine->RegisterObjectMethod("Menu", "void OnDragCancel(const IntVector2&in, const IntVector2&in, MouseButtonFlags, MouseButtonFlags, Cursor@+)", asMETHODPR(Menu, OnDragCancel, (const IntVector2&, const IntVector2&, MouseButtonFlags, MouseButtonFlags, Cursor*), void), asCALL_THISCALL);
  1358. // virtual bool UIElement::OnDragDropFinish(UIElement* source) | File: ../UI/UIElement.h
  1359. engine->RegisterObjectMethod("Menu", "bool OnDragDropFinish(UIElement@+)", asMETHODPR(Menu, OnDragDropFinish, (UIElement*), bool), asCALL_THISCALL);
  1360. // virtual bool UIElement::OnDragDropTest(UIElement* source) | File: ../UI/UIElement.h
  1361. engine->RegisterObjectMethod("Menu", "bool OnDragDropTest(UIElement@+)", asMETHODPR(Menu, OnDragDropTest, (UIElement*), bool), asCALL_THISCALL);
  1362. // virtual void UIElement::OnDragEnd(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags dragButtons, MouseButtonFlags releaseButtons, Cursor* cursor) | File: ../UI/UIElement.h
  1363. engine->RegisterObjectMethod("Menu", "void OnDragEnd(const IntVector2&in, const IntVector2&in, MouseButtonFlags, MouseButtonFlags, Cursor@+)", asMETHODPR(Menu, OnDragEnd, (const IntVector2&, const IntVector2&, MouseButtonFlags, MouseButtonFlags, Cursor*), void), asCALL_THISCALL);
  1364. // void Button::OnDragMove(const IntVector2& position, const IntVector2& screenPosition, const IntVector2& deltaPos, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) override | File: ../UI/Button.h
  1365. engine->RegisterObjectMethod("Menu", "void OnDragMove(const IntVector2&in, const IntVector2&in, const IntVector2&in, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(Menu, OnDragMove, (const IntVector2&, const IntVector2&, const IntVector2&, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  1366. // virtual void Object::OnEvent(Object* sender, StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  1367. engine->RegisterObjectMethod("Menu", "void OnEvent(Object@+, StringHash, VariantMap&)", asMETHODPR(Menu, OnEvent, (Object*, StringHash, VariantMap&), void), asCALL_THISCALL);
  1368. // virtual void Serializable::OnGetAttribute(const AttributeInfo& attr, Variant& dest) const | File: ../Scene/Serializable.h
  1369. engine->RegisterObjectMethod("Menu", "void OnGetAttribute(const AttributeInfo&in, Variant&) const", asMETHODPR(Menu, OnGetAttribute, (const AttributeInfo&, Variant&) const, void), asCALL_THISCALL);
  1370. // virtual void Menu::OnHidePopup() | File: ../UI/Menu.h
  1371. engine->RegisterObjectMethod("Menu", "void OnHidePopup()", asMETHODPR(Menu, OnHidePopup, (), void), asCALL_THISCALL);
  1372. // void Menu::OnHover(const IntVector2& position, const IntVector2& screenPosition, MouseButtonFlags buttons, QualifierFlags qualifiers, Cursor* cursor) override | File: ../UI/Menu.h
  1373. engine->RegisterObjectMethod("Menu", "void OnHover(const IntVector2&in, const IntVector2&in, MouseButtonFlags, QualifierFlags, Cursor@+)", asMETHODPR(Menu, OnHover, (const IntVector2&, const IntVector2&, MouseButtonFlags, QualifierFlags, Cursor*), void), asCALL_THISCALL);
  1374. // virtual void UIElement::OnIndentSet() | File: ../UI/UIElement.h
  1375. engine->RegisterObjectMethod("Menu", "void OnIndentSet()", asMETHODPR(Menu, OnIndentSet, (), void), asCALL_THISCALL);
  1376. // void Button::OnKey(Key key, MouseButtonFlags buttons, QualifierFlags qualifiers) override | File: ../UI/Button.h
  1377. engine->RegisterObjectMethod("Menu", "void OnKey(Key, MouseButtonFlags, QualifierFlags)", asMETHODPR(Menu, OnKey, (Key, MouseButtonFlags, QualifierFlags), void), asCALL_THISCALL);
  1378. // virtual void UIElement::OnPositionSet(const IntVector2& newPosition) | File: ../UI/UIElement.h
  1379. engine->RegisterObjectMethod("Menu", "void OnPositionSet(const IntVector2&in)", asMETHODPR(Menu, OnPositionSet, (const IntVector2&), void), asCALL_THISCALL);
  1380. // virtual void UIElement::OnResize(const IntVector2& newSize, const IntVector2& delta) | File: ../UI/UIElement.h
  1381. engine->RegisterObjectMethod("Menu", "void OnResize(const IntVector2&in, const IntVector2&in)", asMETHODPR(Menu, OnResize, (const IntVector2&, const IntVector2&), void), asCALL_THISCALL);
  1382. // virtual void Serializable::OnSetAttribute(const AttributeInfo& attr, const Variant& src) | File: ../Scene/Serializable.h
  1383. engine->RegisterObjectMethod("Menu", "void OnSetAttribute(const AttributeInfo&in, const Variant&in)", asMETHODPR(Menu, OnSetAttribute, (const AttributeInfo&, const Variant&), void), asCALL_THISCALL);
  1384. // virtual void UIElement::OnSetEditable() | File: ../UI/UIElement.h
  1385. engine->RegisterObjectMethod("Menu", "void OnSetEditable()", asMETHODPR(Menu, OnSetEditable, (), void), asCALL_THISCALL);
  1386. // virtual void Menu::OnShowPopup() | File: ../UI/Menu.h
  1387. engine->RegisterObjectMethod("Menu", "void OnShowPopup()", asMETHODPR(Menu, OnShowPopup, (), void), asCALL_THISCALL);
  1388. // virtual void UIElement::OnTextInput(const String& text) | File: ../UI/UIElement.h
  1389. engine->RegisterObjectMethod("Menu", "void OnTextInput(const String&in)", asMETHODPR(Menu, OnTextInput, (const String&), void), asCALL_THISCALL);
  1390. // virtual void UIElement::OnWheel(int delta, MouseButtonFlags buttons, QualifierFlags qualifiers) | File: ../UI/UIElement.h
  1391. engine->RegisterObjectMethod("Menu", "void OnWheel(int, MouseButtonFlags, QualifierFlags)", asMETHODPR(Menu, OnWheel, (int, MouseButtonFlags, QualifierFlags), void), asCALL_THISCALL);
  1392. // bool Serializable::ReadDeltaUpdate(Deserializer& source) | File: ../Scene/Serializable.h
  1393. engine->RegisterObjectMethod("Menu", "bool ReadDeltaUpdate(Deserializer&)", asMETHODPR(Menu, ReadDeltaUpdate, (Deserializer&), bool), asCALL_THISCALL);
  1394. // bool Serializable::ReadLatestDataUpdate(Deserializer& source) | File: ../Scene/Serializable.h
  1395. engine->RegisterObjectMethod("Menu", "bool ReadLatestDataUpdate(Deserializer&)", asMETHODPR(Menu, ReadLatestDataUpdate, (Deserializer&), bool), asCALL_THISCALL);
  1396. // RefCount* RefCounted::RefCountPtr() | File: ../Container/RefCounted.h
  1397. // Error: type "RefCount*" can not automatically bind
  1398. // int RefCounted::Refs() const | File: ../Container/RefCounted.h
  1399. engine->RegisterObjectMethod("Menu", "int Refs() const", asMETHODPR(Menu, Refs, () const, int), asCALL_THISCALL);
  1400. engine->RegisterObjectMethod("Menu", "int get_refs() const", asMETHODPR(Menu, Refs, () const, int), asCALL_THISCALL);
  1401. // static void Menu::RegisterObject(Context* context) | File: ../UI/Menu.h
  1402. // Context can be used as firs parameter of constructors only
  1403. // void RefCounted::ReleaseRef() | File: ../Container/RefCounted.h
  1404. engine->RegisterObjectBehaviour("Menu", asBEHAVE_RELEASE, "void f()", asMETHODPR(Menu, ReleaseRef, (), void), asCALL_THISCALL);
  1405. // void UIElement::Remove() | File: ../UI/UIElement.h
  1406. engine->RegisterObjectMethod("Menu", "void Remove()", asMETHODPR(Menu, Remove, (), void), asCALL_THISCALL);
  1407. // void UIElement::RemoveAllChildren() | File: ../UI/UIElement.h
  1408. engine->RegisterObjectMethod("Menu", "void RemoveAllChildren()", asMETHODPR(Menu, RemoveAllChildren, (), void), asCALL_THISCALL);
  1409. // void UIElement::RemoveAllTags() | File: ../UI/UIElement.h
  1410. engine->RegisterObjectMethod("Menu", "void RemoveAllTags()", asMETHODPR(Menu, RemoveAllTags, (), void), asCALL_THISCALL);
  1411. // void Animatable::RemoveAttributeAnimation(const String& name) | File: ../Scene/Animatable.h
  1412. engine->RegisterObjectMethod("Menu", "void RemoveAttributeAnimation(const String&in)", asMETHODPR(Menu, RemoveAttributeAnimation, (const String&), void), asCALL_THISCALL);
  1413. // void UIElement::RemoveChild(UIElement* element, unsigned index=0) | File: ../UI/UIElement.h
  1414. engine->RegisterObjectMethod("Menu", "void RemoveChild(UIElement@+, uint = 0)", asMETHODPR(Menu, RemoveChild, (UIElement*, unsigned), void), asCALL_THISCALL);
  1415. // void UIElement::RemoveChildAtIndex(unsigned index) | File: ../UI/UIElement.h
  1416. engine->RegisterObjectMethod("Menu", "void RemoveChildAtIndex(uint)", asMETHODPR(Menu, RemoveChildAtIndex, (unsigned), void), asCALL_THISCALL);
  1417. // void Serializable::RemoveInstanceDefault() | File: ../Scene/Serializable.h
  1418. engine->RegisterObjectMethod("Menu", "void RemoveInstanceDefault()", asMETHODPR(Menu, RemoveInstanceDefault, (), void), asCALL_THISCALL);
  1419. // void Animatable::RemoveObjectAnimation() | File: ../Scene/Animatable.h
  1420. engine->RegisterObjectMethod("Menu", "void RemoveObjectAnimation()", asMETHODPR(Menu, RemoveObjectAnimation, (), void), asCALL_THISCALL);
  1421. // bool UIElement::RemoveTag(const String& tag) | File: ../UI/UIElement.h
  1422. engine->RegisterObjectMethod("Menu", "bool RemoveTag(const String&in)", asMETHODPR(Menu, RemoveTag, (const String&), bool), asCALL_THISCALL);
  1423. // void UIElement::ResetDeepEnabled() | File: ../UI/UIElement.h
  1424. engine->RegisterObjectMethod("Menu", "void ResetDeepEnabled()", asMETHODPR(Menu, ResetDeepEnabled, (), void), asCALL_THISCALL);
  1425. // void Serializable::ResetToDefault() | File: ../Scene/Serializable.h
  1426. engine->RegisterObjectMethod("Menu", "void ResetToDefault()", asMETHODPR(Menu, ResetToDefault, (), void), asCALL_THISCALL);
  1427. // virtual bool Serializable::Save(Serializer& dest) const | File: ../Scene/Serializable.h
  1428. engine->RegisterObjectMethod("Menu", "bool Save(Serializer&) const", asMETHODPR(Menu, Save, (Serializer&) const, bool), asCALL_THISCALL);
  1429. // virtual bool Serializable::SaveDefaultAttributes() const | File: ../Scene/Serializable.h
  1430. engine->RegisterObjectMethod("Menu", "bool SaveDefaultAttributes() const", asMETHODPR(Menu, SaveDefaultAttributes, () const, bool), asCALL_THISCALL);
  1431. // bool Animatable::SaveJSON(JSONValue& dest) const override | File: ../Scene/Animatable.h
  1432. engine->RegisterObjectMethod("Menu", "bool SaveJSON(JSONValue&) const", asMETHODPR(Menu, SaveJSON, (JSONValue&) const, bool), asCALL_THISCALL);
  1433. // bool Menu::SaveXML(XMLElement& dest) const override | File: ../UI/Menu.h
  1434. engine->RegisterObjectMethod("Menu", "bool SaveXML(XMLElement&) const", asMETHODPR(Menu, SaveXML, (XMLElement&) const, bool), asCALL_THISCALL);
  1435. // virtual IntVector2 UIElement::ScreenToElement(const IntVector2& screenPosition) | File: ../UI/UIElement.h
  1436. engine->RegisterObjectMethod("Menu", "IntVector2 ScreenToElement(const IntVector2&in)", asMETHODPR(Menu, ScreenToElement, (const IntVector2&), IntVector2), asCALL_THISCALL);
  1437. // void Object::SendEvent(StringHash eventType) | File: ../Core/Object.h
  1438. engine->RegisterObjectMethod("Menu", "void SendEvent(StringHash)", asMETHODPR(Menu, SendEvent, (StringHash), void), asCALL_THISCALL);
  1439. // void Object::SendEvent(StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  1440. engine->RegisterObjectMethod("Menu", "void SendEvent(StringHash, VariantMap&)", asMETHODPR(Menu, SendEvent, (StringHash, VariantMap&), void), asCALL_THISCALL);
  1441. // template<typename... Args> void Object::SendEvent(StringHash eventType, Args... args) | File: ../Core/Object.h
  1442. // Not registered because template
  1443. // void Menu::SetAccelerator(int key, int qualifiers) | File: ../UI/Menu.h
  1444. engine->RegisterObjectMethod("Menu", "void SetAccelerator(int, int)", asMETHODPR(Menu, SetAccelerator, (int, int), void), asCALL_THISCALL);
  1445. // void UIElement::SetAlignment(HorizontalAlignment hAlign, VerticalAlignment vAlign) | File: ../UI/UIElement.h
  1446. engine->RegisterObjectMethod("Menu", "void SetAlignment(HorizontalAlignment, VerticalAlignment)", asMETHODPR(Menu, SetAlignment, (HorizontalAlignment, VerticalAlignment), void), asCALL_THISCALL);
  1447. // void Animatable::SetAnimationEnabled(bool enable) | File: ../Scene/Animatable.h
  1448. engine->RegisterObjectMethod("Menu", "void SetAnimationEnabled(bool)", asMETHODPR(Menu, SetAnimationEnabled, (bool), void), asCALL_THISCALL);
  1449. engine->RegisterObjectMethod("Menu", "void set_animationEnabled(bool)", asMETHODPR(Menu, SetAnimationEnabled, (bool), void), asCALL_THISCALL);
  1450. // void Animatable::SetAnimationTime(float time) | File: ../Scene/Animatable.h
  1451. engine->RegisterObjectMethod("Menu", "void SetAnimationTime(float)", asMETHODPR(Menu, SetAnimationTime, (float), void), asCALL_THISCALL);
  1452. // bool Serializable::SetAttribute(unsigned index, const Variant& value) | File: ../Scene/Serializable.h
  1453. engine->RegisterObjectMethod("Menu", "bool SetAttribute(uint, const Variant&in)", asMETHODPR(Menu, SetAttribute, (unsigned, const Variant&), bool), asCALL_THISCALL);
  1454. engine->RegisterObjectMethod("Menu", "bool set_attributes(uint, const Variant&in)", asMETHODPR(Menu, SetAttribute, (unsigned, const Variant&), bool), asCALL_THISCALL);
  1455. // bool Serializable::SetAttribute(const String& name, const Variant& value) | File: ../Scene/Serializable.h
  1456. engine->RegisterObjectMethod("Menu", "bool SetAttribute(const String&in, const Variant&in)", asMETHODPR(Menu, SetAttribute, (const String&, const Variant&), bool), asCALL_THISCALL);
  1457. // void Animatable::SetAttributeAnimation(const String& name, ValueAnimation* attributeAnimation, WrapMode wrapMode=WM_LOOP, float speed=1.0f) | File: ../Scene/Animatable.h
  1458. engine->RegisterObjectMethod("Menu", "void SetAttributeAnimation(const String&in, ValueAnimation@+, WrapMode = WM_LOOP, float = 1.0f)", asMETHODPR(Menu, SetAttributeAnimation, (const String&, ValueAnimation*, WrapMode, float), void), asCALL_THISCALL);
  1459. // void Animatable::SetAttributeAnimationSpeed(const String& name, float speed) | File: ../Scene/Animatable.h
  1460. engine->RegisterObjectMethod("Menu", "void SetAttributeAnimationSpeed(const String&in, float)", asMETHODPR(Menu, SetAttributeAnimationSpeed, (const String&, float), void), asCALL_THISCALL);
  1461. // void Animatable::SetAttributeAnimationTime(const String& name, float time) | File: ../Scene/Animatable.h
  1462. engine->RegisterObjectMethod("Menu", "void SetAttributeAnimationTime(const String&in, float)", asMETHODPR(Menu, SetAttributeAnimationTime, (const String&, float), void), asCALL_THISCALL);
  1463. // void Animatable::SetAttributeAnimationWrapMode(const String& name, WrapMode wrapMode) | File: ../Scene/Animatable.h
  1464. engine->RegisterObjectMethod("Menu", "void SetAttributeAnimationWrapMode(const String&in, WrapMode)", asMETHODPR(Menu, SetAttributeAnimationWrapMode, (const String&, WrapMode), void), asCALL_THISCALL);
  1465. // void BorderImage::SetBlendMode(BlendMode mode) | File: ../UI/BorderImage.h
  1466. engine->RegisterObjectMethod("Menu", "void SetBlendMode(BlendMode)", asMETHODPR(Menu, SetBlendMode, (BlendMode), void), asCALL_THISCALL);
  1467. engine->RegisterObjectMethod("Menu", "void set_blendMode(BlendMode)", asMETHODPR(Menu, SetBlendMode, (BlendMode), void), asCALL_THISCALL);
  1468. // void Object::SetBlockEvents(bool block) | File: ../Core/Object.h
  1469. engine->RegisterObjectMethod("Menu", "void SetBlockEvents(bool)", asMETHODPR(Menu, SetBlockEvents, (bool), void), asCALL_THISCALL);
  1470. // void BorderImage::SetBorder(const IntRect& rect) | File: ../UI/BorderImage.h
  1471. engine->RegisterObjectMethod("Menu", "void SetBorder(const IntRect&in)", asMETHODPR(Menu, SetBorder, (const IntRect&), void), asCALL_THISCALL);
  1472. engine->RegisterObjectMethod("Menu", "void set_border(const IntRect&in)", asMETHODPR(Menu, SetBorder, (const IntRect&), void), asCALL_THISCALL);
  1473. // void UIElement::SetBringToBack(bool enable) | File: ../UI/UIElement.h
  1474. engine->RegisterObjectMethod("Menu", "void SetBringToBack(bool)", asMETHODPR(Menu, SetBringToBack, (bool), void), asCALL_THISCALL);
  1475. engine->RegisterObjectMethod("Menu", "void set_bringToBack(bool)", asMETHODPR(Menu, SetBringToBack, (bool), void), asCALL_THISCALL);
  1476. // void UIElement::SetBringToFront(bool enable) | File: ../UI/UIElement.h
  1477. engine->RegisterObjectMethod("Menu", "void SetBringToFront(bool)", asMETHODPR(Menu, SetBringToFront, (bool), void), asCALL_THISCALL);
  1478. engine->RegisterObjectMethod("Menu", "void set_bringToFront(bool)", asMETHODPR(Menu, SetBringToFront, (bool), void), asCALL_THISCALL);
  1479. // void UIElement::SetChildOffset(const IntVector2& offset) | File: ../UI/UIElement.h
  1480. engine->RegisterObjectMethod("Menu", "void SetChildOffset(const IntVector2&in)", asMETHODPR(Menu, SetChildOffset, (const IntVector2&), void), asCALL_THISCALL);
  1481. // void UIElement::SetClipBorder(const IntRect& rect) | File: ../UI/UIElement.h
  1482. engine->RegisterObjectMethod("Menu", "void SetClipBorder(const IntRect&in)", asMETHODPR(Menu, SetClipBorder, (const IntRect&), void), asCALL_THISCALL);
  1483. engine->RegisterObjectMethod("Menu", "void set_clipBorder(const IntRect&in)", asMETHODPR(Menu, SetClipBorder, (const IntRect&), void), asCALL_THISCALL);
  1484. // void UIElement::SetClipChildren(bool enable) | File: ../UI/UIElement.h
  1485. engine->RegisterObjectMethod("Menu", "void SetClipChildren(bool)", asMETHODPR(Menu, SetClipChildren, (bool), void), asCALL_THISCALL);
  1486. engine->RegisterObjectMethod("Menu", "void set_clipChildren(bool)", asMETHODPR(Menu, SetClipChildren, (bool), void), asCALL_THISCALL);
  1487. // void UIElement::SetColor(const Color& color) | File: ../UI/UIElement.h
  1488. engine->RegisterObjectMethod("Menu", "void SetColor(const Color&in)", asMETHODPR(Menu, SetColor, (const Color&), void), asCALL_THISCALL);
  1489. engine->RegisterObjectMethod("Menu", "void set_color(const Color&in)", asMETHODPR(Menu, SetColor, (const Color&), void), asCALL_THISCALL);
  1490. // void UIElement::SetColor(Corner corner, const Color& color) | File: ../UI/UIElement.h
  1491. engine->RegisterObjectMethod("Menu", "void SetColor(Corner, const Color&in)", asMETHODPR(Menu, SetColor, (Corner, const Color&), void), asCALL_THISCALL);
  1492. engine->RegisterObjectMethod("Menu", "void set_colors(Corner, const Color&in)", asMETHODPR(Menu, SetColor, (Corner, const Color&), void), asCALL_THISCALL);
  1493. // void UIElement::SetDeepEnabled(bool enable) | File: ../UI/UIElement.h
  1494. engine->RegisterObjectMethod("Menu", "void SetDeepEnabled(bool)", asMETHODPR(Menu, SetDeepEnabled, (bool), void), asCALL_THISCALL);
  1495. // void UIElement::SetDefaultStyle(XMLFile* style) | File: ../UI/UIElement.h
  1496. engine->RegisterObjectMethod("Menu", "void SetDefaultStyle(XMLFile@+)", asMETHODPR(Menu, SetDefaultStyle, (XMLFile*), void), asCALL_THISCALL);
  1497. engine->RegisterObjectMethod("Menu", "void set_defaultStyle(XMLFile@+)", asMETHODPR(Menu, SetDefaultStyle, (XMLFile*), void), asCALL_THISCALL);
  1498. // void BorderImage::SetDisabledOffset(const IntVector2& offset) | File: ../UI/BorderImage.h
  1499. engine->RegisterObjectMethod("Menu", "void SetDisabledOffset(const IntVector2&in)", asMETHODPR(Menu, SetDisabledOffset, (const IntVector2&), void), asCALL_THISCALL);
  1500. engine->RegisterObjectMethod("Menu", "void set_disabledOffset(const IntVector2&in)", asMETHODPR(Menu, SetDisabledOffset, (const IntVector2&), void), asCALL_THISCALL);
  1501. // void BorderImage::SetDisabledOffset(int x, int y) | File: ../UI/BorderImage.h
  1502. engine->RegisterObjectMethod("Menu", "void SetDisabledOffset(int, int)", asMETHODPR(Menu, SetDisabledOffset, (int, int), void), asCALL_THISCALL);
  1503. // void UIElement::SetDragDropMode(DragAndDropModeFlags mode) | File: ../UI/UIElement.h
  1504. engine->RegisterObjectMethod("Menu", "void SetDragDropMode(DragAndDropModeFlags)", asMETHODPR(Menu, SetDragDropMode, (DragAndDropModeFlags), void), asCALL_THISCALL);
  1505. engine->RegisterObjectMethod("Menu", "void set_dragDropMode(DragAndDropModeFlags)", asMETHODPR(Menu, SetDragDropMode, (DragAndDropModeFlags), void), asCALL_THISCALL);
  1506. // void UIElement::SetEditable(bool enable) | File: ../UI/UIElement.h
  1507. engine->RegisterObjectMethod("Menu", "void SetEditable(bool)", asMETHODPR(Menu, SetEditable, (bool), void), asCALL_THISCALL);
  1508. engine->RegisterObjectMethod("Menu", "void set_editable(bool)", asMETHODPR(Menu, SetEditable, (bool), void), asCALL_THISCALL);
  1509. // void UIElement::SetElementEventSender(bool flag) | File: ../UI/UIElement.h
  1510. engine->RegisterObjectMethod("Menu", "void SetElementEventSender(bool)", asMETHODPR(Menu, SetElementEventSender, (bool), void), asCALL_THISCALL);
  1511. engine->RegisterObjectMethod("Menu", "void set_elementEventSender(bool)", asMETHODPR(Menu, SetElementEventSender, (bool), void), asCALL_THISCALL);
  1512. // void UIElement::SetEnableAnchor(bool enable) | File: ../UI/UIElement.h
  1513. engine->RegisterObjectMethod("Menu", "void SetEnableAnchor(bool)", asMETHODPR(Menu, SetEnableAnchor, (bool), void), asCALL_THISCALL);
  1514. engine->RegisterObjectMethod("Menu", "void set_enableAnchor(bool)", asMETHODPR(Menu, SetEnableAnchor, (bool), void), asCALL_THISCALL);
  1515. // void UIElement::SetEnabled(bool enable) | File: ../UI/UIElement.h
  1516. engine->RegisterObjectMethod("Menu", "void SetEnabled(bool)", asMETHODPR(Menu, SetEnabled, (bool), void), asCALL_THISCALL);
  1517. engine->RegisterObjectMethod("Menu", "void set_enabled(bool)", asMETHODPR(Menu, SetEnabled, (bool), void), asCALL_THISCALL);
  1518. // void UIElement::SetEnabledRecursive(bool enable) | File: ../UI/UIElement.h
  1519. engine->RegisterObjectMethod("Menu", "void SetEnabledRecursive(bool)", asMETHODPR(Menu, SetEnabledRecursive, (bool), void), asCALL_THISCALL);
  1520. // void UIElement::SetFixedHeight(int height) | File: ../UI/UIElement.h
  1521. engine->RegisterObjectMethod("Menu", "void SetFixedHeight(int)", asMETHODPR(Menu, SetFixedHeight, (int), void), asCALL_THISCALL);
  1522. // void UIElement::SetFixedSize(const IntVector2& size) | File: ../UI/UIElement.h
  1523. engine->RegisterObjectMethod("Menu", "void SetFixedSize(const IntVector2&in)", asMETHODPR(Menu, SetFixedSize, (const IntVector2&), void), asCALL_THISCALL);
  1524. // void UIElement::SetFixedSize(int width, int height) | File: ../UI/UIElement.h
  1525. engine->RegisterObjectMethod("Menu", "void SetFixedSize(int, int)", asMETHODPR(Menu, SetFixedSize, (int, int), void), asCALL_THISCALL);
  1526. // void UIElement::SetFixedWidth(int width) | File: ../UI/UIElement.h
  1527. engine->RegisterObjectMethod("Menu", "void SetFixedWidth(int)", asMETHODPR(Menu, SetFixedWidth, (int), void), asCALL_THISCALL);
  1528. // void UIElement::SetFocus(bool enable) | File: ../UI/UIElement.h
  1529. engine->RegisterObjectMethod("Menu", "void SetFocus(bool)", asMETHODPR(Menu, SetFocus, (bool), void), asCALL_THISCALL);
  1530. engine->RegisterObjectMethod("Menu", "void set_focus(bool)", asMETHODPR(Menu, SetFocus, (bool), void), asCALL_THISCALL);
  1531. // void UIElement::SetFocusMode(FocusMode mode) | File: ../UI/UIElement.h
  1532. engine->RegisterObjectMethod("Menu", "void SetFocusMode(FocusMode)", asMETHODPR(Menu, SetFocusMode, (FocusMode), void), asCALL_THISCALL);
  1533. engine->RegisterObjectMethod("Menu", "void set_focusMode(FocusMode)", asMETHODPR(Menu, SetFocusMode, (FocusMode), void), asCALL_THISCALL);
  1534. // void BorderImage::SetFullImageRect() | File: ../UI/BorderImage.h
  1535. engine->RegisterObjectMethod("Menu", "void SetFullImageRect()", asMETHODPR(Menu, SetFullImageRect, (), void), asCALL_THISCALL);
  1536. // void Object::SetGlobalVar(StringHash key, const Variant& value) | File: ../Core/Object.h
  1537. engine->RegisterObjectMethod("Menu", "void SetGlobalVar(StringHash, const Variant&in)", asMETHODPR(Menu, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  1538. engine->RegisterObjectMethod("Menu", "void set_globalVar(StringHash, const Variant&in)", asMETHODPR(Menu, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  1539. // void UIElement::SetHeight(int height) | File: ../UI/UIElement.h
  1540. engine->RegisterObjectMethod("Menu", "void SetHeight(int)", asMETHODPR(Menu, SetHeight, (int), void), asCALL_THISCALL);
  1541. engine->RegisterObjectMethod("Menu", "void set_height(int)", asMETHODPR(Menu, SetHeight, (int), void), asCALL_THISCALL);
  1542. // void UIElement::SetHorizontalAlignment(HorizontalAlignment align) | File: ../UI/UIElement.h
  1543. engine->RegisterObjectMethod("Menu", "void SetHorizontalAlignment(HorizontalAlignment)", asMETHODPR(Menu, SetHorizontalAlignment, (HorizontalAlignment), void), asCALL_THISCALL);
  1544. engine->RegisterObjectMethod("Menu", "void set_horizontalAlignment(HorizontalAlignment)", asMETHODPR(Menu, SetHorizontalAlignment, (HorizontalAlignment), void), asCALL_THISCALL);
  1545. // void UIElement::SetHovering(bool enable) | File: ../UI/UIElement.h
  1546. engine->RegisterObjectMethod("Menu", "void SetHovering(bool)", asMETHODPR(Menu, SetHovering, (bool), void), asCALL_THISCALL);
  1547. // void BorderImage::SetHoverOffset(const IntVector2& offset) | File: ../UI/BorderImage.h
  1548. engine->RegisterObjectMethod("Menu", "void SetHoverOffset(const IntVector2&in)", asMETHODPR(Menu, SetHoverOffset, (const IntVector2&), void), asCALL_THISCALL);
  1549. engine->RegisterObjectMethod("Menu", "void set_hoverOffset(const IntVector2&in)", asMETHODPR(Menu, SetHoverOffset, (const IntVector2&), void), asCALL_THISCALL);
  1550. // void BorderImage::SetHoverOffset(int x, int y) | File: ../UI/BorderImage.h
  1551. engine->RegisterObjectMethod("Menu", "void SetHoverOffset(int, int)", asMETHODPR(Menu, SetHoverOffset, (int, int), void), asCALL_THISCALL);
  1552. // void BorderImage::SetImageBorder(const IntRect& rect) | File: ../UI/BorderImage.h
  1553. engine->RegisterObjectMethod("Menu", "void SetImageBorder(const IntRect&in)", asMETHODPR(Menu, SetImageBorder, (const IntRect&), void), asCALL_THISCALL);
  1554. engine->RegisterObjectMethod("Menu", "void set_imageBorder(const IntRect&in)", asMETHODPR(Menu, SetImageBorder, (const IntRect&), void), asCALL_THISCALL);
  1555. // void BorderImage::SetImageRect(const IntRect& rect) | File: ../UI/BorderImage.h
  1556. engine->RegisterObjectMethod("Menu", "void SetImageRect(const IntRect&in)", asMETHODPR(Menu, SetImageRect, (const IntRect&), void), asCALL_THISCALL);
  1557. engine->RegisterObjectMethod("Menu", "void set_imageRect(const IntRect&in)", asMETHODPR(Menu, SetImageRect, (const IntRect&), void), asCALL_THISCALL);
  1558. // void UIElement::SetIndent(int indent) | File: ../UI/UIElement.h
  1559. engine->RegisterObjectMethod("Menu", "void SetIndent(int)", asMETHODPR(Menu, SetIndent, (int), void), asCALL_THISCALL);
  1560. engine->RegisterObjectMethod("Menu", "void set_indent(int)", asMETHODPR(Menu, SetIndent, (int), void), asCALL_THISCALL);
  1561. // void UIElement::SetIndentSpacing(int indentSpacing) | File: ../UI/UIElement.h
  1562. engine->RegisterObjectMethod("Menu", "void SetIndentSpacing(int)", asMETHODPR(Menu, SetIndentSpacing, (int), void), asCALL_THISCALL);
  1563. engine->RegisterObjectMethod("Menu", "void set_indentSpacing(int)", asMETHODPR(Menu, SetIndentSpacing, (int), void), asCALL_THISCALL);
  1564. // void Serializable::SetInstanceDefault(bool enable) | File: ../Scene/Serializable.h
  1565. engine->RegisterObjectMethod("Menu", "void SetInstanceDefault(bool)", asMETHODPR(Menu, SetInstanceDefault, (bool), void), asCALL_THISCALL);
  1566. // void Serializable::SetInterceptNetworkUpdate(const String& attributeName, bool enable) | File: ../Scene/Serializable.h
  1567. engine->RegisterObjectMethod("Menu", "void SetInterceptNetworkUpdate(const String&in, bool)", asMETHODPR(Menu, SetInterceptNetworkUpdate, (const String&, bool), void), asCALL_THISCALL);
  1568. // void UIElement::SetInternal(bool enable) | File: ../UI/UIElement.h
  1569. engine->RegisterObjectMethod("Menu", "void SetInternal(bool)", asMETHODPR(Menu, SetInternal, (bool), void), asCALL_THISCALL);
  1570. engine->RegisterObjectMethod("Menu", "void set_internal(bool)", asMETHODPR(Menu, SetInternal, (bool), void), asCALL_THISCALL);
  1571. // void UIElement::SetLayout(LayoutMode mode, int spacing=0, const IntRect& border=IntRect::ZERO) | File: ../UI/UIElement.h
  1572. engine->RegisterObjectMethod("Menu", "void SetLayout(LayoutMode, int = 0, const IntRect&in = IntRect::ZERO)", asMETHODPR(Menu, SetLayout, (LayoutMode, int, const IntRect&), void), asCALL_THISCALL);
  1573. // void UIElement::SetLayoutBorder(const IntRect& border) | File: ../UI/UIElement.h
  1574. engine->RegisterObjectMethod("Menu", "void SetLayoutBorder(const IntRect&in)", asMETHODPR(Menu, SetLayoutBorder, (const IntRect&), void), asCALL_THISCALL);
  1575. engine->RegisterObjectMethod("Menu", "void set_layoutBorder(const IntRect&in)", asMETHODPR(Menu, SetLayoutBorder, (const IntRect&), void), asCALL_THISCALL);
  1576. // void UIElement::SetLayoutFlexScale(const Vector2& scale) | File: ../UI/UIElement.h
  1577. engine->RegisterObjectMethod("Menu", "void SetLayoutFlexScale(const Vector2&in)", asMETHODPR(Menu, SetLayoutFlexScale, (const Vector2&), void), asCALL_THISCALL);
  1578. engine->RegisterObjectMethod("Menu", "void set_layoutFlexScale(const Vector2&in)", asMETHODPR(Menu, SetLayoutFlexScale, (const Vector2&), void), asCALL_THISCALL);
  1579. // void UIElement::SetLayoutMode(LayoutMode mode) | File: ../UI/UIElement.h
  1580. engine->RegisterObjectMethod("Menu", "void SetLayoutMode(LayoutMode)", asMETHODPR(Menu, SetLayoutMode, (LayoutMode), void), asCALL_THISCALL);
  1581. engine->RegisterObjectMethod("Menu", "void set_layoutMode(LayoutMode)", asMETHODPR(Menu, SetLayoutMode, (LayoutMode), void), asCALL_THISCALL);
  1582. // void UIElement::SetLayoutSpacing(int spacing) | File: ../UI/UIElement.h
  1583. engine->RegisterObjectMethod("Menu", "void SetLayoutSpacing(int)", asMETHODPR(Menu, SetLayoutSpacing, (int), void), asCALL_THISCALL);
  1584. engine->RegisterObjectMethod("Menu", "void set_layoutSpacing(int)", asMETHODPR(Menu, SetLayoutSpacing, (int), void), asCALL_THISCALL);
  1585. // void BorderImage::SetMaterial(Material* material) | File: ../UI/BorderImage.h
  1586. engine->RegisterObjectMethod("Menu", "void SetMaterial(Material@+)", asMETHODPR(Menu, SetMaterial, (Material*), void), asCALL_THISCALL);
  1587. engine->RegisterObjectMethod("Menu", "void set_material(Material@+)", asMETHODPR(Menu, SetMaterial, (Material*), void), asCALL_THISCALL);
  1588. // void BorderImage::SetMaterialAttr(const ResourceRef& value) | File: ../UI/BorderImage.h
  1589. engine->RegisterObjectMethod("Menu", "void SetMaterialAttr(const ResourceRef&in)", asMETHODPR(Menu, SetMaterialAttr, (const ResourceRef&), void), asCALL_THISCALL);
  1590. // void UIElement::SetMaxAnchor(const Vector2& anchor) | File: ../UI/UIElement.h
  1591. engine->RegisterObjectMethod("Menu", "void SetMaxAnchor(const Vector2&in)", asMETHODPR(Menu, SetMaxAnchor, (const Vector2&), void), asCALL_THISCALL);
  1592. engine->RegisterObjectMethod("Menu", "void set_maxAnchor(const Vector2&in)", asMETHODPR(Menu, SetMaxAnchor, (const Vector2&), void), asCALL_THISCALL);
  1593. // void UIElement::SetMaxAnchor(float x, float y) | File: ../UI/UIElement.h
  1594. engine->RegisterObjectMethod("Menu", "void SetMaxAnchor(float, float)", asMETHODPR(Menu, SetMaxAnchor, (float, float), void), asCALL_THISCALL);
  1595. // void UIElement::SetMaxHeight(int height) | File: ../UI/UIElement.h
  1596. engine->RegisterObjectMethod("Menu", "void SetMaxHeight(int)", asMETHODPR(Menu, SetMaxHeight, (int), void), asCALL_THISCALL);
  1597. engine->RegisterObjectMethod("Menu", "void set_maxHeight(int)", asMETHODPR(Menu, SetMaxHeight, (int), void), asCALL_THISCALL);
  1598. // void UIElement::SetMaxOffset(const IntVector2& offset) | File: ../UI/UIElement.h
  1599. engine->RegisterObjectMethod("Menu", "void SetMaxOffset(const IntVector2&in)", asMETHODPR(Menu, SetMaxOffset, (const IntVector2&), void), asCALL_THISCALL);
  1600. engine->RegisterObjectMethod("Menu", "void set_maxOffset(const IntVector2&in)", asMETHODPR(Menu, SetMaxOffset, (const IntVector2&), void), asCALL_THISCALL);
  1601. // void UIElement::SetMaxSize(const IntVector2& maxSize) | File: ../UI/UIElement.h
  1602. engine->RegisterObjectMethod("Menu", "void SetMaxSize(const IntVector2&in)", asMETHODPR(Menu, SetMaxSize, (const IntVector2&), void), asCALL_THISCALL);
  1603. engine->RegisterObjectMethod("Menu", "void set_maxSize(const IntVector2&in)", asMETHODPR(Menu, SetMaxSize, (const IntVector2&), void), asCALL_THISCALL);
  1604. // void UIElement::SetMaxSize(int width, int height) | File: ../UI/UIElement.h
  1605. engine->RegisterObjectMethod("Menu", "void SetMaxSize(int, int)", asMETHODPR(Menu, SetMaxSize, (int, int), void), asCALL_THISCALL);
  1606. // void UIElement::SetMaxWidth(int width) | File: ../UI/UIElement.h
  1607. engine->RegisterObjectMethod("Menu", "void SetMaxWidth(int)", asMETHODPR(Menu, SetMaxWidth, (int), void), asCALL_THISCALL);
  1608. engine->RegisterObjectMethod("Menu", "void set_maxWidth(int)", asMETHODPR(Menu, SetMaxWidth, (int), void), asCALL_THISCALL);
  1609. // void UIElement::SetMinAnchor(const Vector2& anchor) | File: ../UI/UIElement.h
  1610. engine->RegisterObjectMethod("Menu", "void SetMinAnchor(const Vector2&in)", asMETHODPR(Menu, SetMinAnchor, (const Vector2&), void), asCALL_THISCALL);
  1611. engine->RegisterObjectMethod("Menu", "void set_minAnchor(const Vector2&in)", asMETHODPR(Menu, SetMinAnchor, (const Vector2&), void), asCALL_THISCALL);
  1612. // void UIElement::SetMinAnchor(float x, float y) | File: ../UI/UIElement.h
  1613. engine->RegisterObjectMethod("Menu", "void SetMinAnchor(float, float)", asMETHODPR(Menu, SetMinAnchor, (float, float), void), asCALL_THISCALL);
  1614. // void UIElement::SetMinHeight(int height) | File: ../UI/UIElement.h
  1615. engine->RegisterObjectMethod("Menu", "void SetMinHeight(int)", asMETHODPR(Menu, SetMinHeight, (int), void), asCALL_THISCALL);
  1616. engine->RegisterObjectMethod("Menu", "void set_minHeight(int)", asMETHODPR(Menu, SetMinHeight, (int), void), asCALL_THISCALL);
  1617. // void UIElement::SetMinOffset(const IntVector2& offset) | File: ../UI/UIElement.h
  1618. engine->RegisterObjectMethod("Menu", "void SetMinOffset(const IntVector2&in)", asMETHODPR(Menu, SetMinOffset, (const IntVector2&), void), asCALL_THISCALL);
  1619. engine->RegisterObjectMethod("Menu", "void set_minOffset(const IntVector2&in)", asMETHODPR(Menu, SetMinOffset, (const IntVector2&), void), asCALL_THISCALL);
  1620. // void UIElement::SetMinSize(const IntVector2& minSize) | File: ../UI/UIElement.h
  1621. engine->RegisterObjectMethod("Menu", "void SetMinSize(const IntVector2&in)", asMETHODPR(Menu, SetMinSize, (const IntVector2&), void), asCALL_THISCALL);
  1622. engine->RegisterObjectMethod("Menu", "void set_minSize(const IntVector2&in)", asMETHODPR(Menu, SetMinSize, (const IntVector2&), void), asCALL_THISCALL);
  1623. // void UIElement::SetMinSize(int width, int height) | File: ../UI/UIElement.h
  1624. engine->RegisterObjectMethod("Menu", "void SetMinSize(int, int)", asMETHODPR(Menu, SetMinSize, (int, int), void), asCALL_THISCALL);
  1625. // void UIElement::SetMinWidth(int width) | File: ../UI/UIElement.h
  1626. engine->RegisterObjectMethod("Menu", "void SetMinWidth(int)", asMETHODPR(Menu, SetMinWidth, (int), void), asCALL_THISCALL);
  1627. engine->RegisterObjectMethod("Menu", "void set_minWidth(int)", asMETHODPR(Menu, SetMinWidth, (int), void), asCALL_THISCALL);
  1628. // void UIElement::SetName(const String& name) | File: ../UI/UIElement.h
  1629. engine->RegisterObjectMethod("Menu", "void SetName(const String&in)", asMETHODPR(Menu, SetName, (const String&), void), asCALL_THISCALL);
  1630. engine->RegisterObjectMethod("Menu", "void set_name(const String&in)", asMETHODPR(Menu, SetName, (const String&), void), asCALL_THISCALL);
  1631. // void Animatable::SetObjectAnimation(ObjectAnimation* objectAnimation) | File: ../Scene/Animatable.h
  1632. engine->RegisterObjectMethod("Menu", "void SetObjectAnimation(ObjectAnimation@+)", asMETHODPR(Menu, SetObjectAnimation, (ObjectAnimation*), void), asCALL_THISCALL);
  1633. engine->RegisterObjectMethod("Menu", "void set_objectAnimation(ObjectAnimation@+)", asMETHODPR(Menu, SetObjectAnimation, (ObjectAnimation*), void), asCALL_THISCALL);
  1634. // void Animatable::SetObjectAnimationAttr(const ResourceRef& value) | File: ../Scene/Animatable.h
  1635. engine->RegisterObjectMethod("Menu", "void SetObjectAnimationAttr(const ResourceRef&in)", asMETHODPR(Menu, SetObjectAnimationAttr, (const ResourceRef&), void), asCALL_THISCALL);
  1636. // void UIElement::SetOpacity(float opacity) | File: ../UI/UIElement.h
  1637. engine->RegisterObjectMethod("Menu", "void SetOpacity(float)", asMETHODPR(Menu, SetOpacity, (float), void), asCALL_THISCALL);
  1638. engine->RegisterObjectMethod("Menu", "void set_opacity(float)", asMETHODPR(Menu, SetOpacity, (float), void), asCALL_THISCALL);
  1639. // void UIElement::SetParent(UIElement* parent, unsigned index=M_MAX_UNSIGNED) | File: ../UI/UIElement.h
  1640. engine->RegisterObjectMethod("Menu", "void SetParent(UIElement@+, uint = M_MAX_UNSIGNED)", asMETHODPR(Menu, SetParent, (UIElement*, unsigned), void), asCALL_THISCALL);
  1641. // void UIElement::SetPivot(const Vector2& pivot) | File: ../UI/UIElement.h
  1642. engine->RegisterObjectMethod("Menu", "void SetPivot(const Vector2&in)", asMETHODPR(Menu, SetPivot, (const Vector2&), void), asCALL_THISCALL);
  1643. engine->RegisterObjectMethod("Menu", "void set_pivot(const Vector2&in)", asMETHODPR(Menu, SetPivot, (const Vector2&), void), asCALL_THISCALL);
  1644. // void UIElement::SetPivot(float x, float y) | File: ../UI/UIElement.h
  1645. engine->RegisterObjectMethod("Menu", "void SetPivot(float, float)", asMETHODPR(Menu, SetPivot, (float, float), void), asCALL_THISCALL);
  1646. // void Menu::SetPopup(UIElement* popup) | File: ../UI/Menu.h
  1647. engine->RegisterObjectMethod("Menu", "void SetPopup(UIElement@+)", asMETHODPR(Menu, SetPopup, (UIElement*), void), asCALL_THISCALL);
  1648. engine->RegisterObjectMethod("Menu", "void set_popup(UIElement@+)", asMETHODPR(Menu, SetPopup, (UIElement*), void), asCALL_THISCALL);
  1649. // void Menu::SetPopupOffset(const IntVector2& offset) | File: ../UI/Menu.h
  1650. engine->RegisterObjectMethod("Menu", "void SetPopupOffset(const IntVector2&in)", asMETHODPR(Menu, SetPopupOffset, (const IntVector2&), void), asCALL_THISCALL);
  1651. engine->RegisterObjectMethod("Menu", "void set_popupOffset(const IntVector2&in)", asMETHODPR(Menu, SetPopupOffset, (const IntVector2&), void), asCALL_THISCALL);
  1652. // void Menu::SetPopupOffset(int x, int y) | File: ../UI/Menu.h
  1653. engine->RegisterObjectMethod("Menu", "void SetPopupOffset(int, int)", asMETHODPR(Menu, SetPopupOffset, (int, int), void), asCALL_THISCALL);
  1654. // void UIElement::SetPosition(const IntVector2& position) | File: ../UI/UIElement.h
  1655. engine->RegisterObjectMethod("Menu", "void SetPosition(const IntVector2&in)", asMETHODPR(Menu, SetPosition, (const IntVector2&), void), asCALL_THISCALL);
  1656. engine->RegisterObjectMethod("Menu", "void set_position(const IntVector2&in)", asMETHODPR(Menu, SetPosition, (const IntVector2&), void), asCALL_THISCALL);
  1657. // void UIElement::SetPosition(int x, int y) | File: ../UI/UIElement.h
  1658. engine->RegisterObjectMethod("Menu", "void SetPosition(int, int)", asMETHODPR(Menu, SetPosition, (int, int), void), asCALL_THISCALL);
  1659. // void Button::SetPressedChildOffset(const IntVector2& offset) | File: ../UI/Button.h
  1660. engine->RegisterObjectMethod("Menu", "void SetPressedChildOffset(const IntVector2&in)", asMETHODPR(Menu, SetPressedChildOffset, (const IntVector2&), void), asCALL_THISCALL);
  1661. engine->RegisterObjectMethod("Menu", "void set_pressedChildOffset(const IntVector2&in)", asMETHODPR(Menu, SetPressedChildOffset, (const IntVector2&), void), asCALL_THISCALL);
  1662. // void Button::SetPressedChildOffset(int x, int y) | File: ../UI/Button.h
  1663. engine->RegisterObjectMethod("Menu", "void SetPressedChildOffset(int, int)", asMETHODPR(Menu, SetPressedChildOffset, (int, int), void), asCALL_THISCALL);
  1664. // void Button::SetPressedOffset(const IntVector2& offset) | File: ../UI/Button.h
  1665. engine->RegisterObjectMethod("Menu", "void SetPressedOffset(const IntVector2&in)", asMETHODPR(Menu, SetPressedOffset, (const IntVector2&), void), asCALL_THISCALL);
  1666. engine->RegisterObjectMethod("Menu", "void set_pressedOffset(const IntVector2&in)", asMETHODPR(Menu, SetPressedOffset, (const IntVector2&), void), asCALL_THISCALL);
  1667. // void Button::SetPressedOffset(int x, int y) | File: ../UI/Button.h
  1668. engine->RegisterObjectMethod("Menu", "void SetPressedOffset(int, int)", asMETHODPR(Menu, SetPressedOffset, (int, int), void), asCALL_THISCALL);
  1669. // void UIElement::SetPriority(int priority) | File: ../UI/UIElement.h
  1670. engine->RegisterObjectMethod("Menu", "void SetPriority(int)", asMETHODPR(Menu, SetPriority, (int), void), asCALL_THISCALL);
  1671. engine->RegisterObjectMethod("Menu", "void set_priority(int)", asMETHODPR(Menu, SetPriority, (int), void), asCALL_THISCALL);
  1672. // void UIElement::SetRenderTexture(Texture2D* texture) | File: ../UI/UIElement.h
  1673. engine->RegisterObjectMethod("Menu", "void SetRenderTexture(Texture2D@+)", asMETHODPR(Menu, SetRenderTexture, (Texture2D*), void), asCALL_THISCALL);
  1674. // void Button::SetRepeat(float delay, float rate) | File: ../UI/Button.h
  1675. engine->RegisterObjectMethod("Menu", "void SetRepeat(float, float)", asMETHODPR(Menu, SetRepeat, (float, float), void), asCALL_THISCALL);
  1676. // void Button::SetRepeatDelay(float delay) | File: ../UI/Button.h
  1677. engine->RegisterObjectMethod("Menu", "void SetRepeatDelay(float)", asMETHODPR(Menu, SetRepeatDelay, (float), void), asCALL_THISCALL);
  1678. engine->RegisterObjectMethod("Menu", "void set_repeatDelay(float)", asMETHODPR(Menu, SetRepeatDelay, (float), void), asCALL_THISCALL);
  1679. // void Button::SetRepeatRate(float rate) | File: ../UI/Button.h
  1680. engine->RegisterObjectMethod("Menu", "void SetRepeatRate(float)", asMETHODPR(Menu, SetRepeatRate, (float), void), asCALL_THISCALL);
  1681. engine->RegisterObjectMethod("Menu", "void set_repeatRate(float)", asMETHODPR(Menu, SetRepeatRate, (float), void), asCALL_THISCALL);
  1682. // void UIElement::SetSelected(bool enable) | File: ../UI/UIElement.h
  1683. engine->RegisterObjectMethod("Menu", "void SetSelected(bool)", asMETHODPR(Menu, SetSelected, (bool), void), asCALL_THISCALL);
  1684. engine->RegisterObjectMethod("Menu", "void set_selected(bool)", asMETHODPR(Menu, SetSelected, (bool), void), asCALL_THISCALL);
  1685. // void UIElement::SetSize(const IntVector2& size) | File: ../UI/UIElement.h
  1686. engine->RegisterObjectMethod("Menu", "void SetSize(const IntVector2&in)", asMETHODPR(Menu, SetSize, (const IntVector2&), void), asCALL_THISCALL);
  1687. engine->RegisterObjectMethod("Menu", "void set_size(const IntVector2&in)", asMETHODPR(Menu, SetSize, (const IntVector2&), void), asCALL_THISCALL);
  1688. // void UIElement::SetSize(int width, int height) | File: ../UI/UIElement.h
  1689. engine->RegisterObjectMethod("Menu", "void SetSize(int, int)", asMETHODPR(Menu, SetSize, (int, int), void), asCALL_THISCALL);
  1690. // void UIElement::SetSortChildren(bool enable) | File: ../UI/UIElement.h
  1691. engine->RegisterObjectMethod("Menu", "void SetSortChildren(bool)", asMETHODPR(Menu, SetSortChildren, (bool), void), asCALL_THISCALL);
  1692. engine->RegisterObjectMethod("Menu", "void set_sortChildren(bool)", asMETHODPR(Menu, SetSortChildren, (bool), void), asCALL_THISCALL);
  1693. // bool UIElement::SetStyle(const String& styleName, XMLFile* file=nullptr) | File: ../UI/UIElement.h
  1694. engine->RegisterObjectMethod("Menu", "bool SetStyle(const String&in, XMLFile@+ = null)", asMETHODPR(Menu, SetStyle, (const String&, XMLFile*), bool), asCALL_THISCALL);
  1695. // bool UIElement::SetStyle(const XMLElement& element) | File: ../UI/UIElement.h
  1696. engine->RegisterObjectMethod("Menu", "bool SetStyle(const XMLElement&in)", asMETHODPR(Menu, SetStyle, (const XMLElement&), bool), asCALL_THISCALL);
  1697. // bool UIElement::SetStyleAuto(XMLFile* file=nullptr) | File: ../UI/UIElement.h
  1698. engine->RegisterObjectMethod("Menu", "bool SetStyleAuto(XMLFile@+ = null)", asMETHODPR(Menu, SetStyleAuto, (XMLFile*), bool), asCALL_THISCALL);
  1699. // void UIElement::SetTags(const StringVector& tags) | File: ../UI/UIElement.h
  1700. // Error: type "const StringVector&" can not automatically bind
  1701. // void Serializable::SetTemporary(bool enable) | File: ../Scene/Serializable.h
  1702. engine->RegisterObjectMethod("Menu", "void SetTemporary(bool)", asMETHODPR(Menu, SetTemporary, (bool), void), asCALL_THISCALL);
  1703. engine->RegisterObjectMethod("Menu", "void set_temporary(bool)", asMETHODPR(Menu, SetTemporary, (bool), void), asCALL_THISCALL);
  1704. // void BorderImage::SetTexture(Texture* texture) | File: ../UI/BorderImage.h
  1705. engine->RegisterObjectMethod("Menu", "void SetTexture(Texture@+)", asMETHODPR(Menu, SetTexture, (Texture*), void), asCALL_THISCALL);
  1706. engine->RegisterObjectMethod("Menu", "void set_texture(Texture@+)", asMETHODPR(Menu, SetTexture, (Texture*), void), asCALL_THISCALL);
  1707. // void BorderImage::SetTextureAttr(const ResourceRef& value) | File: ../UI/BorderImage.h
  1708. engine->RegisterObjectMethod("Menu", "void SetTextureAttr(const ResourceRef&in)", asMETHODPR(Menu, SetTextureAttr, (const ResourceRef&), void), asCALL_THISCALL);
  1709. // void BorderImage::SetTiled(bool enable) | File: ../UI/BorderImage.h
  1710. engine->RegisterObjectMethod("Menu", "void SetTiled(bool)", asMETHODPR(Menu, SetTiled, (bool), void), asCALL_THISCALL);
  1711. engine->RegisterObjectMethod("Menu", "void set_tiled(bool)", asMETHODPR(Menu, SetTiled, (bool), void), asCALL_THISCALL);
  1712. // void UIElement::SetTraversalMode(TraversalMode traversalMode) | File: ../UI/UIElement.h
  1713. engine->RegisterObjectMethod("Menu", "void SetTraversalMode(TraversalMode)", asMETHODPR(Menu, SetTraversalMode, (TraversalMode), void), asCALL_THISCALL);
  1714. engine->RegisterObjectMethod("Menu", "void set_traversalMode(TraversalMode)", asMETHODPR(Menu, SetTraversalMode, (TraversalMode), void), asCALL_THISCALL);
  1715. // void UIElement::SetUseDerivedOpacity(bool enable) | File: ../UI/UIElement.h
  1716. engine->RegisterObjectMethod("Menu", "void SetUseDerivedOpacity(bool)", asMETHODPR(Menu, SetUseDerivedOpacity, (bool), void), asCALL_THISCALL);
  1717. engine->RegisterObjectMethod("Menu", "void set_useDerivedOpacity(bool)", asMETHODPR(Menu, SetUseDerivedOpacity, (bool), void), asCALL_THISCALL);
  1718. // void UIElement::SetVar(StringHash key, const Variant& value) | File: ../UI/UIElement.h
  1719. engine->RegisterObjectMethod("Menu", "void SetVar(StringHash, const Variant&in)", asMETHODPR(Menu, SetVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  1720. // void UIElement::SetVerticalAlignment(VerticalAlignment align) | File: ../UI/UIElement.h
  1721. engine->RegisterObjectMethod("Menu", "void SetVerticalAlignment(VerticalAlignment)", asMETHODPR(Menu, SetVerticalAlignment, (VerticalAlignment), void), asCALL_THISCALL);
  1722. engine->RegisterObjectMethod("Menu", "void set_verticalAlignment(VerticalAlignment)", asMETHODPR(Menu, SetVerticalAlignment, (VerticalAlignment), void), asCALL_THISCALL);
  1723. // void UIElement::SetVisible(bool enable) | File: ../UI/UIElement.h
  1724. engine->RegisterObjectMethod("Menu", "void SetVisible(bool)", asMETHODPR(Menu, SetVisible, (bool), void), asCALL_THISCALL);
  1725. engine->RegisterObjectMethod("Menu", "void set_visible(bool)", asMETHODPR(Menu, SetVisible, (bool), void), asCALL_THISCALL);
  1726. // void UIElement::SetWidth(int width) | File: ../UI/UIElement.h
  1727. engine->RegisterObjectMethod("Menu", "void SetWidth(int)", asMETHODPR(Menu, SetWidth, (int), void), asCALL_THISCALL);
  1728. engine->RegisterObjectMethod("Menu", "void set_width(int)", asMETHODPR(Menu, SetWidth, (int), void), asCALL_THISCALL);
  1729. // void Menu::ShowPopup(bool enable) | File: ../UI/Menu.h
  1730. engine->RegisterObjectMethod("Menu", "void ShowPopup(bool)", asMETHODPR(Menu, ShowPopup, (bool), void), asCALL_THISCALL);
  1731. engine->RegisterObjectMethod("Menu", "void set_showPopup(bool)", asMETHODPR(Menu, ShowPopup, (bool), void), asCALL_THISCALL);
  1732. // void UIElement::SortChildren() | File: ../UI/UIElement.h
  1733. engine->RegisterObjectMethod("Menu", "void SortChildren()", asMETHODPR(Menu, SortChildren, (), void), asCALL_THISCALL);
  1734. // void Object::SubscribeToEvent(StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  1735. // Error: type "EventHandler*" can not automatically bind
  1736. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  1737. // Error: type "EventHandler*" can not automatically bind
  1738. // void Object::SubscribeToEvent(StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  1739. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  1740. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  1741. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  1742. // void Object::UnsubscribeFromAllEvents() | File: ../Core/Object.h
  1743. engine->RegisterObjectMethod("Menu", "void UnsubscribeFromAllEvents()", asMETHODPR(Menu, UnsubscribeFromAllEvents, (), void), asCALL_THISCALL);
  1744. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  1745. engine->RegisterObjectMethod("Menu", "void UnsubscribeFromAllEventsExcept(Array<StringHash>@+, bool)", asFUNCTION(Menu_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool), asCALL_CDECL_OBJFIRST);
  1746. // void Object::UnsubscribeFromEvent(StringHash eventType) | File: ../Core/Object.h
  1747. engine->RegisterObjectMethod("Menu", "void UnsubscribeFromEvent(StringHash)", asMETHODPR(Menu, UnsubscribeFromEvent, (StringHash), void), asCALL_THISCALL);
  1748. // void Object::UnsubscribeFromEvent(Object* sender, StringHash eventType) | File: ../Core/Object.h
  1749. engine->RegisterObjectMethod("Menu", "void UnsubscribeFromEvent(Object@+, StringHash)", asMETHODPR(Menu, UnsubscribeFromEvent, (Object*, StringHash), void), asCALL_THISCALL);
  1750. // void Object::UnsubscribeFromEvents(Object* sender) | File: ../Core/Object.h
  1751. engine->RegisterObjectMethod("Menu", "void UnsubscribeFromEvents(Object@+)", asMETHODPR(Menu, UnsubscribeFromEvents, (Object*), void), asCALL_THISCALL);
  1752. // void Menu::Update(float timeStep) override | File: ../UI/Menu.h
  1753. engine->RegisterObjectMethod("Menu", "void Update(float)", asMETHODPR(Menu, Update, (float), void), asCALL_THISCALL);
  1754. // void UIElement::UpdateLayout() | File: ../UI/UIElement.h
  1755. engine->RegisterObjectMethod("Menu", "void UpdateLayout()", asMETHODPR(Menu, UpdateLayout, (), void), asCALL_THISCALL);
  1756. // int RefCounted::WeakRefs() const | File: ../Container/RefCounted.h
  1757. engine->RegisterObjectMethod("Menu", "int WeakRefs() const", asMETHODPR(Menu, WeakRefs, () const, int), asCALL_THISCALL);
  1758. engine->RegisterObjectMethod("Menu", "int get_weakRefs() const", asMETHODPR(Menu, WeakRefs, () const, int), asCALL_THISCALL);
  1759. // void Serializable::WriteDeltaUpdate(Serializer& dest, const DirtyBits& attributeBits, unsigned char timeStamp) | File: ../Scene/Serializable.h
  1760. engine->RegisterObjectMethod("Menu", "void WriteDeltaUpdate(Serializer&, const DirtyBits&in, uint8)", asMETHODPR(Menu, WriteDeltaUpdate, (Serializer&, const DirtyBits&, unsigned char), void), asCALL_THISCALL);
  1761. // void Serializable::WriteInitialDeltaUpdate(Serializer& dest, unsigned char timeStamp) | File: ../Scene/Serializable.h
  1762. engine->RegisterObjectMethod("Menu", "void WriteInitialDeltaUpdate(Serializer&, uint8)", asMETHODPR(Menu, WriteInitialDeltaUpdate, (Serializer&, unsigned char), void), asCALL_THISCALL);
  1763. // void Serializable::WriteLatestDataUpdate(Serializer& dest, unsigned char timeStamp) | File: ../Scene/Serializable.h
  1764. engine->RegisterObjectMethod("Menu", "void WriteLatestDataUpdate(Serializer&, uint8)", asMETHODPR(Menu, WriteLatestDataUpdate, (Serializer&, unsigned char), void), asCALL_THISCALL);
  1765. #ifdef REGISTER_MANUAL_PART_Button
  1766. REGISTER_MANUAL_PART_Button(Menu, "Menu")
  1767. #endif
  1768. #ifdef REGISTER_MANUAL_PART_BorderImage
  1769. REGISTER_MANUAL_PART_BorderImage(Menu, "Menu")
  1770. #endif
  1771. #ifdef REGISTER_MANUAL_PART_UIElement
  1772. REGISTER_MANUAL_PART_UIElement(Menu, "Menu")
  1773. #endif
  1774. #ifdef REGISTER_MANUAL_PART_Animatable
  1775. REGISTER_MANUAL_PART_Animatable(Menu, "Menu")
  1776. #endif
  1777. #ifdef REGISTER_MANUAL_PART_Serializable
  1778. REGISTER_MANUAL_PART_Serializable(Menu, "Menu")
  1779. #endif
  1780. #ifdef REGISTER_MANUAL_PART_Object
  1781. REGISTER_MANUAL_PART_Object(Menu, "Menu")
  1782. #endif
  1783. #ifdef REGISTER_MANUAL_PART_RefCounted
  1784. REGISTER_MANUAL_PART_RefCounted(Menu, "Menu")
  1785. #endif
  1786. #ifdef REGISTER_MANUAL_PART_Menu
  1787. REGISTER_MANUAL_PART_Menu(Menu, "Menu")
  1788. #endif
  1789. RegisterSubclass<Button, Menu>(engine, "Button", "Menu");
  1790. RegisterSubclass<BorderImage, Menu>(engine, "BorderImage", "Menu");
  1791. RegisterSubclass<UIElement, Menu>(engine, "UIElement", "Menu");
  1792. RegisterSubclass<Animatable, Menu>(engine, "Animatable", "Menu");
  1793. RegisterSubclass<Serializable, Menu>(engine, "Serializable", "Menu");
  1794. RegisterSubclass<Object, Menu>(engine, "Object", "Menu");
  1795. RegisterSubclass<RefCounted, Menu>(engine, "RefCounted", "Menu");
  1796. // void RefCounted::AddRef() | File: ../Container/RefCounted.h
  1797. engine->RegisterObjectBehaviour("MessageBox", asBEHAVE_ADDREF, "void f()", asMETHODPR(MessageBox, AddRef, (), void), asCALL_THISCALL);
  1798. // template<typename T> T* Object::Cast() | File: ../Core/Object.h
  1799. // Not registered because template
  1800. // template<typename T> const T* Object::Cast() const | File: ../Core/Object.h
  1801. // Not registered because template
  1802. // bool Object::GetBlockEvents() const | File: ../Core/Object.h
  1803. engine->RegisterObjectMethod("MessageBox", "bool GetBlockEvents() const", asMETHODPR(MessageBox, GetBlockEvents, () const, bool), asCALL_THISCALL);
  1804. // const String& Object::GetCategory() const | File: ../Core/Object.h
  1805. engine->RegisterObjectMethod("MessageBox", "const String& GetCategory() const", asMETHODPR(MessageBox, GetCategory, () const, const String&), asCALL_THISCALL);
  1806. engine->RegisterObjectMethod("MessageBox", "const String& get_category() const", asMETHODPR(MessageBox, GetCategory, () const, const String&), asCALL_THISCALL);
  1807. // Context* Object::GetContext() const | File: ../Core/Object.h
  1808. // Error: type "Context*" can not be returned
  1809. // VariantMap& Object::GetEventDataMap() const | File: ../Core/Object.h
  1810. engine->RegisterObjectMethod("MessageBox", "VariantMap& GetEventDataMap() const", asMETHODPR(MessageBox, GetEventDataMap, () const, VariantMap&), asCALL_THISCALL);
  1811. // EventHandler* Object::GetEventHandler() const | File: ../Core/Object.h
  1812. // Error: type "EventHandler*" can not automatically bind
  1813. // Object* Object::GetEventSender() const | File: ../Core/Object.h
  1814. engine->RegisterObjectMethod("MessageBox", "Object@+ GetEventSender() const", asMETHODPR(MessageBox, GetEventSender, () const, Object*), asCALL_THISCALL);
  1815. // const Variant& Object::GetGlobalVar(StringHash key) const | File: ../Core/Object.h
  1816. engine->RegisterObjectMethod("MessageBox", "const Variant& GetGlobalVar(StringHash) const", asMETHODPR(MessageBox, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  1817. engine->RegisterObjectMethod("MessageBox", "const Variant& get_globalVar(StringHash) const", asMETHODPR(MessageBox, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  1818. // const VariantMap& Object::GetGlobalVars() const | File: ../Core/Object.h
  1819. engine->RegisterObjectMethod("MessageBox", "const VariantMap& GetGlobalVars() const", asMETHODPR(MessageBox, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  1820. engine->RegisterObjectMethod("MessageBox", "const VariantMap& get_globalVars() const", asMETHODPR(MessageBox, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  1821. // const String& MessageBox::GetMessage() const | File: ../UI/MessageBox.h
  1822. engine->RegisterObjectMethod("MessageBox", "const String& GetMessage() const", asMETHODPR(MessageBox, GetMessage, () const, const String&), asCALL_THISCALL);
  1823. engine->RegisterObjectMethod("MessageBox", "const String& get_message() const", asMETHODPR(MessageBox, GetMessage, () const, const String&), asCALL_THISCALL);
  1824. // Object* Object::GetSubsystem(StringHash type) const | File: ../Core/Object.h
  1825. engine->RegisterObjectMethod("MessageBox", "Object@+ GetSubsystem(StringHash) const", asMETHODPR(MessageBox, GetSubsystem, (StringHash) const, Object*), asCALL_THISCALL);
  1826. // template<class T> T* Object::GetSubsystem() const | File: ../Core/Object.h
  1827. // Not registered because template
  1828. // const String& MessageBox::GetTitle() const | File: ../UI/MessageBox.h
  1829. engine->RegisterObjectMethod("MessageBox", "const String& GetTitle() const", asMETHODPR(MessageBox, GetTitle, () const, const String&), asCALL_THISCALL);
  1830. engine->RegisterObjectMethod("MessageBox", "const String& get_title() const", asMETHODPR(MessageBox, GetTitle, () const, const String&), asCALL_THISCALL);
  1831. // virtual StringHash Object::GetType() const =0 | File: ../Core/Object.h
  1832. engine->RegisterObjectMethod("MessageBox", "StringHash GetType() const", asMETHODPR(MessageBox, GetType, () const, StringHash), asCALL_THISCALL);
  1833. engine->RegisterObjectMethod("MessageBox", "StringHash get_type() const", asMETHODPR(MessageBox, GetType, () const, StringHash), asCALL_THISCALL);
  1834. // virtual const TypeInfo* Object::GetTypeInfo() const =0 | File: ../Core/Object.h
  1835. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  1836. // static const TypeInfo* Object::GetTypeInfoStatic() | File: ../Core/Object.h
  1837. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  1838. // virtual const String& Object::GetTypeName() const =0 | File: ../Core/Object.h
  1839. engine->RegisterObjectMethod("MessageBox", "const String& GetTypeName() const", asMETHODPR(MessageBox, GetTypeName, () const, const String&), asCALL_THISCALL);
  1840. engine->RegisterObjectMethod("MessageBox", "const String& get_typeName() const", asMETHODPR(MessageBox, GetTypeName, () const, const String&), asCALL_THISCALL);
  1841. // UIElement* MessageBox::GetWindow() const | File: ../UI/MessageBox.h
  1842. engine->RegisterObjectMethod("MessageBox", "UIElement@+ GetWindow() const", asMETHODPR(MessageBox, GetWindow, () const, UIElement*), asCALL_THISCALL);
  1843. engine->RegisterObjectMethod("MessageBox", "UIElement@+ get_window() const", asMETHODPR(MessageBox, GetWindow, () const, UIElement*), asCALL_THISCALL);
  1844. // bool Object::HasEventHandlers() const | File: ../Core/Object.h
  1845. engine->RegisterObjectMethod("MessageBox", "bool HasEventHandlers() const", asMETHODPR(MessageBox, HasEventHandlers, () const, bool), asCALL_THISCALL);
  1846. // bool Object::HasSubscribedToEvent(StringHash eventType) const | File: ../Core/Object.h
  1847. engine->RegisterObjectMethod("MessageBox", "bool HasSubscribedToEvent(StringHash) const", asMETHODPR(MessageBox, HasSubscribedToEvent, (StringHash) const, bool), asCALL_THISCALL);
  1848. // bool Object::HasSubscribedToEvent(Object* sender, StringHash eventType) const | File: ../Core/Object.h
  1849. engine->RegisterObjectMethod("MessageBox", "bool HasSubscribedToEvent(Object@+, StringHash) const", asMETHODPR(MessageBox, HasSubscribedToEvent, (Object*, StringHash) const, bool), asCALL_THISCALL);
  1850. // bool Object::IsInstanceOf(StringHash type) const | File: ../Core/Object.h
  1851. engine->RegisterObjectMethod("MessageBox", "bool IsInstanceOf(StringHash) const", asMETHODPR(MessageBox, IsInstanceOf, (StringHash) const, bool), asCALL_THISCALL);
  1852. // bool Object::IsInstanceOf(const TypeInfo* typeInfo) const | File: ../Core/Object.h
  1853. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  1854. // template<typename T> bool Object::IsInstanceOf() const | File: ../Core/Object.h
  1855. // Not registered because template
  1856. // explicit MessageBox::MessageBox(Context* context, const String& messageString=String::EMPTY, const String& titleString=String::EMPTY, XMLFile* layoutFile=nullptr, XMLFile* styleFile=nullptr) | File: ../UI/MessageBox.h
  1857. engine->RegisterObjectBehaviour("MessageBox", asBEHAVE_FACTORY, "MessageBox@+ f(const String&in = String::EMPTY, const String&in = String::EMPTY, XMLFile@+ = null, XMLFile@+ = null)", asFUNCTION(MessageBox_MessageBox_Context_String_String_XMLFile_XMLFile), asCALL_CDECL);
  1858. // virtual void Object::OnEvent(Object* sender, StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  1859. engine->RegisterObjectMethod("MessageBox", "void OnEvent(Object@+, StringHash, VariantMap&)", asMETHODPR(MessageBox, OnEvent, (Object*, StringHash, VariantMap&), void), asCALL_THISCALL);
  1860. // RefCount* RefCounted::RefCountPtr() | File: ../Container/RefCounted.h
  1861. // Error: type "RefCount*" can not automatically bind
  1862. // int RefCounted::Refs() const | File: ../Container/RefCounted.h
  1863. engine->RegisterObjectMethod("MessageBox", "int Refs() const", asMETHODPR(MessageBox, Refs, () const, int), asCALL_THISCALL);
  1864. engine->RegisterObjectMethod("MessageBox", "int get_refs() const", asMETHODPR(MessageBox, Refs, () const, int), asCALL_THISCALL);
  1865. // static void MessageBox::RegisterObject(Context* context) | File: ../UI/MessageBox.h
  1866. // Context can be used as firs parameter of constructors only
  1867. // void RefCounted::ReleaseRef() | File: ../Container/RefCounted.h
  1868. engine->RegisterObjectBehaviour("MessageBox", asBEHAVE_RELEASE, "void f()", asMETHODPR(MessageBox, ReleaseRef, (), void), asCALL_THISCALL);
  1869. // void Object::SendEvent(StringHash eventType) | File: ../Core/Object.h
  1870. engine->RegisterObjectMethod("MessageBox", "void SendEvent(StringHash)", asMETHODPR(MessageBox, SendEvent, (StringHash), void), asCALL_THISCALL);
  1871. // void Object::SendEvent(StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  1872. engine->RegisterObjectMethod("MessageBox", "void SendEvent(StringHash, VariantMap&)", asMETHODPR(MessageBox, SendEvent, (StringHash, VariantMap&), void), asCALL_THISCALL);
  1873. // template<typename... Args> void Object::SendEvent(StringHash eventType, Args... args) | File: ../Core/Object.h
  1874. // Not registered because template
  1875. // void Object::SetBlockEvents(bool block) | File: ../Core/Object.h
  1876. engine->RegisterObjectMethod("MessageBox", "void SetBlockEvents(bool)", asMETHODPR(MessageBox, SetBlockEvents, (bool), void), asCALL_THISCALL);
  1877. // void Object::SetGlobalVar(StringHash key, const Variant& value) | File: ../Core/Object.h
  1878. engine->RegisterObjectMethod("MessageBox", "void SetGlobalVar(StringHash, const Variant&in)", asMETHODPR(MessageBox, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  1879. engine->RegisterObjectMethod("MessageBox", "void set_globalVar(StringHash, const Variant&in)", asMETHODPR(MessageBox, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  1880. // void MessageBox::SetMessage(const String& text) | File: ../UI/MessageBox.h
  1881. engine->RegisterObjectMethod("MessageBox", "void SetMessage(const String&in)", asMETHODPR(MessageBox, SetMessage, (const String&), void), asCALL_THISCALL);
  1882. engine->RegisterObjectMethod("MessageBox", "void set_message(const String&in)", asMETHODPR(MessageBox, SetMessage, (const String&), void), asCALL_THISCALL);
  1883. // void MessageBox::SetTitle(const String& text) | File: ../UI/MessageBox.h
  1884. engine->RegisterObjectMethod("MessageBox", "void SetTitle(const String&in)", asMETHODPR(MessageBox, SetTitle, (const String&), void), asCALL_THISCALL);
  1885. engine->RegisterObjectMethod("MessageBox", "void set_title(const String&in)", asMETHODPR(MessageBox, SetTitle, (const String&), void), asCALL_THISCALL);
  1886. // void Object::SubscribeToEvent(StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  1887. // Error: type "EventHandler*" can not automatically bind
  1888. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  1889. // Error: type "EventHandler*" can not automatically bind
  1890. // void Object::SubscribeToEvent(StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  1891. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  1892. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  1893. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  1894. // void Object::UnsubscribeFromAllEvents() | File: ../Core/Object.h
  1895. engine->RegisterObjectMethod("MessageBox", "void UnsubscribeFromAllEvents()", asMETHODPR(MessageBox, UnsubscribeFromAllEvents, (), void), asCALL_THISCALL);
  1896. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  1897. engine->RegisterObjectMethod("MessageBox", "void UnsubscribeFromAllEventsExcept(Array<StringHash>@+, bool)", asFUNCTION(MessageBox_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool), asCALL_CDECL_OBJFIRST);
  1898. // void Object::UnsubscribeFromEvent(StringHash eventType) | File: ../Core/Object.h
  1899. engine->RegisterObjectMethod("MessageBox", "void UnsubscribeFromEvent(StringHash)", asMETHODPR(MessageBox, UnsubscribeFromEvent, (StringHash), void), asCALL_THISCALL);
  1900. // void Object::UnsubscribeFromEvent(Object* sender, StringHash eventType) | File: ../Core/Object.h
  1901. engine->RegisterObjectMethod("MessageBox", "void UnsubscribeFromEvent(Object@+, StringHash)", asMETHODPR(MessageBox, UnsubscribeFromEvent, (Object*, StringHash), void), asCALL_THISCALL);
  1902. // void Object::UnsubscribeFromEvents(Object* sender) | File: ../Core/Object.h
  1903. engine->RegisterObjectMethod("MessageBox", "void UnsubscribeFromEvents(Object@+)", asMETHODPR(MessageBox, UnsubscribeFromEvents, (Object*), void), asCALL_THISCALL);
  1904. // int RefCounted::WeakRefs() const | File: ../Container/RefCounted.h
  1905. engine->RegisterObjectMethod("MessageBox", "int WeakRefs() const", asMETHODPR(MessageBox, WeakRefs, () const, int), asCALL_THISCALL);
  1906. engine->RegisterObjectMethod("MessageBox", "int get_weakRefs() const", asMETHODPR(MessageBox, WeakRefs, () const, int), asCALL_THISCALL);
  1907. #ifdef REGISTER_MANUAL_PART_Object
  1908. REGISTER_MANUAL_PART_Object(MessageBox, "MessageBox")
  1909. #endif
  1910. #ifdef REGISTER_MANUAL_PART_RefCounted
  1911. REGISTER_MANUAL_PART_RefCounted(MessageBox, "MessageBox")
  1912. #endif
  1913. #ifdef REGISTER_MANUAL_PART_MessageBox
  1914. REGISTER_MANUAL_PART_MessageBox(MessageBox, "MessageBox")
  1915. #endif
  1916. RegisterSubclass<Object, MessageBox>(engine, "Object", "MessageBox");
  1917. RegisterSubclass<RefCounted, MessageBox>(engine, "RefCounted", "MessageBox");
  1918. // void ResourceWithMetadata::AddMetadata(const String& name, const Variant& value) | File: ../Resource/Resource.h
  1919. engine->RegisterObjectMethod("Model", "void AddMetadata(const String&in, const Variant&in)", asMETHODPR(Model, AddMetadata, (const String&, const Variant&), void), asCALL_THISCALL);
  1920. engine->RegisterObjectMethod("Model", "void set_metadata(const String&in, const Variant&in)", asMETHODPR(Model, AddMetadata, (const String&, const Variant&), void), asCALL_THISCALL);
  1921. // void RefCounted::AddRef() | File: ../Container/RefCounted.h
  1922. engine->RegisterObjectBehaviour("Model", asBEHAVE_ADDREF, "void f()", asMETHODPR(Model, AddRef, (), void), asCALL_THISCALL);
  1923. // bool Model::BeginLoad(Deserializer& source) override | File: ../Graphics/Model.h
  1924. engine->RegisterObjectMethod("Model", "bool BeginLoad(Deserializer&)", asMETHODPR(Model, BeginLoad, (Deserializer&), bool), asCALL_THISCALL);
  1925. // template<typename T> T* Object::Cast() | File: ../Core/Object.h
  1926. // Not registered because template
  1927. // template<typename T> const T* Object::Cast() const | File: ../Core/Object.h
  1928. // Not registered because template
  1929. // SharedPtr<Model> Model::Clone(const String& cloneName=String::EMPTY) const | File: ../Graphics/Model.h
  1930. engine->RegisterObjectMethod("Model", "Model@+ Clone(const String&in = String::EMPTY) const", asFUNCTION(Model_Clone_String), asCALL_CDECL_OBJFIRST);
  1931. // bool Model::EndLoad() override | File: ../Graphics/Model.h
  1932. engine->RegisterObjectMethod("Model", "bool EndLoad()", asMETHODPR(Model, EndLoad, (), bool), asCALL_THISCALL);
  1933. // AsyncLoadState Resource::GetAsyncLoadState() const | File: ../Resource/Resource.h
  1934. engine->RegisterObjectMethod("Model", "AsyncLoadState GetAsyncLoadState() const", asMETHODPR(Model, GetAsyncLoadState, () const, AsyncLoadState), asCALL_THISCALL);
  1935. // bool Object::GetBlockEvents() const | File: ../Core/Object.h
  1936. engine->RegisterObjectMethod("Model", "bool GetBlockEvents() const", asMETHODPR(Model, GetBlockEvents, () const, bool), asCALL_THISCALL);
  1937. // const BoundingBox& Model::GetBoundingBox() const | File: ../Graphics/Model.h
  1938. engine->RegisterObjectMethod("Model", "const BoundingBox& GetBoundingBox() const", asMETHODPR(Model, GetBoundingBox, () const, const BoundingBox&), asCALL_THISCALL);
  1939. engine->RegisterObjectMethod("Model", "const BoundingBox& get_boundingBox() const", asMETHODPR(Model, GetBoundingBox, () const, const BoundingBox&), asCALL_THISCALL);
  1940. // const String& Object::GetCategory() const | File: ../Core/Object.h
  1941. engine->RegisterObjectMethod("Model", "const String& GetCategory() const", asMETHODPR(Model, GetCategory, () const, const String&), asCALL_THISCALL);
  1942. engine->RegisterObjectMethod("Model", "const String& get_category() const", asMETHODPR(Model, GetCategory, () const, const String&), asCALL_THISCALL);
  1943. // Context* Object::GetContext() const | File: ../Core/Object.h
  1944. // Error: type "Context*" can not be returned
  1945. // VariantMap& Object::GetEventDataMap() const | File: ../Core/Object.h
  1946. engine->RegisterObjectMethod("Model", "VariantMap& GetEventDataMap() const", asMETHODPR(Model, GetEventDataMap, () const, VariantMap&), asCALL_THISCALL);
  1947. // EventHandler* Object::GetEventHandler() const | File: ../Core/Object.h
  1948. // Error: type "EventHandler*" can not automatically bind
  1949. // Object* Object::GetEventSender() const | File: ../Core/Object.h
  1950. engine->RegisterObjectMethod("Model", "Object@+ GetEventSender() const", asMETHODPR(Model, GetEventSender, () const, Object*), asCALL_THISCALL);
  1951. // const Vector<Vector<SharedPtr<Geometry>>>& Model::GetGeometries() const | File: ../Graphics/Model.h
  1952. // Error: type "const Vector<Vector<SharedPtr<Geometry>>>&" can not automatically bind
  1953. // Geometry* Model::GetGeometry(unsigned index, unsigned lodLevel) const | File: ../Graphics/Model.h
  1954. engine->RegisterObjectMethod("Model", "Geometry@+ GetGeometry(uint, uint) const", asMETHODPR(Model, GetGeometry, (unsigned, unsigned) const, Geometry*), asCALL_THISCALL);
  1955. // const Vector<PODVector<unsigned>>& Model::GetGeometryBoneMappings() const | File: ../Graphics/Model.h
  1956. // Error: type "const Vector<PODVector<unsigned>>&" can not automatically bind
  1957. // const Vector3& Model::GetGeometryCenter(unsigned index) const | File: ../Graphics/Model.h
  1958. engine->RegisterObjectMethod("Model", "const Vector3& GetGeometryCenter(uint) const", asMETHODPR(Model, GetGeometryCenter, (unsigned) const, const Vector3&), asCALL_THISCALL);
  1959. engine->RegisterObjectMethod("Model", "const Vector3& get_geometryCenters(uint) const", asMETHODPR(Model, GetGeometryCenter, (unsigned) const, const Vector3&), asCALL_THISCALL);
  1960. // const PODVector<Vector3>& Model::GetGeometryCenters() const | File: ../Graphics/Model.h
  1961. engine->RegisterObjectMethod("Model", "Array<Vector3>@ GetGeometryCenters() const", asFUNCTION(Model_GetGeometryCenters_void), asCALL_CDECL_OBJFIRST);
  1962. // const Variant& Object::GetGlobalVar(StringHash key) const | File: ../Core/Object.h
  1963. engine->RegisterObjectMethod("Model", "const Variant& GetGlobalVar(StringHash) const", asMETHODPR(Model, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  1964. engine->RegisterObjectMethod("Model", "const Variant& get_globalVar(StringHash) const", asMETHODPR(Model, GetGlobalVar, (StringHash) const, const Variant&), asCALL_THISCALL);
  1965. // const VariantMap& Object::GetGlobalVars() const | File: ../Core/Object.h
  1966. engine->RegisterObjectMethod("Model", "const VariantMap& GetGlobalVars() const", asMETHODPR(Model, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  1967. engine->RegisterObjectMethod("Model", "const VariantMap& get_globalVars() const", asMETHODPR(Model, GetGlobalVars, () const, const VariantMap&), asCALL_THISCALL);
  1968. // const Vector<SharedPtr<IndexBuffer>>& Model::GetIndexBuffers() const | File: ../Graphics/Model.h
  1969. engine->RegisterObjectMethod("Model", "Array<IndexBuffer@>@ GetIndexBuffers() const", asFUNCTION(Model_GetIndexBuffers_void), asCALL_CDECL_OBJFIRST);
  1970. // unsigned Resource::GetMemoryUse() const | File: ../Resource/Resource.h
  1971. engine->RegisterObjectMethod("Model", "uint GetMemoryUse() const", asMETHODPR(Model, GetMemoryUse, () const, unsigned), asCALL_THISCALL);
  1972. engine->RegisterObjectMethod("Model", "uint get_memoryUse() const", asMETHODPR(Model, GetMemoryUse, () const, unsigned), asCALL_THISCALL);
  1973. // const Variant& ResourceWithMetadata::GetMetadata(const String& name) const | File: ../Resource/Resource.h
  1974. engine->RegisterObjectMethod("Model", "const Variant& GetMetadata(const String&in) const", asMETHODPR(Model, GetMetadata, (const String&) const, const Variant&), asCALL_THISCALL);
  1975. engine->RegisterObjectMethod("Model", "const Variant& get_metadata(const String&in) const", asMETHODPR(Model, GetMetadata, (const String&) const, const Variant&), asCALL_THISCALL);
  1976. // const ModelMorph* Model::GetMorph(unsigned index) const | File: ../Graphics/Model.h
  1977. // Error: type "const ModelMorph*" can not automatically bind
  1978. // const ModelMorph* Model::GetMorph(const String& name) const | File: ../Graphics/Model.h
  1979. // Error: type "const ModelMorph*" can not automatically bind
  1980. // const ModelMorph* Model::GetMorph(StringHash nameHash) const | File: ../Graphics/Model.h
  1981. // Error: type "const ModelMorph*" can not automatically bind
  1982. // unsigned Model::GetMorphRangeCount(unsigned bufferIndex) const | File: ../Graphics/Model.h
  1983. engine->RegisterObjectMethod("Model", "uint GetMorphRangeCount(uint) const", asMETHODPR(Model, GetMorphRangeCount, (unsigned) const, unsigned), asCALL_THISCALL);
  1984. // unsigned Model::GetMorphRangeStart(unsigned bufferIndex) const | File: ../Graphics/Model.h
  1985. engine->RegisterObjectMethod("Model", "uint GetMorphRangeStart(uint) const", asMETHODPR(Model, GetMorphRangeStart, (unsigned) const, unsigned), asCALL_THISCALL);
  1986. // const Vector<ModelMorph>& Model::GetMorphs() const | File: ../Graphics/Model.h
  1987. // Error: type "const Vector<ModelMorph>&" can not automatically bind
  1988. // const String& Resource::GetName() const | File: ../Resource/Resource.h
  1989. engine->RegisterObjectMethod("Model", "const String& GetName() const", asMETHODPR(Model, GetName, () const, const String&), asCALL_THISCALL);
  1990. engine->RegisterObjectMethod("Model", "const String& get_name() const", asMETHODPR(Model, GetName, () const, const String&), asCALL_THISCALL);
  1991. // StringHash Resource::GetNameHash() const | File: ../Resource/Resource.h
  1992. engine->RegisterObjectMethod("Model", "StringHash GetNameHash() const", asMETHODPR(Model, GetNameHash, () const, StringHash), asCALL_THISCALL);
  1993. // unsigned Model::GetNumGeometries() const | File: ../Graphics/Model.h
  1994. engine->RegisterObjectMethod("Model", "uint GetNumGeometries() const", asMETHODPR(Model, GetNumGeometries, () const, unsigned), asCALL_THISCALL);
  1995. engine->RegisterObjectMethod("Model", "uint get_numGeometries() const", asMETHODPR(Model, GetNumGeometries, () const, unsigned), asCALL_THISCALL);
  1996. // unsigned Model::GetNumGeometryLodLevels(unsigned index) const | File: ../Graphics/Model.h
  1997. engine->RegisterObjectMethod("Model", "uint GetNumGeometryLodLevels(uint) const", asMETHODPR(Model, GetNumGeometryLodLevels, (unsigned) const, unsigned), asCALL_THISCALL);
  1998. engine->RegisterObjectMethod("Model", "uint get_numGeometryLodLevels(uint) const", asMETHODPR(Model, GetNumGeometryLodLevels, (unsigned) const, unsigned), asCALL_THISCALL);
  1999. // unsigned Model::GetNumMorphs() const | File: ../Graphics/Model.h
  2000. engine->RegisterObjectMethod("Model", "uint GetNumMorphs() const", asMETHODPR(Model, GetNumMorphs, () const, unsigned), asCALL_THISCALL);
  2001. engine->RegisterObjectMethod("Model", "uint get_numMorphs() const", asMETHODPR(Model, GetNumMorphs, () const, unsigned), asCALL_THISCALL);
  2002. // Skeleton& Model::GetSkeleton() | File: ../Graphics/Model.h
  2003. engine->RegisterObjectMethod("Model", "Skeleton& GetSkeleton()", asMETHODPR(Model, GetSkeleton, (), Skeleton&), asCALL_THISCALL);
  2004. engine->RegisterObjectMethod("Model", "Skeleton& get_skeleton()", asMETHODPR(Model, GetSkeleton, (), Skeleton&), asCALL_THISCALL);
  2005. // Object* Object::GetSubsystem(StringHash type) const | File: ../Core/Object.h
  2006. engine->RegisterObjectMethod("Model", "Object@+ GetSubsystem(StringHash) const", asMETHODPR(Model, GetSubsystem, (StringHash) const, Object*), asCALL_THISCALL);
  2007. // template<class T> T* Object::GetSubsystem() const | File: ../Core/Object.h
  2008. // Not registered because template
  2009. // virtual StringHash Object::GetType() const =0 | File: ../Core/Object.h
  2010. engine->RegisterObjectMethod("Model", "StringHash GetType() const", asMETHODPR(Model, GetType, () const, StringHash), asCALL_THISCALL);
  2011. engine->RegisterObjectMethod("Model", "StringHash get_type() const", asMETHODPR(Model, GetType, () const, StringHash), asCALL_THISCALL);
  2012. // virtual const TypeInfo* Object::GetTypeInfo() const =0 | File: ../Core/Object.h
  2013. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  2014. // static const TypeInfo* Object::GetTypeInfoStatic() | File: ../Core/Object.h
  2015. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  2016. // virtual const String& Object::GetTypeName() const =0 | File: ../Core/Object.h
  2017. engine->RegisterObjectMethod("Model", "const String& GetTypeName() const", asMETHODPR(Model, GetTypeName, () const, const String&), asCALL_THISCALL);
  2018. engine->RegisterObjectMethod("Model", "const String& get_typeName() const", asMETHODPR(Model, GetTypeName, () const, const String&), asCALL_THISCALL);
  2019. // unsigned Resource::GetUseTimer() | File: ../Resource/Resource.h
  2020. engine->RegisterObjectMethod("Model", "uint GetUseTimer()", asMETHODPR(Model, GetUseTimer, (), unsigned), asCALL_THISCALL);
  2021. engine->RegisterObjectMethod("Model", "uint get_useTimer()", asMETHODPR(Model, GetUseTimer, (), unsigned), asCALL_THISCALL);
  2022. // const Vector<SharedPtr<VertexBuffer>>& Model::GetVertexBuffers() const | File: ../Graphics/Model.h
  2023. engine->RegisterObjectMethod("Model", "Array<VertexBuffer@>@ GetVertexBuffers() const", asFUNCTION(Model_GetVertexBuffers_void), asCALL_CDECL_OBJFIRST);
  2024. // bool Object::HasEventHandlers() const | File: ../Core/Object.h
  2025. engine->RegisterObjectMethod("Model", "bool HasEventHandlers() const", asMETHODPR(Model, HasEventHandlers, () const, bool), asCALL_THISCALL);
  2026. // bool ResourceWithMetadata::HasMetadata() const | File: ../Resource/Resource.h
  2027. engine->RegisterObjectMethod("Model", "bool HasMetadata() const", asMETHODPR(Model, HasMetadata, () const, bool), asCALL_THISCALL);
  2028. engine->RegisterObjectMethod("Model", "bool get_hasMetadata() const", asMETHODPR(Model, HasMetadata, () const, bool), asCALL_THISCALL);
  2029. // bool Object::HasSubscribedToEvent(StringHash eventType) const | File: ../Core/Object.h
  2030. engine->RegisterObjectMethod("Model", "bool HasSubscribedToEvent(StringHash) const", asMETHODPR(Model, HasSubscribedToEvent, (StringHash) const, bool), asCALL_THISCALL);
  2031. // bool Object::HasSubscribedToEvent(Object* sender, StringHash eventType) const | File: ../Core/Object.h
  2032. engine->RegisterObjectMethod("Model", "bool HasSubscribedToEvent(Object@+, StringHash) const", asMETHODPR(Model, HasSubscribedToEvent, (Object*, StringHash) const, bool), asCALL_THISCALL);
  2033. // bool Object::IsInstanceOf(StringHash type) const | File: ../Core/Object.h
  2034. engine->RegisterObjectMethod("Model", "bool IsInstanceOf(StringHash) const", asMETHODPR(Model, IsInstanceOf, (StringHash) const, bool), asCALL_THISCALL);
  2035. // bool Object::IsInstanceOf(const TypeInfo* typeInfo) const | File: ../Core/Object.h
  2036. // Error: type "TypeInfo" can not automatically bind bacause have @nobind mark
  2037. // template<typename T> bool Object::IsInstanceOf() const | File: ../Core/Object.h
  2038. // Not registered because template
  2039. // bool Resource::Load(Deserializer& source) | File: ../Resource/Resource.h
  2040. engine->RegisterObjectMethod("Model", "bool Load(Deserializer&)", asMETHODPR(Model, Load, (Deserializer&), bool), asCALL_THISCALL);
  2041. // bool Resource::LoadFile(const String& fileName) | File: ../Resource/Resource.h
  2042. engine->RegisterObjectMethod("Model", "bool LoadFile(const String&in)", asMETHODPR(Model, LoadFile, (const String&), bool), asCALL_THISCALL);
  2043. engine->RegisterObjectMethod("Model", "bool Load(const String&in)", asMETHODPR(Model, LoadFile, (const String&), bool), asCALL_THISCALL);
  2044. // explicit Model::Model(Context* context) | File: ../Graphics/Model.h
  2045. engine->RegisterObjectBehaviour("Model", asBEHAVE_FACTORY, "Model@+ f()", asFUNCTION(Model_Model_Context), asCALL_CDECL);
  2046. // virtual void Object::OnEvent(Object* sender, StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  2047. engine->RegisterObjectMethod("Model", "void OnEvent(Object@+, StringHash, VariantMap&)", asMETHODPR(Model, OnEvent, (Object*, StringHash, VariantMap&), void), asCALL_THISCALL);
  2048. // RefCount* RefCounted::RefCountPtr() | File: ../Container/RefCounted.h
  2049. // Error: type "RefCount*" can not automatically bind
  2050. // int RefCounted::Refs() const | File: ../Container/RefCounted.h
  2051. engine->RegisterObjectMethod("Model", "int Refs() const", asMETHODPR(Model, Refs, () const, int), asCALL_THISCALL);
  2052. engine->RegisterObjectMethod("Model", "int get_refs() const", asMETHODPR(Model, Refs, () const, int), asCALL_THISCALL);
  2053. // static void Model::RegisterObject(Context* context) | File: ../Graphics/Model.h
  2054. // Context can be used as firs parameter of constructors only
  2055. // void RefCounted::ReleaseRef() | File: ../Container/RefCounted.h
  2056. engine->RegisterObjectBehaviour("Model", asBEHAVE_RELEASE, "void f()", asMETHODPR(Model, ReleaseRef, (), void), asCALL_THISCALL);
  2057. // void ResourceWithMetadata::RemoveAllMetadata() | File: ../Resource/Resource.h
  2058. engine->RegisterObjectMethod("Model", "void RemoveAllMetadata()", asMETHODPR(Model, RemoveAllMetadata, (), void), asCALL_THISCALL);
  2059. // void ResourceWithMetadata::RemoveMetadata(const String& name) | File: ../Resource/Resource.h
  2060. engine->RegisterObjectMethod("Model", "void RemoveMetadata(const String&in)", asMETHODPR(Model, RemoveMetadata, (const String&), void), asCALL_THISCALL);
  2061. // void Resource::ResetUseTimer() | File: ../Resource/Resource.h
  2062. engine->RegisterObjectMethod("Model", "void ResetUseTimer()", asMETHODPR(Model, ResetUseTimer, (), void), asCALL_THISCALL);
  2063. // bool Model::Save(Serializer& dest) const override | File: ../Graphics/Model.h
  2064. engine->RegisterObjectMethod("Model", "bool Save(Serializer&) const", asMETHODPR(Model, Save, (Serializer&) const, bool), asCALL_THISCALL);
  2065. // virtual bool Resource::SaveFile(const String& fileName) const | File: ../Resource/Resource.h
  2066. engine->RegisterObjectMethod("Model", "bool SaveFile(const String&in) const", asMETHODPR(Model, SaveFile, (const String&) const, bool), asCALL_THISCALL);
  2067. engine->RegisterObjectMethod("Model", "bool Save(const String&in) const", asMETHODPR(Model, SaveFile, (const String&) const, bool), asCALL_THISCALL);
  2068. // void Object::SendEvent(StringHash eventType) | File: ../Core/Object.h
  2069. engine->RegisterObjectMethod("Model", "void SendEvent(StringHash)", asMETHODPR(Model, SendEvent, (StringHash), void), asCALL_THISCALL);
  2070. // void Object::SendEvent(StringHash eventType, VariantMap& eventData) | File: ../Core/Object.h
  2071. engine->RegisterObjectMethod("Model", "void SendEvent(StringHash, VariantMap&)", asMETHODPR(Model, SendEvent, (StringHash, VariantMap&), void), asCALL_THISCALL);
  2072. // template<typename... Args> void Object::SendEvent(StringHash eventType, Args... args) | File: ../Core/Object.h
  2073. // Not registered because template
  2074. // void Resource::SetAsyncLoadState(AsyncLoadState newState) | File: ../Resource/Resource.h
  2075. engine->RegisterObjectMethod("Model", "void SetAsyncLoadState(AsyncLoadState)", asMETHODPR(Model, SetAsyncLoadState, (AsyncLoadState), void), asCALL_THISCALL);
  2076. // void Object::SetBlockEvents(bool block) | File: ../Core/Object.h
  2077. engine->RegisterObjectMethod("Model", "void SetBlockEvents(bool)", asMETHODPR(Model, SetBlockEvents, (bool), void), asCALL_THISCALL);
  2078. // void Model::SetBoundingBox(const BoundingBox& box) | File: ../Graphics/Model.h
  2079. engine->RegisterObjectMethod("Model", "void SetBoundingBox(const BoundingBox&in)", asMETHODPR(Model, SetBoundingBox, (const BoundingBox&), void), asCALL_THISCALL);
  2080. engine->RegisterObjectMethod("Model", "void set_boundingBox(const BoundingBox&in)", asMETHODPR(Model, SetBoundingBox, (const BoundingBox&), void), asCALL_THISCALL);
  2081. // bool Model::SetGeometry(unsigned index, unsigned lodLevel, Geometry* geometry) | File: ../Graphics/Model.h
  2082. engine->RegisterObjectMethod("Model", "bool SetGeometry(uint, uint, Geometry@+)", asMETHODPR(Model, SetGeometry, (unsigned, unsigned, Geometry*), bool), asCALL_THISCALL);
  2083. // void Model::SetGeometryBoneMappings(const Vector<PODVector<unsigned>>& geometryBoneMappings) | File: ../Graphics/Model.h
  2084. // Error: type "const Vector<PODVector<unsigned>>&" can not automatically bind
  2085. // bool Model::SetGeometryCenter(unsigned index, const Vector3& center) | File: ../Graphics/Model.h
  2086. engine->RegisterObjectMethod("Model", "bool SetGeometryCenter(uint, const Vector3&in)", asMETHODPR(Model, SetGeometryCenter, (unsigned, const Vector3&), bool), asCALL_THISCALL);
  2087. engine->RegisterObjectMethod("Model", "bool set_geometryCenters(uint, const Vector3&in)", asMETHODPR(Model, SetGeometryCenter, (unsigned, const Vector3&), bool), asCALL_THISCALL);
  2088. // void Object::SetGlobalVar(StringHash key, const Variant& value) | File: ../Core/Object.h
  2089. engine->RegisterObjectMethod("Model", "void SetGlobalVar(StringHash, const Variant&in)", asMETHODPR(Model, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  2090. engine->RegisterObjectMethod("Model", "void set_globalVar(StringHash, const Variant&in)", asMETHODPR(Model, SetGlobalVar, (StringHash, const Variant&), void), asCALL_THISCALL);
  2091. // bool Model::SetIndexBuffers(const Vector<SharedPtr<IndexBuffer>>& buffers) | File: ../Graphics/Model.h
  2092. engine->RegisterObjectMethod("Model", "bool SetIndexBuffers(Array<IndexBuffer@>@+)", asFUNCTION(Model_SetIndexBuffers_VectorSharedPtrIndexBuffer), asCALL_CDECL_OBJFIRST);
  2093. // void Resource::SetMemoryUse(unsigned size) | File: ../Resource/Resource.h
  2094. engine->RegisterObjectMethod("Model", "void SetMemoryUse(uint)", asMETHODPR(Model, SetMemoryUse, (unsigned), void), asCALL_THISCALL);
  2095. // void Model::SetMorphs(const Vector<ModelMorph>& morphs) | File: ../Graphics/Model.h
  2096. // Error: type "const Vector<ModelMorph>&" can not automatically bind
  2097. // void Resource::SetName(const String& name) | File: ../Resource/Resource.h
  2098. engine->RegisterObjectMethod("Model", "void SetName(const String&in)", asMETHODPR(Model, SetName, (const String&), void), asCALL_THISCALL);
  2099. engine->RegisterObjectMethod("Model", "void set_name(const String&in)", asMETHODPR(Model, SetName, (const String&), void), asCALL_THISCALL);
  2100. // void Model::SetNumGeometries(unsigned num) | File: ../Graphics/Model.h
  2101. engine->RegisterObjectMethod("Model", "void SetNumGeometries(uint)", asMETHODPR(Model, SetNumGeometries, (unsigned), void), asCALL_THISCALL);
  2102. engine->RegisterObjectMethod("Model", "void set_numGeometries(uint)", asMETHODPR(Model, SetNumGeometries, (unsigned), void), asCALL_THISCALL);
  2103. // bool Model::SetNumGeometryLodLevels(unsigned index, unsigned num) | File: ../Graphics/Model.h
  2104. engine->RegisterObjectMethod("Model", "bool SetNumGeometryLodLevels(uint, uint)", asMETHODPR(Model, SetNumGeometryLodLevels, (unsigned, unsigned), bool), asCALL_THISCALL);
  2105. engine->RegisterObjectMethod("Model", "bool set_numGeometryLodLevels(uint, uint)", asMETHODPR(Model, SetNumGeometryLodLevels, (unsigned, unsigned), bool), asCALL_THISCALL);
  2106. // void Model::SetSkeleton(const Skeleton& skeleton) | File: ../Graphics/Model.h
  2107. engine->RegisterObjectMethod("Model", "void SetSkeleton(const Skeleton&in)", asMETHODPR(Model, SetSkeleton, (const Skeleton&), void), asCALL_THISCALL);
  2108. // bool Model::SetVertexBuffers(const Vector<SharedPtr<VertexBuffer>>& buffers, const PODVector<unsigned>& morphRangeStarts, const PODVector<unsigned>& morphRangeCounts) | File: ../Graphics/Model.h
  2109. engine->RegisterObjectMethod("Model", "bool SetVertexBuffers(Array<VertexBuffer@>@+, Array<uint>@+, Array<uint>@+)", asFUNCTION(Model_SetVertexBuffers_VectorSharedPtrVertexBuffer_PODVectorunsigned_PODVectorunsigned), asCALL_CDECL_OBJFIRST);
  2110. // void Object::SubscribeToEvent(StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  2111. // Error: type "EventHandler*" can not automatically bind
  2112. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, EventHandler* handler) | File: ../Core/Object.h
  2113. // Error: type "EventHandler*" can not automatically bind
  2114. // void Object::SubscribeToEvent(StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  2115. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  2116. // void Object::SubscribeToEvent(Object* sender, StringHash eventType, const std::function<void(StringHash, VariantMap&)>& function, void* userData=nullptr) | File: ../Core/Object.h
  2117. // Error: type "const std::function<void(StringHash, VariantMap&)>&" can not automatically bind
  2118. // void Object::UnsubscribeFromAllEvents() | File: ../Core/Object.h
  2119. engine->RegisterObjectMethod("Model", "void UnsubscribeFromAllEvents()", asMETHODPR(Model, UnsubscribeFromAllEvents, (), void), asCALL_THISCALL);
  2120. // void Object::UnsubscribeFromAllEventsExcept(const PODVector<StringHash>& exceptions, bool onlyUserData) | File: ../Core/Object.h
  2121. engine->RegisterObjectMethod("Model", "void UnsubscribeFromAllEventsExcept(Array<StringHash>@+, bool)", asFUNCTION(Model_UnsubscribeFromAllEventsExcept_PODVectorStringHash_bool), asCALL_CDECL_OBJFIRST);
  2122. // void Object::UnsubscribeFromEvent(StringHash eventType) | File: ../Core/Object.h
  2123. engine->RegisterObjectMethod("Model", "void UnsubscribeFromEvent(StringHash)", asMETHODPR(Model, UnsubscribeFromEvent, (StringHash), void), asCALL_THISCALL);
  2124. // void Object::UnsubscribeFromEvent(Object* sender, StringHash eventType) | File: ../Core/Object.h
  2125. engine->RegisterObjectMethod("Model", "void UnsubscribeFromEvent(Object@+, StringHash)", asMETHODPR(Model, UnsubscribeFromEvent, (Object*, StringHash), void), asCALL_THISCALL);
  2126. // void Object::UnsubscribeFromEvents(Object* sender) | File: ../Core/Object.h
  2127. engine->RegisterObjectMethod("Model", "void UnsubscribeFromEvents(Object@+)", asMETHODPR(Model, UnsubscribeFromEvents, (Object*), void), asCALL_THISCALL);
  2128. // int RefCounted::WeakRefs() const | File: ../Container/RefCounted.h
  2129. engine->RegisterObjectMethod("Model", "int WeakRefs() const", asMETHODPR(Model, WeakRefs, () const, int), asCALL_THISCALL);
  2130. engine->RegisterObjectMethod("Model", "int get_weakRefs() const", asMETHODPR(Model, WeakRefs, () const, int), asCALL_THISCALL);
  2131. #ifdef REGISTER_MANUAL_PART_ResourceWithMetadata
  2132. REGISTER_MANUAL_PART_ResourceWithMetadata(Model, "Model")
  2133. #endif
  2134. #ifdef REGISTER_MANUAL_PART_Resource
  2135. REGISTER_MANUAL_PART_Resource(Model, "Model")
  2136. #endif
  2137. #ifdef REGISTER_MANUAL_PART_Object
  2138. REGISTER_MANUAL_PART_Object(Model, "Model")
  2139. #endif
  2140. #ifdef REGISTER_MANUAL_PART_RefCounted
  2141. REGISTER_MANUAL_PART_RefCounted(Model, "Model")
  2142. #endif
  2143. #ifdef REGISTER_MANUAL_PART_Model
  2144. REGISTER_MANUAL_PART_Model(Model, "Model")
  2145. #endif
  2146. RegisterSubclass<ResourceWithMetadata, Model>(engine, "ResourceWithMetadata", "Model");
  2147. RegisterSubclass<Resource, Model>(engine, "Resource", "Model");
  2148. RegisterSubclass<Object, Model>(engine, "Object", "Model");
  2149. RegisterSubclass<RefCounted, Model>(engine, "RefCounted", "Model");
  2150. // void Mutex::Acquire() | File: ../Core/Mutex.h
  2151. engine->RegisterObjectMethod("Mutex", "void Acquire()", asMETHODPR(Mutex, Acquire, (), void), asCALL_THISCALL);
  2152. // void Mutex::Release() | File: ../Core/Mutex.h
  2153. engine->RegisterObjectMethod("Mutex", "void Release()", asMETHODPR(Mutex, Release, (), void), asCALL_THISCALL);
  2154. // bool Mutex::TryAcquire() | File: ../Core/Mutex.h
  2155. engine->RegisterObjectMethod("Mutex", "bool TryAcquire()", asMETHODPR(Mutex, TryAcquire, (), bool), asCALL_THISCALL);
  2156. // Mutex::~Mutex() | File: ../Core/Mutex.h
  2157. engine->RegisterObjectBehaviour("Mutex", asBEHAVE_DESTRUCT, "void f()", asFUNCTION(Mutex_Destructor_Mutex_void), asCALL_CDECL_OBJFIRST);
  2158. // Mutex& Mutex::operator=(const Mutex&) | Possible implicitly-declared
  2159. RegisterImplicitlyDeclaredAssignOperatorIfPossible<Mutex>(engine, "Mutex");
  2160. #ifdef REGISTER_MANUAL_PART_Mutex
  2161. REGISTER_MANUAL_PART_Mutex(Mutex, "Mutex")
  2162. #endif
  2163. // explicit MutexLock::MutexLock(Mutex& mutex) | File: ../Core/Mutex.h
  2164. engine->RegisterObjectBehaviour("MutexLock", asBEHAVE_CONSTRUCT, "void f(Mutex&)", asFUNCTION(MutexLock_MutexLock_Mutex), asCALL_CDECL_OBJFIRST);
  2165. // MutexLock::~MutexLock() | File: ../Core/Mutex.h
  2166. engine->RegisterObjectBehaviour("MutexLock", asBEHAVE_DESTRUCT, "void f()", asFUNCTION(MutexLock_Destructor_MutexLock_void), asCALL_CDECL_OBJFIRST);
  2167. #ifdef REGISTER_MANUAL_PART_MutexLock
  2168. REGISTER_MANUAL_PART_MutexLock(MutexLock, "MutexLock")
  2169. #endif
  2170. #ifdef URHO3D_PHYSICS
  2171. // btPersistentManifold* ManifoldPair::flippedManifold_ | File: ../Physics/PhysicsWorld.h
  2172. // btPersistentManifold* can not be registered
  2173. // btPersistentManifold* ManifoldPair::manifold_ | File: ../Physics/PhysicsWorld.h
  2174. // btPersistentManifold* can not be registered
  2175. // ManifoldPair::~ManifoldPair() | Implicitly-declared
  2176. engine->RegisterObjectBehaviour("ManifoldPair", asBEHAVE_DESTRUCT, "void f()", asFUNCTION(ManifoldPair_Destructor), asCALL_CDECL_OBJFIRST);
  2177. // ManifoldPair& ManifoldPair::operator=(const ManifoldPair&) | Possible implicitly-declared
  2178. RegisterImplicitlyDeclaredAssignOperatorIfPossible<ManifoldPair>(engine, "ManifoldPair");
  2179. #ifdef REGISTER_MANUAL_PART_ManifoldPair
  2180. REGISTER_MANUAL_PART_ManifoldPair(ManifoldPair, "ManifoldPair")
  2181. #endif
  2182. #endif
  2183. // String MaterialShaderParameter::name_ | File: ../Graphics/Material.h
  2184. engine->RegisterObjectProperty("MaterialShaderParameter", "String name", offsetof(MaterialShaderParameter, name_));
  2185. // Variant MaterialShaderParameter::value_ | File: ../Graphics/Material.h
  2186. engine->RegisterObjectProperty("MaterialShaderParameter", "Variant value", offsetof(MaterialShaderParameter, value_));
  2187. // MaterialShaderParameter::~MaterialShaderParameter() | Implicitly-declared
  2188. engine->RegisterObjectBehaviour("MaterialShaderParameter", asBEHAVE_DESTRUCT, "void f()", asFUNCTION(MaterialShaderParameter_Destructor), asCALL_CDECL_OBJFIRST);
  2189. // MaterialShaderParameter& MaterialShaderParameter::operator=(const MaterialShaderParameter&) | Possible implicitly-declared
  2190. RegisterImplicitlyDeclaredAssignOperatorIfPossible<MaterialShaderParameter>(engine, "MaterialShaderParameter");
  2191. #ifdef REGISTER_MANUAL_PART_MaterialShaderParameter
  2192. REGISTER_MANUAL_PART_MaterialShaderParameter(MaterialShaderParameter, "MaterialShaderParameter")
  2193. #endif
  2194. // HashMap<unsigned, VertexBufferMorph> ModelMorph::buffers_ | File: ../Graphics/Model.h
  2195. // Error: type "HashMap<unsigned, VertexBufferMorph>" can not automatically bind
  2196. // String ModelMorph::name_ | File: ../Graphics/Model.h
  2197. engine->RegisterObjectProperty("ModelMorph", "String name", offsetof(ModelMorph, name_));
  2198. // StringHash ModelMorph::nameHash_ | File: ../Graphics/Model.h
  2199. engine->RegisterObjectProperty("ModelMorph", "StringHash nameHash", offsetof(ModelMorph, nameHash_));
  2200. // float ModelMorph::weight_ | File: ../Graphics/Model.h
  2201. engine->RegisterObjectProperty("ModelMorph", "float weight", offsetof(ModelMorph, weight_));
  2202. // ModelMorph::~ModelMorph() | Implicitly-declared
  2203. engine->RegisterObjectBehaviour("ModelMorph", asBEHAVE_DESTRUCT, "void f()", asFUNCTION(ModelMorph_Destructor), asCALL_CDECL_OBJFIRST);
  2204. // ModelMorph& ModelMorph::operator=(const ModelMorph&) | Possible implicitly-declared
  2205. RegisterImplicitlyDeclaredAssignOperatorIfPossible<ModelMorph>(engine, "ModelMorph");
  2206. #ifdef REGISTER_MANUAL_PART_ModelMorph
  2207. REGISTER_MANUAL_PART_ModelMorph(ModelMorph, "ModelMorph")
  2208. #endif
  2209. }
  2210. }