No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityEngine.TextRenderingModule.cpp 121KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. struct InterfaceActionInvoker0
  9. {
  10. typedef void (*Action)(void*, const RuntimeMethod*);
  11. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  12. {
  13. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  14. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  15. }
  16. };
  17. struct Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC;
  18. struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
  19. struct IList_1_t7C94015474540F0009E4F2C369960F5CBFF622E9;
  20. struct IList_1_tD01F121A6E09A7FB2463237A05A02D8736665FDB;
  21. struct IList_1_t1B290ECCB9D2FD52EB25227789136D5C40BD3D5D;
  22. struct List_1_t67A1600A303BB89506DFD21B59687088B7E0675B;
  23. struct List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5;
  24. struct List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A;
  25. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  26. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  27. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  28. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  29. struct UICharInfoU5BU5D_t98D25C0197327978FA4E11B3518901A4839E086C;
  30. struct UILineInfoU5BU5D_tDD6C8909B58F997A6FB1A17F360E8DBE387204BC;
  31. struct UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F;
  32. struct Delegate_t;
  33. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  34. struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6;
  35. struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
  36. struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
  37. struct MethodInfo_t;
  38. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
  39. struct String_t;
  40. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3;
  41. struct TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC;
  42. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  43. struct FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1;
  44. IL2CPP_EXTERN_C RuntimeClass* Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC_il2cpp_TypeInfo_var;
  45. IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
  46. IL2CPP_EXTERN_C RuntimeClass* Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var;
  47. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
  48. IL2CPP_EXTERN_C RuntimeClass* List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A_il2cpp_TypeInfo_var;
  49. IL2CPP_EXTERN_C RuntimeClass* List_1_t67A1600A303BB89506DFD21B59687088B7E0675B_il2cpp_TypeInfo_var;
  50. IL2CPP_EXTERN_C RuntimeClass* List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5_il2cpp_TypeInfo_var;
  51. IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
  52. IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
  53. IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
  54. IL2CPP_EXTERN_C RuntimeClass* UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_il2cpp_TypeInfo_var;
  55. IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var;
  56. IL2CPP_EXTERN_C RuntimeClass* Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var;
  57. IL2CPP_EXTERN_C String_t* _stringLiteral0052C2B75AF160293B7E2B988F2F9D83DCD1D4D6;
  58. IL2CPP_EXTERN_C String_t* _stringLiteral7EE2EC0E141890ED13D1EEC3562248EA95485987;
  59. IL2CPP_EXTERN_C String_t* _stringLiteralC26096054589E56273AC485218FA5B65675C933E;
  60. IL2CPP_EXTERN_C String_t* _stringLiteralEEEF4964BE1943E118BB297F57BDB9955C6DA372;
  61. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m220A7CFB07F883D427D782347E3CF8B68F1AFE03_RuntimeMethod_var;
  62. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA625F85B21CB389422393F709122327ED0BF7CA9_RuntimeMethod_var;
  63. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mD013968D6DAB756EA34E138E00BEF8922909C1BE_RuntimeMethod_var;
  64. struct Delegate_t_marshaled_com;
  65. struct Delegate_t_marshaled_pinvoke;
  66. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3;;
  67. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com;
  68. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com;;
  69. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke;
  70. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke;;
  71. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  72. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  73. IL2CPP_EXTERN_C_BEGIN
  74. IL2CPP_EXTERN_C_END
  75. #ifdef __clang__
  76. #pragma clang diagnostic push
  77. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  78. #pragma clang diagnostic ignored "-Wunused-variable"
  79. #endif
  80. struct U3CModuleU3E_t806C4A82D63BA5BEE007D75772441609D967BADA
  81. {
  82. };
  83. struct List_1_t67A1600A303BB89506DFD21B59687088B7E0675B : public RuntimeObject
  84. {
  85. UICharInfoU5BU5D_t98D25C0197327978FA4E11B3518901A4839E086C* ____items;
  86. int32_t ____size;
  87. int32_t ____version;
  88. RuntimeObject* ____syncRoot;
  89. };
  90. struct List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5 : public RuntimeObject
  91. {
  92. UILineInfoU5BU5D_tDD6C8909B58F997A6FB1A17F360E8DBE387204BC* ____items;
  93. int32_t ____size;
  94. int32_t ____version;
  95. RuntimeObject* ____syncRoot;
  96. };
  97. struct List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A : public RuntimeObject
  98. {
  99. UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* ____items;
  100. int32_t ____size;
  101. int32_t ____version;
  102. RuntimeObject* ____syncRoot;
  103. };
  104. struct String_t : public RuntimeObject
  105. {
  106. int32_t ____stringLength;
  107. Il2CppChar ____firstChar;
  108. };
  109. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  110. {
  111. };
  112. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  113. {
  114. };
  115. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  116. {
  117. };
  118. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  119. {
  120. bool ___m_value;
  121. };
  122. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  123. {
  124. uint8_t ___m_value;
  125. };
  126. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  127. {
  128. Il2CppChar ___m_value;
  129. };
  130. struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
  131. {
  132. float ___r;
  133. float ___g;
  134. float ___b;
  135. float ___a;
  136. };
  137. struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B
  138. {
  139. union
  140. {
  141. #pragma pack(push, tp, 1)
  142. struct
  143. {
  144. int32_t ___rgba;
  145. };
  146. #pragma pack(pop, tp)
  147. struct
  148. {
  149. int32_t ___rgba_forAlignmentOnly;
  150. };
  151. #pragma pack(push, tp, 1)
  152. struct
  153. {
  154. uint8_t ___r;
  155. };
  156. #pragma pack(pop, tp)
  157. struct
  158. {
  159. uint8_t ___r_forAlignmentOnly;
  160. };
  161. #pragma pack(push, tp, 1)
  162. struct
  163. {
  164. char ___g_OffsetPadding[1];
  165. uint8_t ___g;
  166. };
  167. #pragma pack(pop, tp)
  168. struct
  169. {
  170. char ___g_OffsetPadding_forAlignmentOnly[1];
  171. uint8_t ___g_forAlignmentOnly;
  172. };
  173. #pragma pack(push, tp, 1)
  174. struct
  175. {
  176. char ___b_OffsetPadding[2];
  177. uint8_t ___b;
  178. };
  179. #pragma pack(pop, tp)
  180. struct
  181. {
  182. char ___b_OffsetPadding_forAlignmentOnly[2];
  183. uint8_t ___b_forAlignmentOnly;
  184. };
  185. #pragma pack(push, tp, 1)
  186. struct
  187. {
  188. char ___a_OffsetPadding[3];
  189. uint8_t ___a;
  190. };
  191. #pragma pack(pop, tp)
  192. struct
  193. {
  194. char ___a_OffsetPadding_forAlignmentOnly[3];
  195. uint8_t ___a_forAlignmentOnly;
  196. };
  197. };
  198. };
  199. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  200. {
  201. };
  202. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  203. {
  204. };
  205. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  206. {
  207. };
  208. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  209. {
  210. int32_t ___m_value;
  211. };
  212. struct IntPtr_t
  213. {
  214. void* ___m_value;
  215. };
  216. struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
  217. {
  218. union
  219. {
  220. struct
  221. {
  222. };
  223. uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
  224. };
  225. };
  226. struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
  227. {
  228. float ___m_XMin;
  229. float ___m_YMin;
  230. float ___m_Width;
  231. float ___m_Height;
  232. };
  233. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  234. {
  235. float ___m_value;
  236. };
  237. struct UILineInfo_tC6FF4F85BD2316FADA2148A1789B3FF0B05A6CAC
  238. {
  239. int32_t ___startCharIdx;
  240. int32_t ___height;
  241. float ___topY;
  242. float ___leading;
  243. };
  244. struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
  245. {
  246. uint32_t ___m_value;
  247. };
  248. struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
  249. {
  250. float ___x;
  251. float ___y;
  252. };
  253. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
  254. {
  255. float ___x;
  256. float ___y;
  257. float ___z;
  258. };
  259. struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
  260. {
  261. float ___x;
  262. float ___y;
  263. float ___z;
  264. float ___w;
  265. };
  266. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  267. {
  268. union
  269. {
  270. struct
  271. {
  272. };
  273. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  274. };
  275. };
  276. struct Delegate_t : public RuntimeObject
  277. {
  278. intptr_t ___method_ptr;
  279. intptr_t ___invoke_impl;
  280. RuntimeObject* ___m_target;
  281. intptr_t ___method;
  282. intptr_t ___delegate_trampoline;
  283. intptr_t ___extra_arg;
  284. intptr_t ___method_code;
  285. intptr_t ___interp_method;
  286. intptr_t ___interp_invoke_impl;
  287. MethodInfo_t* ___method_info;
  288. MethodInfo_t* ___original_method_info;
  289. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  290. bool ___method_is_virtual;
  291. };
  292. struct Delegate_t_marshaled_pinvoke
  293. {
  294. intptr_t ___method_ptr;
  295. intptr_t ___invoke_impl;
  296. Il2CppIUnknown* ___m_target;
  297. intptr_t ___method;
  298. intptr_t ___delegate_trampoline;
  299. intptr_t ___extra_arg;
  300. intptr_t ___method_code;
  301. intptr_t ___interp_method;
  302. intptr_t ___interp_invoke_impl;
  303. MethodInfo_t* ___method_info;
  304. MethodInfo_t* ___original_method_info;
  305. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  306. int32_t ___method_is_virtual;
  307. };
  308. struct Delegate_t_marshaled_com
  309. {
  310. intptr_t ___method_ptr;
  311. intptr_t ___invoke_impl;
  312. Il2CppIUnknown* ___m_target;
  313. intptr_t ___method;
  314. intptr_t ___delegate_trampoline;
  315. intptr_t ___extra_arg;
  316. intptr_t ___method_code;
  317. intptr_t ___interp_method;
  318. intptr_t ___interp_invoke_impl;
  319. MethodInfo_t* ___method_info;
  320. MethodInfo_t* ___original_method_info;
  321. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  322. int32_t ___method_is_virtual;
  323. };
  324. struct FontStyle_tDD46734FA9BCB99FB315CD7CAD1137EE536136D1
  325. {
  326. int32_t ___value__;
  327. };
  328. struct HorizontalWrapMode_tFBCA6173D94996068BC1CFFCB88108F1BAD39688
  329. {
  330. int32_t ___value__;
  331. };
  332. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
  333. {
  334. intptr_t ___m_CachedPtr;
  335. };
  336. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
  337. {
  338. intptr_t ___m_CachedPtr;
  339. };
  340. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
  341. {
  342. intptr_t ___m_CachedPtr;
  343. };
  344. struct TextAnchor_tA46E794186AC1CD0F22888652F589EBF7DFDF830
  345. {
  346. int32_t ___value__;
  347. };
  348. struct TextGenerationError_t7F7ADE7701202BDB4025B7ADEED6DA0F20064128
  349. {
  350. int32_t ___value__;
  351. };
  352. struct UICharInfo_t24C2EA0F2F3A938100C271891D9DEB015ABA5FBD
  353. {
  354. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___cursorPos;
  355. float ___charWidth;
  356. };
  357. struct UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207
  358. {
  359. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
  360. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___normal;
  361. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___tangent;
  362. Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___color;
  363. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv0;
  364. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv1;
  365. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv2;
  366. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv3;
  367. };
  368. struct VerticalWrapMode_t16A70E87910F9A8784E74B8F3E0DCEFA3F98DEB3
  369. {
  370. int32_t ___value__;
  371. };
  372. struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  373. {
  374. FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* ___m_FontTextureRebuildCallback;
  375. };
  376. struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  377. {
  378. };
  379. struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
  380. {
  381. };
  382. struct MulticastDelegate_t : public Delegate_t
  383. {
  384. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  385. };
  386. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  387. {
  388. Delegate_t_marshaled_pinvoke** ___delegates;
  389. };
  390. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  391. {
  392. Delegate_t_marshaled_com** ___delegates;
  393. };
  394. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3
  395. {
  396. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font;
  397. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
  398. int32_t ___fontSize;
  399. float ___lineSpacing;
  400. bool ___richText;
  401. float ___scaleFactor;
  402. int32_t ___fontStyle;
  403. int32_t ___textAnchor;
  404. bool ___alignByGeometry;
  405. bool ___resizeTextForBestFit;
  406. int32_t ___resizeTextMinSize;
  407. int32_t ___resizeTextMaxSize;
  408. bool ___updateBounds;
  409. int32_t ___verticalOverflow;
  410. int32_t ___horizontalOverflow;
  411. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___generationExtents;
  412. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___pivot;
  413. bool ___generateOutOfBounds;
  414. };
  415. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke
  416. {
  417. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font;
  418. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
  419. int32_t ___fontSize;
  420. float ___lineSpacing;
  421. int32_t ___richText;
  422. float ___scaleFactor;
  423. int32_t ___fontStyle;
  424. int32_t ___textAnchor;
  425. int32_t ___alignByGeometry;
  426. int32_t ___resizeTextForBestFit;
  427. int32_t ___resizeTextMinSize;
  428. int32_t ___resizeTextMaxSize;
  429. int32_t ___updateBounds;
  430. int32_t ___verticalOverflow;
  431. int32_t ___horizontalOverflow;
  432. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___generationExtents;
  433. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___pivot;
  434. int32_t ___generateOutOfBounds;
  435. };
  436. struct TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com
  437. {
  438. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font;
  439. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
  440. int32_t ___fontSize;
  441. float ___lineSpacing;
  442. int32_t ___richText;
  443. float ___scaleFactor;
  444. int32_t ___fontStyle;
  445. int32_t ___textAnchor;
  446. int32_t ___alignByGeometry;
  447. int32_t ___resizeTextForBestFit;
  448. int32_t ___resizeTextMinSize;
  449. int32_t ___resizeTextMaxSize;
  450. int32_t ___updateBounds;
  451. int32_t ___verticalOverflow;
  452. int32_t ___horizontalOverflow;
  453. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___generationExtents;
  454. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___pivot;
  455. int32_t ___generateOutOfBounds;
  456. };
  457. struct Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC : public MulticastDelegate_t
  458. {
  459. };
  460. struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87 : public MulticastDelegate_t
  461. {
  462. };
  463. struct TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC : public RuntimeObject
  464. {
  465. intptr_t ___m_Ptr;
  466. String_t* ___m_LastString;
  467. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___m_LastSettings;
  468. bool ___m_HasGenerated;
  469. int32_t ___m_LastValid;
  470. List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___m_Verts;
  471. List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* ___m_Characters;
  472. List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* ___m_Lines;
  473. bool ___m_CachedVerts;
  474. bool ___m_CachedCharacters;
  475. bool ___m_CachedLines;
  476. };
  477. struct TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_pinvoke
  478. {
  479. intptr_t ___m_Ptr;
  480. char* ___m_LastString;
  481. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke ___m_LastSettings;
  482. int32_t ___m_HasGenerated;
  483. int32_t ___m_LastValid;
  484. List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___m_Verts;
  485. List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* ___m_Characters;
  486. List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* ___m_Lines;
  487. int32_t ___m_CachedVerts;
  488. int32_t ___m_CachedCharacters;
  489. int32_t ___m_CachedLines;
  490. };
  491. struct TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_com
  492. {
  493. intptr_t ___m_Ptr;
  494. Il2CppChar* ___m_LastString;
  495. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com ___m_LastSettings;
  496. int32_t ___m_HasGenerated;
  497. int32_t ___m_LastValid;
  498. List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___m_Verts;
  499. List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* ___m_Characters;
  500. List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* ___m_Lines;
  501. int32_t ___m_CachedVerts;
  502. int32_t ___m_CachedCharacters;
  503. int32_t ___m_CachedLines;
  504. };
  505. struct FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1 : public MulticastDelegate_t
  506. {
  507. };
  508. struct List_1_t67A1600A303BB89506DFD21B59687088B7E0675B_StaticFields
  509. {
  510. UICharInfoU5BU5D_t98D25C0197327978FA4E11B3518901A4839E086C* ___s_emptyArray;
  511. };
  512. struct List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5_StaticFields
  513. {
  514. UILineInfoU5BU5D_tDD6C8909B58F997A6FB1A17F360E8DBE387204BC* ___s_emptyArray;
  515. };
  516. struct List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A_StaticFields
  517. {
  518. UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* ___s_emptyArray;
  519. };
  520. struct String_t_StaticFields
  521. {
  522. String_t* ___Empty;
  523. };
  524. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  525. {
  526. String_t* ___TrueString;
  527. String_t* ___FalseString;
  528. };
  529. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  530. {
  531. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
  532. };
  533. struct IntPtr_t_StaticFields
  534. {
  535. intptr_t ___Zero;
  536. };
  537. struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
  538. {
  539. float ___Epsilon;
  540. };
  541. struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
  542. {
  543. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
  544. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
  545. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
  546. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
  547. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
  548. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
  549. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
  550. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
  551. };
  552. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
  553. {
  554. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
  555. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
  556. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
  557. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
  558. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
  559. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
  560. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
  561. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
  562. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
  563. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
  564. };
  565. struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
  566. {
  567. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector;
  568. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector;
  569. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector;
  570. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector;
  571. };
  572. struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
  573. {
  574. int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
  575. };
  576. struct UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields
  577. {
  578. Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___s_DefaultColor;
  579. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___s_DefaultTangent;
  580. UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___simpleVert;
  581. };
  582. struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields
  583. {
  584. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* ___textureRebuilt;
  585. };
  586. #ifdef __clang__
  587. #pragma clang diagnostic pop
  588. #endif
  589. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
  590. {
  591. ALIGN_FIELD (8) RuntimeObject* m_Items[1];
  592. inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
  593. {
  594. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  595. return m_Items[index];
  596. }
  597. inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
  598. {
  599. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  600. return m_Items + index;
  601. }
  602. inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
  603. {
  604. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  605. m_Items[index] = value;
  606. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  607. }
  608. inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
  609. {
  610. return m_Items[index];
  611. }
  612. inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
  613. {
  614. return m_Items + index;
  615. }
  616. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
  617. {
  618. m_Items[index] = value;
  619. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  620. }
  621. };
  622. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
  623. {
  624. ALIGN_FIELD (8) Delegate_t* m_Items[1];
  625. inline Delegate_t* GetAt(il2cpp_array_size_t index) const
  626. {
  627. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  628. return m_Items[index];
  629. }
  630. inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
  631. {
  632. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  633. return m_Items + index;
  634. }
  635. inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
  636. {
  637. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  638. m_Items[index] = value;
  639. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  640. }
  641. inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
  642. {
  643. return m_Items[index];
  644. }
  645. inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  646. {
  647. return m_Items + index;
  648. }
  649. inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
  650. {
  651. m_Items[index] = value;
  652. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  653. }
  654. };
  655. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_pinvoke(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke& marshaled);
  656. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_pinvoke_back(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke& marshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled);
  657. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_pinvoke_cleanup(TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke& marshaled);
  658. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_com(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com& marshaled);
  659. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_com_back(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com& marshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled);
  660. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_com_cleanup(TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com& marshaled);
  661. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mD013968D6DAB756EA34E138E00BEF8922909C1BE_gshared (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
  662. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m220A7CFB07F883D427D782347E3CF8B68F1AFE03_gshared (List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
  663. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mA625F85B21CB389422393F709122327ED0BF7CA9_gshared (List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
  664. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  665. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
  666. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerationSettings_CompareColors_m29E454405FB3871CA77CC7F94DAB1B4320BD5E53 (TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_left, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_right, const RuntimeMethod* method) ;
  667. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerationSettings_CompareVector2_mF3EE374922B2ECE13BA7B01B26199494A30C2E2E (TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_left, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_right, const RuntimeMethod* method) ;
  668. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
  669. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerationSettings_Equals_m04DE9655555622E3A4EECC2EAB3BC36B38E20840 (TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* __this, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___0_other, const RuntimeMethod* method) ;
  670. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator__ctor_m05E7CFDC682F880A590F4AA840F81647844A0A32 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, int32_t ___0_initialCapacity, const RuntimeMethod* method) ;
  671. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  672. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t TextGenerator_Internal_Create_m66701C08DAE160892766930F831D2AB1EB4E998C (const RuntimeMethod* method) ;
  673. inline void List_1__ctor_mD013968D6DAB756EA34E138E00BEF8922909C1BE (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_capacity, const RuntimeMethod* method)
  674. {
  675. (( void (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, int32_t, const RuntimeMethod*))List_1__ctor_mD013968D6DAB756EA34E138E00BEF8922909C1BE_gshared)(__this, ___0_capacity, method);
  676. }
  677. inline void List_1__ctor_m220A7CFB07F883D427D782347E3CF8B68F1AFE03 (List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* __this, int32_t ___0_capacity, const RuntimeMethod* method)
  678. {
  679. (( void (*) (List_1_t67A1600A303BB89506DFD21B59687088B7E0675B*, int32_t, const RuntimeMethod*))List_1__ctor_m220A7CFB07F883D427D782347E3CF8B68F1AFE03_gshared)(__this, ___0_capacity, method);
  680. }
  681. inline void List_1__ctor_mA625F85B21CB389422393F709122327ED0BF7CA9 (List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* __this, int32_t ___0_capacity, const RuntimeMethod* method)
  682. {
  683. (( void (*) (List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5*, int32_t, const RuntimeMethod*))List_1__ctor_mA625F85B21CB389422393F709122327ED0BF7CA9_gshared)(__this, ___0_capacity, method);
  684. }
  685. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  687. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_Internal_Destroy_m0AE3865A6886503BAE5798E6D9899EF59A0285A7 (intptr_t ___0_ptr, const RuntimeMethod* method) ;
  688. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_get_characterCount_mD4FD13BBBEDA2AB495C045160693754E4C106FFF (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method) ;
  689. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
  690. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Font_get_dynamic_m5231258BFEAABA3B3EA6AB5D8C2FDCBC2AD1371C (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* __this, const RuntimeMethod* method) ;
  691. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, const RuntimeMethod* method) ;
  692. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarningFormat_mEC3E8902D2EF0D6CDC7D2643D75DF8A7A6F84713 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_context, String_t* ___1_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) ;
  693. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetCharactersInternal_mB5157BBD4E1C42ACEDCC696D718E656BDD5E2398 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, RuntimeObject* ___0_characters, const RuntimeMethod* method) ;
  694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetLinesInternal_mDAC83E88FD1FD79CCCE294E49E02ED748CFC8E12 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, RuntimeObject* ___0_lines, const RuntimeMethod* method) ;
  695. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetVerticesInternal_m8BB7AB760D1071709A584FD9371D7549DA2A1B21 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, RuntimeObject* ___0_vertices, const RuntimeMethod* method) ;
  696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_m5620AF6DBC180FC3FBE3E5F5930CF7CB65DD3CE2 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method) ;
  697. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D TextGenerator_get_rectExtents_m55100375428EFAA89F3AC1B528E8716E615F9F2C (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method) ;
  698. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
  699. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
  700. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_PopulateWithError_m0F7C1CE45F372D80603C28F1E01F6FF796B95E02 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method) ;
  701. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogErrorFormat_m13C2B705E2899F85833797AA48E8416052FFAD5A (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_context, String_t* ___1_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) ;
  702. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
  703. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_PopulateAlways_mA99FFC0276B51F8DED3EABD1FF660130BE803EDA (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method) ;
  704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 TextGenerator_ValidatedSettings_mAE5128305E953EE41E5E655675323896EF1154AE (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___0_settings, const RuntimeMethod* method) ;
  705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_Internal_m4DF908756A1AC26B04AC8AB12A004203366B294B (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___1_font, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___2_color, int32_t ___3_fontSize, float ___4_scaleFactor, float ___5_lineSpacing, int32_t ___6_style, bool ___7_richText, bool ___8_resizeTextForBestFit, int32_t ___9_resizeTextMinSize, int32_t ___10_resizeTextMaxSize, int32_t ___11_verticalOverFlow, int32_t ___12_horizontalOverflow, bool ___13_updateBounds, int32_t ___14_anchor, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___15_extents, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___16_pivot, bool ___17_generateOutOfBounds, bool ___18_alignByGeometry, int32_t* ___19_error, const RuntimeMethod* method) ;
  706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetVertices_m97C7D4CB9B122A10BA5921BC38F83A245EB1B97E (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_vertices, const RuntimeMethod* method) ;
  707. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetCharacters_mB7956402E0C66D9F9D51A3ADFCA84BE83BB54D90 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* ___0_characters, const RuntimeMethod* method) ;
  708. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetLines_mFA8508172C251E1E4BBB1FBB734C82C81EF9330F (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* ___0_lines, const RuntimeMethod* method) ;
  709. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_get_rectExtents_Injected_m2AB029C462FB27B9643C3EA2EB345E0EB011B2B8 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* ___0_ret, const RuntimeMethod* method) ;
  710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_Internal_Injected_m694EA7CA7449D60B16643460DA13ABC6BE0F2947 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___1_font, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* ___2_color, int32_t ___3_fontSize, float ___4_scaleFactor, float ___5_lineSpacing, int32_t ___6_style, bool ___7_richText, bool ___8_resizeTextForBestFit, int32_t ___9_resizeTextMinSize, int32_t ___10_resizeTextMaxSize, int32_t ___11_verticalOverFlow, int32_t ___12_horizontalOverflow, bool ___13_updateBounds, int32_t ___14_anchor, float ___15_extentsX, float ___16_extentsY, float ___17_pivotX, float ___18_pivotY, bool ___19_generateOutOfBounds, bool ___20_alignByGeometry, uint32_t* ___21_error, const RuntimeMethod* method) ;
  711. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_Internal_m74A216D58183B4069BFBD6CDF624CB97A9EC4CAA (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___1_font, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___2_color, int32_t ___3_fontSize, float ___4_scaleFactor, float ___5_lineSpacing, int32_t ___6_style, bool ___7_richText, bool ___8_resizeTextForBestFit, int32_t ___9_resizeTextMinSize, int32_t ___10_resizeTextMaxSize, int32_t ___11_verticalOverFlow, int32_t ___12_horizontalOverflow, bool ___13_updateBounds, int32_t ___14_anchor, float ___15_extentsX, float ___16_extentsY, float ___17_pivotX, float ___18_pivotY, bool ___19_generateOutOfBounds, bool ___20_alignByGeometry, uint32_t* ___21_error, const RuntimeMethod* method) ;
  712. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* __this, uint8_t ___0_r, uint8_t ___1_g, uint8_t ___2_b, uint8_t ___3_a, const RuntimeMethod* method) ;
  713. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method) ;
  714. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method) ;
  715. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_back_mCA5A84170E8DE5CE38C0551B4CCAD647BF215E57_inline (const RuntimeMethod* method) ;
  716. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline (const RuntimeMethod* method) ;
  717. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00 (Delegate_t* ___0_a, Delegate_t* ___1_b, const RuntimeMethod* method) ;
  718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3 (Delegate_t* ___0_source, Delegate_t* ___1_value, const RuntimeMethod* method) ;
  719. inline void Action_1_Invoke_mF7CAC85021DFCE6516FAD20C0421A1AF389A3D3E_inline (Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* __this, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_obj, const RuntimeMethod* method)
  720. {
  721. (( void (*) (Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*, Font_tC95270EA3198038970422D78B74A7F2E218A96B6*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
  722. }
  723. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_inline (FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, const RuntimeMethod* method) ;
  724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Font_HasCharacter_mAB838A26F002CB5E4B4DB297F7D6836A28625B18 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* __this, int32_t ___0_c, const RuntimeMethod* method) ;
  725. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
  726. #ifdef __clang__
  727. #pragma clang diagnostic push
  728. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  729. #pragma clang diagnostic ignored "-Wunused-variable"
  730. #endif
  731. #ifdef __clang__
  732. #pragma clang diagnostic pop
  733. #endif
  734. #ifdef __clang__
  735. #pragma clang diagnostic push
  736. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  737. #pragma clang diagnostic ignored "-Wunused-variable"
  738. #endif
  739. #ifdef __clang__
  740. #pragma clang diagnostic pop
  741. #endif
  742. #ifdef __clang__
  743. #pragma clang diagnostic push
  744. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  745. #pragma clang diagnostic ignored "-Wunused-variable"
  746. #endif
  747. #ifdef __clang__
  748. #pragma clang diagnostic pop
  749. #endif
  750. #ifdef __clang__
  751. #pragma clang diagnostic push
  752. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  753. #pragma clang diagnostic ignored "-Wunused-variable"
  754. #endif
  755. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_pinvoke(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke& marshaled)
  756. {
  757. Exception_t* ___fontException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'TextGenerationSettings': Reference type field marshaling is not supported.");
  758. IL2CPP_RAISE_MANAGED_EXCEPTION(___fontException, NULL);
  759. }
  760. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_pinvoke_back(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke& marshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled)
  761. {
  762. Exception_t* ___fontException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'TextGenerationSettings': Reference type field marshaling is not supported.");
  763. IL2CPP_RAISE_MANAGED_EXCEPTION(___fontException, NULL);
  764. }
  765. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_pinvoke_cleanup(TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_pinvoke& marshaled)
  766. {
  767. }
  768. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_com(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com& marshaled)
  769. {
  770. Exception_t* ___fontException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'TextGenerationSettings': Reference type field marshaling is not supported.");
  771. IL2CPP_RAISE_MANAGED_EXCEPTION(___fontException, NULL);
  772. }
  773. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_com_back(const TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com& marshaled, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3& unmarshaled)
  774. {
  775. Exception_t* ___fontException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'TextGenerationSettings': Reference type field marshaling is not supported.");
  776. IL2CPP_RAISE_MANAGED_EXCEPTION(___fontException, NULL);
  777. }
  778. IL2CPP_EXTERN_C void TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshal_com_cleanup(TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3_marshaled_com& marshaled)
  779. {
  780. }
  781. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerationSettings_CompareColors_m29E454405FB3871CA77CC7F94DAB1B4320BD5E53 (TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_left, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_right, const RuntimeMethod* method)
  782. {
  783. bool V_0 = false;
  784. int32_t G_B5_0 = 0;
  785. {
  786. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_left;
  787. float L_1 = L_0.___r;
  788. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___1_right;
  789. float L_3 = L_2.___r;
  790. bool L_4;
  791. L_4 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_1, L_3, NULL);
  792. if (!L_4)
  793. {
  794. goto IL_004d;
  795. }
  796. }
  797. {
  798. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5 = ___0_left;
  799. float L_6 = L_5.___g;
  800. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = ___1_right;
  801. float L_8 = L_7.___g;
  802. bool L_9;
  803. L_9 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_6, L_8, NULL);
  804. if (!L_9)
  805. {
  806. goto IL_004d;
  807. }
  808. }
  809. {
  810. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_10 = ___0_left;
  811. float L_11 = L_10.___b;
  812. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_12 = ___1_right;
  813. float L_13 = L_12.___b;
  814. bool L_14;
  815. L_14 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_11, L_13, NULL);
  816. if (!L_14)
  817. {
  818. goto IL_004d;
  819. }
  820. }
  821. {
  822. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_15 = ___0_left;
  823. float L_16 = L_15.___a;
  824. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_17 = ___1_right;
  825. float L_18 = L_17.___a;
  826. bool L_19;
  827. L_19 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_16, L_18, NULL);
  828. G_B5_0 = ((int32_t)(L_19));
  829. goto IL_004e;
  830. }
  831. IL_004d:
  832. {
  833. G_B5_0 = 0;
  834. }
  835. IL_004e:
  836. {
  837. V_0 = (bool)G_B5_0;
  838. goto IL_0051;
  839. }
  840. IL_0051:
  841. {
  842. bool L_20 = V_0;
  843. return L_20;
  844. }
  845. }
  846. IL2CPP_EXTERN_C bool TextGenerationSettings_CompareColors_m29E454405FB3871CA77CC7F94DAB1B4320BD5E53_AdjustorThunk (RuntimeObject* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_left, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_right, const RuntimeMethod* method)
  847. {
  848. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* _thisAdjusted;
  849. int32_t _offset = 1;
  850. _thisAdjusted = reinterpret_cast<TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3*>(__this + _offset);
  851. bool _returnValue;
  852. _returnValue = TextGenerationSettings_CompareColors_m29E454405FB3871CA77CC7F94DAB1B4320BD5E53(_thisAdjusted, ___0_left, ___1_right, method);
  853. return _returnValue;
  854. }
  855. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerationSettings_CompareVector2_mF3EE374922B2ECE13BA7B01B26199494A30C2E2E (TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_left, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_right, const RuntimeMethod* method)
  856. {
  857. bool V_0 = false;
  858. int32_t G_B3_0 = 0;
  859. {
  860. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_left;
  861. float L_1 = L_0.___x;
  862. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_right;
  863. float L_3 = L_2.___x;
  864. bool L_4;
  865. L_4 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_1, L_3, NULL);
  866. if (!L_4)
  867. {
  868. goto IL_0027;
  869. }
  870. }
  871. {
  872. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = ___0_left;
  873. float L_6 = L_5.___y;
  874. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = ___1_right;
  875. float L_8 = L_7.___y;
  876. bool L_9;
  877. L_9 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_6, L_8, NULL);
  878. G_B3_0 = ((int32_t)(L_9));
  879. goto IL_0028;
  880. }
  881. IL_0027:
  882. {
  883. G_B3_0 = 0;
  884. }
  885. IL_0028:
  886. {
  887. V_0 = (bool)G_B3_0;
  888. goto IL_002b;
  889. }
  890. IL_002b:
  891. {
  892. bool L_10 = V_0;
  893. return L_10;
  894. }
  895. }
  896. IL2CPP_EXTERN_C bool TextGenerationSettings_CompareVector2_mF3EE374922B2ECE13BA7B01B26199494A30C2E2E_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_left, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_right, const RuntimeMethod* method)
  897. {
  898. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* _thisAdjusted;
  899. int32_t _offset = 1;
  900. _thisAdjusted = reinterpret_cast<TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3*>(__this + _offset);
  901. bool _returnValue;
  902. _returnValue = TextGenerationSettings_CompareVector2_mF3EE374922B2ECE13BA7B01B26199494A30C2E2E(_thisAdjusted, ___0_left, ___1_right, method);
  903. return _returnValue;
  904. }
  905. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerationSettings_Equals_m04DE9655555622E3A4EECC2EAB3BC36B38E20840 (TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* __this, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___0_other, const RuntimeMethod* method)
  906. {
  907. static bool s_Il2CppMethodInitialized;
  908. if (!s_Il2CppMethodInitialized)
  909. {
  910. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  911. s_Il2CppMethodInitialized = true;
  912. }
  913. bool V_0 = false;
  914. int32_t G_B18_0 = 0;
  915. {
  916. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___color;
  917. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_1 = ___0_other;
  918. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = L_1.___color;
  919. bool L_3;
  920. L_3 = TextGenerationSettings_CompareColors_m29E454405FB3871CA77CC7F94DAB1B4320BD5E53(__this, L_0, L_2, NULL);
  921. if (!L_3)
  922. {
  923. goto IL_012b;
  924. }
  925. }
  926. {
  927. int32_t L_4 = __this->___fontSize;
  928. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_5 = ___0_other;
  929. int32_t L_6 = L_5.___fontSize;
  930. if ((!(((uint32_t)L_4) == ((uint32_t)L_6))))
  931. {
  932. goto IL_012b;
  933. }
  934. }
  935. {
  936. float L_7 = __this->___scaleFactor;
  937. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_8 = ___0_other;
  938. float L_9 = L_8.___scaleFactor;
  939. bool L_10;
  940. L_10 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_7, L_9, NULL);
  941. if (!L_10)
  942. {
  943. goto IL_012b;
  944. }
  945. }
  946. {
  947. int32_t L_11 = __this->___resizeTextMinSize;
  948. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_12 = ___0_other;
  949. int32_t L_13 = L_12.___resizeTextMinSize;
  950. if ((!(((uint32_t)L_11) == ((uint32_t)L_13))))
  951. {
  952. goto IL_012b;
  953. }
  954. }
  955. {
  956. int32_t L_14 = __this->___resizeTextMaxSize;
  957. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_15 = ___0_other;
  958. int32_t L_16 = L_15.___resizeTextMaxSize;
  959. if ((!(((uint32_t)L_14) == ((uint32_t)L_16))))
  960. {
  961. goto IL_012b;
  962. }
  963. }
  964. {
  965. float L_17 = __this->___lineSpacing;
  966. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_18 = ___0_other;
  967. float L_19 = L_18.___lineSpacing;
  968. bool L_20;
  969. L_20 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_17, L_19, NULL);
  970. if (!L_20)
  971. {
  972. goto IL_012b;
  973. }
  974. }
  975. {
  976. int32_t L_21 = __this->___fontStyle;
  977. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_22 = ___0_other;
  978. int32_t L_23 = L_22.___fontStyle;
  979. if ((!(((uint32_t)L_21) == ((uint32_t)L_23))))
  980. {
  981. goto IL_012b;
  982. }
  983. }
  984. {
  985. bool L_24 = __this->___richText;
  986. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_25 = ___0_other;
  987. bool L_26 = L_25.___richText;
  988. if ((!(((uint32_t)L_24) == ((uint32_t)L_26))))
  989. {
  990. goto IL_012b;
  991. }
  992. }
  993. {
  994. int32_t L_27 = __this->___textAnchor;
  995. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_28 = ___0_other;
  996. int32_t L_29 = L_28.___textAnchor;
  997. if ((!(((uint32_t)L_27) == ((uint32_t)L_29))))
  998. {
  999. goto IL_012b;
  1000. }
  1001. }
  1002. {
  1003. bool L_30 = __this->___alignByGeometry;
  1004. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_31 = ___0_other;
  1005. bool L_32 = L_31.___alignByGeometry;
  1006. if ((!(((uint32_t)L_30) == ((uint32_t)L_32))))
  1007. {
  1008. goto IL_012b;
  1009. }
  1010. }
  1011. {
  1012. bool L_33 = __this->___resizeTextForBestFit;
  1013. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_34 = ___0_other;
  1014. bool L_35 = L_34.___resizeTextForBestFit;
  1015. if ((!(((uint32_t)L_33) == ((uint32_t)L_35))))
  1016. {
  1017. goto IL_012b;
  1018. }
  1019. }
  1020. {
  1021. bool L_36 = __this->___updateBounds;
  1022. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_37 = ___0_other;
  1023. bool L_38 = L_37.___updateBounds;
  1024. if ((!(((uint32_t)L_36) == ((uint32_t)L_38))))
  1025. {
  1026. goto IL_012b;
  1027. }
  1028. }
  1029. {
  1030. int32_t L_39 = __this->___horizontalOverflow;
  1031. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_40 = ___0_other;
  1032. int32_t L_41 = L_40.___horizontalOverflow;
  1033. if ((!(((uint32_t)L_39) == ((uint32_t)L_41))))
  1034. {
  1035. goto IL_012b;
  1036. }
  1037. }
  1038. {
  1039. int32_t L_42 = __this->___verticalOverflow;
  1040. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_43 = ___0_other;
  1041. int32_t L_44 = L_43.___verticalOverflow;
  1042. if ((!(((uint32_t)L_42) == ((uint32_t)L_44))))
  1043. {
  1044. goto IL_012b;
  1045. }
  1046. }
  1047. {
  1048. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_45 = __this->___generationExtents;
  1049. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_46 = ___0_other;
  1050. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_47 = L_46.___generationExtents;
  1051. bool L_48;
  1052. L_48 = TextGenerationSettings_CompareVector2_mF3EE374922B2ECE13BA7B01B26199494A30C2E2E(__this, L_45, L_47, NULL);
  1053. if (!L_48)
  1054. {
  1055. goto IL_012b;
  1056. }
  1057. }
  1058. {
  1059. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_49 = __this->___pivot;
  1060. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_50 = ___0_other;
  1061. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_51 = L_50.___pivot;
  1062. bool L_52;
  1063. L_52 = TextGenerationSettings_CompareVector2_mF3EE374922B2ECE13BA7B01B26199494A30C2E2E(__this, L_49, L_51, NULL);
  1064. if (!L_52)
  1065. {
  1066. goto IL_012b;
  1067. }
  1068. }
  1069. {
  1070. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_53 = __this->___font;
  1071. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_54 = ___0_other;
  1072. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_55 = L_54.___font;
  1073. il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1074. bool L_56;
  1075. L_56 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_53, L_55, NULL);
  1076. G_B18_0 = ((int32_t)(L_56));
  1077. goto IL_012c;
  1078. }
  1079. IL_012b:
  1080. {
  1081. G_B18_0 = 0;
  1082. }
  1083. IL_012c:
  1084. {
  1085. V_0 = (bool)G_B18_0;
  1086. goto IL_012f;
  1087. }
  1088. IL_012f:
  1089. {
  1090. bool L_57 = V_0;
  1091. return L_57;
  1092. }
  1093. }
  1094. IL2CPP_EXTERN_C bool TextGenerationSettings_Equals_m04DE9655555622E3A4EECC2EAB3BC36B38E20840_AdjustorThunk (RuntimeObject* __this, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___0_other, const RuntimeMethod* method)
  1095. {
  1096. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3* _thisAdjusted;
  1097. int32_t _offset = 1;
  1098. _thisAdjusted = reinterpret_cast<TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3*>(__this + _offset);
  1099. bool _returnValue;
  1100. _returnValue = TextGenerationSettings_Equals_m04DE9655555622E3A4EECC2EAB3BC36B38E20840(_thisAdjusted, ___0_other, method);
  1101. return _returnValue;
  1102. }
  1103. #ifdef __clang__
  1104. #pragma clang diagnostic pop
  1105. #endif
  1106. #ifdef __clang__
  1107. #pragma clang diagnostic push
  1108. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1109. #pragma clang diagnostic ignored "-Wunused-variable"
  1110. #endif
  1111. IL2CPP_EXTERN_C void TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshal_pinvoke(const TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC& unmarshaled, TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_pinvoke& marshaled)
  1112. {
  1113. Exception_t* ___m_LastSettingsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LastSettings' of type 'TextGenerator'.");
  1114. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LastSettingsException, NULL);
  1115. }
  1116. IL2CPP_EXTERN_C void TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshal_pinvoke_back(const TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_pinvoke& marshaled, TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC& unmarshaled)
  1117. {
  1118. Exception_t* ___m_LastSettingsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LastSettings' of type 'TextGenerator'.");
  1119. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LastSettingsException, NULL);
  1120. }
  1121. IL2CPP_EXTERN_C void TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshal_pinvoke_cleanup(TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_pinvoke& marshaled)
  1122. {
  1123. }
  1124. IL2CPP_EXTERN_C void TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshal_com(const TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC& unmarshaled, TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_com& marshaled)
  1125. {
  1126. Exception_t* ___m_LastSettingsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LastSettings' of type 'TextGenerator'.");
  1127. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LastSettingsException, NULL);
  1128. }
  1129. IL2CPP_EXTERN_C void TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshal_com_back(const TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_com& marshaled, TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC& unmarshaled)
  1130. {
  1131. Exception_t* ___m_LastSettingsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_LastSettings' of type 'TextGenerator'.");
  1132. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_LastSettingsException, NULL);
  1133. }
  1134. IL2CPP_EXTERN_C void TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshal_com_cleanup(TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC_marshaled_com& marshaled)
  1135. {
  1136. }
  1137. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator__ctor_m2BFF25B11D7FD0FA4F8E1B04D107219A30E8A187 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1138. {
  1139. {
  1140. TextGenerator__ctor_m05E7CFDC682F880A590F4AA840F81647844A0A32(__this, ((int32_t)50), NULL);
  1141. return;
  1142. }
  1143. }
  1144. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator__ctor_m05E7CFDC682F880A590F4AA840F81647844A0A32 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, int32_t ___0_initialCapacity, const RuntimeMethod* method)
  1145. {
  1146. static bool s_Il2CppMethodInitialized;
  1147. if (!s_Il2CppMethodInitialized)
  1148. {
  1149. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m220A7CFB07F883D427D782347E3CF8B68F1AFE03_RuntimeMethod_var);
  1150. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA625F85B21CB389422393F709122327ED0BF7CA9_RuntimeMethod_var);
  1151. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mD013968D6DAB756EA34E138E00BEF8922909C1BE_RuntimeMethod_var);
  1152. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A_il2cpp_TypeInfo_var);
  1153. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t67A1600A303BB89506DFD21B59687088B7E0675B_il2cpp_TypeInfo_var);
  1154. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5_il2cpp_TypeInfo_var);
  1155. s_Il2CppMethodInitialized = true;
  1156. }
  1157. {
  1158. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  1159. intptr_t L_0;
  1160. L_0 = TextGenerator_Internal_Create_m66701C08DAE160892766930F831D2AB1EB4E998C(NULL);
  1161. __this->___m_Ptr = L_0;
  1162. int32_t L_1 = ___0_initialCapacity;
  1163. List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_2 = (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*)il2cpp_codegen_object_new(List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A_il2cpp_TypeInfo_var);
  1164. List_1__ctor_mD013968D6DAB756EA34E138E00BEF8922909C1BE(L_2, ((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_add(L_1, 1)), 4)), List_1__ctor_mD013968D6DAB756EA34E138E00BEF8922909C1BE_RuntimeMethod_var);
  1165. __this->___m_Verts = L_2;
  1166. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Verts), (void*)L_2);
  1167. int32_t L_3 = ___0_initialCapacity;
  1168. List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* L_4 = (List_1_t67A1600A303BB89506DFD21B59687088B7E0675B*)il2cpp_codegen_object_new(List_1_t67A1600A303BB89506DFD21B59687088B7E0675B_il2cpp_TypeInfo_var);
  1169. List_1__ctor_m220A7CFB07F883D427D782347E3CF8B68F1AFE03(L_4, ((int32_t)il2cpp_codegen_add(L_3, 1)), List_1__ctor_m220A7CFB07F883D427D782347E3CF8B68F1AFE03_RuntimeMethod_var);
  1170. __this->___m_Characters = L_4;
  1171. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Characters), (void*)L_4);
  1172. List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* L_5 = (List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5*)il2cpp_codegen_object_new(List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5_il2cpp_TypeInfo_var);
  1173. List_1__ctor_mA625F85B21CB389422393F709122327ED0BF7CA9(L_5, ((int32_t)20), List_1__ctor_mA625F85B21CB389422393F709122327ED0BF7CA9_RuntimeMethod_var);
  1174. __this->___m_Lines = L_5;
  1175. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Lines), (void*)L_5);
  1176. return;
  1177. }
  1178. }
  1179. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_Finalize_mD3C40A16FD4661E4712C85586430041C72E914F7 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1180. {
  1181. static bool s_Il2CppMethodInitialized;
  1182. if (!s_Il2CppMethodInitialized)
  1183. {
  1184. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  1185. s_Il2CppMethodInitialized = true;
  1186. }
  1187. {
  1188. }
  1189. {
  1190. auto __finallyBlock = il2cpp::utils::Finally([&]
  1191. {
  1192. FINALLY_000b:
  1193. {
  1194. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  1195. return;
  1196. }
  1197. });
  1198. try
  1199. {
  1200. InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, __this);
  1201. goto IL_0013;
  1202. }
  1203. catch(Il2CppExceptionWrapper& e)
  1204. {
  1205. __finallyBlock.StoreException(e.ex);
  1206. }
  1207. }
  1208. IL_0013:
  1209. {
  1210. return;
  1211. }
  1212. }
  1213. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_System_IDisposable_Dispose_m5B2B52DA9C73CE736E908030738002D6D860227F (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1214. {
  1215. bool V_0 = false;
  1216. {
  1217. intptr_t L_0 = __this->___m_Ptr;
  1218. bool L_1;
  1219. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, 0, NULL);
  1220. V_0 = L_1;
  1221. bool L_2 = V_0;
  1222. if (!L_2)
  1223. {
  1224. goto IL_002e;
  1225. }
  1226. }
  1227. {
  1228. intptr_t L_3 = __this->___m_Ptr;
  1229. TextGenerator_Internal_Destroy_m0AE3865A6886503BAE5798E6D9899EF59A0285A7(L_3, NULL);
  1230. __this->___m_Ptr = 0;
  1231. }
  1232. IL_002e:
  1233. {
  1234. return;
  1235. }
  1236. }
  1237. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_get_characterCountVisible_m407C344C5A13A26471315449899B927FF3D3CDFC (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1238. {
  1239. {
  1240. int32_t L_0;
  1241. L_0 = TextGenerator_get_characterCount_mD4FD13BBBEDA2AB495C045160693754E4C106FFF(__this, NULL);
  1242. return ((int32_t)il2cpp_codegen_subtract(L_0, 1));
  1243. }
  1244. }
  1245. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 TextGenerator_ValidatedSettings_mAE5128305E953EE41E5E655675323896EF1154AE (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___0_settings, const RuntimeMethod* method)
  1246. {
  1247. static bool s_Il2CppMethodInitialized;
  1248. if (!s_Il2CppMethodInitialized)
  1249. {
  1250. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1251. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
  1252. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1253. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0052C2B75AF160293B7E2B988F2F9D83DCD1D4D6);
  1254. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC26096054589E56273AC485218FA5B65675C933E);
  1255. s_Il2CppMethodInitialized = true;
  1256. }
  1257. bool V_0 = false;
  1258. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 V_1;
  1259. memset((&V_1), 0, sizeof(V_1));
  1260. bool V_2 = false;
  1261. bool V_3 = false;
  1262. bool V_4 = false;
  1263. bool V_5 = false;
  1264. int32_t G_B3_0 = 0;
  1265. int32_t G_B8_0 = 0;
  1266. {
  1267. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_0 = ___0_settings;
  1268. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_1 = L_0.___font;
  1269. il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1270. bool L_2;
  1271. L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
  1272. if (!L_2)
  1273. {
  1274. goto IL_001c;
  1275. }
  1276. }
  1277. {
  1278. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_3 = ___0_settings;
  1279. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_4 = L_3.___font;
  1280. NullCheck(L_4);
  1281. bool L_5;
  1282. L_5 = Font_get_dynamic_m5231258BFEAABA3B3EA6AB5D8C2FDCBC2AD1371C(L_4, NULL);
  1283. G_B3_0 = ((int32_t)(L_5));
  1284. goto IL_001d;
  1285. }
  1286. IL_001c:
  1287. {
  1288. G_B3_0 = 0;
  1289. }
  1290. IL_001d:
  1291. {
  1292. V_0 = (bool)G_B3_0;
  1293. bool L_6 = V_0;
  1294. if (!L_6)
  1295. {
  1296. goto IL_0028;
  1297. }
  1298. }
  1299. {
  1300. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_7 = ___0_settings;
  1301. V_1 = L_7;
  1302. goto IL_00d8;
  1303. }
  1304. IL_0028:
  1305. {
  1306. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_8 = ___0_settings;
  1307. int32_t L_9 = L_8.___fontSize;
  1308. if (L_9)
  1309. {
  1310. goto IL_003b;
  1311. }
  1312. }
  1313. {
  1314. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_10 = ___0_settings;
  1315. int32_t L_11 = L_10.___fontStyle;
  1316. G_B8_0 = ((!(((uint32_t)L_11) <= ((uint32_t)0)))? 1 : 0);
  1317. goto IL_003c;
  1318. }
  1319. IL_003b:
  1320. {
  1321. G_B8_0 = 1;
  1322. }
  1323. IL_003c:
  1324. {
  1325. V_2 = (bool)G_B8_0;
  1326. bool L_12 = V_2;
  1327. if (!L_12)
  1328. {
  1329. goto IL_0087;
  1330. }
  1331. }
  1332. {
  1333. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_13 = ___0_settings;
  1334. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_14 = L_13.___font;
  1335. il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1336. bool L_15;
  1337. L_15 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_14, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
  1338. V_3 = L_15;
  1339. bool L_16 = V_3;
  1340. if (!L_16)
  1341. {
  1342. goto IL_0076;
  1343. }
  1344. }
  1345. {
  1346. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_17 = ___0_settings;
  1347. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_18 = L_17.___font;
  1348. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_19 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
  1349. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = L_19;
  1350. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_21 = ___0_settings;
  1351. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_22 = L_21.___font;
  1352. NullCheck(L_22);
  1353. String_t* L_23;
  1354. L_23 = Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392(L_22, NULL);
  1355. NullCheck(L_20);
  1356. ArrayElementTypeCheck (L_20, L_23);
  1357. (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_23);
  1358. il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1359. Debug_LogWarningFormat_mEC3E8902D2EF0D6CDC7D2643D75DF8A7A6F84713(L_18, _stringLiteral0052C2B75AF160293B7E2B988F2F9D83DCD1D4D6, L_20, NULL);
  1360. }
  1361. IL_0076:
  1362. {
  1363. (&___0_settings)->___fontSize = 0;
  1364. (&___0_settings)->___fontStyle = 0;
  1365. }
  1366. IL_0087:
  1367. {
  1368. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_24 = ___0_settings;
  1369. bool L_25 = L_24.___resizeTextForBestFit;
  1370. V_4 = L_25;
  1371. bool L_26 = V_4;
  1372. if (!L_26)
  1373. {
  1374. goto IL_00d4;
  1375. }
  1376. }
  1377. {
  1378. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_27 = ___0_settings;
  1379. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_28 = L_27.___font;
  1380. il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1381. bool L_29;
  1382. L_29 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_28, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
  1383. V_5 = L_29;
  1384. bool L_30 = V_5;
  1385. if (!L_30)
  1386. {
  1387. goto IL_00cb;
  1388. }
  1389. }
  1390. {
  1391. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_31 = ___0_settings;
  1392. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_32 = L_31.___font;
  1393. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
  1394. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_34 = L_33;
  1395. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_35 = ___0_settings;
  1396. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_36 = L_35.___font;
  1397. NullCheck(L_36);
  1398. String_t* L_37;
  1399. L_37 = Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392(L_36, NULL);
  1400. NullCheck(L_34);
  1401. ArrayElementTypeCheck (L_34, L_37);
  1402. (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_37);
  1403. il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1404. Debug_LogWarningFormat_mEC3E8902D2EF0D6CDC7D2643D75DF8A7A6F84713(L_32, _stringLiteralC26096054589E56273AC485218FA5B65675C933E, L_34, NULL);
  1405. }
  1406. IL_00cb:
  1407. {
  1408. (&___0_settings)->___resizeTextForBestFit = (bool)0;
  1409. }
  1410. IL_00d4:
  1411. {
  1412. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_38 = ___0_settings;
  1413. V_1 = L_38;
  1414. goto IL_00d8;
  1415. }
  1416. IL_00d8:
  1417. {
  1418. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_39 = V_1;
  1419. return L_39;
  1420. }
  1421. }
  1422. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_Invalidate_m999CE96E2F02E326092DFEB53EE8BC08CAAF8260 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1423. {
  1424. {
  1425. __this->___m_HasGenerated = (bool)0;
  1426. return;
  1427. }
  1428. }
  1429. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetCharacters_mB7956402E0C66D9F9D51A3ADFCA84BE83BB54D90 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* ___0_characters, const RuntimeMethod* method)
  1430. {
  1431. {
  1432. List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* L_0 = ___0_characters;
  1433. TextGenerator_GetCharactersInternal_mB5157BBD4E1C42ACEDCC696D718E656BDD5E2398(__this, L_0, NULL);
  1434. return;
  1435. }
  1436. }
  1437. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetLines_mFA8508172C251E1E4BBB1FBB734C82C81EF9330F (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* ___0_lines, const RuntimeMethod* method)
  1438. {
  1439. {
  1440. List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* L_0 = ___0_lines;
  1441. TextGenerator_GetLinesInternal_mDAC83E88FD1FD79CCCE294E49E02ED748CFC8E12(__this, L_0, NULL);
  1442. return;
  1443. }
  1444. }
  1445. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetVertices_m97C7D4CB9B122A10BA5921BC38F83A245EB1B97E (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_vertices, const RuntimeMethod* method)
  1446. {
  1447. {
  1448. List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_0 = ___0_vertices;
  1449. TextGenerator_GetVerticesInternal_m8BB7AB760D1071709A584FD9371D7549DA2A1B21(__this, L_0, NULL);
  1450. return;
  1451. }
  1452. }
  1453. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextGenerator_GetPreferredWidth_mDDE43A5C8BDD7BBD235AE740C4C2A293A92BD28E (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method)
  1454. {
  1455. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
  1456. memset((&V_0), 0, sizeof(V_0));
  1457. float V_1 = 0.0f;
  1458. {
  1459. (&___1_settings)->___horizontalOverflow = 1;
  1460. (&___1_settings)->___verticalOverflow = 1;
  1461. (&___1_settings)->___updateBounds = (bool)1;
  1462. String_t* L_0 = ___0_str;
  1463. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_1 = ___1_settings;
  1464. bool L_2;
  1465. L_2 = TextGenerator_Populate_m5620AF6DBC180FC3FBE3E5F5930CF7CB65DD3CE2(__this, L_0, L_1, NULL);
  1466. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_3;
  1467. L_3 = TextGenerator_get_rectExtents_m55100375428EFAA89F3AC1B528E8716E615F9F2C(__this, NULL);
  1468. V_0 = L_3;
  1469. float L_4;
  1470. L_4 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_inline((&V_0), NULL);
  1471. V_1 = L_4;
  1472. goto IL_0033;
  1473. }
  1474. IL_0033:
  1475. {
  1476. float L_5 = V_1;
  1477. return L_5;
  1478. }
  1479. }
  1480. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextGenerator_GetPreferredHeight_m0EAF7CE0F503C97F4D35D0EE4A3AD923B472F89E (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method)
  1481. {
  1482. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
  1483. memset((&V_0), 0, sizeof(V_0));
  1484. float V_1 = 0.0f;
  1485. {
  1486. (&___1_settings)->___verticalOverflow = 1;
  1487. (&___1_settings)->___updateBounds = (bool)1;
  1488. String_t* L_0 = ___0_str;
  1489. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_1 = ___1_settings;
  1490. bool L_2;
  1491. L_2 = TextGenerator_Populate_m5620AF6DBC180FC3FBE3E5F5930CF7CB65DD3CE2(__this, L_0, L_1, NULL);
  1492. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_3;
  1493. L_3 = TextGenerator_get_rectExtents_m55100375428EFAA89F3AC1B528E8716E615F9F2C(__this, NULL);
  1494. V_0 = L_3;
  1495. float L_4;
  1496. L_4 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_inline((&V_0), NULL);
  1497. V_1 = L_4;
  1498. goto IL_002b;
  1499. }
  1500. IL_002b:
  1501. {
  1502. float L_5 = V_1;
  1503. return L_5;
  1504. }
  1505. }
  1506. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_PopulateWithErrors_m0E56C12E9D7714F4B8772422AAB2CAC9EA10F834 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___2_context, const RuntimeMethod* method)
  1507. {
  1508. static bool s_Il2CppMethodInitialized;
  1509. if (!s_Il2CppMethodInitialized)
  1510. {
  1511. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1512. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
  1513. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7EE2EC0E141890ED13D1EEC3562248EA95485987);
  1514. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEEEF4964BE1943E118BB297F57BDB9955C6DA372);
  1515. s_Il2CppMethodInitialized = true;
  1516. }
  1517. int32_t V_0 = 0;
  1518. bool V_1 = false;
  1519. bool V_2 = false;
  1520. bool V_3 = false;
  1521. bool V_4 = false;
  1522. {
  1523. String_t* L_0 = ___0_str;
  1524. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_1 = ___1_settings;
  1525. int32_t L_2;
  1526. L_2 = TextGenerator_PopulateWithError_m0F7C1CE45F372D80603C28F1E01F6FF796B95E02(__this, L_0, L_1, NULL);
  1527. V_0 = L_2;
  1528. int32_t L_3 = V_0;
  1529. V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
  1530. bool L_4 = V_1;
  1531. if (!L_4)
  1532. {
  1533. goto IL_0016;
  1534. }
  1535. }
  1536. {
  1537. V_2 = (bool)1;
  1538. goto IL_0066;
  1539. }
  1540. IL_0016:
  1541. {
  1542. int32_t L_5 = V_0;
  1543. V_3 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_5&1))) <= ((uint32_t)0)))? 1 : 0);
  1544. bool L_6 = V_3;
  1545. if (!L_6)
  1546. {
  1547. goto IL_003b;
  1548. }
  1549. }
  1550. {
  1551. GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_7 = ___2_context;
  1552. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
  1553. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_8;
  1554. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_10 = ___1_settings;
  1555. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_11 = L_10.___font;
  1556. NullCheck(L_9);
  1557. ArrayElementTypeCheck (L_9, L_11);
  1558. (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_11);
  1559. il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1560. Debug_LogErrorFormat_m13C2B705E2899F85833797AA48E8416052FFAD5A(L_7, _stringLiteral7EE2EC0E141890ED13D1EEC3562248EA95485987, L_9, NULL);
  1561. }
  1562. IL_003b:
  1563. {
  1564. int32_t L_12 = V_0;
  1565. V_4 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_12&2))) <= ((uint32_t)0)))? 1 : 0);
  1566. bool L_13 = V_4;
  1567. if (!L_13)
  1568. {
  1569. goto IL_0062;
  1570. }
  1571. }
  1572. {
  1573. GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14 = ___2_context;
  1574. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
  1575. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = L_15;
  1576. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_17 = ___1_settings;
  1577. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_18 = L_17.___font;
  1578. NullCheck(L_16);
  1579. ArrayElementTypeCheck (L_16, L_18);
  1580. (L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_18);
  1581. il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
  1582. Debug_LogErrorFormat_m13C2B705E2899F85833797AA48E8416052FFAD5A(L_14, _stringLiteralEEEF4964BE1943E118BB297F57BDB9955C6DA372, L_16, NULL);
  1583. }
  1584. IL_0062:
  1585. {
  1586. V_2 = (bool)0;
  1587. goto IL_0066;
  1588. }
  1589. IL_0066:
  1590. {
  1591. bool L_19 = V_2;
  1592. return L_19;
  1593. }
  1594. }
  1595. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_m5620AF6DBC180FC3FBE3E5F5930CF7CB65DD3CE2 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method)
  1596. {
  1597. int32_t V_0 = 0;
  1598. bool V_1 = false;
  1599. {
  1600. String_t* L_0 = ___0_str;
  1601. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_1 = ___1_settings;
  1602. int32_t L_2;
  1603. L_2 = TextGenerator_PopulateWithError_m0F7C1CE45F372D80603C28F1E01F6FF796B95E02(__this, L_0, L_1, NULL);
  1604. V_0 = L_2;
  1605. int32_t L_3 = V_0;
  1606. V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
  1607. goto IL_0011;
  1608. }
  1609. IL_0011:
  1610. {
  1611. bool L_4 = V_1;
  1612. return L_4;
  1613. }
  1614. }
  1615. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_PopulateWithError_m0F7C1CE45F372D80603C28F1E01F6FF796B95E02 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method)
  1616. {
  1617. bool V_0 = false;
  1618. int32_t V_1 = 0;
  1619. int32_t G_B4_0 = 0;
  1620. {
  1621. bool L_0 = __this->___m_HasGenerated;
  1622. if (!L_0)
  1623. {
  1624. goto IL_0026;
  1625. }
  1626. }
  1627. {
  1628. String_t* L_1 = ___0_str;
  1629. String_t* L_2 = __this->___m_LastString;
  1630. bool L_3;
  1631. L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_1, L_2, NULL);
  1632. if (!L_3)
  1633. {
  1634. goto IL_0026;
  1635. }
  1636. }
  1637. {
  1638. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_4 = __this->___m_LastSettings;
  1639. bool L_5;
  1640. L_5 = TextGenerationSettings_Equals_m04DE9655555622E3A4EECC2EAB3BC36B38E20840((&___1_settings), L_4, NULL);
  1641. G_B4_0 = ((int32_t)(L_5));
  1642. goto IL_0027;
  1643. }
  1644. IL_0026:
  1645. {
  1646. G_B4_0 = 0;
  1647. }
  1648. IL_0027:
  1649. {
  1650. V_0 = (bool)G_B4_0;
  1651. bool L_6 = V_0;
  1652. if (!L_6)
  1653. {
  1654. goto IL_0034;
  1655. }
  1656. }
  1657. {
  1658. int32_t L_7 = __this->___m_LastValid;
  1659. V_1 = L_7;
  1660. goto IL_004b;
  1661. }
  1662. IL_0034:
  1663. {
  1664. String_t* L_8 = ___0_str;
  1665. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_9 = ___1_settings;
  1666. int32_t L_10;
  1667. L_10 = TextGenerator_PopulateAlways_mA99FFC0276B51F8DED3EABD1FF660130BE803EDA(__this, L_8, L_9, NULL);
  1668. __this->___m_LastValid = L_10;
  1669. int32_t L_11 = __this->___m_LastValid;
  1670. V_1 = L_11;
  1671. goto IL_004b;
  1672. }
  1673. IL_004b:
  1674. {
  1675. int32_t L_12 = V_1;
  1676. return L_12;
  1677. }
  1678. }
  1679. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_PopulateAlways_mA99FFC0276B51F8DED3EABD1FF660130BE803EDA (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 ___1_settings, const RuntimeMethod* method)
  1680. {
  1681. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 V_0;
  1682. memset((&V_0), 0, sizeof(V_0));
  1683. int32_t V_1 = 0;
  1684. int32_t V_2 = 0;
  1685. {
  1686. String_t* L_0 = ___0_str;
  1687. __this->___m_LastString = L_0;
  1688. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LastString), (void*)L_0);
  1689. __this->___m_HasGenerated = (bool)1;
  1690. __this->___m_CachedVerts = (bool)0;
  1691. __this->___m_CachedCharacters = (bool)0;
  1692. __this->___m_CachedLines = (bool)0;
  1693. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_1 = ___1_settings;
  1694. __this->___m_LastSettings = L_1;
  1695. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_LastSettings))->___font), (void*)NULL);
  1696. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_2 = ___1_settings;
  1697. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_3;
  1698. L_3 = TextGenerator_ValidatedSettings_mAE5128305E953EE41E5E655675323896EF1154AE(__this, L_2, NULL);
  1699. V_0 = L_3;
  1700. String_t* L_4 = ___0_str;
  1701. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_5 = V_0;
  1702. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_6 = L_5.___font;
  1703. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_7 = V_0;
  1704. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_8 = L_7.___color;
  1705. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_9 = V_0;
  1706. int32_t L_10 = L_9.___fontSize;
  1707. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_11 = V_0;
  1708. float L_12 = L_11.___scaleFactor;
  1709. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_13 = V_0;
  1710. float L_14 = L_13.___lineSpacing;
  1711. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_15 = V_0;
  1712. int32_t L_16 = L_15.___fontStyle;
  1713. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_17 = V_0;
  1714. bool L_18 = L_17.___richText;
  1715. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_19 = V_0;
  1716. bool L_20 = L_19.___resizeTextForBestFit;
  1717. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_21 = V_0;
  1718. int32_t L_22 = L_21.___resizeTextMinSize;
  1719. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_23 = V_0;
  1720. int32_t L_24 = L_23.___resizeTextMaxSize;
  1721. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_25 = V_0;
  1722. int32_t L_26 = L_25.___verticalOverflow;
  1723. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_27 = V_0;
  1724. int32_t L_28 = L_27.___horizontalOverflow;
  1725. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_29 = V_0;
  1726. bool L_30 = L_29.___updateBounds;
  1727. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_31 = V_0;
  1728. int32_t L_32 = L_31.___textAnchor;
  1729. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_33 = V_0;
  1730. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_34 = L_33.___generationExtents;
  1731. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_35 = V_0;
  1732. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_36 = L_35.___pivot;
  1733. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_37 = V_0;
  1734. bool L_38 = L_37.___generateOutOfBounds;
  1735. TextGenerationSettings_tBB6E86AC0B348D19158D6721BE790865B04993F3 L_39 = V_0;
  1736. bool L_40 = L_39.___alignByGeometry;
  1737. bool L_41;
  1738. L_41 = TextGenerator_Populate_Internal_m4DF908756A1AC26B04AC8AB12A004203366B294B(__this, L_4, L_6, L_8, L_10, L_12, L_14, L_16, L_18, L_20, L_22, L_24, L_26, L_28, L_30, L_32, L_34, L_36, L_38, L_40, (&V_1), NULL);
  1739. int32_t L_42 = V_1;
  1740. __this->___m_LastValid = L_42;
  1741. int32_t L_43 = V_1;
  1742. V_2 = L_43;
  1743. goto IL_00b4;
  1744. }
  1745. IL_00b4:
  1746. {
  1747. int32_t L_44 = V_2;
  1748. return L_44;
  1749. }
  1750. }
  1751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextGenerator_get_verts_mA197E8944ABE4831B93275662BB66EC53DE349D8 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1752. {
  1753. bool V_0 = false;
  1754. RuntimeObject* V_1 = NULL;
  1755. {
  1756. bool L_0 = __this->___m_CachedVerts;
  1757. V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  1758. bool L_1 = V_0;
  1759. if (!L_1)
  1760. {
  1761. goto IL_0024;
  1762. }
  1763. }
  1764. {
  1765. List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_2 = __this->___m_Verts;
  1766. TextGenerator_GetVertices_m97C7D4CB9B122A10BA5921BC38F83A245EB1B97E(__this, L_2, NULL);
  1767. __this->___m_CachedVerts = (bool)1;
  1768. }
  1769. IL_0024:
  1770. {
  1771. List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_3 = __this->___m_Verts;
  1772. V_1 = L_3;
  1773. goto IL_002d;
  1774. }
  1775. IL_002d:
  1776. {
  1777. RuntimeObject* L_4 = V_1;
  1778. return L_4;
  1779. }
  1780. }
  1781. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextGenerator_get_characters_mDA07F7108C6EF6F5DF61C478FDF3EB18DCE6B34A (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1782. {
  1783. bool V_0 = false;
  1784. RuntimeObject* V_1 = NULL;
  1785. {
  1786. bool L_0 = __this->___m_CachedCharacters;
  1787. V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  1788. bool L_1 = V_0;
  1789. if (!L_1)
  1790. {
  1791. goto IL_0024;
  1792. }
  1793. }
  1794. {
  1795. List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* L_2 = __this->___m_Characters;
  1796. TextGenerator_GetCharacters_mB7956402E0C66D9F9D51A3ADFCA84BE83BB54D90(__this, L_2, NULL);
  1797. __this->___m_CachedCharacters = (bool)1;
  1798. }
  1799. IL_0024:
  1800. {
  1801. List_1_t67A1600A303BB89506DFD21B59687088B7E0675B* L_3 = __this->___m_Characters;
  1802. V_1 = L_3;
  1803. goto IL_002d;
  1804. }
  1805. IL_002d:
  1806. {
  1807. RuntimeObject* L_4 = V_1;
  1808. return L_4;
  1809. }
  1810. }
  1811. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextGenerator_get_lines_m52DAB15921DC96120CA6C21A3FEB2406D4A76064 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1812. {
  1813. bool V_0 = false;
  1814. RuntimeObject* V_1 = NULL;
  1815. {
  1816. bool L_0 = __this->___m_CachedLines;
  1817. V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  1818. bool L_1 = V_0;
  1819. if (!L_1)
  1820. {
  1821. goto IL_0024;
  1822. }
  1823. }
  1824. {
  1825. List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* L_2 = __this->___m_Lines;
  1826. TextGenerator_GetLines_mFA8508172C251E1E4BBB1FBB734C82C81EF9330F(__this, L_2, NULL);
  1827. __this->___m_CachedLines = (bool)1;
  1828. }
  1829. IL_0024:
  1830. {
  1831. List_1_t9209B29AC606399207E97BDCD817DEA5B6C63CA5* L_3 = __this->___m_Lines;
  1832. V_1 = L_3;
  1833. goto IL_002d;
  1834. }
  1835. IL_002d:
  1836. {
  1837. RuntimeObject* L_4 = V_1;
  1838. return L_4;
  1839. }
  1840. }
  1841. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D TextGenerator_get_rectExtents_m55100375428EFAA89F3AC1B528E8716E615F9F2C (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1842. {
  1843. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
  1844. memset((&V_0), 0, sizeof(V_0));
  1845. {
  1846. TextGenerator_get_rectExtents_Injected_m2AB029C462FB27B9643C3EA2EB345E0EB011B2B8(__this, (&V_0), NULL);
  1847. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = V_0;
  1848. return L_0;
  1849. }
  1850. }
  1851. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_get_characterCount_mD4FD13BBBEDA2AB495C045160693754E4C106FFF (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1852. {
  1853. typedef int32_t (*TextGenerator_get_characterCount_mD4FD13BBBEDA2AB495C045160693754E4C106FFF_ftn) (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC*);
  1854. static TextGenerator_get_characterCount_mD4FD13BBBEDA2AB495C045160693754E4C106FFF_ftn _il2cpp_icall_func;
  1855. if (!_il2cpp_icall_func)
  1856. _il2cpp_icall_func = (TextGenerator_get_characterCount_mD4FD13BBBEDA2AB495C045160693754E4C106FFF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::get_characterCount()");
  1857. int32_t icallRetVal = _il2cpp_icall_func(__this);
  1858. return icallRetVal;
  1859. }
  1860. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGenerator_get_lineCount_mC568C375C85695478DD054B296CBEAB11D3C4108 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, const RuntimeMethod* method)
  1861. {
  1862. typedef int32_t (*TextGenerator_get_lineCount_mC568C375C85695478DD054B296CBEAB11D3C4108_ftn) (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC*);
  1863. static TextGenerator_get_lineCount_mC568C375C85695478DD054B296CBEAB11D3C4108_ftn _il2cpp_icall_func;
  1864. if (!_il2cpp_icall_func)
  1865. _il2cpp_icall_func = (TextGenerator_get_lineCount_mC568C375C85695478DD054B296CBEAB11D3C4108_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::get_lineCount()");
  1866. int32_t icallRetVal = _il2cpp_icall_func(__this);
  1867. return icallRetVal;
  1868. }
  1869. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t TextGenerator_Internal_Create_m66701C08DAE160892766930F831D2AB1EB4E998C (const RuntimeMethod* method)
  1870. {
  1871. typedef intptr_t (*TextGenerator_Internal_Create_m66701C08DAE160892766930F831D2AB1EB4E998C_ftn) ();
  1872. static TextGenerator_Internal_Create_m66701C08DAE160892766930F831D2AB1EB4E998C_ftn _il2cpp_icall_func;
  1873. if (!_il2cpp_icall_func)
  1874. _il2cpp_icall_func = (TextGenerator_Internal_Create_m66701C08DAE160892766930F831D2AB1EB4E998C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::Internal_Create()");
  1875. intptr_t icallRetVal = _il2cpp_icall_func();
  1876. return icallRetVal;
  1877. }
  1878. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_Internal_Destroy_m0AE3865A6886503BAE5798E6D9899EF59A0285A7 (intptr_t ___0_ptr, const RuntimeMethod* method)
  1879. {
  1880. typedef void (*TextGenerator_Internal_Destroy_m0AE3865A6886503BAE5798E6D9899EF59A0285A7_ftn) (intptr_t);
  1881. static TextGenerator_Internal_Destroy_m0AE3865A6886503BAE5798E6D9899EF59A0285A7_ftn _il2cpp_icall_func;
  1882. if (!_il2cpp_icall_func)
  1883. _il2cpp_icall_func = (TextGenerator_Internal_Destroy_m0AE3865A6886503BAE5798E6D9899EF59A0285A7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::Internal_Destroy(System.IntPtr)");
  1884. _il2cpp_icall_func(___0_ptr);
  1885. }
  1886. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_Internal_m74A216D58183B4069BFBD6CDF624CB97A9EC4CAA (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___1_font, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___2_color, int32_t ___3_fontSize, float ___4_scaleFactor, float ___5_lineSpacing, int32_t ___6_style, bool ___7_richText, bool ___8_resizeTextForBestFit, int32_t ___9_resizeTextMinSize, int32_t ___10_resizeTextMaxSize, int32_t ___11_verticalOverFlow, int32_t ___12_horizontalOverflow, bool ___13_updateBounds, int32_t ___14_anchor, float ___15_extentsX, float ___16_extentsY, float ___17_pivotX, float ___18_pivotY, bool ___19_generateOutOfBounds, bool ___20_alignByGeometry, uint32_t* ___21_error, const RuntimeMethod* method)
  1887. {
  1888. {
  1889. String_t* L_0 = ___0_str;
  1890. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_1 = ___1_font;
  1891. int32_t L_2 = ___3_fontSize;
  1892. float L_3 = ___4_scaleFactor;
  1893. float L_4 = ___5_lineSpacing;
  1894. int32_t L_5 = ___6_style;
  1895. bool L_6 = ___7_richText;
  1896. bool L_7 = ___8_resizeTextForBestFit;
  1897. int32_t L_8 = ___9_resizeTextMinSize;
  1898. int32_t L_9 = ___10_resizeTextMaxSize;
  1899. int32_t L_10 = ___11_verticalOverFlow;
  1900. int32_t L_11 = ___12_horizontalOverflow;
  1901. bool L_12 = ___13_updateBounds;
  1902. int32_t L_13 = ___14_anchor;
  1903. float L_14 = ___15_extentsX;
  1904. float L_15 = ___16_extentsY;
  1905. float L_16 = ___17_pivotX;
  1906. float L_17 = ___18_pivotY;
  1907. bool L_18 = ___19_generateOutOfBounds;
  1908. bool L_19 = ___20_alignByGeometry;
  1909. uint32_t* L_20 = ___21_error;
  1910. bool L_21;
  1911. L_21 = TextGenerator_Populate_Internal_Injected_m694EA7CA7449D60B16643460DA13ABC6BE0F2947(__this, L_0, L_1, (&___2_color), L_2, L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, L_12, L_13, L_14, L_15, L_16, L_17, L_18, L_19, L_20, NULL);
  1912. return L_21;
  1913. }
  1914. }
  1915. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_Internal_m4DF908756A1AC26B04AC8AB12A004203366B294B (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___1_font, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___2_color, int32_t ___3_fontSize, float ___4_scaleFactor, float ___5_lineSpacing, int32_t ___6_style, bool ___7_richText, bool ___8_resizeTextForBestFit, int32_t ___9_resizeTextMinSize, int32_t ___10_resizeTextMaxSize, int32_t ___11_verticalOverFlow, int32_t ___12_horizontalOverflow, bool ___13_updateBounds, int32_t ___14_anchor, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___15_extents, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___16_pivot, bool ___17_generateOutOfBounds, bool ___18_alignByGeometry, int32_t* ___19_error, const RuntimeMethod* method)
  1916. {
  1917. static bool s_Il2CppMethodInitialized;
  1918. if (!s_Il2CppMethodInitialized)
  1919. {
  1920. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1921. s_Il2CppMethodInitialized = true;
  1922. }
  1923. uint32_t V_0 = 0;
  1924. bool V_1 = false;
  1925. bool V_2 = false;
  1926. bool V_3 = false;
  1927. {
  1928. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_0 = ___1_font;
  1929. il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
  1930. bool L_1;
  1931. L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
  1932. V_2 = L_1;
  1933. bool L_2 = V_2;
  1934. if (!L_2)
  1935. {
  1936. goto IL_0015;
  1937. }
  1938. }
  1939. {
  1940. int32_t* L_3 = ___19_error;
  1941. *((int32_t*)L_3) = (int32_t)4;
  1942. V_3 = (bool)0;
  1943. goto IL_0063;
  1944. }
  1945. IL_0015:
  1946. {
  1947. V_0 = 0;
  1948. String_t* L_4 = ___0_str;
  1949. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_5 = ___1_font;
  1950. Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_6 = ___2_color;
  1951. int32_t L_7 = ___3_fontSize;
  1952. float L_8 = ___4_scaleFactor;
  1953. float L_9 = ___5_lineSpacing;
  1954. int32_t L_10 = ___6_style;
  1955. bool L_11 = ___7_richText;
  1956. bool L_12 = ___8_resizeTextForBestFit;
  1957. int32_t L_13 = ___9_resizeTextMinSize;
  1958. int32_t L_14 = ___10_resizeTextMaxSize;
  1959. int32_t L_15 = ___11_verticalOverFlow;
  1960. int32_t L_16 = ___12_horizontalOverflow;
  1961. bool L_17 = ___13_updateBounds;
  1962. int32_t L_18 = ___14_anchor;
  1963. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = ___15_extents;
  1964. float L_20 = L_19.___x;
  1965. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = ___15_extents;
  1966. float L_22 = L_21.___y;
  1967. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = ___16_pivot;
  1968. float L_24 = L_23.___x;
  1969. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25 = ___16_pivot;
  1970. float L_26 = L_25.___y;
  1971. bool L_27 = ___17_generateOutOfBounds;
  1972. bool L_28 = ___18_alignByGeometry;
  1973. bool L_29;
  1974. L_29 = TextGenerator_Populate_Internal_m74A216D58183B4069BFBD6CDF624CB97A9EC4CAA(__this, L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, L_12, L_13, L_14, L_15, L_16, L_17, L_18, L_20, L_22, L_24, L_26, L_27, L_28, (&V_0), NULL);
  1975. V_1 = L_29;
  1976. int32_t* L_30 = ___19_error;
  1977. uint32_t L_31 = V_0;
  1978. *((int32_t*)L_30) = (int32_t)L_31;
  1979. bool L_32 = V_1;
  1980. V_3 = L_32;
  1981. goto IL_0063;
  1982. }
  1983. IL_0063:
  1984. {
  1985. bool L_33 = V_3;
  1986. return L_33;
  1987. }
  1988. }
  1989. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetVerticesInternal_m8BB7AB760D1071709A584FD9371D7549DA2A1B21 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, RuntimeObject* ___0_vertices, const RuntimeMethod* method)
  1990. {
  1991. typedef void (*TextGenerator_GetVerticesInternal_m8BB7AB760D1071709A584FD9371D7549DA2A1B21_ftn) (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC*, RuntimeObject*);
  1992. static TextGenerator_GetVerticesInternal_m8BB7AB760D1071709A584FD9371D7549DA2A1B21_ftn _il2cpp_icall_func;
  1993. if (!_il2cpp_icall_func)
  1994. _il2cpp_icall_func = (TextGenerator_GetVerticesInternal_m8BB7AB760D1071709A584FD9371D7549DA2A1B21_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::GetVerticesInternal(System.Object)");
  1995. _il2cpp_icall_func(__this, ___0_vertices);
  1996. }
  1997. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetCharactersInternal_mB5157BBD4E1C42ACEDCC696D718E656BDD5E2398 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, RuntimeObject* ___0_characters, const RuntimeMethod* method)
  1998. {
  1999. typedef void (*TextGenerator_GetCharactersInternal_mB5157BBD4E1C42ACEDCC696D718E656BDD5E2398_ftn) (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC*, RuntimeObject*);
  2000. static TextGenerator_GetCharactersInternal_mB5157BBD4E1C42ACEDCC696D718E656BDD5E2398_ftn _il2cpp_icall_func;
  2001. if (!_il2cpp_icall_func)
  2002. _il2cpp_icall_func = (TextGenerator_GetCharactersInternal_mB5157BBD4E1C42ACEDCC696D718E656BDD5E2398_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::GetCharactersInternal(System.Object)");
  2003. _il2cpp_icall_func(__this, ___0_characters);
  2004. }
  2005. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GetLinesInternal_mDAC83E88FD1FD79CCCE294E49E02ED748CFC8E12 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, RuntimeObject* ___0_lines, const RuntimeMethod* method)
  2006. {
  2007. typedef void (*TextGenerator_GetLinesInternal_mDAC83E88FD1FD79CCCE294E49E02ED748CFC8E12_ftn) (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC*, RuntimeObject*);
  2008. static TextGenerator_GetLinesInternal_mDAC83E88FD1FD79CCCE294E49E02ED748CFC8E12_ftn _il2cpp_icall_func;
  2009. if (!_il2cpp_icall_func)
  2010. _il2cpp_icall_func = (TextGenerator_GetLinesInternal_mDAC83E88FD1FD79CCCE294E49E02ED748CFC8E12_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::GetLinesInternal(System.Object)");
  2011. _il2cpp_icall_func(__this, ___0_lines);
  2012. }
  2013. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_get_rectExtents_Injected_m2AB029C462FB27B9643C3EA2EB345E0EB011B2B8 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* ___0_ret, const RuntimeMethod* method)
  2014. {
  2015. typedef void (*TextGenerator_get_rectExtents_Injected_m2AB029C462FB27B9643C3EA2EB345E0EB011B2B8_ftn) (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC*, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*);
  2016. static TextGenerator_get_rectExtents_Injected_m2AB029C462FB27B9643C3EA2EB345E0EB011B2B8_ftn _il2cpp_icall_func;
  2017. if (!_il2cpp_icall_func)
  2018. _il2cpp_icall_func = (TextGenerator_get_rectExtents_Injected_m2AB029C462FB27B9643C3EA2EB345E0EB011B2B8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::get_rectExtents_Injected(UnityEngine.Rect&)");
  2019. _il2cpp_icall_func(__this, ___0_ret);
  2020. }
  2021. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextGenerator_Populate_Internal_Injected_m694EA7CA7449D60B16643460DA13ABC6BE0F2947 (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* __this, String_t* ___0_str, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___1_font, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* ___2_color, int32_t ___3_fontSize, float ___4_scaleFactor, float ___5_lineSpacing, int32_t ___6_style, bool ___7_richText, bool ___8_resizeTextForBestFit, int32_t ___9_resizeTextMinSize, int32_t ___10_resizeTextMaxSize, int32_t ___11_verticalOverFlow, int32_t ___12_horizontalOverflow, bool ___13_updateBounds, int32_t ___14_anchor, float ___15_extentsX, float ___16_extentsY, float ___17_pivotX, float ___18_pivotY, bool ___19_generateOutOfBounds, bool ___20_alignByGeometry, uint32_t* ___21_error, const RuntimeMethod* method)
  2022. {
  2023. typedef bool (*TextGenerator_Populate_Internal_Injected_m694EA7CA7449D60B16643460DA13ABC6BE0F2947_ftn) (TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC*, String_t*, Font_tC95270EA3198038970422D78B74A7F2E218A96B6*, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*, int32_t, float, float, int32_t, bool, bool, int32_t, int32_t, int32_t, int32_t, bool, int32_t, float, float, float, float, bool, bool, uint32_t*);
  2024. static TextGenerator_Populate_Internal_Injected_m694EA7CA7449D60B16643460DA13ABC6BE0F2947_ftn _il2cpp_icall_func;
  2025. if (!_il2cpp_icall_func)
  2026. _il2cpp_icall_func = (TextGenerator_Populate_Internal_Injected_m694EA7CA7449D60B16643460DA13ABC6BE0F2947_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextGenerator::Populate_Internal_Injected(System.String,UnityEngine.Font,UnityEngine.Color&,System.Int32,System.Single,System.Single,UnityEngine.FontStyle,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,UnityEngine.TextAnchor,System.Single,System.Single,System.Single,System.Single,System.Boolean,System.Boolean,System.UInt32&)");
  2027. bool icallRetVal = _il2cpp_icall_func(__this, ___0_str, ___1_font, ___2_color, ___3_fontSize, ___4_scaleFactor, ___5_lineSpacing, ___6_style, ___7_richText, ___8_resizeTextForBestFit, ___9_resizeTextMinSize, ___10_resizeTextMaxSize, ___11_verticalOverFlow, ___12_horizontalOverflow, ___13_updateBounds, ___14_anchor, ___15_extentsX, ___16_extentsY, ___17_pivotX, ___18_pivotY, ___19_generateOutOfBounds, ___20_alignByGeometry, ___21_error);
  2028. return icallRetVal;
  2029. }
  2030. #ifdef __clang__
  2031. #pragma clang diagnostic pop
  2032. #endif
  2033. #ifdef __clang__
  2034. #pragma clang diagnostic push
  2035. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2036. #pragma clang diagnostic ignored "-Wunused-variable"
  2037. #endif
  2038. #ifdef __clang__
  2039. #pragma clang diagnostic pop
  2040. #endif
  2041. #ifdef __clang__
  2042. #pragma clang diagnostic push
  2043. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2044. #pragma clang diagnostic ignored "-Wunused-variable"
  2045. #endif
  2046. #ifdef __clang__
  2047. #pragma clang diagnostic pop
  2048. #endif
  2049. #ifdef __clang__
  2050. #pragma clang diagnostic push
  2051. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2052. #pragma clang diagnostic ignored "-Wunused-variable"
  2053. #endif
  2054. #ifdef __clang__
  2055. #pragma clang diagnostic pop
  2056. #endif
  2057. #ifdef __clang__
  2058. #pragma clang diagnostic push
  2059. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2060. #pragma clang diagnostic ignored "-Wunused-variable"
  2061. #endif
  2062. #ifdef __clang__
  2063. #pragma clang diagnostic pop
  2064. #endif
  2065. #ifdef __clang__
  2066. #pragma clang diagnostic push
  2067. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2068. #pragma clang diagnostic ignored "-Wunused-variable"
  2069. #endif
  2070. #ifdef __clang__
  2071. #pragma clang diagnostic pop
  2072. #endif
  2073. #ifdef __clang__
  2074. #pragma clang diagnostic push
  2075. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2076. #pragma clang diagnostic ignored "-Wunused-variable"
  2077. #endif
  2078. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIVertex__cctor_mF98CC8F21D6CD8703B47E168E976BBE15E0F6C62 (const RuntimeMethod* method)
  2079. {
  2080. static bool s_Il2CppMethodInitialized;
  2081. if (!s_Il2CppMethodInitialized)
  2082. {
  2083. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_il2cpp_TypeInfo_var);
  2084. s_Il2CppMethodInitialized = true;
  2085. }
  2086. UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 V_0;
  2087. memset((&V_0), 0, sizeof(V_0));
  2088. {
  2089. Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_0;
  2090. memset((&L_0), 0, sizeof(L_0));
  2091. Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline((&L_0), (uint8_t)((int32_t)255), (uint8_t)((int32_t)255), (uint8_t)((int32_t)255), (uint8_t)((int32_t)255), NULL);
  2092. ((UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields*)il2cpp_codegen_static_fields_for(UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_il2cpp_TypeInfo_var))->___s_DefaultColor = L_0;
  2093. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1;
  2094. memset((&L_1), 0, sizeof(L_1));
  2095. Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_1), (1.0f), (0.0f), (0.0f), (-1.0f), NULL);
  2096. ((UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields*)il2cpp_codegen_static_fields_for(UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_il2cpp_TypeInfo_var))->___s_DefaultTangent = L_1;
  2097. il2cpp_codegen_initobj((&V_0), sizeof(UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207));
  2098. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2;
  2099. L_2 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
  2100. (&V_0)->___position = L_2;
  2101. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
  2102. L_3 = Vector3_get_back_mCA5A84170E8DE5CE38C0551B4CCAD647BF215E57_inline(NULL);
  2103. (&V_0)->___normal = L_3;
  2104. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_4 = ((UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields*)il2cpp_codegen_static_fields_for(UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_il2cpp_TypeInfo_var))->___s_DefaultTangent;
  2105. (&V_0)->___tangent = L_4;
  2106. Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5 = ((UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields*)il2cpp_codegen_static_fields_for(UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_il2cpp_TypeInfo_var))->___s_DefaultColor;
  2107. (&V_0)->___color = L_5;
  2108. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6;
  2109. L_6 = Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline(NULL);
  2110. (&V_0)->___uv0 = L_6;
  2111. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_7;
  2112. L_7 = Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline(NULL);
  2113. (&V_0)->___uv1 = L_7;
  2114. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_8;
  2115. L_8 = Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline(NULL);
  2116. (&V_0)->___uv2 = L_8;
  2117. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_9;
  2118. L_9 = Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline(NULL);
  2119. (&V_0)->___uv3 = L_9;
  2120. UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_10 = V_0;
  2121. ((UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields*)il2cpp_codegen_static_fields_for(UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_il2cpp_TypeInfo_var))->___simpleVert = L_10;
  2122. return;
  2123. }
  2124. }
  2125. #ifdef __clang__
  2126. #pragma clang diagnostic pop
  2127. #endif
  2128. #ifdef __clang__
  2129. #pragma clang diagnostic push
  2130. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2131. #pragma clang diagnostic ignored "-Wunused-variable"
  2132. #endif
  2133. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Font_add_textureRebuilt_m0BBB44846C17A580B078599DA5AE231DA9D6DAD7 (Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* ___0_value, const RuntimeMethod* method)
  2134. {
  2135. static bool s_Il2CppMethodInitialized;
  2136. if (!s_Il2CppMethodInitialized)
  2137. {
  2138. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC_il2cpp_TypeInfo_var);
  2139. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var);
  2140. s_Il2CppMethodInitialized = true;
  2141. }
  2142. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* V_0 = NULL;
  2143. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* V_1 = NULL;
  2144. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* V_2 = NULL;
  2145. {
  2146. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_0 = ((Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields*)il2cpp_codegen_static_fields_for(Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var))->___textureRebuilt;
  2147. V_0 = L_0;
  2148. }
  2149. IL_0006:
  2150. {
  2151. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_1 = V_0;
  2152. V_1 = L_1;
  2153. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_2 = V_1;
  2154. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_3 = ___0_value;
  2155. Delegate_t* L_4;
  2156. L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
  2157. V_2 = ((Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*)Castclass((RuntimeObject*)L_4, Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC_il2cpp_TypeInfo_var));
  2158. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_5 = V_2;
  2159. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_6 = V_1;
  2160. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_7;
  2161. L_7 = InterlockedCompareExchangeImpl<Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*>((&((Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields*)il2cpp_codegen_static_fields_for(Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var))->___textureRebuilt), L_5, L_6);
  2162. V_0 = L_7;
  2163. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_8 = V_0;
  2164. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_9 = V_1;
  2165. if ((!(((RuntimeObject*)(Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*)L_8) == ((RuntimeObject*)(Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*)L_9))))
  2166. {
  2167. goto IL_0006;
  2168. }
  2169. }
  2170. {
  2171. return;
  2172. }
  2173. }
  2174. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Font_remove_textureRebuilt_mB7EF9EEE803E9C70AF4217190B49C83FE287904A (Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* ___0_value, const RuntimeMethod* method)
  2175. {
  2176. static bool s_Il2CppMethodInitialized;
  2177. if (!s_Il2CppMethodInitialized)
  2178. {
  2179. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC_il2cpp_TypeInfo_var);
  2180. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var);
  2181. s_Il2CppMethodInitialized = true;
  2182. }
  2183. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* V_0 = NULL;
  2184. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* V_1 = NULL;
  2185. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* V_2 = NULL;
  2186. {
  2187. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_0 = ((Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields*)il2cpp_codegen_static_fields_for(Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var))->___textureRebuilt;
  2188. V_0 = L_0;
  2189. }
  2190. IL_0006:
  2191. {
  2192. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_1 = V_0;
  2193. V_1 = L_1;
  2194. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_2 = V_1;
  2195. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_3 = ___0_value;
  2196. Delegate_t* L_4;
  2197. L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
  2198. V_2 = ((Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*)Castclass((RuntimeObject*)L_4, Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC_il2cpp_TypeInfo_var));
  2199. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_5 = V_2;
  2200. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_6 = V_1;
  2201. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_7;
  2202. L_7 = InterlockedCompareExchangeImpl<Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*>((&((Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields*)il2cpp_codegen_static_fields_for(Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var))->___textureRebuilt), L_5, L_6);
  2203. V_0 = L_7;
  2204. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_8 = V_0;
  2205. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_9 = V_1;
  2206. if ((!(((RuntimeObject*)(Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*)L_8) == ((RuntimeObject*)(Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC*)L_9))))
  2207. {
  2208. goto IL_0006;
  2209. }
  2210. }
  2211. {
  2212. return;
  2213. }
  2214. }
  2215. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* Font_get_material_m61ABDEC14C6D659DDC5A4F080023699116C17364 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* __this, const RuntimeMethod* method)
  2216. {
  2217. typedef Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* (*Font_get_material_m61ABDEC14C6D659DDC5A4F080023699116C17364_ftn) (Font_tC95270EA3198038970422D78B74A7F2E218A96B6*);
  2218. static Font_get_material_m61ABDEC14C6D659DDC5A4F080023699116C17364_ftn _il2cpp_icall_func;
  2219. if (!_il2cpp_icall_func)
  2220. _il2cpp_icall_func = (Font_get_material_m61ABDEC14C6D659DDC5A4F080023699116C17364_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Font::get_material()");
  2221. Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* icallRetVal = _il2cpp_icall_func(__this);
  2222. return icallRetVal;
  2223. }
  2224. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Font_get_dynamic_m5231258BFEAABA3B3EA6AB5D8C2FDCBC2AD1371C (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* __this, const RuntimeMethod* method)
  2225. {
  2226. typedef bool (*Font_get_dynamic_m5231258BFEAABA3B3EA6AB5D8C2FDCBC2AD1371C_ftn) (Font_tC95270EA3198038970422D78B74A7F2E218A96B6*);
  2227. static Font_get_dynamic_m5231258BFEAABA3B3EA6AB5D8C2FDCBC2AD1371C_ftn _il2cpp_icall_func;
  2228. if (!_il2cpp_icall_func)
  2229. _il2cpp_icall_func = (Font_get_dynamic_m5231258BFEAABA3B3EA6AB5D8C2FDCBC2AD1371C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Font::get_dynamic()");
  2230. bool icallRetVal = _il2cpp_icall_func(__this);
  2231. return icallRetVal;
  2232. }
  2233. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Font_get_fontSize_m02C2F5C7A7C89A878F04C2087248DD46BBF9E26B (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* __this, const RuntimeMethod* method)
  2234. {
  2235. typedef int32_t (*Font_get_fontSize_m02C2F5C7A7C89A878F04C2087248DD46BBF9E26B_ftn) (Font_tC95270EA3198038970422D78B74A7F2E218A96B6*);
  2236. static Font_get_fontSize_m02C2F5C7A7C89A878F04C2087248DD46BBF9E26B_ftn _il2cpp_icall_func;
  2237. if (!_il2cpp_icall_func)
  2238. _il2cpp_icall_func = (Font_get_fontSize_m02C2F5C7A7C89A878F04C2087248DD46BBF9E26B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Font::get_fontSize()");
  2239. int32_t icallRetVal = _il2cpp_icall_func(__this);
  2240. return icallRetVal;
  2241. }
  2242. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Font_InvokeTextureRebuilt_Internal_m874D1025267C908E5FCD437B41929E4DE248B01B (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, const RuntimeMethod* method)
  2243. {
  2244. static bool s_Il2CppMethodInitialized;
  2245. if (!s_Il2CppMethodInitialized)
  2246. {
  2247. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var);
  2248. s_Il2CppMethodInitialized = true;
  2249. }
  2250. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* G_B2_0 = NULL;
  2251. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* G_B1_0 = NULL;
  2252. FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* G_B5_0 = NULL;
  2253. FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* G_B4_0 = NULL;
  2254. {
  2255. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_0 = ((Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields*)il2cpp_codegen_static_fields_for(Font_tC95270EA3198038970422D78B74A7F2E218A96B6_il2cpp_TypeInfo_var))->___textureRebuilt;
  2256. Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* L_1 = L_0;
  2257. if (L_1)
  2258. {
  2259. G_B2_0 = L_1;
  2260. goto IL_000c;
  2261. }
  2262. G_B1_0 = L_1;
  2263. }
  2264. {
  2265. goto IL_0013;
  2266. }
  2267. IL_000c:
  2268. {
  2269. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_2 = ___0_font;
  2270. NullCheck(G_B2_0);
  2271. Action_1_Invoke_mF7CAC85021DFCE6516FAD20C0421A1AF389A3D3E_inline(G_B2_0, L_2, NULL);
  2272. }
  2273. IL_0013:
  2274. {
  2275. Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_3 = ___0_font;
  2276. NullCheck(L_3);
  2277. FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* L_4 = L_3->___m_FontTextureRebuildCallback;
  2278. FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* L_5 = L_4;
  2279. if (L_5)
  2280. {
  2281. G_B5_0 = L_5;
  2282. goto IL_001f;
  2283. }
  2284. G_B4_0 = L_5;
  2285. }
  2286. {
  2287. goto IL_0025;
  2288. }
  2289. IL_001f:
  2290. {
  2291. NullCheck(G_B5_0);
  2292. FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_inline(G_B5_0, NULL);
  2293. }
  2294. IL_0025:
  2295. {
  2296. return;
  2297. }
  2298. }
  2299. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Font_HasCharacter_m71A84FE036055880E1543D79A38FEFA495AD200B (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* __this, Il2CppChar ___0_c, const RuntimeMethod* method)
  2300. {
  2301. bool V_0 = false;
  2302. {
  2303. Il2CppChar L_0 = ___0_c;
  2304. bool L_1;
  2305. L_1 = Font_HasCharacter_mAB838A26F002CB5E4B4DB297F7D6836A28625B18(__this, L_0, NULL);
  2306. V_0 = L_1;
  2307. goto IL_000b;
  2308. }
  2309. IL_000b:
  2310. {
  2311. bool L_2 = V_0;
  2312. return L_2;
  2313. }
  2314. }
  2315. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Font_HasCharacter_mAB838A26F002CB5E4B4DB297F7D6836A28625B18 (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* __this, int32_t ___0_c, const RuntimeMethod* method)
  2316. {
  2317. typedef bool (*Font_HasCharacter_mAB838A26F002CB5E4B4DB297F7D6836A28625B18_ftn) (Font_tC95270EA3198038970422D78B74A7F2E218A96B6*, int32_t);
  2318. static Font_HasCharacter_mAB838A26F002CB5E4B4DB297F7D6836A28625B18_ftn _il2cpp_icall_func;
  2319. if (!_il2cpp_icall_func)
  2320. _il2cpp_icall_func = (Font_HasCharacter_mAB838A26F002CB5E4B4DB297F7D6836A28625B18_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Font::HasCharacter(System.Int32)");
  2321. bool icallRetVal = _il2cpp_icall_func(__this, ___0_c);
  2322. return icallRetVal;
  2323. }
  2324. #ifdef __clang__
  2325. #pragma clang diagnostic pop
  2326. #endif
  2327. #ifdef __clang__
  2328. #pragma clang diagnostic push
  2329. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2330. #pragma clang diagnostic ignored "-Wunused-variable"
  2331. #endif
  2332. void FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_Multicast(FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, const RuntimeMethod* method)
  2333. {
  2334. il2cpp_array_size_t length = __this->___delegates->max_length;
  2335. Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
  2336. for (il2cpp_array_size_t i = 0; i < length; i++)
  2337. {
  2338. FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* currentDelegate = reinterpret_cast<FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1*>(delegatesToInvoke[i]);
  2339. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2340. ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
  2341. }
  2342. }
  2343. void FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_OpenInst(FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, const RuntimeMethod* method)
  2344. {
  2345. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  2346. ((FunctionPointerType)__this->___method_ptr)(method);
  2347. }
  2348. void FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_OpenStatic(FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, const RuntimeMethod* method)
  2349. {
  2350. typedef void (*FunctionPointerType) (const RuntimeMethod*);
  2351. ((FunctionPointerType)__this->___method_ptr)(method);
  2352. }
  2353. IL2CPP_EXTERN_C void DelegatePInvokeWrapper_FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1 (FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, const RuntimeMethod* method)
  2354. {
  2355. typedef void (DEFAULT_CALL *PInvokeFunc)();
  2356. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
  2357. il2cppPInvokeFunc();
  2358. }
  2359. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontTextureRebuildCallback__ctor_m1AF27FC83F3136E493F47015F99CE7A4E6BCA0BC (FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
  2360. {
  2361. __this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
  2362. __this->___method = ___1_method;
  2363. __this->___m_target = ___0_object;
  2364. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
  2365. int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
  2366. __this->___method_code = (intptr_t)__this;
  2367. if (MethodIsStatic((RuntimeMethod*)___1_method))
  2368. {
  2369. bool isOpen = parameterCount == 0;
  2370. if (isOpen)
  2371. __this->___invoke_impl = (intptr_t)&FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_OpenStatic;
  2372. else
  2373. {
  2374. __this->___invoke_impl = __this->___method_ptr;
  2375. __this->___method_code = (intptr_t)__this->___m_target;
  2376. }
  2377. }
  2378. else
  2379. {
  2380. if (___0_object == NULL)
  2381. il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
  2382. __this->___invoke_impl = __this->___method_ptr;
  2383. __this->___method_code = (intptr_t)__this->___m_target;
  2384. }
  2385. __this->___extra_arg = (intptr_t)&FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_Multicast;
  2386. }
  2387. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D (FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, const RuntimeMethod* method)
  2388. {
  2389. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2390. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  2391. }
  2392. #ifdef __clang__
  2393. #pragma clang diagnostic pop
  2394. #endif
  2395. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
  2396. {
  2397. static bool s_Il2CppMethodInitialized;
  2398. if (!s_Il2CppMethodInitialized)
  2399. {
  2400. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
  2401. s_Il2CppMethodInitialized = true;
  2402. }
  2403. bool V_0 = false;
  2404. {
  2405. float L_0 = ___1_b;
  2406. float L_1 = ___0_a;
  2407. float L_2;
  2408. L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
  2409. float L_3 = ___0_a;
  2410. float L_4;
  2411. L_4 = fabsf(L_3);
  2412. float L_5 = ___1_b;
  2413. float L_6;
  2414. L_6 = fabsf(L_5);
  2415. float L_7;
  2416. L_7 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_4, L_6, NULL);
  2417. float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
  2418. float L_9;
  2419. L_9 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_multiply((9.99999997E-07f), L_7)), ((float)il2cpp_codegen_multiply(L_8, (8.0f))), NULL);
  2420. V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
  2421. goto IL_0035;
  2422. }
  2423. IL_0035:
  2424. {
  2425. bool L_10 = V_0;
  2426. return L_10;
  2427. }
  2428. }
  2429. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
  2430. {
  2431. float V_0 = 0.0f;
  2432. {
  2433. float L_0 = __this->___m_Width;
  2434. V_0 = L_0;
  2435. goto IL_000a;
  2436. }
  2437. IL_000a:
  2438. {
  2439. float L_1 = V_0;
  2440. return L_1;
  2441. }
  2442. }
  2443. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
  2444. {
  2445. float V_0 = 0.0f;
  2446. {
  2447. float L_0 = __this->___m_Height;
  2448. V_0 = L_0;
  2449. goto IL_000a;
  2450. }
  2451. IL_000a:
  2452. {
  2453. float L_1 = V_0;
  2454. return L_1;
  2455. }
  2456. }
  2457. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* __this, uint8_t ___0_r, uint8_t ___1_g, uint8_t ___2_b, uint8_t ___3_a, const RuntimeMethod* method)
  2458. {
  2459. {
  2460. __this->___rgba = 0;
  2461. uint8_t L_0 = ___0_r;
  2462. __this->___r = L_0;
  2463. uint8_t L_1 = ___1_g;
  2464. __this->___g = L_1;
  2465. uint8_t L_2 = ___2_b;
  2466. __this->___b = L_2;
  2467. uint8_t L_3 = ___3_a;
  2468. __this->___a = L_3;
  2469. return;
  2470. }
  2471. }
  2472. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method)
  2473. {
  2474. {
  2475. float L_0 = ___0_x;
  2476. __this->___x = L_0;
  2477. float L_1 = ___1_y;
  2478. __this->___y = L_1;
  2479. float L_2 = ___2_z;
  2480. __this->___z = L_2;
  2481. float L_3 = ___3_w;
  2482. __this->___w = L_3;
  2483. return;
  2484. }
  2485. }
  2486. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method)
  2487. {
  2488. static bool s_Il2CppMethodInitialized;
  2489. if (!s_Il2CppMethodInitialized)
  2490. {
  2491. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
  2492. s_Il2CppMethodInitialized = true;
  2493. }
  2494. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
  2495. memset((&V_0), 0, sizeof(V_0));
  2496. {
  2497. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___zeroVector;
  2498. V_0 = L_0;
  2499. goto IL_0009;
  2500. }
  2501. IL_0009:
  2502. {
  2503. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
  2504. return L_1;
  2505. }
  2506. }
  2507. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_back_mCA5A84170E8DE5CE38C0551B4CCAD647BF215E57_inline (const RuntimeMethod* method)
  2508. {
  2509. static bool s_Il2CppMethodInitialized;
  2510. if (!s_Il2CppMethodInitialized)
  2511. {
  2512. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
  2513. s_Il2CppMethodInitialized = true;
  2514. }
  2515. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
  2516. memset((&V_0), 0, sizeof(V_0));
  2517. {
  2518. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___backVector;
  2519. V_0 = L_0;
  2520. goto IL_0009;
  2521. }
  2522. IL_0009:
  2523. {
  2524. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
  2525. return L_1;
  2526. }
  2527. }
  2528. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline (const RuntimeMethod* method)
  2529. {
  2530. static bool s_Il2CppMethodInitialized;
  2531. if (!s_Il2CppMethodInitialized)
  2532. {
  2533. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var);
  2534. s_Il2CppMethodInitialized = true;
  2535. }
  2536. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
  2537. memset((&V_0), 0, sizeof(V_0));
  2538. {
  2539. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ((Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields*)il2cpp_codegen_static_fields_for(Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var))->___zeroVector;
  2540. V_0 = L_0;
  2541. goto IL_0009;
  2542. }
  2543. IL_0009:
  2544. {
  2545. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1 = V_0;
  2546. return L_1;
  2547. }
  2548. }
  2549. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FontTextureRebuildCallback_Invoke_m8B52C3F4823ADBB80062209E6BA2B33202AE958D_inline (FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* __this, const RuntimeMethod* method)
  2550. {
  2551. typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
  2552. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
  2553. }
  2554. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2555. {
  2556. typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
  2557. ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
  2558. }
  2559. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
  2560. {
  2561. float V_0 = 0.0f;
  2562. float G_B3_0 = 0.0f;
  2563. {
  2564. float L_0 = ___0_a;
  2565. float L_1 = ___1_b;
  2566. if ((((float)L_0) > ((float)L_1)))
  2567. {
  2568. goto IL_0008;
  2569. }
  2570. }
  2571. {
  2572. float L_2 = ___1_b;
  2573. G_B3_0 = L_2;
  2574. goto IL_0009;
  2575. }
  2576. IL_0008:
  2577. {
  2578. float L_3 = ___0_a;
  2579. G_B3_0 = L_3;
  2580. }
  2581. IL_0009:
  2582. {
  2583. V_0 = G_B3_0;
  2584. goto IL_000c;
  2585. }
  2586. IL_000c:
  2587. {
  2588. float L_4 = V_0;
  2589. return L_4;
  2590. }
  2591. }