Bulk_UnityEngine.ParticleSystemModule_0.cpp 321 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491
  1. #include "il2cpp-config.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <cstring>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <cmath>
  11. #include <limits>
  12. #include <assert.h>
  13. #include <stdint.h>
  14. #include "il2cpp-class-internals.h"
  15. #include "codegen/il2cpp-codegen.h"
  16. #include "il2cpp-object-internals.h"
  17. // UnityEngine.ParticleSystem
  18. struct ParticleSystem_t1800779281;
  19. // UnityEngine.Component
  20. struct Component_t1923634451;
  21. // UnityEngine.ParticleSystem/Particle[]
  22. struct ParticleU5BU5D_t3069227754;
  23. // System.Collections.Generic.List`1<UnityEngine.Vector4>
  24. struct List_1_t496136383;
  25. // UnityEngine.AnimationCurve
  26. struct AnimationCurve_t3046754366;
  27. // UnityEngine.Vector4[]
  28. struct Vector4U5BU5D_t934056436;
  29. // System.Void
  30. struct Void_t1185182177;
  31. // System.Char[]
  32. struct CharU5BU5D_t3528271667;
  33. // System.String
  34. struct String_t;
  35. extern RuntimeClass* Vector3_t3722313464_il2cpp_TypeInfo_var;
  36. extern const uint32_t ParticleSystem_Emit_m497964751_MetadataUsageId;
  37. struct AnimationCurve_t3046754366_marshaled_pinvoke;
  38. struct AnimationCurve_t3046754366;;
  39. struct AnimationCurve_t3046754366_marshaled_pinvoke;;
  40. extern RuntimeClass* AnimationCurve_t3046754366_il2cpp_TypeInfo_var;
  41. extern const uint32_t MinMaxCurve_t1067599125_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
  42. struct AnimationCurve_t3046754366_marshaled_com;
  43. struct AnimationCurve_t3046754366_marshaled_com;;
  44. extern const uint32_t Particle_set_rotation3D_m2156157200_MetadataUsageId;
  45. extern const uint32_t Particle_set_angularVelocity3D_m3163963446_MetadataUsageId;
  46. struct ParticleU5BU5D_t3069227754;
  47. #ifndef RUNTIMEOBJECT_H
  48. #define RUNTIMEOBJECT_H
  49. #ifdef __clang__
  50. #pragma clang diagnostic push
  51. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  52. #pragma clang diagnostic ignored "-Wunused-variable"
  53. #endif
  54. // System.Object
  55. #ifdef __clang__
  56. #pragma clang diagnostic pop
  57. #endif
  58. #endif // RUNTIMEOBJECT_H
  59. #ifndef U3CMODULEU3E_T692745545_H
  60. #define U3CMODULEU3E_T692745545_H
  61. #ifdef __clang__
  62. #pragma clang diagnostic push
  63. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  64. #pragma clang diagnostic ignored "-Wunused-variable"
  65. #endif
  66. // <Module>
  67. struct U3CModuleU3E_t692745545
  68. {
  69. public:
  70. public:
  71. };
  72. #ifdef __clang__
  73. #pragma clang diagnostic pop
  74. #endif
  75. #endif // U3CMODULEU3E_T692745545_H
  76. #ifndef LIST_1_T496136383_H
  77. #define LIST_1_T496136383_H
  78. #ifdef __clang__
  79. #pragma clang diagnostic push
  80. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  81. #pragma clang diagnostic ignored "-Wunused-variable"
  82. #endif
  83. // System.Collections.Generic.List`1<UnityEngine.Vector4>
  84. struct List_1_t496136383 : public RuntimeObject
  85. {
  86. public:
  87. // T[] System.Collections.Generic.List`1::_items
  88. Vector4U5BU5D_t934056436* ____items_1;
  89. // System.Int32 System.Collections.Generic.List`1::_size
  90. int32_t ____size_2;
  91. // System.Int32 System.Collections.Generic.List`1::_version
  92. int32_t ____version_3;
  93. public:
  94. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t496136383, ____items_1)); }
  95. inline Vector4U5BU5D_t934056436* get__items_1() const { return ____items_1; }
  96. inline Vector4U5BU5D_t934056436** get_address_of__items_1() { return &____items_1; }
  97. inline void set__items_1(Vector4U5BU5D_t934056436* value)
  98. {
  99. ____items_1 = value;
  100. Il2CppCodeGenWriteBarrier((&____items_1), value);
  101. }
  102. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t496136383, ____size_2)); }
  103. inline int32_t get__size_2() const { return ____size_2; }
  104. inline int32_t* get_address_of__size_2() { return &____size_2; }
  105. inline void set__size_2(int32_t value)
  106. {
  107. ____size_2 = value;
  108. }
  109. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t496136383, ____version_3)); }
  110. inline int32_t get__version_3() const { return ____version_3; }
  111. inline int32_t* get_address_of__version_3() { return &____version_3; }
  112. inline void set__version_3(int32_t value)
  113. {
  114. ____version_3 = value;
  115. }
  116. };
  117. struct List_1_t496136383_StaticFields
  118. {
  119. public:
  120. // T[] System.Collections.Generic.List`1::EmptyArray
  121. Vector4U5BU5D_t934056436* ___EmptyArray_4;
  122. public:
  123. inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(List_1_t496136383_StaticFields, ___EmptyArray_4)); }
  124. inline Vector4U5BU5D_t934056436* get_EmptyArray_4() const { return ___EmptyArray_4; }
  125. inline Vector4U5BU5D_t934056436** get_address_of_EmptyArray_4() { return &___EmptyArray_4; }
  126. inline void set_EmptyArray_4(Vector4U5BU5D_t934056436* value)
  127. {
  128. ___EmptyArray_4 = value;
  129. Il2CppCodeGenWriteBarrier((&___EmptyArray_4), value);
  130. }
  131. };
  132. #ifdef __clang__
  133. #pragma clang diagnostic pop
  134. #endif
  135. #endif // LIST_1_T496136383_H
  136. struct Il2CppArrayBounds;
  137. #ifndef RUNTIMEARRAY_H
  138. #define RUNTIMEARRAY_H
  139. #ifdef __clang__
  140. #pragma clang diagnostic push
  141. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  142. #pragma clang diagnostic ignored "-Wunused-variable"
  143. #endif
  144. // System.Array
  145. #ifdef __clang__
  146. #pragma clang diagnostic pop
  147. #endif
  148. #endif // RUNTIMEARRAY_H
  149. #ifndef VALUETYPE_T3640485471_H
  150. #define VALUETYPE_T3640485471_H
  151. #ifdef __clang__
  152. #pragma clang diagnostic push
  153. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  154. #pragma clang diagnostic ignored "-Wunused-variable"
  155. #endif
  156. // System.ValueType
  157. struct ValueType_t3640485471 : public RuntimeObject
  158. {
  159. public:
  160. public:
  161. };
  162. #ifdef __clang__
  163. #pragma clang diagnostic pop
  164. #endif
  165. // Native definition for P/Invoke marshalling of System.ValueType
  166. struct ValueType_t3640485471_marshaled_pinvoke
  167. {
  168. };
  169. // Native definition for COM marshalling of System.ValueType
  170. struct ValueType_t3640485471_marshaled_com
  171. {
  172. };
  173. #endif // VALUETYPE_T3640485471_H
  174. #ifndef COLLISIONMODULE_T1950979710_H
  175. #define COLLISIONMODULE_T1950979710_H
  176. #ifdef __clang__
  177. #pragma clang diagnostic push
  178. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  179. #pragma clang diagnostic ignored "-Wunused-variable"
  180. #endif
  181. // UnityEngine.ParticleSystem/CollisionModule
  182. struct CollisionModule_t1950979710
  183. {
  184. public:
  185. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/CollisionModule::m_ParticleSystem
  186. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  187. public:
  188. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(CollisionModule_t1950979710, ___m_ParticleSystem_0)); }
  189. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  190. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  191. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  192. {
  193. ___m_ParticleSystem_0 = value;
  194. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  195. }
  196. };
  197. #ifdef __clang__
  198. #pragma clang diagnostic pop
  199. #endif
  200. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/CollisionModule
  201. struct CollisionModule_t1950979710_marshaled_pinvoke
  202. {
  203. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  204. };
  205. // Native definition for COM marshalling of UnityEngine.ParticleSystem/CollisionModule
  206. struct CollisionModule_t1950979710_marshaled_com
  207. {
  208. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  209. };
  210. #endif // COLLISIONMODULE_T1950979710_H
  211. #ifndef NOISEMODULE_T962525627_H
  212. #define NOISEMODULE_T962525627_H
  213. #ifdef __clang__
  214. #pragma clang diagnostic push
  215. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  216. #pragma clang diagnostic ignored "-Wunused-variable"
  217. #endif
  218. // UnityEngine.ParticleSystem/NoiseModule
  219. struct NoiseModule_t962525627
  220. {
  221. public:
  222. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/NoiseModule::m_ParticleSystem
  223. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  224. public:
  225. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(NoiseModule_t962525627, ___m_ParticleSystem_0)); }
  226. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  227. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  228. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  229. {
  230. ___m_ParticleSystem_0 = value;
  231. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  232. }
  233. };
  234. #ifdef __clang__
  235. #pragma clang diagnostic pop
  236. #endif
  237. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/NoiseModule
  238. struct NoiseModule_t962525627_marshaled_pinvoke
  239. {
  240. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  241. };
  242. // Native definition for COM marshalling of UnityEngine.ParticleSystem/NoiseModule
  243. struct NoiseModule_t962525627_marshaled_com
  244. {
  245. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  246. };
  247. #endif // NOISEMODULE_T962525627_H
  248. #ifndef EXTERNALFORCESMODULE_T1424795933_H
  249. #define EXTERNALFORCESMODULE_T1424795933_H
  250. #ifdef __clang__
  251. #pragma clang diagnostic push
  252. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  253. #pragma clang diagnostic ignored "-Wunused-variable"
  254. #endif
  255. // UnityEngine.ParticleSystem/ExternalForcesModule
  256. struct ExternalForcesModule_t1424795933
  257. {
  258. public:
  259. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/ExternalForcesModule::m_ParticleSystem
  260. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  261. public:
  262. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(ExternalForcesModule_t1424795933, ___m_ParticleSystem_0)); }
  263. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  264. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  265. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  266. {
  267. ___m_ParticleSystem_0 = value;
  268. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  269. }
  270. };
  271. #ifdef __clang__
  272. #pragma clang diagnostic pop
  273. #endif
  274. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/ExternalForcesModule
  275. struct ExternalForcesModule_t1424795933_marshaled_pinvoke
  276. {
  277. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  278. };
  279. // Native definition for COM marshalling of UnityEngine.ParticleSystem/ExternalForcesModule
  280. struct ExternalForcesModule_t1424795933_marshaled_com
  281. {
  282. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  283. };
  284. #endif // EXTERNALFORCESMODULE_T1424795933_H
  285. #ifndef ROTATIONBYSPEEDMODULE_T3497409583_H
  286. #define ROTATIONBYSPEEDMODULE_T3497409583_H
  287. #ifdef __clang__
  288. #pragma clang diagnostic push
  289. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  290. #pragma clang diagnostic ignored "-Wunused-variable"
  291. #endif
  292. // UnityEngine.ParticleSystem/RotationBySpeedModule
  293. struct RotationBySpeedModule_t3497409583
  294. {
  295. public:
  296. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/RotationBySpeedModule::m_ParticleSystem
  297. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  298. public:
  299. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(RotationBySpeedModule_t3497409583, ___m_ParticleSystem_0)); }
  300. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  301. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  302. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  303. {
  304. ___m_ParticleSystem_0 = value;
  305. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  306. }
  307. };
  308. #ifdef __clang__
  309. #pragma clang diagnostic pop
  310. #endif
  311. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/RotationBySpeedModule
  312. struct RotationBySpeedModule_t3497409583_marshaled_pinvoke
  313. {
  314. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  315. };
  316. // Native definition for COM marshalling of UnityEngine.ParticleSystem/RotationBySpeedModule
  317. struct RotationBySpeedModule_t3497409583_marshaled_com
  318. {
  319. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  320. };
  321. #endif // ROTATIONBYSPEEDMODULE_T3497409583_H
  322. #ifndef SIZEOVERLIFETIMEMODULE_T1101123803_H
  323. #define SIZEOVERLIFETIMEMODULE_T1101123803_H
  324. #ifdef __clang__
  325. #pragma clang diagnostic push
  326. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  327. #pragma clang diagnostic ignored "-Wunused-variable"
  328. #endif
  329. // UnityEngine.ParticleSystem/SizeOverLifetimeModule
  330. struct SizeOverLifetimeModule_t1101123803
  331. {
  332. public:
  333. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/SizeOverLifetimeModule::m_ParticleSystem
  334. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  335. public:
  336. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(SizeOverLifetimeModule_t1101123803, ___m_ParticleSystem_0)); }
  337. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  338. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  339. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  340. {
  341. ___m_ParticleSystem_0 = value;
  342. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  343. }
  344. };
  345. #ifdef __clang__
  346. #pragma clang diagnostic pop
  347. #endif
  348. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/SizeOverLifetimeModule
  349. struct SizeOverLifetimeModule_t1101123803_marshaled_pinvoke
  350. {
  351. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  352. };
  353. // Native definition for COM marshalling of UnityEngine.ParticleSystem/SizeOverLifetimeModule
  354. struct SizeOverLifetimeModule_t1101123803_marshaled_com
  355. {
  356. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  357. };
  358. #endif // SIZEOVERLIFETIMEMODULE_T1101123803_H
  359. #ifndef SIZEBYSPEEDMODULE_T1515126846_H
  360. #define SIZEBYSPEEDMODULE_T1515126846_H
  361. #ifdef __clang__
  362. #pragma clang diagnostic push
  363. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  364. #pragma clang diagnostic ignored "-Wunused-variable"
  365. #endif
  366. // UnityEngine.ParticleSystem/SizeBySpeedModule
  367. struct SizeBySpeedModule_t1515126846
  368. {
  369. public:
  370. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/SizeBySpeedModule::m_ParticleSystem
  371. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  372. public:
  373. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(SizeBySpeedModule_t1515126846, ___m_ParticleSystem_0)); }
  374. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  375. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  376. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  377. {
  378. ___m_ParticleSystem_0 = value;
  379. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  380. }
  381. };
  382. #ifdef __clang__
  383. #pragma clang diagnostic pop
  384. #endif
  385. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/SizeBySpeedModule
  386. struct SizeBySpeedModule_t1515126846_marshaled_pinvoke
  387. {
  388. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  389. };
  390. // Native definition for COM marshalling of UnityEngine.ParticleSystem/SizeBySpeedModule
  391. struct SizeBySpeedModule_t1515126846_marshaled_com
  392. {
  393. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  394. };
  395. #endif // SIZEBYSPEEDMODULE_T1515126846_H
  396. #ifndef ROTATIONOVERLIFETIMEMODULE_T1164372224_H
  397. #define ROTATIONOVERLIFETIMEMODULE_T1164372224_H
  398. #ifdef __clang__
  399. #pragma clang diagnostic push
  400. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  401. #pragma clang diagnostic ignored "-Wunused-variable"
  402. #endif
  403. // UnityEngine.ParticleSystem/RotationOverLifetimeModule
  404. struct RotationOverLifetimeModule_t1164372224
  405. {
  406. public:
  407. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/RotationOverLifetimeModule::m_ParticleSystem
  408. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  409. public:
  410. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(RotationOverLifetimeModule_t1164372224, ___m_ParticleSystem_0)); }
  411. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  412. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  413. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  414. {
  415. ___m_ParticleSystem_0 = value;
  416. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  417. }
  418. };
  419. #ifdef __clang__
  420. #pragma clang diagnostic pop
  421. #endif
  422. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/RotationOverLifetimeModule
  423. struct RotationOverLifetimeModule_t1164372224_marshaled_pinvoke
  424. {
  425. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  426. };
  427. // Native definition for COM marshalling of UnityEngine.ParticleSystem/RotationOverLifetimeModule
  428. struct RotationOverLifetimeModule_t1164372224_marshaled_com
  429. {
  430. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  431. };
  432. #endif // ROTATIONOVERLIFETIMEMODULE_T1164372224_H
  433. #ifndef TRIGGERMODULE_T1157986180_H
  434. #define TRIGGERMODULE_T1157986180_H
  435. #ifdef __clang__
  436. #pragma clang diagnostic push
  437. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  438. #pragma clang diagnostic ignored "-Wunused-variable"
  439. #endif
  440. // UnityEngine.ParticleSystem/TriggerModule
  441. struct TriggerModule_t1157986180
  442. {
  443. public:
  444. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/TriggerModule::m_ParticleSystem
  445. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  446. public:
  447. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(TriggerModule_t1157986180, ___m_ParticleSystem_0)); }
  448. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  449. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  450. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  451. {
  452. ___m_ParticleSystem_0 = value;
  453. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  454. }
  455. };
  456. #ifdef __clang__
  457. #pragma clang diagnostic pop
  458. #endif
  459. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/TriggerModule
  460. struct TriggerModule_t1157986180_marshaled_pinvoke
  461. {
  462. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  463. };
  464. // Native definition for COM marshalling of UnityEngine.ParticleSystem/TriggerModule
  465. struct TriggerModule_t1157986180_marshaled_com
  466. {
  467. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  468. };
  469. #endif // TRIGGERMODULE_T1157986180_H
  470. #ifndef INTPTR_T_H
  471. #define INTPTR_T_H
  472. #ifdef __clang__
  473. #pragma clang diagnostic push
  474. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  475. #pragma clang diagnostic ignored "-Wunused-variable"
  476. #endif
  477. // System.IntPtr
  478. struct IntPtr_t
  479. {
  480. public:
  481. // System.Void* System.IntPtr::m_value
  482. void* ___m_value_0;
  483. public:
  484. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  485. inline void* get_m_value_0() const { return ___m_value_0; }
  486. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  487. inline void set_m_value_0(void* value)
  488. {
  489. ___m_value_0 = value;
  490. }
  491. };
  492. struct IntPtr_t_StaticFields
  493. {
  494. public:
  495. // System.IntPtr System.IntPtr::Zero
  496. intptr_t ___Zero_1;
  497. public:
  498. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  499. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  500. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  501. inline void set_Zero_1(intptr_t value)
  502. {
  503. ___Zero_1 = value;
  504. }
  505. };
  506. #ifdef __clang__
  507. #pragma clang diagnostic pop
  508. #endif
  509. #endif // INTPTR_T_H
  510. #ifndef ENUM_T4135868527_H
  511. #define ENUM_T4135868527_H
  512. #ifdef __clang__
  513. #pragma clang diagnostic push
  514. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  515. #pragma clang diagnostic ignored "-Wunused-variable"
  516. #endif
  517. // System.Enum
  518. struct Enum_t4135868527 : public ValueType_t3640485471
  519. {
  520. public:
  521. public:
  522. };
  523. struct Enum_t4135868527_StaticFields
  524. {
  525. public:
  526. // System.Char[] System.Enum::split_char
  527. CharU5BU5D_t3528271667* ___split_char_0;
  528. public:
  529. inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
  530. inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
  531. inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
  532. inline void set_split_char_0(CharU5BU5D_t3528271667* value)
  533. {
  534. ___split_char_0 = value;
  535. Il2CppCodeGenWriteBarrier((&___split_char_0), value);
  536. }
  537. };
  538. #ifdef __clang__
  539. #pragma clang diagnostic pop
  540. #endif
  541. // Native definition for P/Invoke marshalling of System.Enum
  542. struct Enum_t4135868527_marshaled_pinvoke
  543. {
  544. };
  545. // Native definition for COM marshalling of System.Enum
  546. struct Enum_t4135868527_marshaled_com
  547. {
  548. };
  549. #endif // ENUM_T4135868527_H
  550. #ifndef COLOR32_T2600501292_H
  551. #define COLOR32_T2600501292_H
  552. #ifdef __clang__
  553. #pragma clang diagnostic push
  554. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  555. #pragma clang diagnostic ignored "-Wunused-variable"
  556. #endif
  557. // UnityEngine.Color32
  558. struct Color32_t2600501292
  559. {
  560. public:
  561. union
  562. {
  563. #pragma pack(push, tp, 1)
  564. struct
  565. {
  566. // System.Int32 UnityEngine.Color32::rgba
  567. int32_t ___rgba_0;
  568. };
  569. #pragma pack(pop, tp)
  570. struct
  571. {
  572. int32_t ___rgba_0_forAlignmentOnly;
  573. };
  574. #pragma pack(push, tp, 1)
  575. struct
  576. {
  577. // System.Byte UnityEngine.Color32::r
  578. uint8_t ___r_1;
  579. };
  580. #pragma pack(pop, tp)
  581. struct
  582. {
  583. uint8_t ___r_1_forAlignmentOnly;
  584. };
  585. #pragma pack(push, tp, 1)
  586. struct
  587. {
  588. char ___g_2_OffsetPadding[1];
  589. // System.Byte UnityEngine.Color32::g
  590. uint8_t ___g_2;
  591. };
  592. #pragma pack(pop, tp)
  593. struct
  594. {
  595. char ___g_2_OffsetPadding_forAlignmentOnly[1];
  596. uint8_t ___g_2_forAlignmentOnly;
  597. };
  598. #pragma pack(push, tp, 1)
  599. struct
  600. {
  601. char ___b_3_OffsetPadding[2];
  602. // System.Byte UnityEngine.Color32::b
  603. uint8_t ___b_3;
  604. };
  605. #pragma pack(pop, tp)
  606. struct
  607. {
  608. char ___b_3_OffsetPadding_forAlignmentOnly[2];
  609. uint8_t ___b_3_forAlignmentOnly;
  610. };
  611. #pragma pack(push, tp, 1)
  612. struct
  613. {
  614. char ___a_4_OffsetPadding[3];
  615. // System.Byte UnityEngine.Color32::a
  616. uint8_t ___a_4;
  617. };
  618. #pragma pack(pop, tp)
  619. struct
  620. {
  621. char ___a_4_OffsetPadding_forAlignmentOnly[3];
  622. uint8_t ___a_4_forAlignmentOnly;
  623. };
  624. };
  625. public:
  626. inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___rgba_0)); }
  627. inline int32_t get_rgba_0() const { return ___rgba_0; }
  628. inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
  629. inline void set_rgba_0(int32_t value)
  630. {
  631. ___rgba_0 = value;
  632. }
  633. inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___r_1)); }
  634. inline uint8_t get_r_1() const { return ___r_1; }
  635. inline uint8_t* get_address_of_r_1() { return &___r_1; }
  636. inline void set_r_1(uint8_t value)
  637. {
  638. ___r_1 = value;
  639. }
  640. inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___g_2)); }
  641. inline uint8_t get_g_2() const { return ___g_2; }
  642. inline uint8_t* get_address_of_g_2() { return &___g_2; }
  643. inline void set_g_2(uint8_t value)
  644. {
  645. ___g_2 = value;
  646. }
  647. inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___b_3)); }
  648. inline uint8_t get_b_3() const { return ___b_3; }
  649. inline uint8_t* get_address_of_b_3() { return &___b_3; }
  650. inline void set_b_3(uint8_t value)
  651. {
  652. ___b_3 = value;
  653. }
  654. inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t2600501292, ___a_4)); }
  655. inline uint8_t get_a_4() const { return ___a_4; }
  656. inline uint8_t* get_address_of_a_4() { return &___a_4; }
  657. inline void set_a_4(uint8_t value)
  658. {
  659. ___a_4 = value;
  660. }
  661. };
  662. #ifdef __clang__
  663. #pragma clang diagnostic pop
  664. #endif
  665. #endif // COLOR32_T2600501292_H
  666. #ifndef CUSTOMDATAMODULE_T2135829708_H
  667. #define CUSTOMDATAMODULE_T2135829708_H
  668. #ifdef __clang__
  669. #pragma clang diagnostic push
  670. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  671. #pragma clang diagnostic ignored "-Wunused-variable"
  672. #endif
  673. // UnityEngine.ParticleSystem/CustomDataModule
  674. struct CustomDataModule_t2135829708
  675. {
  676. public:
  677. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/CustomDataModule::m_ParticleSystem
  678. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  679. public:
  680. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(CustomDataModule_t2135829708, ___m_ParticleSystem_0)); }
  681. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  682. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  683. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  684. {
  685. ___m_ParticleSystem_0 = value;
  686. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  687. }
  688. };
  689. #ifdef __clang__
  690. #pragma clang diagnostic pop
  691. #endif
  692. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/CustomDataModule
  693. struct CustomDataModule_t2135829708_marshaled_pinvoke
  694. {
  695. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  696. };
  697. // Native definition for COM marshalling of UnityEngine.ParticleSystem/CustomDataModule
  698. struct CustomDataModule_t2135829708_marshaled_com
  699. {
  700. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  701. };
  702. #endif // CUSTOMDATAMODULE_T2135829708_H
  703. #ifndef TRAILMODULE_T2282589118_H
  704. #define TRAILMODULE_T2282589118_H
  705. #ifdef __clang__
  706. #pragma clang diagnostic push
  707. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  708. #pragma clang diagnostic ignored "-Wunused-variable"
  709. #endif
  710. // UnityEngine.ParticleSystem/TrailModule
  711. struct TrailModule_t2282589118
  712. {
  713. public:
  714. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/TrailModule::m_ParticleSystem
  715. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  716. public:
  717. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(TrailModule_t2282589118, ___m_ParticleSystem_0)); }
  718. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  719. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  720. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  721. {
  722. ___m_ParticleSystem_0 = value;
  723. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  724. }
  725. };
  726. #ifdef __clang__
  727. #pragma clang diagnostic pop
  728. #endif
  729. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/TrailModule
  730. struct TrailModule_t2282589118_marshaled_pinvoke
  731. {
  732. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  733. };
  734. // Native definition for COM marshalling of UnityEngine.ParticleSystem/TrailModule
  735. struct TrailModule_t2282589118_marshaled_com
  736. {
  737. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  738. };
  739. #endif // TRAILMODULE_T2282589118_H
  740. #ifndef LIGHTSMODULE_T3616883284_H
  741. #define LIGHTSMODULE_T3616883284_H
  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. // UnityEngine.ParticleSystem/LightsModule
  748. struct LightsModule_t3616883284
  749. {
  750. public:
  751. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/LightsModule::m_ParticleSystem
  752. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  753. public:
  754. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(LightsModule_t3616883284, ___m_ParticleSystem_0)); }
  755. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  756. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  757. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  758. {
  759. ___m_ParticleSystem_0 = value;
  760. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  761. }
  762. };
  763. #ifdef __clang__
  764. #pragma clang diagnostic pop
  765. #endif
  766. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/LightsModule
  767. struct LightsModule_t3616883284_marshaled_pinvoke
  768. {
  769. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  770. };
  771. // Native definition for COM marshalling of UnityEngine.ParticleSystem/LightsModule
  772. struct LightsModule_t3616883284_marshaled_com
  773. {
  774. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  775. };
  776. #endif // LIGHTSMODULE_T3616883284_H
  777. #ifndef TEXTURESHEETANIMATIONMODULE_T738696839_H
  778. #define TEXTURESHEETANIMATIONMODULE_T738696839_H
  779. #ifdef __clang__
  780. #pragma clang diagnostic push
  781. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  782. #pragma clang diagnostic ignored "-Wunused-variable"
  783. #endif
  784. // UnityEngine.ParticleSystem/TextureSheetAnimationModule
  785. struct TextureSheetAnimationModule_t738696839
  786. {
  787. public:
  788. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/TextureSheetAnimationModule::m_ParticleSystem
  789. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  790. public:
  791. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(TextureSheetAnimationModule_t738696839, ___m_ParticleSystem_0)); }
  792. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  793. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  794. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  795. {
  796. ___m_ParticleSystem_0 = value;
  797. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  798. }
  799. };
  800. #ifdef __clang__
  801. #pragma clang diagnostic pop
  802. #endif
  803. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/TextureSheetAnimationModule
  804. struct TextureSheetAnimationModule_t738696839_marshaled_pinvoke
  805. {
  806. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  807. };
  808. // Native definition for COM marshalling of UnityEngine.ParticleSystem/TextureSheetAnimationModule
  809. struct TextureSheetAnimationModule_t738696839_marshaled_com
  810. {
  811. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  812. };
  813. #endif // TEXTURESHEETANIMATIONMODULE_T738696839_H
  814. #ifndef SUBEMITTERSMODULE_T903775760_H
  815. #define SUBEMITTERSMODULE_T903775760_H
  816. #ifdef __clang__
  817. #pragma clang diagnostic push
  818. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  819. #pragma clang diagnostic ignored "-Wunused-variable"
  820. #endif
  821. // UnityEngine.ParticleSystem/SubEmittersModule
  822. struct SubEmittersModule_t903775760
  823. {
  824. public:
  825. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/SubEmittersModule::m_ParticleSystem
  826. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  827. public:
  828. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(SubEmittersModule_t903775760, ___m_ParticleSystem_0)); }
  829. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  830. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  831. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  832. {
  833. ___m_ParticleSystem_0 = value;
  834. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  835. }
  836. };
  837. #ifdef __clang__
  838. #pragma clang diagnostic pop
  839. #endif
  840. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/SubEmittersModule
  841. struct SubEmittersModule_t903775760_marshaled_pinvoke
  842. {
  843. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  844. };
  845. // Native definition for COM marshalling of UnityEngine.ParticleSystem/SubEmittersModule
  846. struct SubEmittersModule_t903775760_marshaled_com
  847. {
  848. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  849. };
  850. #endif // SUBEMITTERSMODULE_T903775760_H
  851. #ifndef COLORBYSPEEDMODULE_T3740209408_H
  852. #define COLORBYSPEEDMODULE_T3740209408_H
  853. #ifdef __clang__
  854. #pragma clang diagnostic push
  855. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  856. #pragma clang diagnostic ignored "-Wunused-variable"
  857. #endif
  858. // UnityEngine.ParticleSystem/ColorBySpeedModule
  859. struct ColorBySpeedModule_t3740209408
  860. {
  861. public:
  862. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/ColorBySpeedModule::m_ParticleSystem
  863. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  864. public:
  865. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(ColorBySpeedModule_t3740209408, ___m_ParticleSystem_0)); }
  866. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  867. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  868. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  869. {
  870. ___m_ParticleSystem_0 = value;
  871. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  872. }
  873. };
  874. #ifdef __clang__
  875. #pragma clang diagnostic pop
  876. #endif
  877. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/ColorBySpeedModule
  878. struct ColorBySpeedModule_t3740209408_marshaled_pinvoke
  879. {
  880. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  881. };
  882. // Native definition for COM marshalling of UnityEngine.ParticleSystem/ColorBySpeedModule
  883. struct ColorBySpeedModule_t3740209408_marshaled_com
  884. {
  885. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  886. };
  887. #endif // COLORBYSPEEDMODULE_T3740209408_H
  888. #ifndef VOID_T1185182177_H
  889. #define VOID_T1185182177_H
  890. #ifdef __clang__
  891. #pragma clang diagnostic push
  892. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  893. #pragma clang diagnostic ignored "-Wunused-variable"
  894. #endif
  895. // System.Void
  896. struct Void_t1185182177
  897. {
  898. public:
  899. public:
  900. };
  901. #ifdef __clang__
  902. #pragma clang diagnostic pop
  903. #endif
  904. #endif // VOID_T1185182177_H
  905. #ifndef VECTOR3_T3722313464_H
  906. #define VECTOR3_T3722313464_H
  907. #ifdef __clang__
  908. #pragma clang diagnostic push
  909. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  910. #pragma clang diagnostic ignored "-Wunused-variable"
  911. #endif
  912. // UnityEngine.Vector3
  913. struct Vector3_t3722313464
  914. {
  915. public:
  916. // System.Single UnityEngine.Vector3::x
  917. float ___x_1;
  918. // System.Single UnityEngine.Vector3::y
  919. float ___y_2;
  920. // System.Single UnityEngine.Vector3::z
  921. float ___z_3;
  922. public:
  923. inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___x_1)); }
  924. inline float get_x_1() const { return ___x_1; }
  925. inline float* get_address_of_x_1() { return &___x_1; }
  926. inline void set_x_1(float value)
  927. {
  928. ___x_1 = value;
  929. }
  930. inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___y_2)); }
  931. inline float get_y_2() const { return ___y_2; }
  932. inline float* get_address_of_y_2() { return &___y_2; }
  933. inline void set_y_2(float value)
  934. {
  935. ___y_2 = value;
  936. }
  937. inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector3_t3722313464, ___z_3)); }
  938. inline float get_z_3() const { return ___z_3; }
  939. inline float* get_address_of_z_3() { return &___z_3; }
  940. inline void set_z_3(float value)
  941. {
  942. ___z_3 = value;
  943. }
  944. };
  945. struct Vector3_t3722313464_StaticFields
  946. {
  947. public:
  948. // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
  949. Vector3_t3722313464 ___zeroVector_4;
  950. // UnityEngine.Vector3 UnityEngine.Vector3::oneVector
  951. Vector3_t3722313464 ___oneVector_5;
  952. // UnityEngine.Vector3 UnityEngine.Vector3::upVector
  953. Vector3_t3722313464 ___upVector_6;
  954. // UnityEngine.Vector3 UnityEngine.Vector3::downVector
  955. Vector3_t3722313464 ___downVector_7;
  956. // UnityEngine.Vector3 UnityEngine.Vector3::leftVector
  957. Vector3_t3722313464 ___leftVector_8;
  958. // UnityEngine.Vector3 UnityEngine.Vector3::rightVector
  959. Vector3_t3722313464 ___rightVector_9;
  960. // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
  961. Vector3_t3722313464 ___forwardVector_10;
  962. // UnityEngine.Vector3 UnityEngine.Vector3::backVector
  963. Vector3_t3722313464 ___backVector_11;
  964. // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
  965. Vector3_t3722313464 ___positiveInfinityVector_12;
  966. // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
  967. Vector3_t3722313464 ___negativeInfinityVector_13;
  968. public:
  969. inline static int32_t get_offset_of_zeroVector_4() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___zeroVector_4)); }
  970. inline Vector3_t3722313464 get_zeroVector_4() const { return ___zeroVector_4; }
  971. inline Vector3_t3722313464 * get_address_of_zeroVector_4() { return &___zeroVector_4; }
  972. inline void set_zeroVector_4(Vector3_t3722313464 value)
  973. {
  974. ___zeroVector_4 = value;
  975. }
  976. inline static int32_t get_offset_of_oneVector_5() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___oneVector_5)); }
  977. inline Vector3_t3722313464 get_oneVector_5() const { return ___oneVector_5; }
  978. inline Vector3_t3722313464 * get_address_of_oneVector_5() { return &___oneVector_5; }
  979. inline void set_oneVector_5(Vector3_t3722313464 value)
  980. {
  981. ___oneVector_5 = value;
  982. }
  983. inline static int32_t get_offset_of_upVector_6() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___upVector_6)); }
  984. inline Vector3_t3722313464 get_upVector_6() const { return ___upVector_6; }
  985. inline Vector3_t3722313464 * get_address_of_upVector_6() { return &___upVector_6; }
  986. inline void set_upVector_6(Vector3_t3722313464 value)
  987. {
  988. ___upVector_6 = value;
  989. }
  990. inline static int32_t get_offset_of_downVector_7() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___downVector_7)); }
  991. inline Vector3_t3722313464 get_downVector_7() const { return ___downVector_7; }
  992. inline Vector3_t3722313464 * get_address_of_downVector_7() { return &___downVector_7; }
  993. inline void set_downVector_7(Vector3_t3722313464 value)
  994. {
  995. ___downVector_7 = value;
  996. }
  997. inline static int32_t get_offset_of_leftVector_8() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___leftVector_8)); }
  998. inline Vector3_t3722313464 get_leftVector_8() const { return ___leftVector_8; }
  999. inline Vector3_t3722313464 * get_address_of_leftVector_8() { return &___leftVector_8; }
  1000. inline void set_leftVector_8(Vector3_t3722313464 value)
  1001. {
  1002. ___leftVector_8 = value;
  1003. }
  1004. inline static int32_t get_offset_of_rightVector_9() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___rightVector_9)); }
  1005. inline Vector3_t3722313464 get_rightVector_9() const { return ___rightVector_9; }
  1006. inline Vector3_t3722313464 * get_address_of_rightVector_9() { return &___rightVector_9; }
  1007. inline void set_rightVector_9(Vector3_t3722313464 value)
  1008. {
  1009. ___rightVector_9 = value;
  1010. }
  1011. inline static int32_t get_offset_of_forwardVector_10() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___forwardVector_10)); }
  1012. inline Vector3_t3722313464 get_forwardVector_10() const { return ___forwardVector_10; }
  1013. inline Vector3_t3722313464 * get_address_of_forwardVector_10() { return &___forwardVector_10; }
  1014. inline void set_forwardVector_10(Vector3_t3722313464 value)
  1015. {
  1016. ___forwardVector_10 = value;
  1017. }
  1018. inline static int32_t get_offset_of_backVector_11() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___backVector_11)); }
  1019. inline Vector3_t3722313464 get_backVector_11() const { return ___backVector_11; }
  1020. inline Vector3_t3722313464 * get_address_of_backVector_11() { return &___backVector_11; }
  1021. inline void set_backVector_11(Vector3_t3722313464 value)
  1022. {
  1023. ___backVector_11 = value;
  1024. }
  1025. inline static int32_t get_offset_of_positiveInfinityVector_12() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___positiveInfinityVector_12)); }
  1026. inline Vector3_t3722313464 get_positiveInfinityVector_12() const { return ___positiveInfinityVector_12; }
  1027. inline Vector3_t3722313464 * get_address_of_positiveInfinityVector_12() { return &___positiveInfinityVector_12; }
  1028. inline void set_positiveInfinityVector_12(Vector3_t3722313464 value)
  1029. {
  1030. ___positiveInfinityVector_12 = value;
  1031. }
  1032. inline static int32_t get_offset_of_negativeInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t3722313464_StaticFields, ___negativeInfinityVector_13)); }
  1033. inline Vector3_t3722313464 get_negativeInfinityVector_13() const { return ___negativeInfinityVector_13; }
  1034. inline Vector3_t3722313464 * get_address_of_negativeInfinityVector_13() { return &___negativeInfinityVector_13; }
  1035. inline void set_negativeInfinityVector_13(Vector3_t3722313464 value)
  1036. {
  1037. ___negativeInfinityVector_13 = value;
  1038. }
  1039. };
  1040. #ifdef __clang__
  1041. #pragma clang diagnostic pop
  1042. #endif
  1043. #endif // VECTOR3_T3722313464_H
  1044. #ifndef COLOR_T2555686324_H
  1045. #define COLOR_T2555686324_H
  1046. #ifdef __clang__
  1047. #pragma clang diagnostic push
  1048. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1049. #pragma clang diagnostic ignored "-Wunused-variable"
  1050. #endif
  1051. // UnityEngine.Color
  1052. struct Color_t2555686324
  1053. {
  1054. public:
  1055. // System.Single UnityEngine.Color::r
  1056. float ___r_0;
  1057. // System.Single UnityEngine.Color::g
  1058. float ___g_1;
  1059. // System.Single UnityEngine.Color::b
  1060. float ___b_2;
  1061. // System.Single UnityEngine.Color::a
  1062. float ___a_3;
  1063. public:
  1064. inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___r_0)); }
  1065. inline float get_r_0() const { return ___r_0; }
  1066. inline float* get_address_of_r_0() { return &___r_0; }
  1067. inline void set_r_0(float value)
  1068. {
  1069. ___r_0 = value;
  1070. }
  1071. inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___g_1)); }
  1072. inline float get_g_1() const { return ___g_1; }
  1073. inline float* get_address_of_g_1() { return &___g_1; }
  1074. inline void set_g_1(float value)
  1075. {
  1076. ___g_1 = value;
  1077. }
  1078. inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___b_2)); }
  1079. inline float get_b_2() const { return ___b_2; }
  1080. inline float* get_address_of_b_2() { return &___b_2; }
  1081. inline void set_b_2(float value)
  1082. {
  1083. ___b_2 = value;
  1084. }
  1085. inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t2555686324, ___a_3)); }
  1086. inline float get_a_3() const { return ___a_3; }
  1087. inline float* get_address_of_a_3() { return &___a_3; }
  1088. inline void set_a_3(float value)
  1089. {
  1090. ___a_3 = value;
  1091. }
  1092. };
  1093. #ifdef __clang__
  1094. #pragma clang diagnostic pop
  1095. #endif
  1096. #endif // COLOR_T2555686324_H
  1097. #ifndef EMISSIONMODULE_T311448003_H
  1098. #define EMISSIONMODULE_T311448003_H
  1099. #ifdef __clang__
  1100. #pragma clang diagnostic push
  1101. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1102. #pragma clang diagnostic ignored "-Wunused-variable"
  1103. #endif
  1104. // UnityEngine.ParticleSystem/EmissionModule
  1105. struct EmissionModule_t311448003
  1106. {
  1107. public:
  1108. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/EmissionModule::m_ParticleSystem
  1109. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1110. public:
  1111. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(EmissionModule_t311448003, ___m_ParticleSystem_0)); }
  1112. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1113. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1114. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1115. {
  1116. ___m_ParticleSystem_0 = value;
  1117. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1118. }
  1119. };
  1120. #ifdef __clang__
  1121. #pragma clang diagnostic pop
  1122. #endif
  1123. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/EmissionModule
  1124. struct EmissionModule_t311448003_marshaled_pinvoke
  1125. {
  1126. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1127. };
  1128. // Native definition for COM marshalling of UnityEngine.ParticleSystem/EmissionModule
  1129. struct EmissionModule_t311448003_marshaled_com
  1130. {
  1131. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1132. };
  1133. #endif // EMISSIONMODULE_T311448003_H
  1134. #ifndef INT32_T2950945753_H
  1135. #define INT32_T2950945753_H
  1136. #ifdef __clang__
  1137. #pragma clang diagnostic push
  1138. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1139. #pragma clang diagnostic ignored "-Wunused-variable"
  1140. #endif
  1141. // System.Int32
  1142. struct Int32_t2950945753
  1143. {
  1144. public:
  1145. // System.Int32 System.Int32::m_value
  1146. int32_t ___m_value_2;
  1147. public:
  1148. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); }
  1149. inline int32_t get_m_value_2() const { return ___m_value_2; }
  1150. inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
  1151. inline void set_m_value_2(int32_t value)
  1152. {
  1153. ___m_value_2 = value;
  1154. }
  1155. };
  1156. #ifdef __clang__
  1157. #pragma clang diagnostic pop
  1158. #endif
  1159. #endif // INT32_T2950945753_H
  1160. #ifndef BOOLEAN_T97287965_H
  1161. #define BOOLEAN_T97287965_H
  1162. #ifdef __clang__
  1163. #pragma clang diagnostic push
  1164. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1165. #pragma clang diagnostic ignored "-Wunused-variable"
  1166. #endif
  1167. // System.Boolean
  1168. struct Boolean_t97287965
  1169. {
  1170. public:
  1171. // System.Boolean System.Boolean::m_value
  1172. bool ___m_value_2;
  1173. public:
  1174. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
  1175. inline bool get_m_value_2() const { return ___m_value_2; }
  1176. inline bool* get_address_of_m_value_2() { return &___m_value_2; }
  1177. inline void set_m_value_2(bool value)
  1178. {
  1179. ___m_value_2 = value;
  1180. }
  1181. };
  1182. struct Boolean_t97287965_StaticFields
  1183. {
  1184. public:
  1185. // System.String System.Boolean::FalseString
  1186. String_t* ___FalseString_0;
  1187. // System.String System.Boolean::TrueString
  1188. String_t* ___TrueString_1;
  1189. public:
  1190. inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
  1191. inline String_t* get_FalseString_0() const { return ___FalseString_0; }
  1192. inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
  1193. inline void set_FalseString_0(String_t* value)
  1194. {
  1195. ___FalseString_0 = value;
  1196. Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
  1197. }
  1198. inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
  1199. inline String_t* get_TrueString_1() const { return ___TrueString_1; }
  1200. inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
  1201. inline void set_TrueString_1(String_t* value)
  1202. {
  1203. ___TrueString_1 = value;
  1204. Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
  1205. }
  1206. };
  1207. #ifdef __clang__
  1208. #pragma clang diagnostic pop
  1209. #endif
  1210. #endif // BOOLEAN_T97287965_H
  1211. #ifndef UINT32_T2560061978_H
  1212. #define UINT32_T2560061978_H
  1213. #ifdef __clang__
  1214. #pragma clang diagnostic push
  1215. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1216. #pragma clang diagnostic ignored "-Wunused-variable"
  1217. #endif
  1218. // System.UInt32
  1219. struct UInt32_t2560061978
  1220. {
  1221. public:
  1222. // System.UInt32 System.UInt32::m_value
  1223. uint32_t ___m_value_2;
  1224. public:
  1225. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_2)); }
  1226. inline uint32_t get_m_value_2() const { return ___m_value_2; }
  1227. inline uint32_t* get_address_of_m_value_2() { return &___m_value_2; }
  1228. inline void set_m_value_2(uint32_t value)
  1229. {
  1230. ___m_value_2 = value;
  1231. }
  1232. };
  1233. #ifdef __clang__
  1234. #pragma clang diagnostic pop
  1235. #endif
  1236. #endif // UINT32_T2560061978_H
  1237. #ifndef COLOROVERLIFETIMEMODULE_T3039228654_H
  1238. #define COLOROVERLIFETIMEMODULE_T3039228654_H
  1239. #ifdef __clang__
  1240. #pragma clang diagnostic push
  1241. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1242. #pragma clang diagnostic ignored "-Wunused-variable"
  1243. #endif
  1244. // UnityEngine.ParticleSystem/ColorOverLifetimeModule
  1245. struct ColorOverLifetimeModule_t3039228654
  1246. {
  1247. public:
  1248. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/ColorOverLifetimeModule::m_ParticleSystem
  1249. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1250. public:
  1251. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(ColorOverLifetimeModule_t3039228654, ___m_ParticleSystem_0)); }
  1252. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1253. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1254. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1255. {
  1256. ___m_ParticleSystem_0 = value;
  1257. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1258. }
  1259. };
  1260. #ifdef __clang__
  1261. #pragma clang diagnostic pop
  1262. #endif
  1263. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/ColorOverLifetimeModule
  1264. struct ColorOverLifetimeModule_t3039228654_marshaled_pinvoke
  1265. {
  1266. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1267. };
  1268. // Native definition for COM marshalling of UnityEngine.ParticleSystem/ColorOverLifetimeModule
  1269. struct ColorOverLifetimeModule_t3039228654_marshaled_com
  1270. {
  1271. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1272. };
  1273. #endif // COLOROVERLIFETIMEMODULE_T3039228654_H
  1274. #ifndef FORCEOVERLIFETIMEMODULE_T4029962193_H
  1275. #define FORCEOVERLIFETIMEMODULE_T4029962193_H
  1276. #ifdef __clang__
  1277. #pragma clang diagnostic push
  1278. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1279. #pragma clang diagnostic ignored "-Wunused-variable"
  1280. #endif
  1281. // UnityEngine.ParticleSystem/ForceOverLifetimeModule
  1282. struct ForceOverLifetimeModule_t4029962193
  1283. {
  1284. public:
  1285. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/ForceOverLifetimeModule::m_ParticleSystem
  1286. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1287. public:
  1288. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(ForceOverLifetimeModule_t4029962193, ___m_ParticleSystem_0)); }
  1289. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1290. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1291. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1292. {
  1293. ___m_ParticleSystem_0 = value;
  1294. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1295. }
  1296. };
  1297. #ifdef __clang__
  1298. #pragma clang diagnostic pop
  1299. #endif
  1300. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/ForceOverLifetimeModule
  1301. struct ForceOverLifetimeModule_t4029962193_marshaled_pinvoke
  1302. {
  1303. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1304. };
  1305. // Native definition for COM marshalling of UnityEngine.ParticleSystem/ForceOverLifetimeModule
  1306. struct ForceOverLifetimeModule_t4029962193_marshaled_com
  1307. {
  1308. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1309. };
  1310. #endif // FORCEOVERLIFETIMEMODULE_T4029962193_H
  1311. #ifndef INHERITVELOCITYMODULE_T3940044026_H
  1312. #define INHERITVELOCITYMODULE_T3940044026_H
  1313. #ifdef __clang__
  1314. #pragma clang diagnostic push
  1315. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1316. #pragma clang diagnostic ignored "-Wunused-variable"
  1317. #endif
  1318. // UnityEngine.ParticleSystem/InheritVelocityModule
  1319. struct InheritVelocityModule_t3940044026
  1320. {
  1321. public:
  1322. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/InheritVelocityModule::m_ParticleSystem
  1323. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1324. public:
  1325. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(InheritVelocityModule_t3940044026, ___m_ParticleSystem_0)); }
  1326. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1327. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1328. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1329. {
  1330. ___m_ParticleSystem_0 = value;
  1331. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1332. }
  1333. };
  1334. #ifdef __clang__
  1335. #pragma clang diagnostic pop
  1336. #endif
  1337. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/InheritVelocityModule
  1338. struct InheritVelocityModule_t3940044026_marshaled_pinvoke
  1339. {
  1340. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1341. };
  1342. // Native definition for COM marshalling of UnityEngine.ParticleSystem/InheritVelocityModule
  1343. struct InheritVelocityModule_t3940044026_marshaled_com
  1344. {
  1345. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1346. };
  1347. #endif // INHERITVELOCITYMODULE_T3940044026_H
  1348. #ifndef SINGLE_T1397266774_H
  1349. #define SINGLE_T1397266774_H
  1350. #ifdef __clang__
  1351. #pragma clang diagnostic push
  1352. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1353. #pragma clang diagnostic ignored "-Wunused-variable"
  1354. #endif
  1355. // System.Single
  1356. struct Single_t1397266774
  1357. {
  1358. public:
  1359. // System.Single System.Single::m_value
  1360. float ___m_value_7;
  1361. public:
  1362. inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); }
  1363. inline float get_m_value_7() const { return ___m_value_7; }
  1364. inline float* get_address_of_m_value_7() { return &___m_value_7; }
  1365. inline void set_m_value_7(float value)
  1366. {
  1367. ___m_value_7 = value;
  1368. }
  1369. };
  1370. #ifdef __clang__
  1371. #pragma clang diagnostic pop
  1372. #endif
  1373. #endif // SINGLE_T1397266774_H
  1374. #ifndef LIMITVELOCITYOVERLIFETIMEMODULE_T686589569_H
  1375. #define LIMITVELOCITYOVERLIFETIMEMODULE_T686589569_H
  1376. #ifdef __clang__
  1377. #pragma clang diagnostic push
  1378. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1379. #pragma clang diagnostic ignored "-Wunused-variable"
  1380. #endif
  1381. // UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule
  1382. struct LimitVelocityOverLifetimeModule_t686589569
  1383. {
  1384. public:
  1385. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule::m_ParticleSystem
  1386. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1387. public:
  1388. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(LimitVelocityOverLifetimeModule_t686589569, ___m_ParticleSystem_0)); }
  1389. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1390. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1391. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1392. {
  1393. ___m_ParticleSystem_0 = value;
  1394. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1395. }
  1396. };
  1397. #ifdef __clang__
  1398. #pragma clang diagnostic pop
  1399. #endif
  1400. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule
  1401. struct LimitVelocityOverLifetimeModule_t686589569_marshaled_pinvoke
  1402. {
  1403. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1404. };
  1405. // Native definition for COM marshalling of UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule
  1406. struct LimitVelocityOverLifetimeModule_t686589569_marshaled_com
  1407. {
  1408. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1409. };
  1410. #endif // LIMITVELOCITYOVERLIFETIMEMODULE_T686589569_H
  1411. #ifndef VELOCITYOVERLIFETIMEMODULE_T1982232382_H
  1412. #define VELOCITYOVERLIFETIMEMODULE_T1982232382_H
  1413. #ifdef __clang__
  1414. #pragma clang diagnostic push
  1415. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1416. #pragma clang diagnostic ignored "-Wunused-variable"
  1417. #endif
  1418. // UnityEngine.ParticleSystem/VelocityOverLifetimeModule
  1419. struct VelocityOverLifetimeModule_t1982232382
  1420. {
  1421. public:
  1422. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/VelocityOverLifetimeModule::m_ParticleSystem
  1423. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1424. public:
  1425. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(VelocityOverLifetimeModule_t1982232382, ___m_ParticleSystem_0)); }
  1426. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1427. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1428. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1429. {
  1430. ___m_ParticleSystem_0 = value;
  1431. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1432. }
  1433. };
  1434. #ifdef __clang__
  1435. #pragma clang diagnostic pop
  1436. #endif
  1437. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/VelocityOverLifetimeModule
  1438. struct VelocityOverLifetimeModule_t1982232382_marshaled_pinvoke
  1439. {
  1440. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1441. };
  1442. // Native definition for COM marshalling of UnityEngine.ParticleSystem/VelocityOverLifetimeModule
  1443. struct VelocityOverLifetimeModule_t1982232382_marshaled_com
  1444. {
  1445. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1446. };
  1447. #endif // VELOCITYOVERLIFETIMEMODULE_T1982232382_H
  1448. #ifndef MAINMODULE_T2320046318_H
  1449. #define MAINMODULE_T2320046318_H
  1450. #ifdef __clang__
  1451. #pragma clang diagnostic push
  1452. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1453. #pragma clang diagnostic ignored "-Wunused-variable"
  1454. #endif
  1455. // UnityEngine.ParticleSystem/MainModule
  1456. struct MainModule_t2320046318
  1457. {
  1458. public:
  1459. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/MainModule::m_ParticleSystem
  1460. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1461. public:
  1462. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(MainModule_t2320046318, ___m_ParticleSystem_0)); }
  1463. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1464. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1465. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1466. {
  1467. ___m_ParticleSystem_0 = value;
  1468. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1469. }
  1470. };
  1471. #ifdef __clang__
  1472. #pragma clang diagnostic pop
  1473. #endif
  1474. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/MainModule
  1475. struct MainModule_t2320046318_marshaled_pinvoke
  1476. {
  1477. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1478. };
  1479. // Native definition for COM marshalling of UnityEngine.ParticleSystem/MainModule
  1480. struct MainModule_t2320046318_marshaled_com
  1481. {
  1482. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1483. };
  1484. #endif // MAINMODULE_T2320046318_H
  1485. #ifndef SHAPEMODULE_T3608330829_H
  1486. #define SHAPEMODULE_T3608330829_H
  1487. #ifdef __clang__
  1488. #pragma clang diagnostic push
  1489. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1490. #pragma clang diagnostic ignored "-Wunused-variable"
  1491. #endif
  1492. // UnityEngine.ParticleSystem/ShapeModule
  1493. struct ShapeModule_t3608330829
  1494. {
  1495. public:
  1496. // UnityEngine.ParticleSystem UnityEngine.ParticleSystem/ShapeModule::m_ParticleSystem
  1497. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1498. public:
  1499. inline static int32_t get_offset_of_m_ParticleSystem_0() { return static_cast<int32_t>(offsetof(ShapeModule_t3608330829, ___m_ParticleSystem_0)); }
  1500. inline ParticleSystem_t1800779281 * get_m_ParticleSystem_0() const { return ___m_ParticleSystem_0; }
  1501. inline ParticleSystem_t1800779281 ** get_address_of_m_ParticleSystem_0() { return &___m_ParticleSystem_0; }
  1502. inline void set_m_ParticleSystem_0(ParticleSystem_t1800779281 * value)
  1503. {
  1504. ___m_ParticleSystem_0 = value;
  1505. Il2CppCodeGenWriteBarrier((&___m_ParticleSystem_0), value);
  1506. }
  1507. };
  1508. #ifdef __clang__
  1509. #pragma clang diagnostic pop
  1510. #endif
  1511. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/ShapeModule
  1512. struct ShapeModule_t3608330829_marshaled_pinvoke
  1513. {
  1514. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1515. };
  1516. // Native definition for COM marshalling of UnityEngine.ParticleSystem/ShapeModule
  1517. struct ShapeModule_t3608330829_marshaled_com
  1518. {
  1519. ParticleSystem_t1800779281 * ___m_ParticleSystem_0;
  1520. };
  1521. #endif // SHAPEMODULE_T3608330829_H
  1522. #ifndef PARTICLESYSTEMCURVEMODE_T3859704052_H
  1523. #define PARTICLESYSTEMCURVEMODE_T3859704052_H
  1524. #ifdef __clang__
  1525. #pragma clang diagnostic push
  1526. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1527. #pragma clang diagnostic ignored "-Wunused-variable"
  1528. #endif
  1529. // UnityEngine.ParticleSystemCurveMode
  1530. struct ParticleSystemCurveMode_t3859704052
  1531. {
  1532. public:
  1533. // System.Int32 UnityEngine.ParticleSystemCurveMode::value__
  1534. int32_t ___value___1;
  1535. public:
  1536. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParticleSystemCurveMode_t3859704052, ___value___1)); }
  1537. inline int32_t get_value___1() const { return ___value___1; }
  1538. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1539. inline void set_value___1(int32_t value)
  1540. {
  1541. ___value___1 = value;
  1542. }
  1543. };
  1544. #ifdef __clang__
  1545. #pragma clang diagnostic pop
  1546. #endif
  1547. #endif // PARTICLESYSTEMCURVEMODE_T3859704052_H
  1548. #ifndef ANIMATIONCURVE_T3046754366_H
  1549. #define ANIMATIONCURVE_T3046754366_H
  1550. #ifdef __clang__
  1551. #pragma clang diagnostic push
  1552. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1553. #pragma clang diagnostic ignored "-Wunused-variable"
  1554. #endif
  1555. // UnityEngine.AnimationCurve
  1556. struct AnimationCurve_t3046754366 : public RuntimeObject
  1557. {
  1558. public:
  1559. // System.IntPtr UnityEngine.AnimationCurve::m_Ptr
  1560. intptr_t ___m_Ptr_0;
  1561. public:
  1562. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AnimationCurve_t3046754366, ___m_Ptr_0)); }
  1563. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1564. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1565. inline void set_m_Ptr_0(intptr_t value)
  1566. {
  1567. ___m_Ptr_0 = value;
  1568. }
  1569. };
  1570. #ifdef __clang__
  1571. #pragma clang diagnostic pop
  1572. #endif
  1573. // Native definition for P/Invoke marshalling of UnityEngine.AnimationCurve
  1574. struct AnimationCurve_t3046754366_marshaled_pinvoke
  1575. {
  1576. intptr_t ___m_Ptr_0;
  1577. };
  1578. // Native definition for COM marshalling of UnityEngine.AnimationCurve
  1579. struct AnimationCurve_t3046754366_marshaled_com
  1580. {
  1581. intptr_t ___m_Ptr_0;
  1582. };
  1583. #endif // ANIMATIONCURVE_T3046754366_H
  1584. #ifndef OBJECT_T631007953_H
  1585. #define OBJECT_T631007953_H
  1586. #ifdef __clang__
  1587. #pragma clang diagnostic push
  1588. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1589. #pragma clang diagnostic ignored "-Wunused-variable"
  1590. #endif
  1591. // UnityEngine.Object
  1592. struct Object_t631007953 : public RuntimeObject
  1593. {
  1594. public:
  1595. // System.IntPtr UnityEngine.Object::m_CachedPtr
  1596. intptr_t ___m_CachedPtr_0;
  1597. public:
  1598. inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
  1599. inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
  1600. inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
  1601. inline void set_m_CachedPtr_0(intptr_t value)
  1602. {
  1603. ___m_CachedPtr_0 = value;
  1604. }
  1605. };
  1606. struct Object_t631007953_StaticFields
  1607. {
  1608. public:
  1609. // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
  1610. int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
  1611. public:
  1612. inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
  1613. inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
  1614. inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
  1615. inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
  1616. {
  1617. ___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
  1618. }
  1619. };
  1620. #ifdef __clang__
  1621. #pragma clang diagnostic pop
  1622. #endif
  1623. // Native definition for P/Invoke marshalling of UnityEngine.Object
  1624. struct Object_t631007953_marshaled_pinvoke
  1625. {
  1626. intptr_t ___m_CachedPtr_0;
  1627. };
  1628. // Native definition for COM marshalling of UnityEngine.Object
  1629. struct Object_t631007953_marshaled_com
  1630. {
  1631. intptr_t ___m_CachedPtr_0;
  1632. };
  1633. #endif // OBJECT_T631007953_H
  1634. #ifndef PARTICLESYSTEMANIMATIONTYPE_T3289377710_H
  1635. #define PARTICLESYSTEMANIMATIONTYPE_T3289377710_H
  1636. #ifdef __clang__
  1637. #pragma clang diagnostic push
  1638. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1639. #pragma clang diagnostic ignored "-Wunused-variable"
  1640. #endif
  1641. // UnityEngine.ParticleSystemAnimationType
  1642. struct ParticleSystemAnimationType_t3289377710
  1643. {
  1644. public:
  1645. // System.Int32 UnityEngine.ParticleSystemAnimationType::value__
  1646. int32_t ___value___1;
  1647. public:
  1648. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParticleSystemAnimationType_t3289377710, ___value___1)); }
  1649. inline int32_t get_value___1() const { return ___value___1; }
  1650. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1651. inline void set_value___1(int32_t value)
  1652. {
  1653. ___value___1 = value;
  1654. }
  1655. };
  1656. #ifdef __clang__
  1657. #pragma clang diagnostic pop
  1658. #endif
  1659. #endif // PARTICLESYSTEMANIMATIONTYPE_T3289377710_H
  1660. #ifndef PARTICLESYSTEMSTOPBEHAVIOR_T2808326180_H
  1661. #define PARTICLESYSTEMSTOPBEHAVIOR_T2808326180_H
  1662. #ifdef __clang__
  1663. #pragma clang diagnostic push
  1664. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1665. #pragma clang diagnostic ignored "-Wunused-variable"
  1666. #endif
  1667. // UnityEngine.ParticleSystemStopBehavior
  1668. struct ParticleSystemStopBehavior_t2808326180
  1669. {
  1670. public:
  1671. // System.Int32 UnityEngine.ParticleSystemStopBehavior::value__
  1672. int32_t ___value___1;
  1673. public:
  1674. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParticleSystemStopBehavior_t2808326180, ___value___1)); }
  1675. inline int32_t get_value___1() const { return ___value___1; }
  1676. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1677. inline void set_value___1(int32_t value)
  1678. {
  1679. ___value___1 = value;
  1680. }
  1681. };
  1682. #ifdef __clang__
  1683. #pragma clang diagnostic pop
  1684. #endif
  1685. #endif // PARTICLESYSTEMSTOPBEHAVIOR_T2808326180_H
  1686. #ifndef PARTICLESYSTEMSCALINGMODE_T2278533876_H
  1687. #define PARTICLESYSTEMSCALINGMODE_T2278533876_H
  1688. #ifdef __clang__
  1689. #pragma clang diagnostic push
  1690. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1691. #pragma clang diagnostic ignored "-Wunused-variable"
  1692. #endif
  1693. // UnityEngine.ParticleSystemScalingMode
  1694. struct ParticleSystemScalingMode_t2278533876
  1695. {
  1696. public:
  1697. // System.Int32 UnityEngine.ParticleSystemScalingMode::value__
  1698. int32_t ___value___1;
  1699. public:
  1700. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParticleSystemScalingMode_t2278533876, ___value___1)); }
  1701. inline int32_t get_value___1() const { return ___value___1; }
  1702. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1703. inline void set_value___1(int32_t value)
  1704. {
  1705. ___value___1 = value;
  1706. }
  1707. };
  1708. #ifdef __clang__
  1709. #pragma clang diagnostic pop
  1710. #endif
  1711. #endif // PARTICLESYSTEMSCALINGMODE_T2278533876_H
  1712. #ifndef PARTICLESYSTEMCUSTOMDATA_T1949455375_H
  1713. #define PARTICLESYSTEMCUSTOMDATA_T1949455375_H
  1714. #ifdef __clang__
  1715. #pragma clang diagnostic push
  1716. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1717. #pragma clang diagnostic ignored "-Wunused-variable"
  1718. #endif
  1719. // UnityEngine.ParticleSystemCustomData
  1720. struct ParticleSystemCustomData_t1949455375
  1721. {
  1722. public:
  1723. // System.Int32 UnityEngine.ParticleSystemCustomData::value__
  1724. int32_t ___value___1;
  1725. public:
  1726. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParticleSystemCustomData_t1949455375, ___value___1)); }
  1727. inline int32_t get_value___1() const { return ___value___1; }
  1728. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1729. inline void set_value___1(int32_t value)
  1730. {
  1731. ___value___1 = value;
  1732. }
  1733. };
  1734. #ifdef __clang__
  1735. #pragma clang diagnostic pop
  1736. #endif
  1737. #endif // PARTICLESYSTEMCUSTOMDATA_T1949455375_H
  1738. #ifndef PARTICLE_T1882894987_H
  1739. #define PARTICLE_T1882894987_H
  1740. #ifdef __clang__
  1741. #pragma clang diagnostic push
  1742. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1743. #pragma clang diagnostic ignored "-Wunused-variable"
  1744. #endif
  1745. // UnityEngine.ParticleSystem/Particle
  1746. struct Particle_t1882894987
  1747. {
  1748. public:
  1749. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Position
  1750. Vector3_t3722313464 ___m_Position_0;
  1751. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Velocity
  1752. Vector3_t3722313464 ___m_Velocity_1;
  1753. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AnimatedVelocity
  1754. Vector3_t3722313464 ___m_AnimatedVelocity_2;
  1755. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_InitialVelocity
  1756. Vector3_t3722313464 ___m_InitialVelocity_3;
  1757. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AxisOfRotation
  1758. Vector3_t3722313464 ___m_AxisOfRotation_4;
  1759. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Rotation
  1760. Vector3_t3722313464 ___m_Rotation_5;
  1761. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AngularVelocity
  1762. Vector3_t3722313464 ___m_AngularVelocity_6;
  1763. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_StartSize
  1764. Vector3_t3722313464 ___m_StartSize_7;
  1765. // UnityEngine.Color32 UnityEngine.ParticleSystem/Particle::m_StartColor
  1766. Color32_t2600501292 ___m_StartColor_8;
  1767. // System.UInt32 UnityEngine.ParticleSystem/Particle::m_RandomSeed
  1768. uint32_t ___m_RandomSeed_9;
  1769. // System.Single UnityEngine.ParticleSystem/Particle::m_Lifetime
  1770. float ___m_Lifetime_10;
  1771. // System.Single UnityEngine.ParticleSystem/Particle::m_StartLifetime
  1772. float ___m_StartLifetime_11;
  1773. // System.Single UnityEngine.ParticleSystem/Particle::m_EmitAccumulator0
  1774. float ___m_EmitAccumulator0_12;
  1775. // System.Single UnityEngine.ParticleSystem/Particle::m_EmitAccumulator1
  1776. float ___m_EmitAccumulator1_13;
  1777. public:
  1778. inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_Position_0)); }
  1779. inline Vector3_t3722313464 get_m_Position_0() const { return ___m_Position_0; }
  1780. inline Vector3_t3722313464 * get_address_of_m_Position_0() { return &___m_Position_0; }
  1781. inline void set_m_Position_0(Vector3_t3722313464 value)
  1782. {
  1783. ___m_Position_0 = value;
  1784. }
  1785. inline static int32_t get_offset_of_m_Velocity_1() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_Velocity_1)); }
  1786. inline Vector3_t3722313464 get_m_Velocity_1() const { return ___m_Velocity_1; }
  1787. inline Vector3_t3722313464 * get_address_of_m_Velocity_1() { return &___m_Velocity_1; }
  1788. inline void set_m_Velocity_1(Vector3_t3722313464 value)
  1789. {
  1790. ___m_Velocity_1 = value;
  1791. }
  1792. inline static int32_t get_offset_of_m_AnimatedVelocity_2() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_AnimatedVelocity_2)); }
  1793. inline Vector3_t3722313464 get_m_AnimatedVelocity_2() const { return ___m_AnimatedVelocity_2; }
  1794. inline Vector3_t3722313464 * get_address_of_m_AnimatedVelocity_2() { return &___m_AnimatedVelocity_2; }
  1795. inline void set_m_AnimatedVelocity_2(Vector3_t3722313464 value)
  1796. {
  1797. ___m_AnimatedVelocity_2 = value;
  1798. }
  1799. inline static int32_t get_offset_of_m_InitialVelocity_3() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_InitialVelocity_3)); }
  1800. inline Vector3_t3722313464 get_m_InitialVelocity_3() const { return ___m_InitialVelocity_3; }
  1801. inline Vector3_t3722313464 * get_address_of_m_InitialVelocity_3() { return &___m_InitialVelocity_3; }
  1802. inline void set_m_InitialVelocity_3(Vector3_t3722313464 value)
  1803. {
  1804. ___m_InitialVelocity_3 = value;
  1805. }
  1806. inline static int32_t get_offset_of_m_AxisOfRotation_4() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_AxisOfRotation_4)); }
  1807. inline Vector3_t3722313464 get_m_AxisOfRotation_4() const { return ___m_AxisOfRotation_4; }
  1808. inline Vector3_t3722313464 * get_address_of_m_AxisOfRotation_4() { return &___m_AxisOfRotation_4; }
  1809. inline void set_m_AxisOfRotation_4(Vector3_t3722313464 value)
  1810. {
  1811. ___m_AxisOfRotation_4 = value;
  1812. }
  1813. inline static int32_t get_offset_of_m_Rotation_5() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_Rotation_5)); }
  1814. inline Vector3_t3722313464 get_m_Rotation_5() const { return ___m_Rotation_5; }
  1815. inline Vector3_t3722313464 * get_address_of_m_Rotation_5() { return &___m_Rotation_5; }
  1816. inline void set_m_Rotation_5(Vector3_t3722313464 value)
  1817. {
  1818. ___m_Rotation_5 = value;
  1819. }
  1820. inline static int32_t get_offset_of_m_AngularVelocity_6() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_AngularVelocity_6)); }
  1821. inline Vector3_t3722313464 get_m_AngularVelocity_6() const { return ___m_AngularVelocity_6; }
  1822. inline Vector3_t3722313464 * get_address_of_m_AngularVelocity_6() { return &___m_AngularVelocity_6; }
  1823. inline void set_m_AngularVelocity_6(Vector3_t3722313464 value)
  1824. {
  1825. ___m_AngularVelocity_6 = value;
  1826. }
  1827. inline static int32_t get_offset_of_m_StartSize_7() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_StartSize_7)); }
  1828. inline Vector3_t3722313464 get_m_StartSize_7() const { return ___m_StartSize_7; }
  1829. inline Vector3_t3722313464 * get_address_of_m_StartSize_7() { return &___m_StartSize_7; }
  1830. inline void set_m_StartSize_7(Vector3_t3722313464 value)
  1831. {
  1832. ___m_StartSize_7 = value;
  1833. }
  1834. inline static int32_t get_offset_of_m_StartColor_8() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_StartColor_8)); }
  1835. inline Color32_t2600501292 get_m_StartColor_8() const { return ___m_StartColor_8; }
  1836. inline Color32_t2600501292 * get_address_of_m_StartColor_8() { return &___m_StartColor_8; }
  1837. inline void set_m_StartColor_8(Color32_t2600501292 value)
  1838. {
  1839. ___m_StartColor_8 = value;
  1840. }
  1841. inline static int32_t get_offset_of_m_RandomSeed_9() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_RandomSeed_9)); }
  1842. inline uint32_t get_m_RandomSeed_9() const { return ___m_RandomSeed_9; }
  1843. inline uint32_t* get_address_of_m_RandomSeed_9() { return &___m_RandomSeed_9; }
  1844. inline void set_m_RandomSeed_9(uint32_t value)
  1845. {
  1846. ___m_RandomSeed_9 = value;
  1847. }
  1848. inline static int32_t get_offset_of_m_Lifetime_10() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_Lifetime_10)); }
  1849. inline float get_m_Lifetime_10() const { return ___m_Lifetime_10; }
  1850. inline float* get_address_of_m_Lifetime_10() { return &___m_Lifetime_10; }
  1851. inline void set_m_Lifetime_10(float value)
  1852. {
  1853. ___m_Lifetime_10 = value;
  1854. }
  1855. inline static int32_t get_offset_of_m_StartLifetime_11() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_StartLifetime_11)); }
  1856. inline float get_m_StartLifetime_11() const { return ___m_StartLifetime_11; }
  1857. inline float* get_address_of_m_StartLifetime_11() { return &___m_StartLifetime_11; }
  1858. inline void set_m_StartLifetime_11(float value)
  1859. {
  1860. ___m_StartLifetime_11 = value;
  1861. }
  1862. inline static int32_t get_offset_of_m_EmitAccumulator0_12() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_EmitAccumulator0_12)); }
  1863. inline float get_m_EmitAccumulator0_12() const { return ___m_EmitAccumulator0_12; }
  1864. inline float* get_address_of_m_EmitAccumulator0_12() { return &___m_EmitAccumulator0_12; }
  1865. inline void set_m_EmitAccumulator0_12(float value)
  1866. {
  1867. ___m_EmitAccumulator0_12 = value;
  1868. }
  1869. inline static int32_t get_offset_of_m_EmitAccumulator1_13() { return static_cast<int32_t>(offsetof(Particle_t1882894987, ___m_EmitAccumulator1_13)); }
  1870. inline float get_m_EmitAccumulator1_13() const { return ___m_EmitAccumulator1_13; }
  1871. inline float* get_address_of_m_EmitAccumulator1_13() { return &___m_EmitAccumulator1_13; }
  1872. inline void set_m_EmitAccumulator1_13(float value)
  1873. {
  1874. ___m_EmitAccumulator1_13 = value;
  1875. }
  1876. };
  1877. #ifdef __clang__
  1878. #pragma clang diagnostic pop
  1879. #endif
  1880. #endif // PARTICLE_T1882894987_H
  1881. #ifndef PARTICLESYSTEMSIMULATIONSPACE_T2969500608_H
  1882. #define PARTICLESYSTEMSIMULATIONSPACE_T2969500608_H
  1883. #ifdef __clang__
  1884. #pragma clang diagnostic push
  1885. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1886. #pragma clang diagnostic ignored "-Wunused-variable"
  1887. #endif
  1888. // UnityEngine.ParticleSystemSimulationSpace
  1889. struct ParticleSystemSimulationSpace_t2969500608
  1890. {
  1891. public:
  1892. // System.Int32 UnityEngine.ParticleSystemSimulationSpace::value__
  1893. int32_t ___value___1;
  1894. public:
  1895. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParticleSystemSimulationSpace_t2969500608, ___value___1)); }
  1896. inline int32_t get_value___1() const { return ___value___1; }
  1897. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1898. inline void set_value___1(int32_t value)
  1899. {
  1900. ___value___1 = value;
  1901. }
  1902. };
  1903. #ifdef __clang__
  1904. #pragma clang diagnostic pop
  1905. #endif
  1906. #endif // PARTICLESYSTEMSIMULATIONSPACE_T2969500608_H
  1907. #ifndef COMPONENT_T1923634451_H
  1908. #define COMPONENT_T1923634451_H
  1909. #ifdef __clang__
  1910. #pragma clang diagnostic push
  1911. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1912. #pragma clang diagnostic ignored "-Wunused-variable"
  1913. #endif
  1914. // UnityEngine.Component
  1915. struct Component_t1923634451 : public Object_t631007953
  1916. {
  1917. public:
  1918. public:
  1919. };
  1920. #ifdef __clang__
  1921. #pragma clang diagnostic pop
  1922. #endif
  1923. #endif // COMPONENT_T1923634451_H
  1924. #ifndef MINMAXCURVE_T1067599125_H
  1925. #define MINMAXCURVE_T1067599125_H
  1926. #ifdef __clang__
  1927. #pragma clang diagnostic push
  1928. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1929. #pragma clang diagnostic ignored "-Wunused-variable"
  1930. #endif
  1931. // UnityEngine.ParticleSystem/MinMaxCurve
  1932. struct MinMaxCurve_t1067599125
  1933. {
  1934. public:
  1935. // UnityEngine.ParticleSystemCurveMode UnityEngine.ParticleSystem/MinMaxCurve::m_Mode
  1936. int32_t ___m_Mode_0;
  1937. // System.Single UnityEngine.ParticleSystem/MinMaxCurve::m_CurveMultiplier
  1938. float ___m_CurveMultiplier_1;
  1939. // UnityEngine.AnimationCurve UnityEngine.ParticleSystem/MinMaxCurve::m_CurveMin
  1940. AnimationCurve_t3046754366 * ___m_CurveMin_2;
  1941. // UnityEngine.AnimationCurve UnityEngine.ParticleSystem/MinMaxCurve::m_CurveMax
  1942. AnimationCurve_t3046754366 * ___m_CurveMax_3;
  1943. // System.Single UnityEngine.ParticleSystem/MinMaxCurve::m_ConstantMin
  1944. float ___m_ConstantMin_4;
  1945. // System.Single UnityEngine.ParticleSystem/MinMaxCurve::m_ConstantMax
  1946. float ___m_ConstantMax_5;
  1947. public:
  1948. inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(MinMaxCurve_t1067599125, ___m_Mode_0)); }
  1949. inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
  1950. inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
  1951. inline void set_m_Mode_0(int32_t value)
  1952. {
  1953. ___m_Mode_0 = value;
  1954. }
  1955. inline static int32_t get_offset_of_m_CurveMultiplier_1() { return static_cast<int32_t>(offsetof(MinMaxCurve_t1067599125, ___m_CurveMultiplier_1)); }
  1956. inline float get_m_CurveMultiplier_1() const { return ___m_CurveMultiplier_1; }
  1957. inline float* get_address_of_m_CurveMultiplier_1() { return &___m_CurveMultiplier_1; }
  1958. inline void set_m_CurveMultiplier_1(float value)
  1959. {
  1960. ___m_CurveMultiplier_1 = value;
  1961. }
  1962. inline static int32_t get_offset_of_m_CurveMin_2() { return static_cast<int32_t>(offsetof(MinMaxCurve_t1067599125, ___m_CurveMin_2)); }
  1963. inline AnimationCurve_t3046754366 * get_m_CurveMin_2() const { return ___m_CurveMin_2; }
  1964. inline AnimationCurve_t3046754366 ** get_address_of_m_CurveMin_2() { return &___m_CurveMin_2; }
  1965. inline void set_m_CurveMin_2(AnimationCurve_t3046754366 * value)
  1966. {
  1967. ___m_CurveMin_2 = value;
  1968. Il2CppCodeGenWriteBarrier((&___m_CurveMin_2), value);
  1969. }
  1970. inline static int32_t get_offset_of_m_CurveMax_3() { return static_cast<int32_t>(offsetof(MinMaxCurve_t1067599125, ___m_CurveMax_3)); }
  1971. inline AnimationCurve_t3046754366 * get_m_CurveMax_3() const { return ___m_CurveMax_3; }
  1972. inline AnimationCurve_t3046754366 ** get_address_of_m_CurveMax_3() { return &___m_CurveMax_3; }
  1973. inline void set_m_CurveMax_3(AnimationCurve_t3046754366 * value)
  1974. {
  1975. ___m_CurveMax_3 = value;
  1976. Il2CppCodeGenWriteBarrier((&___m_CurveMax_3), value);
  1977. }
  1978. inline static int32_t get_offset_of_m_ConstantMin_4() { return static_cast<int32_t>(offsetof(MinMaxCurve_t1067599125, ___m_ConstantMin_4)); }
  1979. inline float get_m_ConstantMin_4() const { return ___m_ConstantMin_4; }
  1980. inline float* get_address_of_m_ConstantMin_4() { return &___m_ConstantMin_4; }
  1981. inline void set_m_ConstantMin_4(float value)
  1982. {
  1983. ___m_ConstantMin_4 = value;
  1984. }
  1985. inline static int32_t get_offset_of_m_ConstantMax_5() { return static_cast<int32_t>(offsetof(MinMaxCurve_t1067599125, ___m_ConstantMax_5)); }
  1986. inline float get_m_ConstantMax_5() const { return ___m_ConstantMax_5; }
  1987. inline float* get_address_of_m_ConstantMax_5() { return &___m_ConstantMax_5; }
  1988. inline void set_m_ConstantMax_5(float value)
  1989. {
  1990. ___m_ConstantMax_5 = value;
  1991. }
  1992. };
  1993. #ifdef __clang__
  1994. #pragma clang diagnostic pop
  1995. #endif
  1996. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/MinMaxCurve
  1997. struct MinMaxCurve_t1067599125_marshaled_pinvoke
  1998. {
  1999. int32_t ___m_Mode_0;
  2000. float ___m_CurveMultiplier_1;
  2001. AnimationCurve_t3046754366_marshaled_pinvoke ___m_CurveMin_2;
  2002. AnimationCurve_t3046754366_marshaled_pinvoke ___m_CurveMax_3;
  2003. float ___m_ConstantMin_4;
  2004. float ___m_ConstantMax_5;
  2005. };
  2006. // Native definition for COM marshalling of UnityEngine.ParticleSystem/MinMaxCurve
  2007. struct MinMaxCurve_t1067599125_marshaled_com
  2008. {
  2009. int32_t ___m_Mode_0;
  2010. float ___m_CurveMultiplier_1;
  2011. AnimationCurve_t3046754366_marshaled_com* ___m_CurveMin_2;
  2012. AnimationCurve_t3046754366_marshaled_com* ___m_CurveMax_3;
  2013. float ___m_ConstantMin_4;
  2014. float ___m_ConstantMax_5;
  2015. };
  2016. #endif // MINMAXCURVE_T1067599125_H
  2017. #ifndef EMITPARAMS_T2216423628_H
  2018. #define EMITPARAMS_T2216423628_H
  2019. #ifdef __clang__
  2020. #pragma clang diagnostic push
  2021. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2022. #pragma clang diagnostic ignored "-Wunused-variable"
  2023. #endif
  2024. // UnityEngine.ParticleSystem/EmitParams
  2025. struct EmitParams_t2216423628
  2026. {
  2027. public:
  2028. // UnityEngine.ParticleSystem/Particle UnityEngine.ParticleSystem/EmitParams::m_Particle
  2029. Particle_t1882894987 ___m_Particle_0;
  2030. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_PositionSet
  2031. bool ___m_PositionSet_1;
  2032. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_VelocitySet
  2033. bool ___m_VelocitySet_2;
  2034. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_AxisOfRotationSet
  2035. bool ___m_AxisOfRotationSet_3;
  2036. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_RotationSet
  2037. bool ___m_RotationSet_4;
  2038. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_AngularVelocitySet
  2039. bool ___m_AngularVelocitySet_5;
  2040. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_StartSizeSet
  2041. bool ___m_StartSizeSet_6;
  2042. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_StartColorSet
  2043. bool ___m_StartColorSet_7;
  2044. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_RandomSeedSet
  2045. bool ___m_RandomSeedSet_8;
  2046. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_StartLifetimeSet
  2047. bool ___m_StartLifetimeSet_9;
  2048. // System.Boolean UnityEngine.ParticleSystem/EmitParams::m_ApplyShapeToPosition
  2049. bool ___m_ApplyShapeToPosition_10;
  2050. public:
  2051. inline static int32_t get_offset_of_m_Particle_0() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_Particle_0)); }
  2052. inline Particle_t1882894987 get_m_Particle_0() const { return ___m_Particle_0; }
  2053. inline Particle_t1882894987 * get_address_of_m_Particle_0() { return &___m_Particle_0; }
  2054. inline void set_m_Particle_0(Particle_t1882894987 value)
  2055. {
  2056. ___m_Particle_0 = value;
  2057. }
  2058. inline static int32_t get_offset_of_m_PositionSet_1() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_PositionSet_1)); }
  2059. inline bool get_m_PositionSet_1() const { return ___m_PositionSet_1; }
  2060. inline bool* get_address_of_m_PositionSet_1() { return &___m_PositionSet_1; }
  2061. inline void set_m_PositionSet_1(bool value)
  2062. {
  2063. ___m_PositionSet_1 = value;
  2064. }
  2065. inline static int32_t get_offset_of_m_VelocitySet_2() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_VelocitySet_2)); }
  2066. inline bool get_m_VelocitySet_2() const { return ___m_VelocitySet_2; }
  2067. inline bool* get_address_of_m_VelocitySet_2() { return &___m_VelocitySet_2; }
  2068. inline void set_m_VelocitySet_2(bool value)
  2069. {
  2070. ___m_VelocitySet_2 = value;
  2071. }
  2072. inline static int32_t get_offset_of_m_AxisOfRotationSet_3() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_AxisOfRotationSet_3)); }
  2073. inline bool get_m_AxisOfRotationSet_3() const { return ___m_AxisOfRotationSet_3; }
  2074. inline bool* get_address_of_m_AxisOfRotationSet_3() { return &___m_AxisOfRotationSet_3; }
  2075. inline void set_m_AxisOfRotationSet_3(bool value)
  2076. {
  2077. ___m_AxisOfRotationSet_3 = value;
  2078. }
  2079. inline static int32_t get_offset_of_m_RotationSet_4() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_RotationSet_4)); }
  2080. inline bool get_m_RotationSet_4() const { return ___m_RotationSet_4; }
  2081. inline bool* get_address_of_m_RotationSet_4() { return &___m_RotationSet_4; }
  2082. inline void set_m_RotationSet_4(bool value)
  2083. {
  2084. ___m_RotationSet_4 = value;
  2085. }
  2086. inline static int32_t get_offset_of_m_AngularVelocitySet_5() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_AngularVelocitySet_5)); }
  2087. inline bool get_m_AngularVelocitySet_5() const { return ___m_AngularVelocitySet_5; }
  2088. inline bool* get_address_of_m_AngularVelocitySet_5() { return &___m_AngularVelocitySet_5; }
  2089. inline void set_m_AngularVelocitySet_5(bool value)
  2090. {
  2091. ___m_AngularVelocitySet_5 = value;
  2092. }
  2093. inline static int32_t get_offset_of_m_StartSizeSet_6() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_StartSizeSet_6)); }
  2094. inline bool get_m_StartSizeSet_6() const { return ___m_StartSizeSet_6; }
  2095. inline bool* get_address_of_m_StartSizeSet_6() { return &___m_StartSizeSet_6; }
  2096. inline void set_m_StartSizeSet_6(bool value)
  2097. {
  2098. ___m_StartSizeSet_6 = value;
  2099. }
  2100. inline static int32_t get_offset_of_m_StartColorSet_7() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_StartColorSet_7)); }
  2101. inline bool get_m_StartColorSet_7() const { return ___m_StartColorSet_7; }
  2102. inline bool* get_address_of_m_StartColorSet_7() { return &___m_StartColorSet_7; }
  2103. inline void set_m_StartColorSet_7(bool value)
  2104. {
  2105. ___m_StartColorSet_7 = value;
  2106. }
  2107. inline static int32_t get_offset_of_m_RandomSeedSet_8() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_RandomSeedSet_8)); }
  2108. inline bool get_m_RandomSeedSet_8() const { return ___m_RandomSeedSet_8; }
  2109. inline bool* get_address_of_m_RandomSeedSet_8() { return &___m_RandomSeedSet_8; }
  2110. inline void set_m_RandomSeedSet_8(bool value)
  2111. {
  2112. ___m_RandomSeedSet_8 = value;
  2113. }
  2114. inline static int32_t get_offset_of_m_StartLifetimeSet_9() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_StartLifetimeSet_9)); }
  2115. inline bool get_m_StartLifetimeSet_9() const { return ___m_StartLifetimeSet_9; }
  2116. inline bool* get_address_of_m_StartLifetimeSet_9() { return &___m_StartLifetimeSet_9; }
  2117. inline void set_m_StartLifetimeSet_9(bool value)
  2118. {
  2119. ___m_StartLifetimeSet_9 = value;
  2120. }
  2121. inline static int32_t get_offset_of_m_ApplyShapeToPosition_10() { return static_cast<int32_t>(offsetof(EmitParams_t2216423628, ___m_ApplyShapeToPosition_10)); }
  2122. inline bool get_m_ApplyShapeToPosition_10() const { return ___m_ApplyShapeToPosition_10; }
  2123. inline bool* get_address_of_m_ApplyShapeToPosition_10() { return &___m_ApplyShapeToPosition_10; }
  2124. inline void set_m_ApplyShapeToPosition_10(bool value)
  2125. {
  2126. ___m_ApplyShapeToPosition_10 = value;
  2127. }
  2128. };
  2129. #ifdef __clang__
  2130. #pragma clang diagnostic pop
  2131. #endif
  2132. // Native definition for P/Invoke marshalling of UnityEngine.ParticleSystem/EmitParams
  2133. struct EmitParams_t2216423628_marshaled_pinvoke
  2134. {
  2135. Particle_t1882894987 ___m_Particle_0;
  2136. int32_t ___m_PositionSet_1;
  2137. int32_t ___m_VelocitySet_2;
  2138. int32_t ___m_AxisOfRotationSet_3;
  2139. int32_t ___m_RotationSet_4;
  2140. int32_t ___m_AngularVelocitySet_5;
  2141. int32_t ___m_StartSizeSet_6;
  2142. int32_t ___m_StartColorSet_7;
  2143. int32_t ___m_RandomSeedSet_8;
  2144. int32_t ___m_StartLifetimeSet_9;
  2145. int32_t ___m_ApplyShapeToPosition_10;
  2146. };
  2147. // Native definition for COM marshalling of UnityEngine.ParticleSystem/EmitParams
  2148. struct EmitParams_t2216423628_marshaled_com
  2149. {
  2150. Particle_t1882894987 ___m_Particle_0;
  2151. int32_t ___m_PositionSet_1;
  2152. int32_t ___m_VelocitySet_2;
  2153. int32_t ___m_AxisOfRotationSet_3;
  2154. int32_t ___m_RotationSet_4;
  2155. int32_t ___m_AngularVelocitySet_5;
  2156. int32_t ___m_StartSizeSet_6;
  2157. int32_t ___m_StartColorSet_7;
  2158. int32_t ___m_RandomSeedSet_8;
  2159. int32_t ___m_StartLifetimeSet_9;
  2160. int32_t ___m_ApplyShapeToPosition_10;
  2161. };
  2162. #endif // EMITPARAMS_T2216423628_H
  2163. #ifndef PARTICLESYSTEM_T1800779281_H
  2164. #define PARTICLESYSTEM_T1800779281_H
  2165. #ifdef __clang__
  2166. #pragma clang diagnostic push
  2167. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2168. #pragma clang diagnostic ignored "-Wunused-variable"
  2169. #endif
  2170. // UnityEngine.ParticleSystem
  2171. struct ParticleSystem_t1800779281 : public Component_t1923634451
  2172. {
  2173. public:
  2174. public:
  2175. };
  2176. #ifdef __clang__
  2177. #pragma clang diagnostic pop
  2178. #endif
  2179. #endif // PARTICLESYSTEM_T1800779281_H
  2180. #ifndef RENDERER_T2627027031_H
  2181. #define RENDERER_T2627027031_H
  2182. #ifdef __clang__
  2183. #pragma clang diagnostic push
  2184. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2185. #pragma clang diagnostic ignored "-Wunused-variable"
  2186. #endif
  2187. // UnityEngine.Renderer
  2188. struct Renderer_t2627027031 : public Component_t1923634451
  2189. {
  2190. public:
  2191. public:
  2192. };
  2193. #ifdef __clang__
  2194. #pragma clang diagnostic pop
  2195. #endif
  2196. #endif // RENDERER_T2627027031_H
  2197. #ifndef PARTICLESYSTEMRENDERER_T2065813411_H
  2198. #define PARTICLESYSTEMRENDERER_T2065813411_H
  2199. #ifdef __clang__
  2200. #pragma clang diagnostic push
  2201. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2202. #pragma clang diagnostic ignored "-Wunused-variable"
  2203. #endif
  2204. // UnityEngine.ParticleSystemRenderer
  2205. struct ParticleSystemRenderer_t2065813411 : public Renderer_t2627027031
  2206. {
  2207. public:
  2208. public:
  2209. };
  2210. #ifdef __clang__
  2211. #pragma clang diagnostic pop
  2212. #endif
  2213. #endif // PARTICLESYSTEMRENDERER_T2065813411_H
  2214. // UnityEngine.ParticleSystem/Particle[]
  2215. struct ParticleU5BU5D_t3069227754 : public RuntimeArray
  2216. {
  2217. public:
  2218. ALIGN_FIELD (8) Particle_t1882894987 m_Items[1];
  2219. public:
  2220. inline Particle_t1882894987 GetAt(il2cpp_array_size_t index) const
  2221. {
  2222. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2223. return m_Items[index];
  2224. }
  2225. inline Particle_t1882894987 * GetAddressAt(il2cpp_array_size_t index)
  2226. {
  2227. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2228. return m_Items + index;
  2229. }
  2230. inline void SetAt(il2cpp_array_size_t index, Particle_t1882894987 value)
  2231. {
  2232. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2233. m_Items[index] = value;
  2234. }
  2235. inline Particle_t1882894987 GetAtUnchecked(il2cpp_array_size_t index) const
  2236. {
  2237. return m_Items[index];
  2238. }
  2239. inline Particle_t1882894987 * GetAddressAtUnchecked(il2cpp_array_size_t index)
  2240. {
  2241. return m_Items + index;
  2242. }
  2243. inline void SetAtUnchecked(il2cpp_array_size_t index, Particle_t1882894987 value)
  2244. {
  2245. m_Items[index] = value;
  2246. }
  2247. };
  2248. extern "C" void AnimationCurve_t3046754366_marshal_pinvoke(const AnimationCurve_t3046754366& unmarshaled, AnimationCurve_t3046754366_marshaled_pinvoke& marshaled);
  2249. extern "C" void AnimationCurve_t3046754366_marshal_pinvoke_back(const AnimationCurve_t3046754366_marshaled_pinvoke& marshaled, AnimationCurve_t3046754366& unmarshaled);
  2250. extern "C" void AnimationCurve_t3046754366_marshal_pinvoke_cleanup(AnimationCurve_t3046754366_marshaled_pinvoke& marshaled);
  2251. extern "C" void AnimationCurve_t3046754366_marshal_com(const AnimationCurve_t3046754366& unmarshaled, AnimationCurve_t3046754366_marshaled_com& marshaled);
  2252. extern "C" void AnimationCurve_t3046754366_marshal_com_back(const AnimationCurve_t3046754366_marshaled_com& marshaled, AnimationCurve_t3046754366& unmarshaled);
  2253. extern "C" void AnimationCurve_t3046754366_marshal_com_cleanup(AnimationCurve_t3046754366_marshaled_com& marshaled);
  2254. // System.Void UnityEngine.Component::.ctor()
  2255. extern "C" IL2CPP_METHOD_ATTR void Component__ctor_m1928064382 (Component_t1923634451 * __this, const RuntimeMethod* method);
  2256. // UnityEngine.ParticleSystem/EmissionModule UnityEngine.ParticleSystem::get_emission()
  2257. extern "C" IL2CPP_METHOD_ATTR EmissionModule_t311448003 ParticleSystem_get_emission_m1034302947 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method);
  2258. // System.Boolean UnityEngine.ParticleSystem/EmissionModule::get_enabled()
  2259. extern "C" IL2CPP_METHOD_ATTR bool EmissionModule_get_enabled_m887932283 (EmissionModule_t311448003 * __this, const RuntimeMethod* method);
  2260. // System.Void UnityEngine.ParticleSystem/EmissionModule::set_enabled(System.Boolean)
  2261. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_set_enabled_m353945573 (EmissionModule_t311448003 * __this, bool ___value0, const RuntimeMethod* method);
  2262. // System.Single UnityEngine.ParticleSystem/EmissionModule::get_rateOverTimeMultiplier()
  2263. extern "C" IL2CPP_METHOD_ATTR float EmissionModule_get_rateOverTimeMultiplier_m1669775033 (EmissionModule_t311448003 * __this, const RuntimeMethod* method);
  2264. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/MinMaxCurve::op_Implicit(System.Single)
  2265. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 MinMaxCurve_op_Implicit_m2087694379 (RuntimeObject * __this /* static, unused */, float ___constant0, const RuntimeMethod* method);
  2266. // System.Void UnityEngine.ParticleSystem/EmissionModule::set_rateOverTime(UnityEngine.ParticleSystem/MinMaxCurve)
  2267. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_set_rateOverTime_m3001949402 (EmissionModule_t311448003 * __this, MinMaxCurve_t1067599125 ___value0, const RuntimeMethod* method);
  2268. // System.Void UnityEngine.ParticleSystem::INTERNAL_get_startColor(UnityEngine.Color&)
  2269. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_get_startColor_m3512072408 (ParticleSystem_t1800779281 * __this, Color_t2555686324 * ___value0, const RuntimeMethod* method);
  2270. // System.Void UnityEngine.ParticleSystem::INTERNAL_set_startColor(UnityEngine.Color&)
  2271. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_set_startColor_m838560501 (ParticleSystem_t1800779281 * __this, Color_t2555686324 * ___value0, const RuntimeMethod* method);
  2272. // System.Void UnityEngine.ParticleSystem::INTERNAL_get_startRotation3D(UnityEngine.Vector3&)
  2273. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_get_startRotation3D_m3074810467 (ParticleSystem_t1800779281 * __this, Vector3_t3722313464 * ___value0, const RuntimeMethod* method);
  2274. // System.Void UnityEngine.ParticleSystem::INTERNAL_set_startRotation3D(UnityEngine.Vector3&)
  2275. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_set_startRotation3D_m1436823731 (ParticleSystem_t1800779281 * __this, Vector3_t3722313464 * ___value0, const RuntimeMethod* method);
  2276. // System.Void UnityEngine.ParticleSystem/MainModule::.ctor(UnityEngine.ParticleSystem)
  2277. extern "C" IL2CPP_METHOD_ATTR void MainModule__ctor_m1745438521 (MainModule_t2320046318 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2278. // System.Void UnityEngine.ParticleSystem/EmissionModule::.ctor(UnityEngine.ParticleSystem)
  2279. extern "C" IL2CPP_METHOD_ATTR void EmissionModule__ctor_m3908790904 (EmissionModule_t311448003 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2280. // System.Void UnityEngine.ParticleSystem/ShapeModule::.ctor(UnityEngine.ParticleSystem)
  2281. extern "C" IL2CPP_METHOD_ATTR void ShapeModule__ctor_m3109297265 (ShapeModule_t3608330829 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2282. // System.Void UnityEngine.ParticleSystem/VelocityOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  2283. extern "C" IL2CPP_METHOD_ATTR void VelocityOverLifetimeModule__ctor_m1651720034 (VelocityOverLifetimeModule_t1982232382 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2284. // System.Void UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  2285. extern "C" IL2CPP_METHOD_ATTR void LimitVelocityOverLifetimeModule__ctor_m1168296975 (LimitVelocityOverLifetimeModule_t686589569 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2286. // System.Void UnityEngine.ParticleSystem/InheritVelocityModule::.ctor(UnityEngine.ParticleSystem)
  2287. extern "C" IL2CPP_METHOD_ATTR void InheritVelocityModule__ctor_m2528283153 (InheritVelocityModule_t3940044026 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2288. // System.Void UnityEngine.ParticleSystem/ForceOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  2289. extern "C" IL2CPP_METHOD_ATTR void ForceOverLifetimeModule__ctor_m3809537274 (ForceOverLifetimeModule_t4029962193 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2290. // System.Void UnityEngine.ParticleSystem/ColorOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  2291. extern "C" IL2CPP_METHOD_ATTR void ColorOverLifetimeModule__ctor_m180503459 (ColorOverLifetimeModule_t3039228654 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2292. // System.Void UnityEngine.ParticleSystem/ColorBySpeedModule::.ctor(UnityEngine.ParticleSystem)
  2293. extern "C" IL2CPP_METHOD_ATTR void ColorBySpeedModule__ctor_m806377702 (ColorBySpeedModule_t3740209408 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2294. // System.Void UnityEngine.ParticleSystem/SizeOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  2295. extern "C" IL2CPP_METHOD_ATTR void SizeOverLifetimeModule__ctor_m2691925398 (SizeOverLifetimeModule_t1101123803 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2296. // System.Void UnityEngine.ParticleSystem/SizeBySpeedModule::.ctor(UnityEngine.ParticleSystem)
  2297. extern "C" IL2CPP_METHOD_ATTR void SizeBySpeedModule__ctor_m537593350 (SizeBySpeedModule_t1515126846 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2298. // System.Void UnityEngine.ParticleSystem/RotationOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  2299. extern "C" IL2CPP_METHOD_ATTR void RotationOverLifetimeModule__ctor_m1297284518 (RotationOverLifetimeModule_t1164372224 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2300. // System.Void UnityEngine.ParticleSystem/RotationBySpeedModule::.ctor(UnityEngine.ParticleSystem)
  2301. extern "C" IL2CPP_METHOD_ATTR void RotationBySpeedModule__ctor_m1387209970 (RotationBySpeedModule_t3497409583 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2302. // System.Void UnityEngine.ParticleSystem/ExternalForcesModule::.ctor(UnityEngine.ParticleSystem)
  2303. extern "C" IL2CPP_METHOD_ATTR void ExternalForcesModule__ctor_m3593198071 (ExternalForcesModule_t1424795933 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2304. // System.Void UnityEngine.ParticleSystem/NoiseModule::.ctor(UnityEngine.ParticleSystem)
  2305. extern "C" IL2CPP_METHOD_ATTR void NoiseModule__ctor_m4073267536 (NoiseModule_t962525627 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2306. // System.Void UnityEngine.ParticleSystem/CollisionModule::.ctor(UnityEngine.ParticleSystem)
  2307. extern "C" IL2CPP_METHOD_ATTR void CollisionModule__ctor_m247283919 (CollisionModule_t1950979710 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2308. // System.Void UnityEngine.ParticleSystem/TriggerModule::.ctor(UnityEngine.ParticleSystem)
  2309. extern "C" IL2CPP_METHOD_ATTR void TriggerModule__ctor_m3759203166 (TriggerModule_t1157986180 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2310. // System.Void UnityEngine.ParticleSystem/SubEmittersModule::.ctor(UnityEngine.ParticleSystem)
  2311. extern "C" IL2CPP_METHOD_ATTR void SubEmittersModule__ctor_m2064557730 (SubEmittersModule_t903775760 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2312. // System.Void UnityEngine.ParticleSystem/TextureSheetAnimationModule::.ctor(UnityEngine.ParticleSystem)
  2313. extern "C" IL2CPP_METHOD_ATTR void TextureSheetAnimationModule__ctor_m932769825 (TextureSheetAnimationModule_t738696839 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2314. // System.Void UnityEngine.ParticleSystem/LightsModule::.ctor(UnityEngine.ParticleSystem)
  2315. extern "C" IL2CPP_METHOD_ATTR void LightsModule__ctor_m2112231155 (LightsModule_t3616883284 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2316. // System.Void UnityEngine.ParticleSystem/TrailModule::.ctor(UnityEngine.ParticleSystem)
  2317. extern "C" IL2CPP_METHOD_ATTR void TrailModule__ctor_m1147544692 (TrailModule_t2282589118 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2318. // System.Void UnityEngine.ParticleSystem/CustomDataModule::.ctor(UnityEngine.ParticleSystem)
  2319. extern "C" IL2CPP_METHOD_ATTR void CustomDataModule__ctor_m3151489217 (CustomDataModule_t2135829708 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method);
  2320. // System.Void UnityEngine.ParticleSystem::SetCustomParticleDataInternal(System.Object,System.Int32)
  2321. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_SetCustomParticleDataInternal_m2473486621 (ParticleSystem_t1800779281 * __this, RuntimeObject * ___customData0, int32_t ___streamIndex1, const RuntimeMethod* method);
  2322. // System.Int32 UnityEngine.ParticleSystem::GetCustomParticleDataInternal(System.Object,System.Int32)
  2323. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_GetCustomParticleDataInternal_m3864058276 (ParticleSystem_t1800779281 * __this, RuntimeObject * ___customData0, int32_t ___streamIndex1, const RuntimeMethod* method);
  2324. // System.Void UnityEngine.ParticleSystem::Simulate(System.Single,System.Boolean,System.Boolean,System.Boolean)
  2325. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Simulate_m1921398215 (ParticleSystem_t1800779281 * __this, float ___t0, bool ___withChildren1, bool ___restart2, bool ___fixedTimeStep3, const RuntimeMethod* method);
  2326. // System.Void UnityEngine.ParticleSystem::Play(System.Boolean)
  2327. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Play_m163824593 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method);
  2328. // System.Void UnityEngine.ParticleSystem::Pause(System.Boolean)
  2329. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Pause_m19169084 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method);
  2330. // System.Void UnityEngine.ParticleSystem::Stop(System.Boolean,UnityEngine.ParticleSystemStopBehavior)
  2331. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Stop_m3396581118 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, int32_t ___stopBehavior1, const RuntimeMethod* method);
  2332. // System.Void UnityEngine.ParticleSystem::Clear(System.Boolean)
  2333. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Clear_m2603704560 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method);
  2334. // System.Boolean UnityEngine.ParticleSystem::IsAlive(System.Boolean)
  2335. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_IsAlive_m725083112 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method);
  2336. // System.Void UnityEngine.ParticleSystem::INTERNAL_CALL_Emit(UnityEngine.ParticleSystem,System.Int32)
  2337. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_CALL_Emit_m662166748 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___self0, int32_t ___count1, const RuntimeMethod* method);
  2338. // System.Void UnityEngine.ParticleSystem/Particle::set_position(UnityEngine.Vector3)
  2339. extern "C" IL2CPP_METHOD_ATTR void Particle_set_position_m4147191379 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method);
  2340. // System.Void UnityEngine.ParticleSystem/Particle::set_velocity(UnityEngine.Vector3)
  2341. extern "C" IL2CPP_METHOD_ATTR void Particle_set_velocity_m1686335204 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method);
  2342. // System.Void UnityEngine.ParticleSystem/Particle::set_lifetime(System.Single)
  2343. extern "C" IL2CPP_METHOD_ATTR void Particle_set_lifetime_m1971908220 (Particle_t1882894987 * __this, float ___value0, const RuntimeMethod* method);
  2344. // System.Void UnityEngine.ParticleSystem/Particle::set_startLifetime(System.Single)
  2345. extern "C" IL2CPP_METHOD_ATTR void Particle_set_startLifetime_m2608171500 (Particle_t1882894987 * __this, float ___value0, const RuntimeMethod* method);
  2346. // System.Void UnityEngine.ParticleSystem/Particle::set_startSize(System.Single)
  2347. extern "C" IL2CPP_METHOD_ATTR void Particle_set_startSize_m2554682920 (Particle_t1882894987 * __this, float ___value0, const RuntimeMethod* method);
  2348. // UnityEngine.Vector3 UnityEngine.Vector3::get_zero()
  2349. extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Vector3_get_zero_m1409827619 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  2350. // System.Void UnityEngine.ParticleSystem/Particle::set_rotation3D(UnityEngine.Vector3)
  2351. extern "C" IL2CPP_METHOD_ATTR void Particle_set_rotation3D_m2156157200 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method);
  2352. // System.Void UnityEngine.ParticleSystem/Particle::set_angularVelocity3D(UnityEngine.Vector3)
  2353. extern "C" IL2CPP_METHOD_ATTR void Particle_set_angularVelocity3D_m3163963446 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method);
  2354. // System.Void UnityEngine.ParticleSystem/Particle::set_startColor(UnityEngine.Color32)
  2355. extern "C" IL2CPP_METHOD_ATTR void Particle_set_startColor_m3825027702 (Particle_t1882894987 * __this, Color32_t2600501292 ___value0, const RuntimeMethod* method);
  2356. // System.Void UnityEngine.ParticleSystem/Particle::set_randomSeed(System.UInt32)
  2357. extern "C" IL2CPP_METHOD_ATTR void Particle_set_randomSeed_m2900137887 (Particle_t1882894987 * __this, uint32_t ___value0, const RuntimeMethod* method);
  2358. // System.Void UnityEngine.ParticleSystem::Internal_EmitOld(UnityEngine.ParticleSystem/Particle&)
  2359. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Internal_EmitOld_m3511379528 (ParticleSystem_t1800779281 * __this, Particle_t1882894987 * ___particle0, const RuntimeMethod* method);
  2360. // System.Void UnityEngine.ParticleSystem::Internal_Emit(UnityEngine.ParticleSystem/EmitParams&,System.Int32)
  2361. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Internal_Emit_m2240046946 (ParticleSystem_t1800779281 * __this, EmitParams_t2216423628 * ___emitParams0, int32_t ___count1, const RuntimeMethod* method);
  2362. // System.Void UnityEngine.ParticleSystem/EmissionModule::SetEnabled(UnityEngine.ParticleSystem,System.Boolean)
  2363. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_SetEnabled_m1150129533 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, bool ___value1, const RuntimeMethod* method);
  2364. // System.Boolean UnityEngine.ParticleSystem/EmissionModule::GetEnabled(UnityEngine.ParticleSystem)
  2365. extern "C" IL2CPP_METHOD_ATTR bool EmissionModule_GetEnabled_m3897745754 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2366. // System.Void UnityEngine.ParticleSystem/EmissionModule::SetRateOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  2367. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_SetRateOverTime_m1878531883 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method);
  2368. // System.Void UnityEngine.ParticleSystem/EmissionModule::GetRateOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  2369. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_GetRateOverTime_m4185674785 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method);
  2370. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/EmissionModule::get_rateOverTime()
  2371. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 EmissionModule_get_rateOverTime_m865519278 (EmissionModule_t311448003 * __this, const RuntimeMethod* method);
  2372. // System.Single UnityEngine.ParticleSystem/EmissionModule::GetRateOverTimeMultiplier(UnityEngine.ParticleSystem)
  2373. extern "C" IL2CPP_METHOD_ATTR float EmissionModule_GetRateOverTimeMultiplier_m1715739015 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2374. // System.Single UnityEngine.ParticleSystem/MainModule::GetDuration(UnityEngine.ParticleSystem)
  2375. extern "C" IL2CPP_METHOD_ATTR float MainModule_GetDuration_m471811572 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2376. // System.Single UnityEngine.ParticleSystem/MainModule::get_duration()
  2377. extern "C" IL2CPP_METHOD_ATTR float MainModule_get_duration_m2362826759 (MainModule_t2320046318 * __this, const RuntimeMethod* method);
  2378. // System.Boolean UnityEngine.ParticleSystem/MainModule::GetLoop(UnityEngine.ParticleSystem)
  2379. extern "C" IL2CPP_METHOD_ATTR bool MainModule_GetLoop_m1744387122 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2380. // System.Boolean UnityEngine.ParticleSystem/MainModule::get_loop()
  2381. extern "C" IL2CPP_METHOD_ATTR bool MainModule_get_loop_m2299304680 (MainModule_t2320046318 * __this, const RuntimeMethod* method);
  2382. // System.Void UnityEngine.ParticleSystem/MainModule::GetStartDelay(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  2383. extern "C" IL2CPP_METHOD_ATTR void MainModule_GetStartDelay_m1220620588 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method);
  2384. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/MainModule::get_startDelay()
  2385. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 MainModule_get_startDelay_m23340732 (MainModule_t2320046318 * __this, const RuntimeMethod* method);
  2386. // System.Void UnityEngine.ParticleSystem/MainModule::GetStartLifetime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  2387. extern "C" IL2CPP_METHOD_ATTR void MainModule_GetStartLifetime_m3113513190 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method);
  2388. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/MainModule::get_startLifetime()
  2389. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 MainModule_get_startLifetime_m2343501481 (MainModule_t2320046318 * __this, const RuntimeMethod* method);
  2390. // UnityEngine.ParticleSystemSimulationSpace UnityEngine.ParticleSystem/MainModule::GetSimulationSpace(UnityEngine.ParticleSystem)
  2391. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_GetSimulationSpace_m148461669 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2392. // UnityEngine.ParticleSystemSimulationSpace UnityEngine.ParticleSystem/MainModule::get_simulationSpace()
  2393. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_get_simulationSpace_m2279134456 (MainModule_t2320046318 * __this, const RuntimeMethod* method);
  2394. // UnityEngine.ParticleSystemScalingMode UnityEngine.ParticleSystem/MainModule::GetScalingMode(UnityEngine.ParticleSystem)
  2395. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_GetScalingMode_m990858662 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2396. // UnityEngine.ParticleSystemScalingMode UnityEngine.ParticleSystem/MainModule::get_scalingMode()
  2397. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_get_scalingMode_m747393725 (MainModule_t2320046318 * __this, const RuntimeMethod* method);
  2398. // System.Void UnityEngine.ParticleSystem/MainModule::SetScalingMode(UnityEngine.ParticleSystem,UnityEngine.ParticleSystemScalingMode)
  2399. extern "C" IL2CPP_METHOD_ATTR void MainModule_SetScalingMode_m15816227 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, int32_t ___value1, const RuntimeMethod* method);
  2400. // System.Void UnityEngine.ParticleSystem/MainModule::set_scalingMode(UnityEngine.ParticleSystemScalingMode)
  2401. extern "C" IL2CPP_METHOD_ATTR void MainModule_set_scalingMode_m915979420 (MainModule_t2320046318 * __this, int32_t ___value0, const RuntimeMethod* method);
  2402. // System.Int32 UnityEngine.ParticleSystem/MainModule::GetMaxParticles(UnityEngine.ParticleSystem)
  2403. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_GetMaxParticles_m2130637551 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2404. // System.Int32 UnityEngine.ParticleSystem/MainModule::get_maxParticles()
  2405. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_get_maxParticles_m2105979121 (MainModule_t2320046318 * __this, const RuntimeMethod* method);
  2406. // System.Void UnityEngine.ParticleSystem/MainModule::SetMaxParticles(UnityEngine.ParticleSystem,System.Int32)
  2407. extern "C" IL2CPP_METHOD_ATTR void MainModule_SetMaxParticles_m2916351937 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, int32_t ___value1, const RuntimeMethod* method);
  2408. // System.Void UnityEngine.ParticleSystem/MainModule::set_maxParticles(System.Int32)
  2409. extern "C" IL2CPP_METHOD_ATTR void MainModule_set_maxParticles_m3383762699 (MainModule_t2320046318 * __this, int32_t ___value0, const RuntimeMethod* method);
  2410. // System.Void UnityEngine.AnimationCurve::.ctor()
  2411. extern "C" IL2CPP_METHOD_ATTR void AnimationCurve__ctor_m3000526466 (AnimationCurve_t3046754366 * __this, const RuntimeMethod* method);
  2412. // System.Void UnityEngine.ParticleSystem/MinMaxCurve::.ctor(System.Single)
  2413. extern "C" IL2CPP_METHOD_ATTR void MinMaxCurve__ctor_m1734431933 (MinMaxCurve_t1067599125 * __this, float ___constant0, const RuntimeMethod* method);
  2414. // UnityEngine.AnimationCurve UnityEngine.ParticleSystem/MinMaxCurve::get_curveMin()
  2415. extern "C" IL2CPP_METHOD_ATTR AnimationCurve_t3046754366 * MinMaxCurve_get_curveMin_m1577567431 (MinMaxCurve_t1067599125 * __this, const RuntimeMethod* method);
  2416. // System.Single UnityEngine.ParticleSystem/MinMaxCurve::get_constant()
  2417. extern "C" IL2CPP_METHOD_ATTR float MinMaxCurve_get_constant_m2963124720 (MinMaxCurve_t1067599125 * __this, const RuntimeMethod* method);
  2418. // UnityEngine.AnimationCurve UnityEngine.ParticleSystem/MinMaxCurve::get_curve()
  2419. extern "C" IL2CPP_METHOD_ATTR AnimationCurve_t3046754366 * MinMaxCurve_get_curve_m4228822969 (MinMaxCurve_t1067599125 * __this, const RuntimeMethod* method);
  2420. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::get_position()
  2421. extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Particle_get_position_m855792854 (Particle_t1882894987 * __this, const RuntimeMethod* method);
  2422. // System.Single UnityEngine.ParticleSystem/Particle::get_remainingLifetime()
  2423. extern "C" IL2CPP_METHOD_ATTR float Particle_get_remainingLifetime_m4053779941 (Particle_t1882894987 * __this, const RuntimeMethod* method);
  2424. // System.Single UnityEngine.ParticleSystem/Particle::get_startLifetime()
  2425. extern "C" IL2CPP_METHOD_ATTR float Particle_get_startLifetime_m1587267174 (Particle_t1882894987 * __this, const RuntimeMethod* method);
  2426. // System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single)
  2427. extern "C" IL2CPP_METHOD_ATTR void Vector3__ctor_m3353183577 (Vector3_t3722313464 * __this, float p0, float p1, float p2, const RuntimeMethod* method);
  2428. // System.Single UnityEngine.ParticleSystem/Particle::get_rotation()
  2429. extern "C" IL2CPP_METHOD_ATTR float Particle_get_rotation_m3158189621 (Particle_t1882894987 * __this, const RuntimeMethod* method);
  2430. // UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(UnityEngine.Vector3,System.Single)
  2431. extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Vector3_op_Multiply_m3376773913 (RuntimeObject * __this /* static, unused */, Vector3_t3722313464 p0, float p1, const RuntimeMethod* method);
  2432. // System.Single UnityEngine.ParticleSystem/Particle::GetCurrentSize(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&)
  2433. extern "C" IL2CPP_METHOD_ATTR float Particle_GetCurrentSize_m1924048853 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, Particle_t1882894987 * ___particle1, const RuntimeMethod* method);
  2434. // System.Single UnityEngine.ParticleSystem/Particle::GetCurrentSize(UnityEngine.ParticleSystem)
  2435. extern "C" IL2CPP_METHOD_ATTR float Particle_GetCurrentSize_m1620066418 (Particle_t1882894987 * __this, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2436. // UnityEngine.Color32 UnityEngine.ParticleSystem/Particle::GetCurrentColor(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&)
  2437. extern "C" IL2CPP_METHOD_ATTR Color32_t2600501292 Particle_GetCurrentColor_m4248221110 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, Particle_t1882894987 * ___particle1, const RuntimeMethod* method);
  2438. // UnityEngine.Color32 UnityEngine.ParticleSystem/Particle::GetCurrentColor(UnityEngine.ParticleSystem)
  2439. extern "C" IL2CPP_METHOD_ATTR Color32_t2600501292 Particle_GetCurrentColor_m1246398760 (Particle_t1882894987 * __this, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2440. // System.Void UnityEngine.ParticleSystem/Particle::INTERNAL_CALL_GetCurrentColor(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&,UnityEngine.Color32&)
  2441. extern "C" IL2CPP_METHOD_ATTR void Particle_INTERNAL_CALL_GetCurrentColor_m1858777858 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, Particle_t1882894987 * ___particle1, Color32_t2600501292 * ___value2, const RuntimeMethod* method);
  2442. // System.Boolean UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetEnabled(UnityEngine.ParticleSystem)
  2443. extern "C" IL2CPP_METHOD_ATTR bool TextureSheetAnimationModule_GetEnabled_m2810172049 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2444. // System.Boolean UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_enabled()
  2445. extern "C" IL2CPP_METHOD_ATTR bool TextureSheetAnimationModule_get_enabled_m2099392666 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method);
  2446. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetNumTilesX(UnityEngine.ParticleSystem)
  2447. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetNumTilesX_m1010355971 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2448. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_numTilesX()
  2449. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_numTilesX_m3782231855 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method);
  2450. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetNumTilesY(UnityEngine.ParticleSystem)
  2451. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetNumTilesY_m2021848348 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2452. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_numTilesY()
  2453. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_numTilesY_m1053348500 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method);
  2454. // UnityEngine.ParticleSystemAnimationType UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetAnimationType(UnityEngine.ParticleSystem)
  2455. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetAnimationType_m2914365387 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2456. // UnityEngine.ParticleSystemAnimationType UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_animation()
  2457. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_animation_m2249866915 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method);
  2458. // System.Void UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetFrameOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  2459. extern "C" IL2CPP_METHOD_ATTR void TextureSheetAnimationModule_GetFrameOverTime_m371108956 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method);
  2460. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_frameOverTime()
  2461. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 TextureSheetAnimationModule_get_frameOverTime_m3059492834 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method);
  2462. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetCycleCount(UnityEngine.ParticleSystem)
  2463. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetCycleCount_m4232892544 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2464. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_cycleCount()
  2465. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_cycleCount_m1231605148 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method);
  2466. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetRowIndex(UnityEngine.ParticleSystem)
  2467. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetRowIndex_m3246918826 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method);
  2468. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_rowIndex()
  2469. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_rowIndex_m1602825482 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method);
  2470. #ifdef __clang__
  2471. #pragma clang diagnostic push
  2472. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2473. #pragma clang diagnostic ignored "-Wunused-variable"
  2474. #endif
  2475. #ifdef __clang__
  2476. #pragma clang diagnostic pop
  2477. #endif
  2478. #ifdef __clang__
  2479. #pragma clang diagnostic push
  2480. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2481. #pragma clang diagnostic ignored "-Wunused-variable"
  2482. #endif
  2483. // System.Void UnityEngine.ParticleSystem::.ctor()
  2484. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem__ctor_m666963298 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2485. {
  2486. {
  2487. Component__ctor_m1928064382(__this, /*hidden argument*/NULL);
  2488. return;
  2489. }
  2490. }
  2491. // System.Single UnityEngine.ParticleSystem::get_startDelay()
  2492. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_startDelay_m3263183500 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2493. {
  2494. typedef float (*ParticleSystem_get_startDelay_m3263183500_ftn) (ParticleSystem_t1800779281 *);
  2495. static ParticleSystem_get_startDelay_m3263183500_ftn _il2cpp_icall_func;
  2496. if (!_il2cpp_icall_func)
  2497. _il2cpp_icall_func = (ParticleSystem_get_startDelay_m3263183500_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_startDelay()");
  2498. float retVal = _il2cpp_icall_func(__this);
  2499. return retVal;
  2500. }
  2501. // System.Void UnityEngine.ParticleSystem::set_startDelay(System.Single)
  2502. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_startDelay_m775720951 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2503. {
  2504. typedef void (*ParticleSystem_set_startDelay_m775720951_ftn) (ParticleSystem_t1800779281 *, float);
  2505. static ParticleSystem_set_startDelay_m775720951_ftn _il2cpp_icall_func;
  2506. if (!_il2cpp_icall_func)
  2507. _il2cpp_icall_func = (ParticleSystem_set_startDelay_m775720951_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_startDelay(System.Single)");
  2508. _il2cpp_icall_func(__this, ___value0);
  2509. }
  2510. // System.Boolean UnityEngine.ParticleSystem::get_isPlaying()
  2511. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_isPlaying_m1820717466 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2512. {
  2513. typedef bool (*ParticleSystem_get_isPlaying_m1820717466_ftn) (ParticleSystem_t1800779281 *);
  2514. static ParticleSystem_get_isPlaying_m1820717466_ftn _il2cpp_icall_func;
  2515. if (!_il2cpp_icall_func)
  2516. _il2cpp_icall_func = (ParticleSystem_get_isPlaying_m1820717466_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_isPlaying()");
  2517. bool retVal = _il2cpp_icall_func(__this);
  2518. return retVal;
  2519. }
  2520. // System.Boolean UnityEngine.ParticleSystem::get_isEmitting()
  2521. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_isEmitting_m1260576394 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2522. {
  2523. typedef bool (*ParticleSystem_get_isEmitting_m1260576394_ftn) (ParticleSystem_t1800779281 *);
  2524. static ParticleSystem_get_isEmitting_m1260576394_ftn _il2cpp_icall_func;
  2525. if (!_il2cpp_icall_func)
  2526. _il2cpp_icall_func = (ParticleSystem_get_isEmitting_m1260576394_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_isEmitting()");
  2527. bool retVal = _il2cpp_icall_func(__this);
  2528. return retVal;
  2529. }
  2530. // System.Boolean UnityEngine.ParticleSystem::get_isStopped()
  2531. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_isStopped_m2419352023 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2532. {
  2533. typedef bool (*ParticleSystem_get_isStopped_m2419352023_ftn) (ParticleSystem_t1800779281 *);
  2534. static ParticleSystem_get_isStopped_m2419352023_ftn _il2cpp_icall_func;
  2535. if (!_il2cpp_icall_func)
  2536. _il2cpp_icall_func = (ParticleSystem_get_isStopped_m2419352023_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_isStopped()");
  2537. bool retVal = _il2cpp_icall_func(__this);
  2538. return retVal;
  2539. }
  2540. // System.Boolean UnityEngine.ParticleSystem::get_isPaused()
  2541. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_isPaused_m2269619741 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2542. {
  2543. typedef bool (*ParticleSystem_get_isPaused_m2269619741_ftn) (ParticleSystem_t1800779281 *);
  2544. static ParticleSystem_get_isPaused_m2269619741_ftn _il2cpp_icall_func;
  2545. if (!_il2cpp_icall_func)
  2546. _il2cpp_icall_func = (ParticleSystem_get_isPaused_m2269619741_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_isPaused()");
  2547. bool retVal = _il2cpp_icall_func(__this);
  2548. return retVal;
  2549. }
  2550. // System.Boolean UnityEngine.ParticleSystem::get_loop()
  2551. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_loop_m853409531 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2552. {
  2553. typedef bool (*ParticleSystem_get_loop_m853409531_ftn) (ParticleSystem_t1800779281 *);
  2554. static ParticleSystem_get_loop_m853409531_ftn _il2cpp_icall_func;
  2555. if (!_il2cpp_icall_func)
  2556. _il2cpp_icall_func = (ParticleSystem_get_loop_m853409531_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_loop()");
  2557. bool retVal = _il2cpp_icall_func(__this);
  2558. return retVal;
  2559. }
  2560. // System.Void UnityEngine.ParticleSystem::set_loop(System.Boolean)
  2561. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_loop_m1844457655 (ParticleSystem_t1800779281 * __this, bool ___value0, const RuntimeMethod* method)
  2562. {
  2563. typedef void (*ParticleSystem_set_loop_m1844457655_ftn) (ParticleSystem_t1800779281 *, bool);
  2564. static ParticleSystem_set_loop_m1844457655_ftn _il2cpp_icall_func;
  2565. if (!_il2cpp_icall_func)
  2566. _il2cpp_icall_func = (ParticleSystem_set_loop_m1844457655_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_loop(System.Boolean)");
  2567. _il2cpp_icall_func(__this, ___value0);
  2568. }
  2569. // System.Boolean UnityEngine.ParticleSystem::get_playOnAwake()
  2570. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_playOnAwake_m2874720655 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2571. {
  2572. typedef bool (*ParticleSystem_get_playOnAwake_m2874720655_ftn) (ParticleSystem_t1800779281 *);
  2573. static ParticleSystem_get_playOnAwake_m2874720655_ftn _il2cpp_icall_func;
  2574. if (!_il2cpp_icall_func)
  2575. _il2cpp_icall_func = (ParticleSystem_get_playOnAwake_m2874720655_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_playOnAwake()");
  2576. bool retVal = _il2cpp_icall_func(__this);
  2577. return retVal;
  2578. }
  2579. // System.Void UnityEngine.ParticleSystem::set_playOnAwake(System.Boolean)
  2580. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_playOnAwake_m2305509410 (ParticleSystem_t1800779281 * __this, bool ___value0, const RuntimeMethod* method)
  2581. {
  2582. typedef void (*ParticleSystem_set_playOnAwake_m2305509410_ftn) (ParticleSystem_t1800779281 *, bool);
  2583. static ParticleSystem_set_playOnAwake_m2305509410_ftn _il2cpp_icall_func;
  2584. if (!_il2cpp_icall_func)
  2585. _il2cpp_icall_func = (ParticleSystem_set_playOnAwake_m2305509410_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_playOnAwake(System.Boolean)");
  2586. _il2cpp_icall_func(__this, ___value0);
  2587. }
  2588. // System.Single UnityEngine.ParticleSystem::get_time()
  2589. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_time_m3802336174 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2590. {
  2591. typedef float (*ParticleSystem_get_time_m3802336174_ftn) (ParticleSystem_t1800779281 *);
  2592. static ParticleSystem_get_time_m3802336174_ftn _il2cpp_icall_func;
  2593. if (!_il2cpp_icall_func)
  2594. _il2cpp_icall_func = (ParticleSystem_get_time_m3802336174_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_time()");
  2595. float retVal = _il2cpp_icall_func(__this);
  2596. return retVal;
  2597. }
  2598. // System.Void UnityEngine.ParticleSystem::set_time(System.Single)
  2599. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_time_m2501131202 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2600. {
  2601. typedef void (*ParticleSystem_set_time_m2501131202_ftn) (ParticleSystem_t1800779281 *, float);
  2602. static ParticleSystem_set_time_m2501131202_ftn _il2cpp_icall_func;
  2603. if (!_il2cpp_icall_func)
  2604. _il2cpp_icall_func = (ParticleSystem_set_time_m2501131202_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_time(System.Single)");
  2605. _il2cpp_icall_func(__this, ___value0);
  2606. }
  2607. // System.Single UnityEngine.ParticleSystem::get_duration()
  2608. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_duration_m934197370 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2609. {
  2610. typedef float (*ParticleSystem_get_duration_m934197370_ftn) (ParticleSystem_t1800779281 *);
  2611. static ParticleSystem_get_duration_m934197370_ftn _il2cpp_icall_func;
  2612. if (!_il2cpp_icall_func)
  2613. _il2cpp_icall_func = (ParticleSystem_get_duration_m934197370_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_duration()");
  2614. float retVal = _il2cpp_icall_func(__this);
  2615. return retVal;
  2616. }
  2617. // System.Single UnityEngine.ParticleSystem::get_playbackSpeed()
  2618. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_playbackSpeed_m733967463 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2619. {
  2620. typedef float (*ParticleSystem_get_playbackSpeed_m733967463_ftn) (ParticleSystem_t1800779281 *);
  2621. static ParticleSystem_get_playbackSpeed_m733967463_ftn _il2cpp_icall_func;
  2622. if (!_il2cpp_icall_func)
  2623. _il2cpp_icall_func = (ParticleSystem_get_playbackSpeed_m733967463_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_playbackSpeed()");
  2624. float retVal = _il2cpp_icall_func(__this);
  2625. return retVal;
  2626. }
  2627. // System.Void UnityEngine.ParticleSystem::set_playbackSpeed(System.Single)
  2628. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_playbackSpeed_m3311396141 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2629. {
  2630. typedef void (*ParticleSystem_set_playbackSpeed_m3311396141_ftn) (ParticleSystem_t1800779281 *, float);
  2631. static ParticleSystem_set_playbackSpeed_m3311396141_ftn _il2cpp_icall_func;
  2632. if (!_il2cpp_icall_func)
  2633. _il2cpp_icall_func = (ParticleSystem_set_playbackSpeed_m3311396141_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_playbackSpeed(System.Single)");
  2634. _il2cpp_icall_func(__this, ___value0);
  2635. }
  2636. // System.Int32 UnityEngine.ParticleSystem::get_particleCount()
  2637. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_get_particleCount_m3882194216 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2638. {
  2639. typedef int32_t (*ParticleSystem_get_particleCount_m3882194216_ftn) (ParticleSystem_t1800779281 *);
  2640. static ParticleSystem_get_particleCount_m3882194216_ftn _il2cpp_icall_func;
  2641. if (!_il2cpp_icall_func)
  2642. _il2cpp_icall_func = (ParticleSystem_get_particleCount_m3882194216_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_particleCount()");
  2643. int32_t retVal = _il2cpp_icall_func(__this);
  2644. return retVal;
  2645. }
  2646. // System.Boolean UnityEngine.ParticleSystem::get_enableEmission()
  2647. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_enableEmission_m1479773335 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2648. {
  2649. EmissionModule_t311448003 V_0;
  2650. memset(&V_0, 0, sizeof(V_0));
  2651. bool V_1 = false;
  2652. {
  2653. EmissionModule_t311448003 L_0 = ParticleSystem_get_emission_m1034302947(__this, /*hidden argument*/NULL);
  2654. V_0 = L_0;
  2655. bool L_1 = EmissionModule_get_enabled_m887932283((&V_0), /*hidden argument*/NULL);
  2656. V_1 = L_1;
  2657. goto IL_0015;
  2658. }
  2659. IL_0015:
  2660. {
  2661. bool L_2 = V_1;
  2662. return L_2;
  2663. }
  2664. }
  2665. // System.Void UnityEngine.ParticleSystem::set_enableEmission(System.Boolean)
  2666. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_enableEmission_m2450064795 (ParticleSystem_t1800779281 * __this, bool ___value0, const RuntimeMethod* method)
  2667. {
  2668. EmissionModule_t311448003 V_0;
  2669. memset(&V_0, 0, sizeof(V_0));
  2670. {
  2671. EmissionModule_t311448003 L_0 = ParticleSystem_get_emission_m1034302947(__this, /*hidden argument*/NULL);
  2672. V_0 = L_0;
  2673. bool L_1 = ___value0;
  2674. EmissionModule_set_enabled_m353945573((&V_0), L_1, /*hidden argument*/NULL);
  2675. return;
  2676. }
  2677. }
  2678. // System.Single UnityEngine.ParticleSystem::get_emissionRate()
  2679. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_emissionRate_m2040245482 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2680. {
  2681. EmissionModule_t311448003 V_0;
  2682. memset(&V_0, 0, sizeof(V_0));
  2683. float V_1 = 0.0f;
  2684. {
  2685. EmissionModule_t311448003 L_0 = ParticleSystem_get_emission_m1034302947(__this, /*hidden argument*/NULL);
  2686. V_0 = L_0;
  2687. float L_1 = EmissionModule_get_rateOverTimeMultiplier_m1669775033((&V_0), /*hidden argument*/NULL);
  2688. V_1 = L_1;
  2689. goto IL_0015;
  2690. }
  2691. IL_0015:
  2692. {
  2693. float L_2 = V_1;
  2694. return L_2;
  2695. }
  2696. }
  2697. // System.Void UnityEngine.ParticleSystem::set_emissionRate(System.Single)
  2698. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_emissionRate_m132123255 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2699. {
  2700. EmissionModule_t311448003 V_0;
  2701. memset(&V_0, 0, sizeof(V_0));
  2702. {
  2703. EmissionModule_t311448003 L_0 = ParticleSystem_get_emission_m1034302947(__this, /*hidden argument*/NULL);
  2704. V_0 = L_0;
  2705. float L_1 = ___value0;
  2706. MinMaxCurve_t1067599125 L_2 = MinMaxCurve_op_Implicit_m2087694379(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
  2707. EmissionModule_set_rateOverTime_m3001949402((&V_0), L_2, /*hidden argument*/NULL);
  2708. return;
  2709. }
  2710. }
  2711. // System.Single UnityEngine.ParticleSystem::get_startSpeed()
  2712. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_startSpeed_m4185695559 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2713. {
  2714. typedef float (*ParticleSystem_get_startSpeed_m4185695559_ftn) (ParticleSystem_t1800779281 *);
  2715. static ParticleSystem_get_startSpeed_m4185695559_ftn _il2cpp_icall_func;
  2716. if (!_il2cpp_icall_func)
  2717. _il2cpp_icall_func = (ParticleSystem_get_startSpeed_m4185695559_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_startSpeed()");
  2718. float retVal = _il2cpp_icall_func(__this);
  2719. return retVal;
  2720. }
  2721. // System.Void UnityEngine.ParticleSystem::set_startSpeed(System.Single)
  2722. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_startSpeed_m1990602809 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2723. {
  2724. typedef void (*ParticleSystem_set_startSpeed_m1990602809_ftn) (ParticleSystem_t1800779281 *, float);
  2725. static ParticleSystem_set_startSpeed_m1990602809_ftn _il2cpp_icall_func;
  2726. if (!_il2cpp_icall_func)
  2727. _il2cpp_icall_func = (ParticleSystem_set_startSpeed_m1990602809_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_startSpeed(System.Single)");
  2728. _il2cpp_icall_func(__this, ___value0);
  2729. }
  2730. // System.Single UnityEngine.ParticleSystem::get_startSize()
  2731. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_startSize_m1697540088 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2732. {
  2733. typedef float (*ParticleSystem_get_startSize_m1697540088_ftn) (ParticleSystem_t1800779281 *);
  2734. static ParticleSystem_get_startSize_m1697540088_ftn _il2cpp_icall_func;
  2735. if (!_il2cpp_icall_func)
  2736. _il2cpp_icall_func = (ParticleSystem_get_startSize_m1697540088_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_startSize()");
  2737. float retVal = _il2cpp_icall_func(__this);
  2738. return retVal;
  2739. }
  2740. // System.Void UnityEngine.ParticleSystem::set_startSize(System.Single)
  2741. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_startSize_m3050134911 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2742. {
  2743. typedef void (*ParticleSystem_set_startSize_m3050134911_ftn) (ParticleSystem_t1800779281 *, float);
  2744. static ParticleSystem_set_startSize_m3050134911_ftn _il2cpp_icall_func;
  2745. if (!_il2cpp_icall_func)
  2746. _il2cpp_icall_func = (ParticleSystem_set_startSize_m3050134911_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_startSize(System.Single)");
  2747. _il2cpp_icall_func(__this, ___value0);
  2748. }
  2749. // UnityEngine.Color UnityEngine.ParticleSystem::get_startColor()
  2750. extern "C" IL2CPP_METHOD_ATTR Color_t2555686324 ParticleSystem_get_startColor_m3131789020 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2751. {
  2752. Color_t2555686324 V_0;
  2753. memset(&V_0, 0, sizeof(V_0));
  2754. Color_t2555686324 V_1;
  2755. memset(&V_1, 0, sizeof(V_1));
  2756. {
  2757. ParticleSystem_INTERNAL_get_startColor_m3512072408(__this, (&V_0), /*hidden argument*/NULL);
  2758. Color_t2555686324 L_0 = V_0;
  2759. V_1 = L_0;
  2760. goto IL_0010;
  2761. }
  2762. IL_0010:
  2763. {
  2764. Color_t2555686324 L_1 = V_1;
  2765. return L_1;
  2766. }
  2767. }
  2768. // System.Void UnityEngine.ParticleSystem::set_startColor(UnityEngine.Color)
  2769. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_startColor_m993438482 (ParticleSystem_t1800779281 * __this, Color_t2555686324 ___value0, const RuntimeMethod* method)
  2770. {
  2771. {
  2772. ParticleSystem_INTERNAL_set_startColor_m838560501(__this, (&___value0), /*hidden argument*/NULL);
  2773. return;
  2774. }
  2775. }
  2776. // System.Void UnityEngine.ParticleSystem::INTERNAL_get_startColor(UnityEngine.Color&)
  2777. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_get_startColor_m3512072408 (ParticleSystem_t1800779281 * __this, Color_t2555686324 * ___value0, const RuntimeMethod* method)
  2778. {
  2779. typedef void (*ParticleSystem_INTERNAL_get_startColor_m3512072408_ftn) (ParticleSystem_t1800779281 *, Color_t2555686324 *);
  2780. static ParticleSystem_INTERNAL_get_startColor_m3512072408_ftn _il2cpp_icall_func;
  2781. if (!_il2cpp_icall_func)
  2782. _il2cpp_icall_func = (ParticleSystem_INTERNAL_get_startColor_m3512072408_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::INTERNAL_get_startColor(UnityEngine.Color&)");
  2783. _il2cpp_icall_func(__this, ___value0);
  2784. }
  2785. // System.Void UnityEngine.ParticleSystem::INTERNAL_set_startColor(UnityEngine.Color&)
  2786. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_set_startColor_m838560501 (ParticleSystem_t1800779281 * __this, Color_t2555686324 * ___value0, const RuntimeMethod* method)
  2787. {
  2788. typedef void (*ParticleSystem_INTERNAL_set_startColor_m838560501_ftn) (ParticleSystem_t1800779281 *, Color_t2555686324 *);
  2789. static ParticleSystem_INTERNAL_set_startColor_m838560501_ftn _il2cpp_icall_func;
  2790. if (!_il2cpp_icall_func)
  2791. _il2cpp_icall_func = (ParticleSystem_INTERNAL_set_startColor_m838560501_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::INTERNAL_set_startColor(UnityEngine.Color&)");
  2792. _il2cpp_icall_func(__this, ___value0);
  2793. }
  2794. // System.Single UnityEngine.ParticleSystem::get_startRotation()
  2795. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_startRotation_m1763075662 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2796. {
  2797. typedef float (*ParticleSystem_get_startRotation_m1763075662_ftn) (ParticleSystem_t1800779281 *);
  2798. static ParticleSystem_get_startRotation_m1763075662_ftn _il2cpp_icall_func;
  2799. if (!_il2cpp_icall_func)
  2800. _il2cpp_icall_func = (ParticleSystem_get_startRotation_m1763075662_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_startRotation()");
  2801. float retVal = _il2cpp_icall_func(__this);
  2802. return retVal;
  2803. }
  2804. // System.Void UnityEngine.ParticleSystem::set_startRotation(System.Single)
  2805. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_startRotation_m2339974901 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2806. {
  2807. typedef void (*ParticleSystem_set_startRotation_m2339974901_ftn) (ParticleSystem_t1800779281 *, float);
  2808. static ParticleSystem_set_startRotation_m2339974901_ftn _il2cpp_icall_func;
  2809. if (!_il2cpp_icall_func)
  2810. _il2cpp_icall_func = (ParticleSystem_set_startRotation_m2339974901_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_startRotation(System.Single)");
  2811. _il2cpp_icall_func(__this, ___value0);
  2812. }
  2813. // UnityEngine.Vector3 UnityEngine.ParticleSystem::get_startRotation3D()
  2814. extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 ParticleSystem_get_startRotation3D_m2530790622 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2815. {
  2816. Vector3_t3722313464 V_0;
  2817. memset(&V_0, 0, sizeof(V_0));
  2818. Vector3_t3722313464 V_1;
  2819. memset(&V_1, 0, sizeof(V_1));
  2820. {
  2821. ParticleSystem_INTERNAL_get_startRotation3D_m3074810467(__this, (&V_0), /*hidden argument*/NULL);
  2822. Vector3_t3722313464 L_0 = V_0;
  2823. V_1 = L_0;
  2824. goto IL_0010;
  2825. }
  2826. IL_0010:
  2827. {
  2828. Vector3_t3722313464 L_1 = V_1;
  2829. return L_1;
  2830. }
  2831. }
  2832. // System.Void UnityEngine.ParticleSystem::set_startRotation3D(UnityEngine.Vector3)
  2833. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_startRotation3D_m2905904103 (ParticleSystem_t1800779281 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  2834. {
  2835. {
  2836. ParticleSystem_INTERNAL_set_startRotation3D_m1436823731(__this, (&___value0), /*hidden argument*/NULL);
  2837. return;
  2838. }
  2839. }
  2840. // System.Void UnityEngine.ParticleSystem::INTERNAL_get_startRotation3D(UnityEngine.Vector3&)
  2841. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_get_startRotation3D_m3074810467 (ParticleSystem_t1800779281 * __this, Vector3_t3722313464 * ___value0, const RuntimeMethod* method)
  2842. {
  2843. typedef void (*ParticleSystem_INTERNAL_get_startRotation3D_m3074810467_ftn) (ParticleSystem_t1800779281 *, Vector3_t3722313464 *);
  2844. static ParticleSystem_INTERNAL_get_startRotation3D_m3074810467_ftn _il2cpp_icall_func;
  2845. if (!_il2cpp_icall_func)
  2846. _il2cpp_icall_func = (ParticleSystem_INTERNAL_get_startRotation3D_m3074810467_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::INTERNAL_get_startRotation3D(UnityEngine.Vector3&)");
  2847. _il2cpp_icall_func(__this, ___value0);
  2848. }
  2849. // System.Void UnityEngine.ParticleSystem::INTERNAL_set_startRotation3D(UnityEngine.Vector3&)
  2850. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_set_startRotation3D_m1436823731 (ParticleSystem_t1800779281 * __this, Vector3_t3722313464 * ___value0, const RuntimeMethod* method)
  2851. {
  2852. typedef void (*ParticleSystem_INTERNAL_set_startRotation3D_m1436823731_ftn) (ParticleSystem_t1800779281 *, Vector3_t3722313464 *);
  2853. static ParticleSystem_INTERNAL_set_startRotation3D_m1436823731_ftn _il2cpp_icall_func;
  2854. if (!_il2cpp_icall_func)
  2855. _il2cpp_icall_func = (ParticleSystem_INTERNAL_set_startRotation3D_m1436823731_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::INTERNAL_set_startRotation3D(UnityEngine.Vector3&)");
  2856. _il2cpp_icall_func(__this, ___value0);
  2857. }
  2858. // System.Single UnityEngine.ParticleSystem::get_startLifetime()
  2859. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_startLifetime_m3070133424 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2860. {
  2861. typedef float (*ParticleSystem_get_startLifetime_m3070133424_ftn) (ParticleSystem_t1800779281 *);
  2862. static ParticleSystem_get_startLifetime_m3070133424_ftn _il2cpp_icall_func;
  2863. if (!_il2cpp_icall_func)
  2864. _il2cpp_icall_func = (ParticleSystem_get_startLifetime_m3070133424_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_startLifetime()");
  2865. float retVal = _il2cpp_icall_func(__this);
  2866. return retVal;
  2867. }
  2868. // System.Void UnityEngine.ParticleSystem::set_startLifetime(System.Single)
  2869. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_startLifetime_m1402764463 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2870. {
  2871. typedef void (*ParticleSystem_set_startLifetime_m1402764463_ftn) (ParticleSystem_t1800779281 *, float);
  2872. static ParticleSystem_set_startLifetime_m1402764463_ftn _il2cpp_icall_func;
  2873. if (!_il2cpp_icall_func)
  2874. _il2cpp_icall_func = (ParticleSystem_set_startLifetime_m1402764463_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_startLifetime(System.Single)");
  2875. _il2cpp_icall_func(__this, ___value0);
  2876. }
  2877. // System.Single UnityEngine.ParticleSystem::get_gravityModifier()
  2878. extern "C" IL2CPP_METHOD_ATTR float ParticleSystem_get_gravityModifier_m3452925599 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2879. {
  2880. typedef float (*ParticleSystem_get_gravityModifier_m3452925599_ftn) (ParticleSystem_t1800779281 *);
  2881. static ParticleSystem_get_gravityModifier_m3452925599_ftn _il2cpp_icall_func;
  2882. if (!_il2cpp_icall_func)
  2883. _il2cpp_icall_func = (ParticleSystem_get_gravityModifier_m3452925599_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_gravityModifier()");
  2884. float retVal = _il2cpp_icall_func(__this);
  2885. return retVal;
  2886. }
  2887. // System.Void UnityEngine.ParticleSystem::set_gravityModifier(System.Single)
  2888. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_gravityModifier_m2236796442 (ParticleSystem_t1800779281 * __this, float ___value0, const RuntimeMethod* method)
  2889. {
  2890. typedef void (*ParticleSystem_set_gravityModifier_m2236796442_ftn) (ParticleSystem_t1800779281 *, float);
  2891. static ParticleSystem_set_gravityModifier_m2236796442_ftn _il2cpp_icall_func;
  2892. if (!_il2cpp_icall_func)
  2893. _il2cpp_icall_func = (ParticleSystem_set_gravityModifier_m2236796442_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_gravityModifier(System.Single)");
  2894. _il2cpp_icall_func(__this, ___value0);
  2895. }
  2896. // System.Int32 UnityEngine.ParticleSystem::get_maxParticles()
  2897. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_get_maxParticles_m3391987418 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2898. {
  2899. typedef int32_t (*ParticleSystem_get_maxParticles_m3391987418_ftn) (ParticleSystem_t1800779281 *);
  2900. static ParticleSystem_get_maxParticles_m3391987418_ftn _il2cpp_icall_func;
  2901. if (!_il2cpp_icall_func)
  2902. _il2cpp_icall_func = (ParticleSystem_get_maxParticles_m3391987418_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_maxParticles()");
  2903. int32_t retVal = _il2cpp_icall_func(__this);
  2904. return retVal;
  2905. }
  2906. // System.Void UnityEngine.ParticleSystem::set_maxParticles(System.Int32)
  2907. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_maxParticles_m1788526394 (ParticleSystem_t1800779281 * __this, int32_t ___value0, const RuntimeMethod* method)
  2908. {
  2909. typedef void (*ParticleSystem_set_maxParticles_m1788526394_ftn) (ParticleSystem_t1800779281 *, int32_t);
  2910. static ParticleSystem_set_maxParticles_m1788526394_ftn _il2cpp_icall_func;
  2911. if (!_il2cpp_icall_func)
  2912. _il2cpp_icall_func = (ParticleSystem_set_maxParticles_m1788526394_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_maxParticles(System.Int32)");
  2913. _il2cpp_icall_func(__this, ___value0);
  2914. }
  2915. // UnityEngine.ParticleSystemSimulationSpace UnityEngine.ParticleSystem::get_simulationSpace()
  2916. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_get_simulationSpace_m2003209018 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2917. {
  2918. typedef int32_t (*ParticleSystem_get_simulationSpace_m2003209018_ftn) (ParticleSystem_t1800779281 *);
  2919. static ParticleSystem_get_simulationSpace_m2003209018_ftn _il2cpp_icall_func;
  2920. if (!_il2cpp_icall_func)
  2921. _il2cpp_icall_func = (ParticleSystem_get_simulationSpace_m2003209018_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_simulationSpace()");
  2922. int32_t retVal = _il2cpp_icall_func(__this);
  2923. return retVal;
  2924. }
  2925. // System.Void UnityEngine.ParticleSystem::set_simulationSpace(UnityEngine.ParticleSystemSimulationSpace)
  2926. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_simulationSpace_m4032943337 (ParticleSystem_t1800779281 * __this, int32_t ___value0, const RuntimeMethod* method)
  2927. {
  2928. typedef void (*ParticleSystem_set_simulationSpace_m4032943337_ftn) (ParticleSystem_t1800779281 *, int32_t);
  2929. static ParticleSystem_set_simulationSpace_m4032943337_ftn _il2cpp_icall_func;
  2930. if (!_il2cpp_icall_func)
  2931. _il2cpp_icall_func = (ParticleSystem_set_simulationSpace_m4032943337_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_simulationSpace(UnityEngine.ParticleSystemSimulationSpace)");
  2932. _il2cpp_icall_func(__this, ___value0);
  2933. }
  2934. // UnityEngine.ParticleSystemScalingMode UnityEngine.ParticleSystem::get_scalingMode()
  2935. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_get_scalingMode_m2094025868 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2936. {
  2937. typedef int32_t (*ParticleSystem_get_scalingMode_m2094025868_ftn) (ParticleSystem_t1800779281 *);
  2938. static ParticleSystem_get_scalingMode_m2094025868_ftn _il2cpp_icall_func;
  2939. if (!_il2cpp_icall_func)
  2940. _il2cpp_icall_func = (ParticleSystem_get_scalingMode_m2094025868_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_scalingMode()");
  2941. int32_t retVal = _il2cpp_icall_func(__this);
  2942. return retVal;
  2943. }
  2944. // System.Void UnityEngine.ParticleSystem::set_scalingMode(UnityEngine.ParticleSystemScalingMode)
  2945. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_scalingMode_m496085195 (ParticleSystem_t1800779281 * __this, int32_t ___value0, const RuntimeMethod* method)
  2946. {
  2947. typedef void (*ParticleSystem_set_scalingMode_m496085195_ftn) (ParticleSystem_t1800779281 *, int32_t);
  2948. static ParticleSystem_set_scalingMode_m496085195_ftn _il2cpp_icall_func;
  2949. if (!_il2cpp_icall_func)
  2950. _il2cpp_icall_func = (ParticleSystem_set_scalingMode_m496085195_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_scalingMode(UnityEngine.ParticleSystemScalingMode)");
  2951. _il2cpp_icall_func(__this, ___value0);
  2952. }
  2953. // System.UInt32 UnityEngine.ParticleSystem::get_randomSeed()
  2954. extern "C" IL2CPP_METHOD_ATTR uint32_t ParticleSystem_get_randomSeed_m3828058209 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2955. {
  2956. typedef uint32_t (*ParticleSystem_get_randomSeed_m3828058209_ftn) (ParticleSystem_t1800779281 *);
  2957. static ParticleSystem_get_randomSeed_m3828058209_ftn _il2cpp_icall_func;
  2958. if (!_il2cpp_icall_func)
  2959. _il2cpp_icall_func = (ParticleSystem_get_randomSeed_m3828058209_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_randomSeed()");
  2960. uint32_t retVal = _il2cpp_icall_func(__this);
  2961. return retVal;
  2962. }
  2963. // System.Void UnityEngine.ParticleSystem::set_randomSeed(System.UInt32)
  2964. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_randomSeed_m1284801121 (ParticleSystem_t1800779281 * __this, uint32_t ___value0, const RuntimeMethod* method)
  2965. {
  2966. typedef void (*ParticleSystem_set_randomSeed_m1284801121_ftn) (ParticleSystem_t1800779281 *, uint32_t);
  2967. static ParticleSystem_set_randomSeed_m1284801121_ftn _il2cpp_icall_func;
  2968. if (!_il2cpp_icall_func)
  2969. _il2cpp_icall_func = (ParticleSystem_set_randomSeed_m1284801121_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_randomSeed(System.UInt32)");
  2970. _il2cpp_icall_func(__this, ___value0);
  2971. }
  2972. // System.Boolean UnityEngine.ParticleSystem::get_useAutoRandomSeed()
  2973. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_get_useAutoRandomSeed_m607339784 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2974. {
  2975. typedef bool (*ParticleSystem_get_useAutoRandomSeed_m607339784_ftn) (ParticleSystem_t1800779281 *);
  2976. static ParticleSystem_get_useAutoRandomSeed_m607339784_ftn _il2cpp_icall_func;
  2977. if (!_il2cpp_icall_func)
  2978. _il2cpp_icall_func = (ParticleSystem_get_useAutoRandomSeed_m607339784_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::get_useAutoRandomSeed()");
  2979. bool retVal = _il2cpp_icall_func(__this);
  2980. return retVal;
  2981. }
  2982. // System.Void UnityEngine.ParticleSystem::set_useAutoRandomSeed(System.Boolean)
  2983. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_set_useAutoRandomSeed_m1036718603 (ParticleSystem_t1800779281 * __this, bool ___value0, const RuntimeMethod* method)
  2984. {
  2985. typedef void (*ParticleSystem_set_useAutoRandomSeed_m1036718603_ftn) (ParticleSystem_t1800779281 *, bool);
  2986. static ParticleSystem_set_useAutoRandomSeed_m1036718603_ftn _il2cpp_icall_func;
  2987. if (!_il2cpp_icall_func)
  2988. _il2cpp_icall_func = (ParticleSystem_set_useAutoRandomSeed_m1036718603_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::set_useAutoRandomSeed(System.Boolean)");
  2989. _il2cpp_icall_func(__this, ___value0);
  2990. }
  2991. // UnityEngine.ParticleSystem/MainModule UnityEngine.ParticleSystem::get_main()
  2992. extern "C" IL2CPP_METHOD_ATTR MainModule_t2320046318 ParticleSystem_get_main_m3006917117 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  2993. {
  2994. MainModule_t2320046318 V_0;
  2995. memset(&V_0, 0, sizeof(V_0));
  2996. {
  2997. MainModule_t2320046318 L_0;
  2998. memset(&L_0, 0, sizeof(L_0));
  2999. MainModule__ctor_m1745438521((&L_0), __this, /*hidden argument*/NULL);
  3000. V_0 = L_0;
  3001. goto IL_000d;
  3002. }
  3003. IL_000d:
  3004. {
  3005. MainModule_t2320046318 L_1 = V_0;
  3006. return L_1;
  3007. }
  3008. }
  3009. // UnityEngine.ParticleSystem/EmissionModule UnityEngine.ParticleSystem::get_emission()
  3010. extern "C" IL2CPP_METHOD_ATTR EmissionModule_t311448003 ParticleSystem_get_emission_m1034302947 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3011. {
  3012. EmissionModule_t311448003 V_0;
  3013. memset(&V_0, 0, sizeof(V_0));
  3014. {
  3015. EmissionModule_t311448003 L_0;
  3016. memset(&L_0, 0, sizeof(L_0));
  3017. EmissionModule__ctor_m3908790904((&L_0), __this, /*hidden argument*/NULL);
  3018. V_0 = L_0;
  3019. goto IL_000d;
  3020. }
  3021. IL_000d:
  3022. {
  3023. EmissionModule_t311448003 L_1 = V_0;
  3024. return L_1;
  3025. }
  3026. }
  3027. // UnityEngine.ParticleSystem/ShapeModule UnityEngine.ParticleSystem::get_shape()
  3028. extern "C" IL2CPP_METHOD_ATTR ShapeModule_t3608330829 ParticleSystem_get_shape_m2012347897 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3029. {
  3030. ShapeModule_t3608330829 V_0;
  3031. memset(&V_0, 0, sizeof(V_0));
  3032. {
  3033. ShapeModule_t3608330829 L_0;
  3034. memset(&L_0, 0, sizeof(L_0));
  3035. ShapeModule__ctor_m3109297265((&L_0), __this, /*hidden argument*/NULL);
  3036. V_0 = L_0;
  3037. goto IL_000d;
  3038. }
  3039. IL_000d:
  3040. {
  3041. ShapeModule_t3608330829 L_1 = V_0;
  3042. return L_1;
  3043. }
  3044. }
  3045. // UnityEngine.ParticleSystem/VelocityOverLifetimeModule UnityEngine.ParticleSystem::get_velocityOverLifetime()
  3046. extern "C" IL2CPP_METHOD_ATTR VelocityOverLifetimeModule_t1982232382 ParticleSystem_get_velocityOverLifetime_m395033083 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3047. {
  3048. VelocityOverLifetimeModule_t1982232382 V_0;
  3049. memset(&V_0, 0, sizeof(V_0));
  3050. {
  3051. VelocityOverLifetimeModule_t1982232382 L_0;
  3052. memset(&L_0, 0, sizeof(L_0));
  3053. VelocityOverLifetimeModule__ctor_m1651720034((&L_0), __this, /*hidden argument*/NULL);
  3054. V_0 = L_0;
  3055. goto IL_000d;
  3056. }
  3057. IL_000d:
  3058. {
  3059. VelocityOverLifetimeModule_t1982232382 L_1 = V_0;
  3060. return L_1;
  3061. }
  3062. }
  3063. // UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule UnityEngine.ParticleSystem::get_limitVelocityOverLifetime()
  3064. extern "C" IL2CPP_METHOD_ATTR LimitVelocityOverLifetimeModule_t686589569 ParticleSystem_get_limitVelocityOverLifetime_m884393620 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3065. {
  3066. LimitVelocityOverLifetimeModule_t686589569 V_0;
  3067. memset(&V_0, 0, sizeof(V_0));
  3068. {
  3069. LimitVelocityOverLifetimeModule_t686589569 L_0;
  3070. memset(&L_0, 0, sizeof(L_0));
  3071. LimitVelocityOverLifetimeModule__ctor_m1168296975((&L_0), __this, /*hidden argument*/NULL);
  3072. V_0 = L_0;
  3073. goto IL_000d;
  3074. }
  3075. IL_000d:
  3076. {
  3077. LimitVelocityOverLifetimeModule_t686589569 L_1 = V_0;
  3078. return L_1;
  3079. }
  3080. }
  3081. // UnityEngine.ParticleSystem/InheritVelocityModule UnityEngine.ParticleSystem::get_inheritVelocity()
  3082. extern "C" IL2CPP_METHOD_ATTR InheritVelocityModule_t3940044026 ParticleSystem_get_inheritVelocity_m3661881642 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3083. {
  3084. InheritVelocityModule_t3940044026 V_0;
  3085. memset(&V_0, 0, sizeof(V_0));
  3086. {
  3087. InheritVelocityModule_t3940044026 L_0;
  3088. memset(&L_0, 0, sizeof(L_0));
  3089. InheritVelocityModule__ctor_m2528283153((&L_0), __this, /*hidden argument*/NULL);
  3090. V_0 = L_0;
  3091. goto IL_000d;
  3092. }
  3093. IL_000d:
  3094. {
  3095. InheritVelocityModule_t3940044026 L_1 = V_0;
  3096. return L_1;
  3097. }
  3098. }
  3099. // UnityEngine.ParticleSystem/ForceOverLifetimeModule UnityEngine.ParticleSystem::get_forceOverLifetime()
  3100. extern "C" IL2CPP_METHOD_ATTR ForceOverLifetimeModule_t4029962193 ParticleSystem_get_forceOverLifetime_m197868758 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3101. {
  3102. ForceOverLifetimeModule_t4029962193 V_0;
  3103. memset(&V_0, 0, sizeof(V_0));
  3104. {
  3105. ForceOverLifetimeModule_t4029962193 L_0;
  3106. memset(&L_0, 0, sizeof(L_0));
  3107. ForceOverLifetimeModule__ctor_m3809537274((&L_0), __this, /*hidden argument*/NULL);
  3108. V_0 = L_0;
  3109. goto IL_000d;
  3110. }
  3111. IL_000d:
  3112. {
  3113. ForceOverLifetimeModule_t4029962193 L_1 = V_0;
  3114. return L_1;
  3115. }
  3116. }
  3117. // UnityEngine.ParticleSystem/ColorOverLifetimeModule UnityEngine.ParticleSystem::get_colorOverLifetime()
  3118. extern "C" IL2CPP_METHOD_ATTR ColorOverLifetimeModule_t3039228654 ParticleSystem_get_colorOverLifetime_m1862379589 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3119. {
  3120. ColorOverLifetimeModule_t3039228654 V_0;
  3121. memset(&V_0, 0, sizeof(V_0));
  3122. {
  3123. ColorOverLifetimeModule_t3039228654 L_0;
  3124. memset(&L_0, 0, sizeof(L_0));
  3125. ColorOverLifetimeModule__ctor_m180503459((&L_0), __this, /*hidden argument*/NULL);
  3126. V_0 = L_0;
  3127. goto IL_000d;
  3128. }
  3129. IL_000d:
  3130. {
  3131. ColorOverLifetimeModule_t3039228654 L_1 = V_0;
  3132. return L_1;
  3133. }
  3134. }
  3135. // UnityEngine.ParticleSystem/ColorBySpeedModule UnityEngine.ParticleSystem::get_colorBySpeed()
  3136. extern "C" IL2CPP_METHOD_ATTR ColorBySpeedModule_t3740209408 ParticleSystem_get_colorBySpeed_m162448952 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3137. {
  3138. ColorBySpeedModule_t3740209408 V_0;
  3139. memset(&V_0, 0, sizeof(V_0));
  3140. {
  3141. ColorBySpeedModule_t3740209408 L_0;
  3142. memset(&L_0, 0, sizeof(L_0));
  3143. ColorBySpeedModule__ctor_m806377702((&L_0), __this, /*hidden argument*/NULL);
  3144. V_0 = L_0;
  3145. goto IL_000d;
  3146. }
  3147. IL_000d:
  3148. {
  3149. ColorBySpeedModule_t3740209408 L_1 = V_0;
  3150. return L_1;
  3151. }
  3152. }
  3153. // UnityEngine.ParticleSystem/SizeOverLifetimeModule UnityEngine.ParticleSystem::get_sizeOverLifetime()
  3154. extern "C" IL2CPP_METHOD_ATTR SizeOverLifetimeModule_t1101123803 ParticleSystem_get_sizeOverLifetime_m678950248 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3155. {
  3156. SizeOverLifetimeModule_t1101123803 V_0;
  3157. memset(&V_0, 0, sizeof(V_0));
  3158. {
  3159. SizeOverLifetimeModule_t1101123803 L_0;
  3160. memset(&L_0, 0, sizeof(L_0));
  3161. SizeOverLifetimeModule__ctor_m2691925398((&L_0), __this, /*hidden argument*/NULL);
  3162. V_0 = L_0;
  3163. goto IL_000d;
  3164. }
  3165. IL_000d:
  3166. {
  3167. SizeOverLifetimeModule_t1101123803 L_1 = V_0;
  3168. return L_1;
  3169. }
  3170. }
  3171. // UnityEngine.ParticleSystem/SizeBySpeedModule UnityEngine.ParticleSystem::get_sizeBySpeed()
  3172. extern "C" IL2CPP_METHOD_ATTR SizeBySpeedModule_t1515126846 ParticleSystem_get_sizeBySpeed_m659735134 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3173. {
  3174. SizeBySpeedModule_t1515126846 V_0;
  3175. memset(&V_0, 0, sizeof(V_0));
  3176. {
  3177. SizeBySpeedModule_t1515126846 L_0;
  3178. memset(&L_0, 0, sizeof(L_0));
  3179. SizeBySpeedModule__ctor_m537593350((&L_0), __this, /*hidden argument*/NULL);
  3180. V_0 = L_0;
  3181. goto IL_000d;
  3182. }
  3183. IL_000d:
  3184. {
  3185. SizeBySpeedModule_t1515126846 L_1 = V_0;
  3186. return L_1;
  3187. }
  3188. }
  3189. // UnityEngine.ParticleSystem/RotationOverLifetimeModule UnityEngine.ParticleSystem::get_rotationOverLifetime()
  3190. extern "C" IL2CPP_METHOD_ATTR RotationOverLifetimeModule_t1164372224 ParticleSystem_get_rotationOverLifetime_m1445523172 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3191. {
  3192. RotationOverLifetimeModule_t1164372224 V_0;
  3193. memset(&V_0, 0, sizeof(V_0));
  3194. {
  3195. RotationOverLifetimeModule_t1164372224 L_0;
  3196. memset(&L_0, 0, sizeof(L_0));
  3197. RotationOverLifetimeModule__ctor_m1297284518((&L_0), __this, /*hidden argument*/NULL);
  3198. V_0 = L_0;
  3199. goto IL_000d;
  3200. }
  3201. IL_000d:
  3202. {
  3203. RotationOverLifetimeModule_t1164372224 L_1 = V_0;
  3204. return L_1;
  3205. }
  3206. }
  3207. // UnityEngine.ParticleSystem/RotationBySpeedModule UnityEngine.ParticleSystem::get_rotationBySpeed()
  3208. extern "C" IL2CPP_METHOD_ATTR RotationBySpeedModule_t3497409583 ParticleSystem_get_rotationBySpeed_m3118393192 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3209. {
  3210. RotationBySpeedModule_t3497409583 V_0;
  3211. memset(&V_0, 0, sizeof(V_0));
  3212. {
  3213. RotationBySpeedModule_t3497409583 L_0;
  3214. memset(&L_0, 0, sizeof(L_0));
  3215. RotationBySpeedModule__ctor_m1387209970((&L_0), __this, /*hidden argument*/NULL);
  3216. V_0 = L_0;
  3217. goto IL_000d;
  3218. }
  3219. IL_000d:
  3220. {
  3221. RotationBySpeedModule_t3497409583 L_1 = V_0;
  3222. return L_1;
  3223. }
  3224. }
  3225. // UnityEngine.ParticleSystem/ExternalForcesModule UnityEngine.ParticleSystem::get_externalForces()
  3226. extern "C" IL2CPP_METHOD_ATTR ExternalForcesModule_t1424795933 ParticleSystem_get_externalForces_m2005980515 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3227. {
  3228. ExternalForcesModule_t1424795933 V_0;
  3229. memset(&V_0, 0, sizeof(V_0));
  3230. {
  3231. ExternalForcesModule_t1424795933 L_0;
  3232. memset(&L_0, 0, sizeof(L_0));
  3233. ExternalForcesModule__ctor_m3593198071((&L_0), __this, /*hidden argument*/NULL);
  3234. V_0 = L_0;
  3235. goto IL_000d;
  3236. }
  3237. IL_000d:
  3238. {
  3239. ExternalForcesModule_t1424795933 L_1 = V_0;
  3240. return L_1;
  3241. }
  3242. }
  3243. // UnityEngine.ParticleSystem/NoiseModule UnityEngine.ParticleSystem::get_noise()
  3244. extern "C" IL2CPP_METHOD_ATTR NoiseModule_t962525627 ParticleSystem_get_noise_m504149021 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3245. {
  3246. NoiseModule_t962525627 V_0;
  3247. memset(&V_0, 0, sizeof(V_0));
  3248. {
  3249. NoiseModule_t962525627 L_0;
  3250. memset(&L_0, 0, sizeof(L_0));
  3251. NoiseModule__ctor_m4073267536((&L_0), __this, /*hidden argument*/NULL);
  3252. V_0 = L_0;
  3253. goto IL_000d;
  3254. }
  3255. IL_000d:
  3256. {
  3257. NoiseModule_t962525627 L_1 = V_0;
  3258. return L_1;
  3259. }
  3260. }
  3261. // UnityEngine.ParticleSystem/CollisionModule UnityEngine.ParticleSystem::get_collision()
  3262. extern "C" IL2CPP_METHOD_ATTR CollisionModule_t1950979710 ParticleSystem_get_collision_m522073557 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3263. {
  3264. CollisionModule_t1950979710 V_0;
  3265. memset(&V_0, 0, sizeof(V_0));
  3266. {
  3267. CollisionModule_t1950979710 L_0;
  3268. memset(&L_0, 0, sizeof(L_0));
  3269. CollisionModule__ctor_m247283919((&L_0), __this, /*hidden argument*/NULL);
  3270. V_0 = L_0;
  3271. goto IL_000d;
  3272. }
  3273. IL_000d:
  3274. {
  3275. CollisionModule_t1950979710 L_1 = V_0;
  3276. return L_1;
  3277. }
  3278. }
  3279. // UnityEngine.ParticleSystem/TriggerModule UnityEngine.ParticleSystem::get_trigger()
  3280. extern "C" IL2CPP_METHOD_ATTR TriggerModule_t1157986180 ParticleSystem_get_trigger_m2618306156 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3281. {
  3282. TriggerModule_t1157986180 V_0;
  3283. memset(&V_0, 0, sizeof(V_0));
  3284. {
  3285. TriggerModule_t1157986180 L_0;
  3286. memset(&L_0, 0, sizeof(L_0));
  3287. TriggerModule__ctor_m3759203166((&L_0), __this, /*hidden argument*/NULL);
  3288. V_0 = L_0;
  3289. goto IL_000d;
  3290. }
  3291. IL_000d:
  3292. {
  3293. TriggerModule_t1157986180 L_1 = V_0;
  3294. return L_1;
  3295. }
  3296. }
  3297. // UnityEngine.ParticleSystem/SubEmittersModule UnityEngine.ParticleSystem::get_subEmitters()
  3298. extern "C" IL2CPP_METHOD_ATTR SubEmittersModule_t903775760 ParticleSystem_get_subEmitters_m2352917131 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3299. {
  3300. SubEmittersModule_t903775760 V_0;
  3301. memset(&V_0, 0, sizeof(V_0));
  3302. {
  3303. SubEmittersModule_t903775760 L_0;
  3304. memset(&L_0, 0, sizeof(L_0));
  3305. SubEmittersModule__ctor_m2064557730((&L_0), __this, /*hidden argument*/NULL);
  3306. V_0 = L_0;
  3307. goto IL_000d;
  3308. }
  3309. IL_000d:
  3310. {
  3311. SubEmittersModule_t903775760 L_1 = V_0;
  3312. return L_1;
  3313. }
  3314. }
  3315. // UnityEngine.ParticleSystem/TextureSheetAnimationModule UnityEngine.ParticleSystem::get_textureSheetAnimation()
  3316. extern "C" IL2CPP_METHOD_ATTR TextureSheetAnimationModule_t738696839 ParticleSystem_get_textureSheetAnimation_m4276810064 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3317. {
  3318. TextureSheetAnimationModule_t738696839 V_0;
  3319. memset(&V_0, 0, sizeof(V_0));
  3320. {
  3321. TextureSheetAnimationModule_t738696839 L_0;
  3322. memset(&L_0, 0, sizeof(L_0));
  3323. TextureSheetAnimationModule__ctor_m932769825((&L_0), __this, /*hidden argument*/NULL);
  3324. V_0 = L_0;
  3325. goto IL_000d;
  3326. }
  3327. IL_000d:
  3328. {
  3329. TextureSheetAnimationModule_t738696839 L_1 = V_0;
  3330. return L_1;
  3331. }
  3332. }
  3333. // UnityEngine.ParticleSystem/LightsModule UnityEngine.ParticleSystem::get_lights()
  3334. extern "C" IL2CPP_METHOD_ATTR LightsModule_t3616883284 ParticleSystem_get_lights_m2445211210 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3335. {
  3336. LightsModule_t3616883284 V_0;
  3337. memset(&V_0, 0, sizeof(V_0));
  3338. {
  3339. LightsModule_t3616883284 L_0;
  3340. memset(&L_0, 0, sizeof(L_0));
  3341. LightsModule__ctor_m2112231155((&L_0), __this, /*hidden argument*/NULL);
  3342. V_0 = L_0;
  3343. goto IL_000d;
  3344. }
  3345. IL_000d:
  3346. {
  3347. LightsModule_t3616883284 L_1 = V_0;
  3348. return L_1;
  3349. }
  3350. }
  3351. // UnityEngine.ParticleSystem/TrailModule UnityEngine.ParticleSystem::get_trails()
  3352. extern "C" IL2CPP_METHOD_ATTR TrailModule_t2282589118 ParticleSystem_get_trails_m773622431 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3353. {
  3354. TrailModule_t2282589118 V_0;
  3355. memset(&V_0, 0, sizeof(V_0));
  3356. {
  3357. TrailModule_t2282589118 L_0;
  3358. memset(&L_0, 0, sizeof(L_0));
  3359. TrailModule__ctor_m1147544692((&L_0), __this, /*hidden argument*/NULL);
  3360. V_0 = L_0;
  3361. goto IL_000d;
  3362. }
  3363. IL_000d:
  3364. {
  3365. TrailModule_t2282589118 L_1 = V_0;
  3366. return L_1;
  3367. }
  3368. }
  3369. // UnityEngine.ParticleSystem/CustomDataModule UnityEngine.ParticleSystem::get_customData()
  3370. extern "C" IL2CPP_METHOD_ATTR CustomDataModule_t2135829708 ParticleSystem_get_customData_m2731431744 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3371. {
  3372. CustomDataModule_t2135829708 V_0;
  3373. memset(&V_0, 0, sizeof(V_0));
  3374. {
  3375. CustomDataModule_t2135829708 L_0;
  3376. memset(&L_0, 0, sizeof(L_0));
  3377. CustomDataModule__ctor_m3151489217((&L_0), __this, /*hidden argument*/NULL);
  3378. V_0 = L_0;
  3379. goto IL_000d;
  3380. }
  3381. IL_000d:
  3382. {
  3383. CustomDataModule_t2135829708 L_1 = V_0;
  3384. return L_1;
  3385. }
  3386. }
  3387. // System.Void UnityEngine.ParticleSystem::SetParticles(UnityEngine.ParticleSystem/Particle[],System.Int32)
  3388. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_SetParticles_m1018124896 (ParticleSystem_t1800779281 * __this, ParticleU5BU5D_t3069227754* ___particles0, int32_t ___size1, const RuntimeMethod* method)
  3389. {
  3390. typedef void (*ParticleSystem_SetParticles_m1018124896_ftn) (ParticleSystem_t1800779281 *, ParticleU5BU5D_t3069227754*, int32_t);
  3391. static ParticleSystem_SetParticles_m1018124896_ftn _il2cpp_icall_func;
  3392. if (!_il2cpp_icall_func)
  3393. _il2cpp_icall_func = (ParticleSystem_SetParticles_m1018124896_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::SetParticles(UnityEngine.ParticleSystem/Particle[],System.Int32)");
  3394. _il2cpp_icall_func(__this, ___particles0, ___size1);
  3395. }
  3396. // System.Int32 UnityEngine.ParticleSystem::GetParticles(UnityEngine.ParticleSystem/Particle[])
  3397. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_GetParticles_m3661771371 (ParticleSystem_t1800779281 * __this, ParticleU5BU5D_t3069227754* ___particles0, const RuntimeMethod* method)
  3398. {
  3399. typedef int32_t (*ParticleSystem_GetParticles_m3661771371_ftn) (ParticleSystem_t1800779281 *, ParticleU5BU5D_t3069227754*);
  3400. static ParticleSystem_GetParticles_m3661771371_ftn _il2cpp_icall_func;
  3401. if (!_il2cpp_icall_func)
  3402. _il2cpp_icall_func = (ParticleSystem_GetParticles_m3661771371_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::GetParticles(UnityEngine.ParticleSystem/Particle[])");
  3403. int32_t retVal = _il2cpp_icall_func(__this, ___particles0);
  3404. return retVal;
  3405. }
  3406. // System.Void UnityEngine.ParticleSystem::SetCustomParticleData(System.Collections.Generic.List`1<UnityEngine.Vector4>,UnityEngine.ParticleSystemCustomData)
  3407. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_SetCustomParticleData_m6680670 (ParticleSystem_t1800779281 * __this, List_1_t496136383 * ___customData0, int32_t ___streamIndex1, const RuntimeMethod* method)
  3408. {
  3409. {
  3410. List_1_t496136383 * L_0 = ___customData0;
  3411. int32_t L_1 = ___streamIndex1;
  3412. ParticleSystem_SetCustomParticleDataInternal_m2473486621(__this, L_0, L_1, /*hidden argument*/NULL);
  3413. return;
  3414. }
  3415. }
  3416. // System.Int32 UnityEngine.ParticleSystem::GetCustomParticleData(System.Collections.Generic.List`1<UnityEngine.Vector4>,UnityEngine.ParticleSystemCustomData)
  3417. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_GetCustomParticleData_m2389963900 (ParticleSystem_t1800779281 * __this, List_1_t496136383 * ___customData0, int32_t ___streamIndex1, const RuntimeMethod* method)
  3418. {
  3419. int32_t V_0 = 0;
  3420. {
  3421. List_1_t496136383 * L_0 = ___customData0;
  3422. int32_t L_1 = ___streamIndex1;
  3423. int32_t L_2 = ParticleSystem_GetCustomParticleDataInternal_m3864058276(__this, L_0, L_1, /*hidden argument*/NULL);
  3424. V_0 = L_2;
  3425. goto IL_000f;
  3426. }
  3427. IL_000f:
  3428. {
  3429. int32_t L_3 = V_0;
  3430. return L_3;
  3431. }
  3432. }
  3433. // System.Void UnityEngine.ParticleSystem::SetCustomParticleDataInternal(System.Object,System.Int32)
  3434. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_SetCustomParticleDataInternal_m2473486621 (ParticleSystem_t1800779281 * __this, RuntimeObject * ___customData0, int32_t ___streamIndex1, const RuntimeMethod* method)
  3435. {
  3436. typedef void (*ParticleSystem_SetCustomParticleDataInternal_m2473486621_ftn) (ParticleSystem_t1800779281 *, RuntimeObject *, int32_t);
  3437. static ParticleSystem_SetCustomParticleDataInternal_m2473486621_ftn _il2cpp_icall_func;
  3438. if (!_il2cpp_icall_func)
  3439. _il2cpp_icall_func = (ParticleSystem_SetCustomParticleDataInternal_m2473486621_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::SetCustomParticleDataInternal(System.Object,System.Int32)");
  3440. _il2cpp_icall_func(__this, ___customData0, ___streamIndex1);
  3441. }
  3442. // System.Int32 UnityEngine.ParticleSystem::GetCustomParticleDataInternal(System.Object,System.Int32)
  3443. extern "C" IL2CPP_METHOD_ATTR int32_t ParticleSystem_GetCustomParticleDataInternal_m3864058276 (ParticleSystem_t1800779281 * __this, RuntimeObject * ___customData0, int32_t ___streamIndex1, const RuntimeMethod* method)
  3444. {
  3445. typedef int32_t (*ParticleSystem_GetCustomParticleDataInternal_m3864058276_ftn) (ParticleSystem_t1800779281 *, RuntimeObject *, int32_t);
  3446. static ParticleSystem_GetCustomParticleDataInternal_m3864058276_ftn _il2cpp_icall_func;
  3447. if (!_il2cpp_icall_func)
  3448. _il2cpp_icall_func = (ParticleSystem_GetCustomParticleDataInternal_m3864058276_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::GetCustomParticleDataInternal(System.Object,System.Int32)");
  3449. int32_t retVal = _il2cpp_icall_func(__this, ___customData0, ___streamIndex1);
  3450. return retVal;
  3451. }
  3452. // System.Void UnityEngine.ParticleSystem::Simulate(System.Single,System.Boolean,System.Boolean,System.Boolean)
  3453. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Simulate_m1921398215 (ParticleSystem_t1800779281 * __this, float ___t0, bool ___withChildren1, bool ___restart2, bool ___fixedTimeStep3, const RuntimeMethod* method)
  3454. {
  3455. typedef void (*ParticleSystem_Simulate_m1921398215_ftn) (ParticleSystem_t1800779281 *, float, bool, bool, bool);
  3456. static ParticleSystem_Simulate_m1921398215_ftn _il2cpp_icall_func;
  3457. if (!_il2cpp_icall_func)
  3458. _il2cpp_icall_func = (ParticleSystem_Simulate_m1921398215_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::Simulate(System.Single,System.Boolean,System.Boolean,System.Boolean)");
  3459. _il2cpp_icall_func(__this, ___t0, ___withChildren1, ___restart2, ___fixedTimeStep3);
  3460. }
  3461. // System.Void UnityEngine.ParticleSystem::Simulate(System.Single,System.Boolean,System.Boolean)
  3462. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Simulate_m2186877927 (ParticleSystem_t1800779281 * __this, float ___t0, bool ___withChildren1, bool ___restart2, const RuntimeMethod* method)
  3463. {
  3464. bool V_0 = false;
  3465. {
  3466. V_0 = (bool)1;
  3467. float L_0 = ___t0;
  3468. bool L_1 = ___withChildren1;
  3469. bool L_2 = ___restart2;
  3470. bool L_3 = V_0;
  3471. ParticleSystem_Simulate_m1921398215(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
  3472. return;
  3473. }
  3474. }
  3475. // System.Void UnityEngine.ParticleSystem::Simulate(System.Single,System.Boolean)
  3476. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Simulate_m2876973594 (ParticleSystem_t1800779281 * __this, float ___t0, bool ___withChildren1, const RuntimeMethod* method)
  3477. {
  3478. bool V_0 = false;
  3479. bool V_1 = false;
  3480. {
  3481. V_0 = (bool)1;
  3482. V_1 = (bool)1;
  3483. float L_0 = ___t0;
  3484. bool L_1 = ___withChildren1;
  3485. bool L_2 = V_1;
  3486. bool L_3 = V_0;
  3487. ParticleSystem_Simulate_m1921398215(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
  3488. return;
  3489. }
  3490. }
  3491. // System.Void UnityEngine.ParticleSystem::Simulate(System.Single)
  3492. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Simulate_m3144085678 (ParticleSystem_t1800779281 * __this, float ___t0, const RuntimeMethod* method)
  3493. {
  3494. bool V_0 = false;
  3495. bool V_1 = false;
  3496. bool V_2 = false;
  3497. {
  3498. V_0 = (bool)1;
  3499. V_1 = (bool)1;
  3500. V_2 = (bool)1;
  3501. float L_0 = ___t0;
  3502. bool L_1 = V_2;
  3503. bool L_2 = V_1;
  3504. bool L_3 = V_0;
  3505. ParticleSystem_Simulate_m1921398215(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
  3506. return;
  3507. }
  3508. }
  3509. // System.Void UnityEngine.ParticleSystem::Play(System.Boolean)
  3510. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Play_m163824593 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method)
  3511. {
  3512. typedef void (*ParticleSystem_Play_m163824593_ftn) (ParticleSystem_t1800779281 *, bool);
  3513. static ParticleSystem_Play_m163824593_ftn _il2cpp_icall_func;
  3514. if (!_il2cpp_icall_func)
  3515. _il2cpp_icall_func = (ParticleSystem_Play_m163824593_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::Play(System.Boolean)");
  3516. _il2cpp_icall_func(__this, ___withChildren0);
  3517. }
  3518. // System.Void UnityEngine.ParticleSystem::Play()
  3519. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Play_m882713458 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3520. {
  3521. bool V_0 = false;
  3522. {
  3523. V_0 = (bool)1;
  3524. bool L_0 = V_0;
  3525. ParticleSystem_Play_m163824593(__this, L_0, /*hidden argument*/NULL);
  3526. return;
  3527. }
  3528. }
  3529. // System.Void UnityEngine.ParticleSystem::Pause(System.Boolean)
  3530. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Pause_m19169084 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method)
  3531. {
  3532. typedef void (*ParticleSystem_Pause_m19169084_ftn) (ParticleSystem_t1800779281 *, bool);
  3533. static ParticleSystem_Pause_m19169084_ftn _il2cpp_icall_func;
  3534. if (!_il2cpp_icall_func)
  3535. _il2cpp_icall_func = (ParticleSystem_Pause_m19169084_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::Pause(System.Boolean)");
  3536. _il2cpp_icall_func(__this, ___withChildren0);
  3537. }
  3538. // System.Void UnityEngine.ParticleSystem::Pause()
  3539. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Pause_m3983736200 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3540. {
  3541. bool V_0 = false;
  3542. {
  3543. V_0 = (bool)1;
  3544. bool L_0 = V_0;
  3545. ParticleSystem_Pause_m19169084(__this, L_0, /*hidden argument*/NULL);
  3546. return;
  3547. }
  3548. }
  3549. // System.Void UnityEngine.ParticleSystem::Stop(System.Boolean,UnityEngine.ParticleSystemStopBehavior)
  3550. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Stop_m3396581118 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, int32_t ___stopBehavior1, const RuntimeMethod* method)
  3551. {
  3552. typedef void (*ParticleSystem_Stop_m3396581118_ftn) (ParticleSystem_t1800779281 *, bool, int32_t);
  3553. static ParticleSystem_Stop_m3396581118_ftn _il2cpp_icall_func;
  3554. if (!_il2cpp_icall_func)
  3555. _il2cpp_icall_func = (ParticleSystem_Stop_m3396581118_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::Stop(System.Boolean,UnityEngine.ParticleSystemStopBehavior)");
  3556. _il2cpp_icall_func(__this, ___withChildren0, ___stopBehavior1);
  3557. }
  3558. // System.Void UnityEngine.ParticleSystem::Stop(System.Boolean)
  3559. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Stop_m1917572469 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method)
  3560. {
  3561. int32_t V_0 = 0;
  3562. {
  3563. V_0 = 1;
  3564. bool L_0 = ___withChildren0;
  3565. int32_t L_1 = V_0;
  3566. ParticleSystem_Stop_m3396581118(__this, L_0, L_1, /*hidden argument*/NULL);
  3567. return;
  3568. }
  3569. }
  3570. // System.Void UnityEngine.ParticleSystem::Stop()
  3571. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Stop_m3125854227 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3572. {
  3573. int32_t V_0 = 0;
  3574. bool V_1 = false;
  3575. {
  3576. V_0 = 1;
  3577. V_1 = (bool)1;
  3578. bool L_0 = V_1;
  3579. int32_t L_1 = V_0;
  3580. ParticleSystem_Stop_m3396581118(__this, L_0, L_1, /*hidden argument*/NULL);
  3581. return;
  3582. }
  3583. }
  3584. // System.Void UnityEngine.ParticleSystem::Clear(System.Boolean)
  3585. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Clear_m2603704560 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method)
  3586. {
  3587. typedef void (*ParticleSystem_Clear_m2603704560_ftn) (ParticleSystem_t1800779281 *, bool);
  3588. static ParticleSystem_Clear_m2603704560_ftn _il2cpp_icall_func;
  3589. if (!_il2cpp_icall_func)
  3590. _il2cpp_icall_func = (ParticleSystem_Clear_m2603704560_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::Clear(System.Boolean)");
  3591. _il2cpp_icall_func(__this, ___withChildren0);
  3592. }
  3593. // System.Void UnityEngine.ParticleSystem::Clear()
  3594. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Clear_m381529807 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3595. {
  3596. bool V_0 = false;
  3597. {
  3598. V_0 = (bool)1;
  3599. bool L_0 = V_0;
  3600. ParticleSystem_Clear_m2603704560(__this, L_0, /*hidden argument*/NULL);
  3601. return;
  3602. }
  3603. }
  3604. // System.Boolean UnityEngine.ParticleSystem::IsAlive(System.Boolean)
  3605. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_IsAlive_m725083112 (ParticleSystem_t1800779281 * __this, bool ___withChildren0, const RuntimeMethod* method)
  3606. {
  3607. typedef bool (*ParticleSystem_IsAlive_m725083112_ftn) (ParticleSystem_t1800779281 *, bool);
  3608. static ParticleSystem_IsAlive_m725083112_ftn _il2cpp_icall_func;
  3609. if (!_il2cpp_icall_func)
  3610. _il2cpp_icall_func = (ParticleSystem_IsAlive_m725083112_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::IsAlive(System.Boolean)");
  3611. bool retVal = _il2cpp_icall_func(__this, ___withChildren0);
  3612. return retVal;
  3613. }
  3614. // System.Boolean UnityEngine.ParticleSystem::IsAlive()
  3615. extern "C" IL2CPP_METHOD_ATTR bool ParticleSystem_IsAlive_m157832276 (ParticleSystem_t1800779281 * __this, const RuntimeMethod* method)
  3616. {
  3617. bool V_0 = false;
  3618. bool V_1 = false;
  3619. {
  3620. V_0 = (bool)1;
  3621. bool L_0 = V_0;
  3622. bool L_1 = ParticleSystem_IsAlive_m725083112(__this, L_0, /*hidden argument*/NULL);
  3623. V_1 = L_1;
  3624. goto IL_0010;
  3625. }
  3626. IL_0010:
  3627. {
  3628. bool L_2 = V_1;
  3629. return L_2;
  3630. }
  3631. }
  3632. // System.Void UnityEngine.ParticleSystem::Emit(System.Int32)
  3633. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Emit_m2162102900 (ParticleSystem_t1800779281 * __this, int32_t ___count0, const RuntimeMethod* method)
  3634. {
  3635. {
  3636. int32_t L_0 = ___count0;
  3637. ParticleSystem_INTERNAL_CALL_Emit_m662166748(NULL /*static, unused*/, __this, L_0, /*hidden argument*/NULL);
  3638. return;
  3639. }
  3640. }
  3641. // System.Void UnityEngine.ParticleSystem::INTERNAL_CALL_Emit(UnityEngine.ParticleSystem,System.Int32)
  3642. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_INTERNAL_CALL_Emit_m662166748 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___self0, int32_t ___count1, const RuntimeMethod* method)
  3643. {
  3644. typedef void (*ParticleSystem_INTERNAL_CALL_Emit_m662166748_ftn) (ParticleSystem_t1800779281 *, int32_t);
  3645. static ParticleSystem_INTERNAL_CALL_Emit_m662166748_ftn _il2cpp_icall_func;
  3646. if (!_il2cpp_icall_func)
  3647. _il2cpp_icall_func = (ParticleSystem_INTERNAL_CALL_Emit_m662166748_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::INTERNAL_CALL_Emit(UnityEngine.ParticleSystem,System.Int32)");
  3648. _il2cpp_icall_func(___self0, ___count1);
  3649. }
  3650. // System.Void UnityEngine.ParticleSystem::Emit(UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Single,UnityEngine.Color32)
  3651. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Emit_m497964751 (ParticleSystem_t1800779281 * __this, Vector3_t3722313464 ___position0, Vector3_t3722313464 ___velocity1, float ___size2, float ___lifetime3, Color32_t2600501292 ___color4, const RuntimeMethod* method)
  3652. {
  3653. static bool s_Il2CppMethodInitialized;
  3654. if (!s_Il2CppMethodInitialized)
  3655. {
  3656. il2cpp_codegen_initialize_method (ParticleSystem_Emit_m497964751_MetadataUsageId);
  3657. s_Il2CppMethodInitialized = true;
  3658. }
  3659. Particle_t1882894987 V_0;
  3660. memset(&V_0, 0, sizeof(V_0));
  3661. {
  3662. il2cpp_codegen_initobj((&V_0), sizeof(Particle_t1882894987 ));
  3663. Vector3_t3722313464 L_0 = ___position0;
  3664. Particle_set_position_m4147191379((&V_0), L_0, /*hidden argument*/NULL);
  3665. Vector3_t3722313464 L_1 = ___velocity1;
  3666. Particle_set_velocity_m1686335204((&V_0), L_1, /*hidden argument*/NULL);
  3667. float L_2 = ___lifetime3;
  3668. Particle_set_lifetime_m1971908220((&V_0), L_2, /*hidden argument*/NULL);
  3669. float L_3 = ___lifetime3;
  3670. Particle_set_startLifetime_m2608171500((&V_0), L_3, /*hidden argument*/NULL);
  3671. float L_4 = ___size2;
  3672. Particle_set_startSize_m2554682920((&V_0), L_4, /*hidden argument*/NULL);
  3673. IL2CPP_RUNTIME_CLASS_INIT(Vector3_t3722313464_il2cpp_TypeInfo_var);
  3674. Vector3_t3722313464 L_5 = Vector3_get_zero_m1409827619(NULL /*static, unused*/, /*hidden argument*/NULL);
  3675. Particle_set_rotation3D_m2156157200((&V_0), L_5, /*hidden argument*/NULL);
  3676. Vector3_t3722313464 L_6 = Vector3_get_zero_m1409827619(NULL /*static, unused*/, /*hidden argument*/NULL);
  3677. Particle_set_angularVelocity3D_m3163963446((&V_0), L_6, /*hidden argument*/NULL);
  3678. Color32_t2600501292 L_7 = ___color4;
  3679. Particle_set_startColor_m3825027702((&V_0), L_7, /*hidden argument*/NULL);
  3680. Particle_set_randomSeed_m2900137887((&V_0), 5, /*hidden argument*/NULL);
  3681. ParticleSystem_Internal_EmitOld_m3511379528(__this, (&V_0), /*hidden argument*/NULL);
  3682. return;
  3683. }
  3684. }
  3685. // System.Void UnityEngine.ParticleSystem::Emit(UnityEngine.ParticleSystem/Particle)
  3686. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Emit_m4116897928 (ParticleSystem_t1800779281 * __this, Particle_t1882894987 ___particle0, const RuntimeMethod* method)
  3687. {
  3688. {
  3689. ParticleSystem_Internal_EmitOld_m3511379528(__this, (&___particle0), /*hidden argument*/NULL);
  3690. return;
  3691. }
  3692. }
  3693. // System.Void UnityEngine.ParticleSystem::Internal_EmitOld(UnityEngine.ParticleSystem/Particle&)
  3694. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Internal_EmitOld_m3511379528 (ParticleSystem_t1800779281 * __this, Particle_t1882894987 * ___particle0, const RuntimeMethod* method)
  3695. {
  3696. typedef void (*ParticleSystem_Internal_EmitOld_m3511379528_ftn) (ParticleSystem_t1800779281 *, Particle_t1882894987 *);
  3697. static ParticleSystem_Internal_EmitOld_m3511379528_ftn _il2cpp_icall_func;
  3698. if (!_il2cpp_icall_func)
  3699. _il2cpp_icall_func = (ParticleSystem_Internal_EmitOld_m3511379528_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::Internal_EmitOld(UnityEngine.ParticleSystem/Particle&)");
  3700. _il2cpp_icall_func(__this, ___particle0);
  3701. }
  3702. // System.Void UnityEngine.ParticleSystem::Emit(UnityEngine.ParticleSystem/EmitParams,System.Int32)
  3703. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Emit_m1241484254 (ParticleSystem_t1800779281 * __this, EmitParams_t2216423628 ___emitParams0, int32_t ___count1, const RuntimeMethod* method)
  3704. {
  3705. {
  3706. int32_t L_0 = ___count1;
  3707. ParticleSystem_Internal_Emit_m2240046946(__this, (&___emitParams0), L_0, /*hidden argument*/NULL);
  3708. return;
  3709. }
  3710. }
  3711. // System.Void UnityEngine.ParticleSystem::Internal_Emit(UnityEngine.ParticleSystem/EmitParams&,System.Int32)
  3712. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_Internal_Emit_m2240046946 (ParticleSystem_t1800779281 * __this, EmitParams_t2216423628 * ___emitParams0, int32_t ___count1, const RuntimeMethod* method)
  3713. {
  3714. typedef void (*ParticleSystem_Internal_Emit_m2240046946_ftn) (ParticleSystem_t1800779281 *, EmitParams_t2216423628 *, int32_t);
  3715. static ParticleSystem_Internal_Emit_m2240046946_ftn _il2cpp_icall_func;
  3716. if (!_il2cpp_icall_func)
  3717. _il2cpp_icall_func = (ParticleSystem_Internal_Emit_m2240046946_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::Internal_Emit(UnityEngine.ParticleSystem/EmitParams&,System.Int32)");
  3718. _il2cpp_icall_func(__this, ___emitParams0, ___count1);
  3719. }
  3720. // System.Void UnityEngine.ParticleSystem::EnableMeshNonUniformScaleFix(System.Boolean)
  3721. extern "C" IL2CPP_METHOD_ATTR void ParticleSystem_EnableMeshNonUniformScaleFix_m4183121343 (RuntimeObject * __this /* static, unused */, bool ___enabled0, const RuntimeMethod* method)
  3722. {
  3723. typedef void (*ParticleSystem_EnableMeshNonUniformScaleFix_m4183121343_ftn) (bool);
  3724. static ParticleSystem_EnableMeshNonUniformScaleFix_m4183121343_ftn _il2cpp_icall_func;
  3725. if (!_il2cpp_icall_func)
  3726. _il2cpp_icall_func = (ParticleSystem_EnableMeshNonUniformScaleFix_m4183121343_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem::EnableMeshNonUniformScaleFix(System.Boolean)");
  3727. _il2cpp_icall_func(___enabled0);
  3728. }
  3729. #ifdef __clang__
  3730. #pragma clang diagnostic pop
  3731. #endif
  3732. #ifdef __clang__
  3733. #pragma clang diagnostic push
  3734. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3735. #pragma clang diagnostic ignored "-Wunused-variable"
  3736. #endif
  3737. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/CollisionModule
  3738. extern "C" void CollisionModule_t1950979710_marshal_pinvoke(const CollisionModule_t1950979710& unmarshaled, CollisionModule_t1950979710_marshaled_pinvoke& marshaled)
  3739. {
  3740. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CollisionModule': Reference type field marshaling is not supported.");
  3741. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3742. }
  3743. extern "C" void CollisionModule_t1950979710_marshal_pinvoke_back(const CollisionModule_t1950979710_marshaled_pinvoke& marshaled, CollisionModule_t1950979710& unmarshaled)
  3744. {
  3745. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CollisionModule': Reference type field marshaling is not supported.");
  3746. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3747. }
  3748. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/CollisionModule
  3749. extern "C" void CollisionModule_t1950979710_marshal_pinvoke_cleanup(CollisionModule_t1950979710_marshaled_pinvoke& marshaled)
  3750. {
  3751. }
  3752. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/CollisionModule
  3753. extern "C" void CollisionModule_t1950979710_marshal_com(const CollisionModule_t1950979710& unmarshaled, CollisionModule_t1950979710_marshaled_com& marshaled)
  3754. {
  3755. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CollisionModule': Reference type field marshaling is not supported.");
  3756. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3757. }
  3758. extern "C" void CollisionModule_t1950979710_marshal_com_back(const CollisionModule_t1950979710_marshaled_com& marshaled, CollisionModule_t1950979710& unmarshaled)
  3759. {
  3760. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CollisionModule': Reference type field marshaling is not supported.");
  3761. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3762. }
  3763. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/CollisionModule
  3764. extern "C" void CollisionModule_t1950979710_marshal_com_cleanup(CollisionModule_t1950979710_marshaled_com& marshaled)
  3765. {
  3766. }
  3767. // System.Void UnityEngine.ParticleSystem/CollisionModule::.ctor(UnityEngine.ParticleSystem)
  3768. extern "C" IL2CPP_METHOD_ATTR void CollisionModule__ctor_m247283919 (CollisionModule_t1950979710 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3769. {
  3770. {
  3771. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  3772. __this->set_m_ParticleSystem_0(L_0);
  3773. return;
  3774. }
  3775. }
  3776. extern "C" void CollisionModule__ctor_m247283919_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3777. {
  3778. CollisionModule_t1950979710 * _thisAdjusted = reinterpret_cast<CollisionModule_t1950979710 *>(__this + 1);
  3779. CollisionModule__ctor_m247283919(_thisAdjusted, ___particleSystem0, method);
  3780. }
  3781. #ifdef __clang__
  3782. #pragma clang diagnostic pop
  3783. #endif
  3784. #ifdef __clang__
  3785. #pragma clang diagnostic push
  3786. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3787. #pragma clang diagnostic ignored "-Wunused-variable"
  3788. #endif
  3789. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ColorBySpeedModule
  3790. extern "C" void ColorBySpeedModule_t3740209408_marshal_pinvoke(const ColorBySpeedModule_t3740209408& unmarshaled, ColorBySpeedModule_t3740209408_marshaled_pinvoke& marshaled)
  3791. {
  3792. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorBySpeedModule': Reference type field marshaling is not supported.");
  3793. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3794. }
  3795. extern "C" void ColorBySpeedModule_t3740209408_marshal_pinvoke_back(const ColorBySpeedModule_t3740209408_marshaled_pinvoke& marshaled, ColorBySpeedModule_t3740209408& unmarshaled)
  3796. {
  3797. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorBySpeedModule': Reference type field marshaling is not supported.");
  3798. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3799. }
  3800. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ColorBySpeedModule
  3801. extern "C" void ColorBySpeedModule_t3740209408_marshal_pinvoke_cleanup(ColorBySpeedModule_t3740209408_marshaled_pinvoke& marshaled)
  3802. {
  3803. }
  3804. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ColorBySpeedModule
  3805. extern "C" void ColorBySpeedModule_t3740209408_marshal_com(const ColorBySpeedModule_t3740209408& unmarshaled, ColorBySpeedModule_t3740209408_marshaled_com& marshaled)
  3806. {
  3807. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorBySpeedModule': Reference type field marshaling is not supported.");
  3808. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3809. }
  3810. extern "C" void ColorBySpeedModule_t3740209408_marshal_com_back(const ColorBySpeedModule_t3740209408_marshaled_com& marshaled, ColorBySpeedModule_t3740209408& unmarshaled)
  3811. {
  3812. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorBySpeedModule': Reference type field marshaling is not supported.");
  3813. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3814. }
  3815. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ColorBySpeedModule
  3816. extern "C" void ColorBySpeedModule_t3740209408_marshal_com_cleanup(ColorBySpeedModule_t3740209408_marshaled_com& marshaled)
  3817. {
  3818. }
  3819. // System.Void UnityEngine.ParticleSystem/ColorBySpeedModule::.ctor(UnityEngine.ParticleSystem)
  3820. extern "C" IL2CPP_METHOD_ATTR void ColorBySpeedModule__ctor_m806377702 (ColorBySpeedModule_t3740209408 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3821. {
  3822. {
  3823. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  3824. __this->set_m_ParticleSystem_0(L_0);
  3825. return;
  3826. }
  3827. }
  3828. extern "C" void ColorBySpeedModule__ctor_m806377702_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3829. {
  3830. ColorBySpeedModule_t3740209408 * _thisAdjusted = reinterpret_cast<ColorBySpeedModule_t3740209408 *>(__this + 1);
  3831. ColorBySpeedModule__ctor_m806377702(_thisAdjusted, ___particleSystem0, method);
  3832. }
  3833. #ifdef __clang__
  3834. #pragma clang diagnostic pop
  3835. #endif
  3836. #ifdef __clang__
  3837. #pragma clang diagnostic push
  3838. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3839. #pragma clang diagnostic ignored "-Wunused-variable"
  3840. #endif
  3841. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ColorOverLifetimeModule
  3842. extern "C" void ColorOverLifetimeModule_t3039228654_marshal_pinvoke(const ColorOverLifetimeModule_t3039228654& unmarshaled, ColorOverLifetimeModule_t3039228654_marshaled_pinvoke& marshaled)
  3843. {
  3844. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorOverLifetimeModule': Reference type field marshaling is not supported.");
  3845. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3846. }
  3847. extern "C" void ColorOverLifetimeModule_t3039228654_marshal_pinvoke_back(const ColorOverLifetimeModule_t3039228654_marshaled_pinvoke& marshaled, ColorOverLifetimeModule_t3039228654& unmarshaled)
  3848. {
  3849. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorOverLifetimeModule': Reference type field marshaling is not supported.");
  3850. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3851. }
  3852. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ColorOverLifetimeModule
  3853. extern "C" void ColorOverLifetimeModule_t3039228654_marshal_pinvoke_cleanup(ColorOverLifetimeModule_t3039228654_marshaled_pinvoke& marshaled)
  3854. {
  3855. }
  3856. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ColorOverLifetimeModule
  3857. extern "C" void ColorOverLifetimeModule_t3039228654_marshal_com(const ColorOverLifetimeModule_t3039228654& unmarshaled, ColorOverLifetimeModule_t3039228654_marshaled_com& marshaled)
  3858. {
  3859. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorOverLifetimeModule': Reference type field marshaling is not supported.");
  3860. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3861. }
  3862. extern "C" void ColorOverLifetimeModule_t3039228654_marshal_com_back(const ColorOverLifetimeModule_t3039228654_marshaled_com& marshaled, ColorOverLifetimeModule_t3039228654& unmarshaled)
  3863. {
  3864. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ColorOverLifetimeModule': Reference type field marshaling is not supported.");
  3865. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3866. }
  3867. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ColorOverLifetimeModule
  3868. extern "C" void ColorOverLifetimeModule_t3039228654_marshal_com_cleanup(ColorOverLifetimeModule_t3039228654_marshaled_com& marshaled)
  3869. {
  3870. }
  3871. // System.Void UnityEngine.ParticleSystem/ColorOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  3872. extern "C" IL2CPP_METHOD_ATTR void ColorOverLifetimeModule__ctor_m180503459 (ColorOverLifetimeModule_t3039228654 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3873. {
  3874. {
  3875. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  3876. __this->set_m_ParticleSystem_0(L_0);
  3877. return;
  3878. }
  3879. }
  3880. extern "C" void ColorOverLifetimeModule__ctor_m180503459_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3881. {
  3882. ColorOverLifetimeModule_t3039228654 * _thisAdjusted = reinterpret_cast<ColorOverLifetimeModule_t3039228654 *>(__this + 1);
  3883. ColorOverLifetimeModule__ctor_m180503459(_thisAdjusted, ___particleSystem0, method);
  3884. }
  3885. #ifdef __clang__
  3886. #pragma clang diagnostic pop
  3887. #endif
  3888. #ifdef __clang__
  3889. #pragma clang diagnostic push
  3890. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3891. #pragma clang diagnostic ignored "-Wunused-variable"
  3892. #endif
  3893. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/CustomDataModule
  3894. extern "C" void CustomDataModule_t2135829708_marshal_pinvoke(const CustomDataModule_t2135829708& unmarshaled, CustomDataModule_t2135829708_marshaled_pinvoke& marshaled)
  3895. {
  3896. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CustomDataModule': Reference type field marshaling is not supported.");
  3897. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3898. }
  3899. extern "C" void CustomDataModule_t2135829708_marshal_pinvoke_back(const CustomDataModule_t2135829708_marshaled_pinvoke& marshaled, CustomDataModule_t2135829708& unmarshaled)
  3900. {
  3901. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CustomDataModule': Reference type field marshaling is not supported.");
  3902. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3903. }
  3904. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/CustomDataModule
  3905. extern "C" void CustomDataModule_t2135829708_marshal_pinvoke_cleanup(CustomDataModule_t2135829708_marshaled_pinvoke& marshaled)
  3906. {
  3907. }
  3908. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/CustomDataModule
  3909. extern "C" void CustomDataModule_t2135829708_marshal_com(const CustomDataModule_t2135829708& unmarshaled, CustomDataModule_t2135829708_marshaled_com& marshaled)
  3910. {
  3911. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CustomDataModule': Reference type field marshaling is not supported.");
  3912. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3913. }
  3914. extern "C" void CustomDataModule_t2135829708_marshal_com_back(const CustomDataModule_t2135829708_marshaled_com& marshaled, CustomDataModule_t2135829708& unmarshaled)
  3915. {
  3916. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'CustomDataModule': Reference type field marshaling is not supported.");
  3917. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3918. }
  3919. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/CustomDataModule
  3920. extern "C" void CustomDataModule_t2135829708_marshal_com_cleanup(CustomDataModule_t2135829708_marshaled_com& marshaled)
  3921. {
  3922. }
  3923. // System.Void UnityEngine.ParticleSystem/CustomDataModule::.ctor(UnityEngine.ParticleSystem)
  3924. extern "C" IL2CPP_METHOD_ATTR void CustomDataModule__ctor_m3151489217 (CustomDataModule_t2135829708 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3925. {
  3926. {
  3927. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  3928. __this->set_m_ParticleSystem_0(L_0);
  3929. return;
  3930. }
  3931. }
  3932. extern "C" void CustomDataModule__ctor_m3151489217_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3933. {
  3934. CustomDataModule_t2135829708 * _thisAdjusted = reinterpret_cast<CustomDataModule_t2135829708 *>(__this + 1);
  3935. CustomDataModule__ctor_m3151489217(_thisAdjusted, ___particleSystem0, method);
  3936. }
  3937. #ifdef __clang__
  3938. #pragma clang diagnostic pop
  3939. #endif
  3940. #ifdef __clang__
  3941. #pragma clang diagnostic push
  3942. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3943. #pragma clang diagnostic ignored "-Wunused-variable"
  3944. #endif
  3945. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/EmissionModule
  3946. extern "C" void EmissionModule_t311448003_marshal_pinvoke(const EmissionModule_t311448003& unmarshaled, EmissionModule_t311448003_marshaled_pinvoke& marshaled)
  3947. {
  3948. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'EmissionModule': Reference type field marshaling is not supported.");
  3949. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3950. }
  3951. extern "C" void EmissionModule_t311448003_marshal_pinvoke_back(const EmissionModule_t311448003_marshaled_pinvoke& marshaled, EmissionModule_t311448003& unmarshaled)
  3952. {
  3953. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'EmissionModule': Reference type field marshaling is not supported.");
  3954. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3955. }
  3956. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/EmissionModule
  3957. extern "C" void EmissionModule_t311448003_marshal_pinvoke_cleanup(EmissionModule_t311448003_marshaled_pinvoke& marshaled)
  3958. {
  3959. }
  3960. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/EmissionModule
  3961. extern "C" void EmissionModule_t311448003_marshal_com(const EmissionModule_t311448003& unmarshaled, EmissionModule_t311448003_marshaled_com& marshaled)
  3962. {
  3963. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'EmissionModule': Reference type field marshaling is not supported.");
  3964. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3965. }
  3966. extern "C" void EmissionModule_t311448003_marshal_com_back(const EmissionModule_t311448003_marshaled_com& marshaled, EmissionModule_t311448003& unmarshaled)
  3967. {
  3968. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'EmissionModule': Reference type field marshaling is not supported.");
  3969. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  3970. }
  3971. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/EmissionModule
  3972. extern "C" void EmissionModule_t311448003_marshal_com_cleanup(EmissionModule_t311448003_marshaled_com& marshaled)
  3973. {
  3974. }
  3975. // System.Void UnityEngine.ParticleSystem/EmissionModule::.ctor(UnityEngine.ParticleSystem)
  3976. extern "C" IL2CPP_METHOD_ATTR void EmissionModule__ctor_m3908790904 (EmissionModule_t311448003 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3977. {
  3978. {
  3979. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  3980. __this->set_m_ParticleSystem_0(L_0);
  3981. return;
  3982. }
  3983. }
  3984. extern "C" void EmissionModule__ctor_m3908790904_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  3985. {
  3986. EmissionModule_t311448003 * _thisAdjusted = reinterpret_cast<EmissionModule_t311448003 *>(__this + 1);
  3987. EmissionModule__ctor_m3908790904(_thisAdjusted, ___particleSystem0, method);
  3988. }
  3989. // System.Void UnityEngine.ParticleSystem/EmissionModule::set_enabled(System.Boolean)
  3990. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_set_enabled_m353945573 (EmissionModule_t311448003 * __this, bool ___value0, const RuntimeMethod* method)
  3991. {
  3992. {
  3993. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  3994. bool L_1 = ___value0;
  3995. EmissionModule_SetEnabled_m1150129533(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  3996. return;
  3997. }
  3998. }
  3999. extern "C" void EmissionModule_set_enabled_m353945573_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
  4000. {
  4001. EmissionModule_t311448003 * _thisAdjusted = reinterpret_cast<EmissionModule_t311448003 *>(__this + 1);
  4002. EmissionModule_set_enabled_m353945573(_thisAdjusted, ___value0, method);
  4003. }
  4004. // System.Boolean UnityEngine.ParticleSystem/EmissionModule::get_enabled()
  4005. extern "C" IL2CPP_METHOD_ATTR bool EmissionModule_get_enabled_m887932283 (EmissionModule_t311448003 * __this, const RuntimeMethod* method)
  4006. {
  4007. bool V_0 = false;
  4008. {
  4009. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4010. bool L_1 = EmissionModule_GetEnabled_m3897745754(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  4011. V_0 = L_1;
  4012. goto IL_0012;
  4013. }
  4014. IL_0012:
  4015. {
  4016. bool L_2 = V_0;
  4017. return L_2;
  4018. }
  4019. }
  4020. extern "C" bool EmissionModule_get_enabled_m887932283_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4021. {
  4022. EmissionModule_t311448003 * _thisAdjusted = reinterpret_cast<EmissionModule_t311448003 *>(__this + 1);
  4023. return EmissionModule_get_enabled_m887932283(_thisAdjusted, method);
  4024. }
  4025. // System.Void UnityEngine.ParticleSystem/EmissionModule::set_rateOverTime(UnityEngine.ParticleSystem/MinMaxCurve)
  4026. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_set_rateOverTime_m3001949402 (EmissionModule_t311448003 * __this, MinMaxCurve_t1067599125 ___value0, const RuntimeMethod* method)
  4027. {
  4028. {
  4029. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4030. EmissionModule_SetRateOverTime_m1878531883(NULL /*static, unused*/, L_0, (&___value0), /*hidden argument*/NULL);
  4031. return;
  4032. }
  4033. }
  4034. extern "C" void EmissionModule_set_rateOverTime_m3001949402_AdjustorThunk (RuntimeObject * __this, MinMaxCurve_t1067599125 ___value0, const RuntimeMethod* method)
  4035. {
  4036. EmissionModule_t311448003 * _thisAdjusted = reinterpret_cast<EmissionModule_t311448003 *>(__this + 1);
  4037. EmissionModule_set_rateOverTime_m3001949402(_thisAdjusted, ___value0, method);
  4038. }
  4039. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/EmissionModule::get_rateOverTime()
  4040. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 EmissionModule_get_rateOverTime_m865519278 (EmissionModule_t311448003 * __this, const RuntimeMethod* method)
  4041. {
  4042. MinMaxCurve_t1067599125 V_0;
  4043. memset(&V_0, 0, sizeof(V_0));
  4044. MinMaxCurve_t1067599125 V_1;
  4045. memset(&V_1, 0, sizeof(V_1));
  4046. {
  4047. il2cpp_codegen_initobj((&V_0), sizeof(MinMaxCurve_t1067599125 ));
  4048. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4049. EmissionModule_GetRateOverTime_m4185674785(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL);
  4050. MinMaxCurve_t1067599125 L_1 = V_0;
  4051. V_1 = L_1;
  4052. goto IL_001d;
  4053. }
  4054. IL_001d:
  4055. {
  4056. MinMaxCurve_t1067599125 L_2 = V_1;
  4057. return L_2;
  4058. }
  4059. }
  4060. extern "C" MinMaxCurve_t1067599125 EmissionModule_get_rateOverTime_m865519278_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4061. {
  4062. EmissionModule_t311448003 * _thisAdjusted = reinterpret_cast<EmissionModule_t311448003 *>(__this + 1);
  4063. return EmissionModule_get_rateOverTime_m865519278(_thisAdjusted, method);
  4064. }
  4065. // System.Single UnityEngine.ParticleSystem/EmissionModule::get_rateOverTimeMultiplier()
  4066. extern "C" IL2CPP_METHOD_ATTR float EmissionModule_get_rateOverTimeMultiplier_m1669775033 (EmissionModule_t311448003 * __this, const RuntimeMethod* method)
  4067. {
  4068. float V_0 = 0.0f;
  4069. {
  4070. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4071. float L_1 = EmissionModule_GetRateOverTimeMultiplier_m1715739015(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  4072. V_0 = L_1;
  4073. goto IL_0012;
  4074. }
  4075. IL_0012:
  4076. {
  4077. float L_2 = V_0;
  4078. return L_2;
  4079. }
  4080. }
  4081. extern "C" float EmissionModule_get_rateOverTimeMultiplier_m1669775033_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4082. {
  4083. EmissionModule_t311448003 * _thisAdjusted = reinterpret_cast<EmissionModule_t311448003 *>(__this + 1);
  4084. return EmissionModule_get_rateOverTimeMultiplier_m1669775033(_thisAdjusted, method);
  4085. }
  4086. // System.Void UnityEngine.ParticleSystem/EmissionModule::SetEnabled(UnityEngine.ParticleSystem,System.Boolean)
  4087. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_SetEnabled_m1150129533 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, bool ___value1, const RuntimeMethod* method)
  4088. {
  4089. typedef void (*EmissionModule_SetEnabled_m1150129533_ftn) (ParticleSystem_t1800779281 *, bool);
  4090. static EmissionModule_SetEnabled_m1150129533_ftn _il2cpp_icall_func;
  4091. if (!_il2cpp_icall_func)
  4092. _il2cpp_icall_func = (EmissionModule_SetEnabled_m1150129533_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/EmissionModule::SetEnabled(UnityEngine.ParticleSystem,System.Boolean)");
  4093. _il2cpp_icall_func(___system0, ___value1);
  4094. }
  4095. // System.Boolean UnityEngine.ParticleSystem/EmissionModule::GetEnabled(UnityEngine.ParticleSystem)
  4096. extern "C" IL2CPP_METHOD_ATTR bool EmissionModule_GetEnabled_m3897745754 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  4097. {
  4098. typedef bool (*EmissionModule_GetEnabled_m3897745754_ftn) (ParticleSystem_t1800779281 *);
  4099. static EmissionModule_GetEnabled_m3897745754_ftn _il2cpp_icall_func;
  4100. if (!_il2cpp_icall_func)
  4101. _il2cpp_icall_func = (EmissionModule_GetEnabled_m3897745754_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/EmissionModule::GetEnabled(UnityEngine.ParticleSystem)");
  4102. bool retVal = _il2cpp_icall_func(___system0);
  4103. return retVal;
  4104. }
  4105. // System.Void UnityEngine.ParticleSystem/EmissionModule::SetRateOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  4106. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_SetRateOverTime_m1878531883 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method)
  4107. {
  4108. typedef void (*EmissionModule_SetRateOverTime_m1878531883_ftn) (ParticleSystem_t1800779281 *, MinMaxCurve_t1067599125 *);
  4109. static EmissionModule_SetRateOverTime_m1878531883_ftn _il2cpp_icall_func;
  4110. if (!_il2cpp_icall_func)
  4111. _il2cpp_icall_func = (EmissionModule_SetRateOverTime_m1878531883_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/EmissionModule::SetRateOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)");
  4112. _il2cpp_icall_func(___system0, ___curve1);
  4113. }
  4114. // System.Void UnityEngine.ParticleSystem/EmissionModule::GetRateOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  4115. extern "C" IL2CPP_METHOD_ATTR void EmissionModule_GetRateOverTime_m4185674785 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method)
  4116. {
  4117. typedef void (*EmissionModule_GetRateOverTime_m4185674785_ftn) (ParticleSystem_t1800779281 *, MinMaxCurve_t1067599125 *);
  4118. static EmissionModule_GetRateOverTime_m4185674785_ftn _il2cpp_icall_func;
  4119. if (!_il2cpp_icall_func)
  4120. _il2cpp_icall_func = (EmissionModule_GetRateOverTime_m4185674785_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/EmissionModule::GetRateOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)");
  4121. _il2cpp_icall_func(___system0, ___curve1);
  4122. }
  4123. // System.Single UnityEngine.ParticleSystem/EmissionModule::GetRateOverTimeMultiplier(UnityEngine.ParticleSystem)
  4124. extern "C" IL2CPP_METHOD_ATTR float EmissionModule_GetRateOverTimeMultiplier_m1715739015 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  4125. {
  4126. typedef float (*EmissionModule_GetRateOverTimeMultiplier_m1715739015_ftn) (ParticleSystem_t1800779281 *);
  4127. static EmissionModule_GetRateOverTimeMultiplier_m1715739015_ftn _il2cpp_icall_func;
  4128. if (!_il2cpp_icall_func)
  4129. _il2cpp_icall_func = (EmissionModule_GetRateOverTimeMultiplier_m1715739015_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/EmissionModule::GetRateOverTimeMultiplier(UnityEngine.ParticleSystem)");
  4130. float retVal = _il2cpp_icall_func(___system0);
  4131. return retVal;
  4132. }
  4133. #ifdef __clang__
  4134. #pragma clang diagnostic pop
  4135. #endif
  4136. #ifdef __clang__
  4137. #pragma clang diagnostic push
  4138. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4139. #pragma clang diagnostic ignored "-Wunused-variable"
  4140. #endif
  4141. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/EmitParams
  4142. extern "C" void EmitParams_t2216423628_marshal_pinvoke(const EmitParams_t2216423628& unmarshaled, EmitParams_t2216423628_marshaled_pinvoke& marshaled)
  4143. {
  4144. marshaled.___m_Particle_0 = unmarshaled.get_m_Particle_0();
  4145. marshaled.___m_PositionSet_1 = static_cast<int32_t>(unmarshaled.get_m_PositionSet_1());
  4146. marshaled.___m_VelocitySet_2 = static_cast<int32_t>(unmarshaled.get_m_VelocitySet_2());
  4147. marshaled.___m_AxisOfRotationSet_3 = static_cast<int32_t>(unmarshaled.get_m_AxisOfRotationSet_3());
  4148. marshaled.___m_RotationSet_4 = static_cast<int32_t>(unmarshaled.get_m_RotationSet_4());
  4149. marshaled.___m_AngularVelocitySet_5 = static_cast<int32_t>(unmarshaled.get_m_AngularVelocitySet_5());
  4150. marshaled.___m_StartSizeSet_6 = static_cast<int32_t>(unmarshaled.get_m_StartSizeSet_6());
  4151. marshaled.___m_StartColorSet_7 = static_cast<int32_t>(unmarshaled.get_m_StartColorSet_7());
  4152. marshaled.___m_RandomSeedSet_8 = static_cast<int32_t>(unmarshaled.get_m_RandomSeedSet_8());
  4153. marshaled.___m_StartLifetimeSet_9 = static_cast<int32_t>(unmarshaled.get_m_StartLifetimeSet_9());
  4154. marshaled.___m_ApplyShapeToPosition_10 = static_cast<int32_t>(unmarshaled.get_m_ApplyShapeToPosition_10());
  4155. }
  4156. extern "C" void EmitParams_t2216423628_marshal_pinvoke_back(const EmitParams_t2216423628_marshaled_pinvoke& marshaled, EmitParams_t2216423628& unmarshaled)
  4157. {
  4158. Particle_t1882894987 unmarshaled_m_Particle_temp_0;
  4159. memset(&unmarshaled_m_Particle_temp_0, 0, sizeof(unmarshaled_m_Particle_temp_0));
  4160. unmarshaled_m_Particle_temp_0 = marshaled.___m_Particle_0;
  4161. unmarshaled.set_m_Particle_0(unmarshaled_m_Particle_temp_0);
  4162. bool unmarshaled_m_PositionSet_temp_1 = false;
  4163. unmarshaled_m_PositionSet_temp_1 = static_cast<bool>(marshaled.___m_PositionSet_1);
  4164. unmarshaled.set_m_PositionSet_1(unmarshaled_m_PositionSet_temp_1);
  4165. bool unmarshaled_m_VelocitySet_temp_2 = false;
  4166. unmarshaled_m_VelocitySet_temp_2 = static_cast<bool>(marshaled.___m_VelocitySet_2);
  4167. unmarshaled.set_m_VelocitySet_2(unmarshaled_m_VelocitySet_temp_2);
  4168. bool unmarshaled_m_AxisOfRotationSet_temp_3 = false;
  4169. unmarshaled_m_AxisOfRotationSet_temp_3 = static_cast<bool>(marshaled.___m_AxisOfRotationSet_3);
  4170. unmarshaled.set_m_AxisOfRotationSet_3(unmarshaled_m_AxisOfRotationSet_temp_3);
  4171. bool unmarshaled_m_RotationSet_temp_4 = false;
  4172. unmarshaled_m_RotationSet_temp_4 = static_cast<bool>(marshaled.___m_RotationSet_4);
  4173. unmarshaled.set_m_RotationSet_4(unmarshaled_m_RotationSet_temp_4);
  4174. bool unmarshaled_m_AngularVelocitySet_temp_5 = false;
  4175. unmarshaled_m_AngularVelocitySet_temp_5 = static_cast<bool>(marshaled.___m_AngularVelocitySet_5);
  4176. unmarshaled.set_m_AngularVelocitySet_5(unmarshaled_m_AngularVelocitySet_temp_5);
  4177. bool unmarshaled_m_StartSizeSet_temp_6 = false;
  4178. unmarshaled_m_StartSizeSet_temp_6 = static_cast<bool>(marshaled.___m_StartSizeSet_6);
  4179. unmarshaled.set_m_StartSizeSet_6(unmarshaled_m_StartSizeSet_temp_6);
  4180. bool unmarshaled_m_StartColorSet_temp_7 = false;
  4181. unmarshaled_m_StartColorSet_temp_7 = static_cast<bool>(marshaled.___m_StartColorSet_7);
  4182. unmarshaled.set_m_StartColorSet_7(unmarshaled_m_StartColorSet_temp_7);
  4183. bool unmarshaled_m_RandomSeedSet_temp_8 = false;
  4184. unmarshaled_m_RandomSeedSet_temp_8 = static_cast<bool>(marshaled.___m_RandomSeedSet_8);
  4185. unmarshaled.set_m_RandomSeedSet_8(unmarshaled_m_RandomSeedSet_temp_8);
  4186. bool unmarshaled_m_StartLifetimeSet_temp_9 = false;
  4187. unmarshaled_m_StartLifetimeSet_temp_9 = static_cast<bool>(marshaled.___m_StartLifetimeSet_9);
  4188. unmarshaled.set_m_StartLifetimeSet_9(unmarshaled_m_StartLifetimeSet_temp_9);
  4189. bool unmarshaled_m_ApplyShapeToPosition_temp_10 = false;
  4190. unmarshaled_m_ApplyShapeToPosition_temp_10 = static_cast<bool>(marshaled.___m_ApplyShapeToPosition_10);
  4191. unmarshaled.set_m_ApplyShapeToPosition_10(unmarshaled_m_ApplyShapeToPosition_temp_10);
  4192. }
  4193. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/EmitParams
  4194. extern "C" void EmitParams_t2216423628_marshal_pinvoke_cleanup(EmitParams_t2216423628_marshaled_pinvoke& marshaled)
  4195. {
  4196. }
  4197. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/EmitParams
  4198. extern "C" void EmitParams_t2216423628_marshal_com(const EmitParams_t2216423628& unmarshaled, EmitParams_t2216423628_marshaled_com& marshaled)
  4199. {
  4200. marshaled.___m_Particle_0 = unmarshaled.get_m_Particle_0();
  4201. marshaled.___m_PositionSet_1 = static_cast<int32_t>(unmarshaled.get_m_PositionSet_1());
  4202. marshaled.___m_VelocitySet_2 = static_cast<int32_t>(unmarshaled.get_m_VelocitySet_2());
  4203. marshaled.___m_AxisOfRotationSet_3 = static_cast<int32_t>(unmarshaled.get_m_AxisOfRotationSet_3());
  4204. marshaled.___m_RotationSet_4 = static_cast<int32_t>(unmarshaled.get_m_RotationSet_4());
  4205. marshaled.___m_AngularVelocitySet_5 = static_cast<int32_t>(unmarshaled.get_m_AngularVelocitySet_5());
  4206. marshaled.___m_StartSizeSet_6 = static_cast<int32_t>(unmarshaled.get_m_StartSizeSet_6());
  4207. marshaled.___m_StartColorSet_7 = static_cast<int32_t>(unmarshaled.get_m_StartColorSet_7());
  4208. marshaled.___m_RandomSeedSet_8 = static_cast<int32_t>(unmarshaled.get_m_RandomSeedSet_8());
  4209. marshaled.___m_StartLifetimeSet_9 = static_cast<int32_t>(unmarshaled.get_m_StartLifetimeSet_9());
  4210. marshaled.___m_ApplyShapeToPosition_10 = static_cast<int32_t>(unmarshaled.get_m_ApplyShapeToPosition_10());
  4211. }
  4212. extern "C" void EmitParams_t2216423628_marshal_com_back(const EmitParams_t2216423628_marshaled_com& marshaled, EmitParams_t2216423628& unmarshaled)
  4213. {
  4214. Particle_t1882894987 unmarshaled_m_Particle_temp_0;
  4215. memset(&unmarshaled_m_Particle_temp_0, 0, sizeof(unmarshaled_m_Particle_temp_0));
  4216. unmarshaled_m_Particle_temp_0 = marshaled.___m_Particle_0;
  4217. unmarshaled.set_m_Particle_0(unmarshaled_m_Particle_temp_0);
  4218. bool unmarshaled_m_PositionSet_temp_1 = false;
  4219. unmarshaled_m_PositionSet_temp_1 = static_cast<bool>(marshaled.___m_PositionSet_1);
  4220. unmarshaled.set_m_PositionSet_1(unmarshaled_m_PositionSet_temp_1);
  4221. bool unmarshaled_m_VelocitySet_temp_2 = false;
  4222. unmarshaled_m_VelocitySet_temp_2 = static_cast<bool>(marshaled.___m_VelocitySet_2);
  4223. unmarshaled.set_m_VelocitySet_2(unmarshaled_m_VelocitySet_temp_2);
  4224. bool unmarshaled_m_AxisOfRotationSet_temp_3 = false;
  4225. unmarshaled_m_AxisOfRotationSet_temp_3 = static_cast<bool>(marshaled.___m_AxisOfRotationSet_3);
  4226. unmarshaled.set_m_AxisOfRotationSet_3(unmarshaled_m_AxisOfRotationSet_temp_3);
  4227. bool unmarshaled_m_RotationSet_temp_4 = false;
  4228. unmarshaled_m_RotationSet_temp_4 = static_cast<bool>(marshaled.___m_RotationSet_4);
  4229. unmarshaled.set_m_RotationSet_4(unmarshaled_m_RotationSet_temp_4);
  4230. bool unmarshaled_m_AngularVelocitySet_temp_5 = false;
  4231. unmarshaled_m_AngularVelocitySet_temp_5 = static_cast<bool>(marshaled.___m_AngularVelocitySet_5);
  4232. unmarshaled.set_m_AngularVelocitySet_5(unmarshaled_m_AngularVelocitySet_temp_5);
  4233. bool unmarshaled_m_StartSizeSet_temp_6 = false;
  4234. unmarshaled_m_StartSizeSet_temp_6 = static_cast<bool>(marshaled.___m_StartSizeSet_6);
  4235. unmarshaled.set_m_StartSizeSet_6(unmarshaled_m_StartSizeSet_temp_6);
  4236. bool unmarshaled_m_StartColorSet_temp_7 = false;
  4237. unmarshaled_m_StartColorSet_temp_7 = static_cast<bool>(marshaled.___m_StartColorSet_7);
  4238. unmarshaled.set_m_StartColorSet_7(unmarshaled_m_StartColorSet_temp_7);
  4239. bool unmarshaled_m_RandomSeedSet_temp_8 = false;
  4240. unmarshaled_m_RandomSeedSet_temp_8 = static_cast<bool>(marshaled.___m_RandomSeedSet_8);
  4241. unmarshaled.set_m_RandomSeedSet_8(unmarshaled_m_RandomSeedSet_temp_8);
  4242. bool unmarshaled_m_StartLifetimeSet_temp_9 = false;
  4243. unmarshaled_m_StartLifetimeSet_temp_9 = static_cast<bool>(marshaled.___m_StartLifetimeSet_9);
  4244. unmarshaled.set_m_StartLifetimeSet_9(unmarshaled_m_StartLifetimeSet_temp_9);
  4245. bool unmarshaled_m_ApplyShapeToPosition_temp_10 = false;
  4246. unmarshaled_m_ApplyShapeToPosition_temp_10 = static_cast<bool>(marshaled.___m_ApplyShapeToPosition_10);
  4247. unmarshaled.set_m_ApplyShapeToPosition_10(unmarshaled_m_ApplyShapeToPosition_temp_10);
  4248. }
  4249. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/EmitParams
  4250. extern "C" void EmitParams_t2216423628_marshal_com_cleanup(EmitParams_t2216423628_marshaled_com& marshaled)
  4251. {
  4252. }
  4253. #ifdef __clang__
  4254. #pragma clang diagnostic pop
  4255. #endif
  4256. #ifdef __clang__
  4257. #pragma clang diagnostic push
  4258. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4259. #pragma clang diagnostic ignored "-Wunused-variable"
  4260. #endif
  4261. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ExternalForcesModule
  4262. extern "C" void ExternalForcesModule_t1424795933_marshal_pinvoke(const ExternalForcesModule_t1424795933& unmarshaled, ExternalForcesModule_t1424795933_marshaled_pinvoke& marshaled)
  4263. {
  4264. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ExternalForcesModule': Reference type field marshaling is not supported.");
  4265. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4266. }
  4267. extern "C" void ExternalForcesModule_t1424795933_marshal_pinvoke_back(const ExternalForcesModule_t1424795933_marshaled_pinvoke& marshaled, ExternalForcesModule_t1424795933& unmarshaled)
  4268. {
  4269. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ExternalForcesModule': Reference type field marshaling is not supported.");
  4270. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4271. }
  4272. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ExternalForcesModule
  4273. extern "C" void ExternalForcesModule_t1424795933_marshal_pinvoke_cleanup(ExternalForcesModule_t1424795933_marshaled_pinvoke& marshaled)
  4274. {
  4275. }
  4276. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ExternalForcesModule
  4277. extern "C" void ExternalForcesModule_t1424795933_marshal_com(const ExternalForcesModule_t1424795933& unmarshaled, ExternalForcesModule_t1424795933_marshaled_com& marshaled)
  4278. {
  4279. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ExternalForcesModule': Reference type field marshaling is not supported.");
  4280. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4281. }
  4282. extern "C" void ExternalForcesModule_t1424795933_marshal_com_back(const ExternalForcesModule_t1424795933_marshaled_com& marshaled, ExternalForcesModule_t1424795933& unmarshaled)
  4283. {
  4284. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ExternalForcesModule': Reference type field marshaling is not supported.");
  4285. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4286. }
  4287. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ExternalForcesModule
  4288. extern "C" void ExternalForcesModule_t1424795933_marshal_com_cleanup(ExternalForcesModule_t1424795933_marshaled_com& marshaled)
  4289. {
  4290. }
  4291. // System.Void UnityEngine.ParticleSystem/ExternalForcesModule::.ctor(UnityEngine.ParticleSystem)
  4292. extern "C" IL2CPP_METHOD_ATTR void ExternalForcesModule__ctor_m3593198071 (ExternalForcesModule_t1424795933 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4293. {
  4294. {
  4295. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  4296. __this->set_m_ParticleSystem_0(L_0);
  4297. return;
  4298. }
  4299. }
  4300. extern "C" void ExternalForcesModule__ctor_m3593198071_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4301. {
  4302. ExternalForcesModule_t1424795933 * _thisAdjusted = reinterpret_cast<ExternalForcesModule_t1424795933 *>(__this + 1);
  4303. ExternalForcesModule__ctor_m3593198071(_thisAdjusted, ___particleSystem0, method);
  4304. }
  4305. #ifdef __clang__
  4306. #pragma clang diagnostic pop
  4307. #endif
  4308. #ifdef __clang__
  4309. #pragma clang diagnostic push
  4310. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4311. #pragma clang diagnostic ignored "-Wunused-variable"
  4312. #endif
  4313. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ForceOverLifetimeModule
  4314. extern "C" void ForceOverLifetimeModule_t4029962193_marshal_pinvoke(const ForceOverLifetimeModule_t4029962193& unmarshaled, ForceOverLifetimeModule_t4029962193_marshaled_pinvoke& marshaled)
  4315. {
  4316. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ForceOverLifetimeModule': Reference type field marshaling is not supported.");
  4317. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4318. }
  4319. extern "C" void ForceOverLifetimeModule_t4029962193_marshal_pinvoke_back(const ForceOverLifetimeModule_t4029962193_marshaled_pinvoke& marshaled, ForceOverLifetimeModule_t4029962193& unmarshaled)
  4320. {
  4321. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ForceOverLifetimeModule': Reference type field marshaling is not supported.");
  4322. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4323. }
  4324. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ForceOverLifetimeModule
  4325. extern "C" void ForceOverLifetimeModule_t4029962193_marshal_pinvoke_cleanup(ForceOverLifetimeModule_t4029962193_marshaled_pinvoke& marshaled)
  4326. {
  4327. }
  4328. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ForceOverLifetimeModule
  4329. extern "C" void ForceOverLifetimeModule_t4029962193_marshal_com(const ForceOverLifetimeModule_t4029962193& unmarshaled, ForceOverLifetimeModule_t4029962193_marshaled_com& marshaled)
  4330. {
  4331. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ForceOverLifetimeModule': Reference type field marshaling is not supported.");
  4332. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4333. }
  4334. extern "C" void ForceOverLifetimeModule_t4029962193_marshal_com_back(const ForceOverLifetimeModule_t4029962193_marshaled_com& marshaled, ForceOverLifetimeModule_t4029962193& unmarshaled)
  4335. {
  4336. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ForceOverLifetimeModule': Reference type field marshaling is not supported.");
  4337. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4338. }
  4339. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ForceOverLifetimeModule
  4340. extern "C" void ForceOverLifetimeModule_t4029962193_marshal_com_cleanup(ForceOverLifetimeModule_t4029962193_marshaled_com& marshaled)
  4341. {
  4342. }
  4343. // System.Void UnityEngine.ParticleSystem/ForceOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  4344. extern "C" IL2CPP_METHOD_ATTR void ForceOverLifetimeModule__ctor_m3809537274 (ForceOverLifetimeModule_t4029962193 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4345. {
  4346. {
  4347. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  4348. __this->set_m_ParticleSystem_0(L_0);
  4349. return;
  4350. }
  4351. }
  4352. extern "C" void ForceOverLifetimeModule__ctor_m3809537274_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4353. {
  4354. ForceOverLifetimeModule_t4029962193 * _thisAdjusted = reinterpret_cast<ForceOverLifetimeModule_t4029962193 *>(__this + 1);
  4355. ForceOverLifetimeModule__ctor_m3809537274(_thisAdjusted, ___particleSystem0, method);
  4356. }
  4357. #ifdef __clang__
  4358. #pragma clang diagnostic pop
  4359. #endif
  4360. #ifdef __clang__
  4361. #pragma clang diagnostic push
  4362. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4363. #pragma clang diagnostic ignored "-Wunused-variable"
  4364. #endif
  4365. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/InheritVelocityModule
  4366. extern "C" void InheritVelocityModule_t3940044026_marshal_pinvoke(const InheritVelocityModule_t3940044026& unmarshaled, InheritVelocityModule_t3940044026_marshaled_pinvoke& marshaled)
  4367. {
  4368. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'InheritVelocityModule': Reference type field marshaling is not supported.");
  4369. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4370. }
  4371. extern "C" void InheritVelocityModule_t3940044026_marshal_pinvoke_back(const InheritVelocityModule_t3940044026_marshaled_pinvoke& marshaled, InheritVelocityModule_t3940044026& unmarshaled)
  4372. {
  4373. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'InheritVelocityModule': Reference type field marshaling is not supported.");
  4374. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4375. }
  4376. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/InheritVelocityModule
  4377. extern "C" void InheritVelocityModule_t3940044026_marshal_pinvoke_cleanup(InheritVelocityModule_t3940044026_marshaled_pinvoke& marshaled)
  4378. {
  4379. }
  4380. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/InheritVelocityModule
  4381. extern "C" void InheritVelocityModule_t3940044026_marshal_com(const InheritVelocityModule_t3940044026& unmarshaled, InheritVelocityModule_t3940044026_marshaled_com& marshaled)
  4382. {
  4383. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'InheritVelocityModule': Reference type field marshaling is not supported.");
  4384. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4385. }
  4386. extern "C" void InheritVelocityModule_t3940044026_marshal_com_back(const InheritVelocityModule_t3940044026_marshaled_com& marshaled, InheritVelocityModule_t3940044026& unmarshaled)
  4387. {
  4388. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'InheritVelocityModule': Reference type field marshaling is not supported.");
  4389. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4390. }
  4391. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/InheritVelocityModule
  4392. extern "C" void InheritVelocityModule_t3940044026_marshal_com_cleanup(InheritVelocityModule_t3940044026_marshaled_com& marshaled)
  4393. {
  4394. }
  4395. // System.Void UnityEngine.ParticleSystem/InheritVelocityModule::.ctor(UnityEngine.ParticleSystem)
  4396. extern "C" IL2CPP_METHOD_ATTR void InheritVelocityModule__ctor_m2528283153 (InheritVelocityModule_t3940044026 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4397. {
  4398. {
  4399. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  4400. __this->set_m_ParticleSystem_0(L_0);
  4401. return;
  4402. }
  4403. }
  4404. extern "C" void InheritVelocityModule__ctor_m2528283153_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4405. {
  4406. InheritVelocityModule_t3940044026 * _thisAdjusted = reinterpret_cast<InheritVelocityModule_t3940044026 *>(__this + 1);
  4407. InheritVelocityModule__ctor_m2528283153(_thisAdjusted, ___particleSystem0, method);
  4408. }
  4409. #ifdef __clang__
  4410. #pragma clang diagnostic pop
  4411. #endif
  4412. #ifdef __clang__
  4413. #pragma clang diagnostic push
  4414. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4415. #pragma clang diagnostic ignored "-Wunused-variable"
  4416. #endif
  4417. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/LightsModule
  4418. extern "C" void LightsModule_t3616883284_marshal_pinvoke(const LightsModule_t3616883284& unmarshaled, LightsModule_t3616883284_marshaled_pinvoke& marshaled)
  4419. {
  4420. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LightsModule': Reference type field marshaling is not supported.");
  4421. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4422. }
  4423. extern "C" void LightsModule_t3616883284_marshal_pinvoke_back(const LightsModule_t3616883284_marshaled_pinvoke& marshaled, LightsModule_t3616883284& unmarshaled)
  4424. {
  4425. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LightsModule': Reference type field marshaling is not supported.");
  4426. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4427. }
  4428. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/LightsModule
  4429. extern "C" void LightsModule_t3616883284_marshal_pinvoke_cleanup(LightsModule_t3616883284_marshaled_pinvoke& marshaled)
  4430. {
  4431. }
  4432. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/LightsModule
  4433. extern "C" void LightsModule_t3616883284_marshal_com(const LightsModule_t3616883284& unmarshaled, LightsModule_t3616883284_marshaled_com& marshaled)
  4434. {
  4435. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LightsModule': Reference type field marshaling is not supported.");
  4436. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4437. }
  4438. extern "C" void LightsModule_t3616883284_marshal_com_back(const LightsModule_t3616883284_marshaled_com& marshaled, LightsModule_t3616883284& unmarshaled)
  4439. {
  4440. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LightsModule': Reference type field marshaling is not supported.");
  4441. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4442. }
  4443. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/LightsModule
  4444. extern "C" void LightsModule_t3616883284_marshal_com_cleanup(LightsModule_t3616883284_marshaled_com& marshaled)
  4445. {
  4446. }
  4447. // System.Void UnityEngine.ParticleSystem/LightsModule::.ctor(UnityEngine.ParticleSystem)
  4448. extern "C" IL2CPP_METHOD_ATTR void LightsModule__ctor_m2112231155 (LightsModule_t3616883284 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4449. {
  4450. {
  4451. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  4452. __this->set_m_ParticleSystem_0(L_0);
  4453. return;
  4454. }
  4455. }
  4456. extern "C" void LightsModule__ctor_m2112231155_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4457. {
  4458. LightsModule_t3616883284 * _thisAdjusted = reinterpret_cast<LightsModule_t3616883284 *>(__this + 1);
  4459. LightsModule__ctor_m2112231155(_thisAdjusted, ___particleSystem0, method);
  4460. }
  4461. #ifdef __clang__
  4462. #pragma clang diagnostic pop
  4463. #endif
  4464. #ifdef __clang__
  4465. #pragma clang diagnostic push
  4466. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4467. #pragma clang diagnostic ignored "-Wunused-variable"
  4468. #endif
  4469. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule
  4470. extern "C" void LimitVelocityOverLifetimeModule_t686589569_marshal_pinvoke(const LimitVelocityOverLifetimeModule_t686589569& unmarshaled, LimitVelocityOverLifetimeModule_t686589569_marshaled_pinvoke& marshaled)
  4471. {
  4472. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LimitVelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  4473. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4474. }
  4475. extern "C" void LimitVelocityOverLifetimeModule_t686589569_marshal_pinvoke_back(const LimitVelocityOverLifetimeModule_t686589569_marshaled_pinvoke& marshaled, LimitVelocityOverLifetimeModule_t686589569& unmarshaled)
  4476. {
  4477. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LimitVelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  4478. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4479. }
  4480. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule
  4481. extern "C" void LimitVelocityOverLifetimeModule_t686589569_marshal_pinvoke_cleanup(LimitVelocityOverLifetimeModule_t686589569_marshaled_pinvoke& marshaled)
  4482. {
  4483. }
  4484. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule
  4485. extern "C" void LimitVelocityOverLifetimeModule_t686589569_marshal_com(const LimitVelocityOverLifetimeModule_t686589569& unmarshaled, LimitVelocityOverLifetimeModule_t686589569_marshaled_com& marshaled)
  4486. {
  4487. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LimitVelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  4488. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4489. }
  4490. extern "C" void LimitVelocityOverLifetimeModule_t686589569_marshal_com_back(const LimitVelocityOverLifetimeModule_t686589569_marshaled_com& marshaled, LimitVelocityOverLifetimeModule_t686589569& unmarshaled)
  4491. {
  4492. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'LimitVelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  4493. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4494. }
  4495. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule
  4496. extern "C" void LimitVelocityOverLifetimeModule_t686589569_marshal_com_cleanup(LimitVelocityOverLifetimeModule_t686589569_marshaled_com& marshaled)
  4497. {
  4498. }
  4499. // System.Void UnityEngine.ParticleSystem/LimitVelocityOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  4500. extern "C" IL2CPP_METHOD_ATTR void LimitVelocityOverLifetimeModule__ctor_m1168296975 (LimitVelocityOverLifetimeModule_t686589569 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4501. {
  4502. {
  4503. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  4504. __this->set_m_ParticleSystem_0(L_0);
  4505. return;
  4506. }
  4507. }
  4508. extern "C" void LimitVelocityOverLifetimeModule__ctor_m1168296975_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4509. {
  4510. LimitVelocityOverLifetimeModule_t686589569 * _thisAdjusted = reinterpret_cast<LimitVelocityOverLifetimeModule_t686589569 *>(__this + 1);
  4511. LimitVelocityOverLifetimeModule__ctor_m1168296975(_thisAdjusted, ___particleSystem0, method);
  4512. }
  4513. #ifdef __clang__
  4514. #pragma clang diagnostic pop
  4515. #endif
  4516. #ifdef __clang__
  4517. #pragma clang diagnostic push
  4518. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4519. #pragma clang diagnostic ignored "-Wunused-variable"
  4520. #endif
  4521. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/MainModule
  4522. extern "C" void MainModule_t2320046318_marshal_pinvoke(const MainModule_t2320046318& unmarshaled, MainModule_t2320046318_marshaled_pinvoke& marshaled)
  4523. {
  4524. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'MainModule': Reference type field marshaling is not supported.");
  4525. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4526. }
  4527. extern "C" void MainModule_t2320046318_marshal_pinvoke_back(const MainModule_t2320046318_marshaled_pinvoke& marshaled, MainModule_t2320046318& unmarshaled)
  4528. {
  4529. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'MainModule': Reference type field marshaling is not supported.");
  4530. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4531. }
  4532. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/MainModule
  4533. extern "C" void MainModule_t2320046318_marshal_pinvoke_cleanup(MainModule_t2320046318_marshaled_pinvoke& marshaled)
  4534. {
  4535. }
  4536. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/MainModule
  4537. extern "C" void MainModule_t2320046318_marshal_com(const MainModule_t2320046318& unmarshaled, MainModule_t2320046318_marshaled_com& marshaled)
  4538. {
  4539. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'MainModule': Reference type field marshaling is not supported.");
  4540. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4541. }
  4542. extern "C" void MainModule_t2320046318_marshal_com_back(const MainModule_t2320046318_marshaled_com& marshaled, MainModule_t2320046318& unmarshaled)
  4543. {
  4544. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'MainModule': Reference type field marshaling is not supported.");
  4545. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  4546. }
  4547. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/MainModule
  4548. extern "C" void MainModule_t2320046318_marshal_com_cleanup(MainModule_t2320046318_marshaled_com& marshaled)
  4549. {
  4550. }
  4551. // System.Void UnityEngine.ParticleSystem/MainModule::.ctor(UnityEngine.ParticleSystem)
  4552. extern "C" IL2CPP_METHOD_ATTR void MainModule__ctor_m1745438521 (MainModule_t2320046318 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4553. {
  4554. {
  4555. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  4556. __this->set_m_ParticleSystem_0(L_0);
  4557. return;
  4558. }
  4559. }
  4560. extern "C" void MainModule__ctor_m1745438521_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  4561. {
  4562. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4563. MainModule__ctor_m1745438521(_thisAdjusted, ___particleSystem0, method);
  4564. }
  4565. // System.Single UnityEngine.ParticleSystem/MainModule::get_duration()
  4566. extern "C" IL2CPP_METHOD_ATTR float MainModule_get_duration_m2362826759 (MainModule_t2320046318 * __this, const RuntimeMethod* method)
  4567. {
  4568. float V_0 = 0.0f;
  4569. {
  4570. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4571. float L_1 = MainModule_GetDuration_m471811572(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  4572. V_0 = L_1;
  4573. goto IL_0012;
  4574. }
  4575. IL_0012:
  4576. {
  4577. float L_2 = V_0;
  4578. return L_2;
  4579. }
  4580. }
  4581. extern "C" float MainModule_get_duration_m2362826759_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4582. {
  4583. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4584. return MainModule_get_duration_m2362826759(_thisAdjusted, method);
  4585. }
  4586. // System.Boolean UnityEngine.ParticleSystem/MainModule::get_loop()
  4587. extern "C" IL2CPP_METHOD_ATTR bool MainModule_get_loop_m2299304680 (MainModule_t2320046318 * __this, const RuntimeMethod* method)
  4588. {
  4589. bool V_0 = false;
  4590. {
  4591. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4592. bool L_1 = MainModule_GetLoop_m1744387122(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  4593. V_0 = L_1;
  4594. goto IL_0012;
  4595. }
  4596. IL_0012:
  4597. {
  4598. bool L_2 = V_0;
  4599. return L_2;
  4600. }
  4601. }
  4602. extern "C" bool MainModule_get_loop_m2299304680_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4603. {
  4604. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4605. return MainModule_get_loop_m2299304680(_thisAdjusted, method);
  4606. }
  4607. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/MainModule::get_startDelay()
  4608. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 MainModule_get_startDelay_m23340732 (MainModule_t2320046318 * __this, const RuntimeMethod* method)
  4609. {
  4610. MinMaxCurve_t1067599125 V_0;
  4611. memset(&V_0, 0, sizeof(V_0));
  4612. MinMaxCurve_t1067599125 V_1;
  4613. memset(&V_1, 0, sizeof(V_1));
  4614. {
  4615. il2cpp_codegen_initobj((&V_0), sizeof(MinMaxCurve_t1067599125 ));
  4616. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4617. MainModule_GetStartDelay_m1220620588(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL);
  4618. MinMaxCurve_t1067599125 L_1 = V_0;
  4619. V_1 = L_1;
  4620. goto IL_001d;
  4621. }
  4622. IL_001d:
  4623. {
  4624. MinMaxCurve_t1067599125 L_2 = V_1;
  4625. return L_2;
  4626. }
  4627. }
  4628. extern "C" MinMaxCurve_t1067599125 MainModule_get_startDelay_m23340732_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4629. {
  4630. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4631. return MainModule_get_startDelay_m23340732(_thisAdjusted, method);
  4632. }
  4633. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/MainModule::get_startLifetime()
  4634. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 MainModule_get_startLifetime_m2343501481 (MainModule_t2320046318 * __this, const RuntimeMethod* method)
  4635. {
  4636. MinMaxCurve_t1067599125 V_0;
  4637. memset(&V_0, 0, sizeof(V_0));
  4638. MinMaxCurve_t1067599125 V_1;
  4639. memset(&V_1, 0, sizeof(V_1));
  4640. {
  4641. il2cpp_codegen_initobj((&V_0), sizeof(MinMaxCurve_t1067599125 ));
  4642. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4643. MainModule_GetStartLifetime_m3113513190(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL);
  4644. MinMaxCurve_t1067599125 L_1 = V_0;
  4645. V_1 = L_1;
  4646. goto IL_001d;
  4647. }
  4648. IL_001d:
  4649. {
  4650. MinMaxCurve_t1067599125 L_2 = V_1;
  4651. return L_2;
  4652. }
  4653. }
  4654. extern "C" MinMaxCurve_t1067599125 MainModule_get_startLifetime_m2343501481_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4655. {
  4656. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4657. return MainModule_get_startLifetime_m2343501481(_thisAdjusted, method);
  4658. }
  4659. // UnityEngine.ParticleSystemSimulationSpace UnityEngine.ParticleSystem/MainModule::get_simulationSpace()
  4660. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_get_simulationSpace_m2279134456 (MainModule_t2320046318 * __this, const RuntimeMethod* method)
  4661. {
  4662. int32_t V_0 = 0;
  4663. {
  4664. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4665. int32_t L_1 = MainModule_GetSimulationSpace_m148461669(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  4666. V_0 = L_1;
  4667. goto IL_0012;
  4668. }
  4669. IL_0012:
  4670. {
  4671. int32_t L_2 = V_0;
  4672. return L_2;
  4673. }
  4674. }
  4675. extern "C" int32_t MainModule_get_simulationSpace_m2279134456_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4676. {
  4677. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4678. return MainModule_get_simulationSpace_m2279134456(_thisAdjusted, method);
  4679. }
  4680. // UnityEngine.ParticleSystemScalingMode UnityEngine.ParticleSystem/MainModule::get_scalingMode()
  4681. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_get_scalingMode_m747393725 (MainModule_t2320046318 * __this, const RuntimeMethod* method)
  4682. {
  4683. int32_t V_0 = 0;
  4684. {
  4685. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4686. int32_t L_1 = MainModule_GetScalingMode_m990858662(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  4687. V_0 = L_1;
  4688. goto IL_0012;
  4689. }
  4690. IL_0012:
  4691. {
  4692. int32_t L_2 = V_0;
  4693. return L_2;
  4694. }
  4695. }
  4696. extern "C" int32_t MainModule_get_scalingMode_m747393725_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4697. {
  4698. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4699. return MainModule_get_scalingMode_m747393725(_thisAdjusted, method);
  4700. }
  4701. // System.Void UnityEngine.ParticleSystem/MainModule::set_scalingMode(UnityEngine.ParticleSystemScalingMode)
  4702. extern "C" IL2CPP_METHOD_ATTR void MainModule_set_scalingMode_m915979420 (MainModule_t2320046318 * __this, int32_t ___value0, const RuntimeMethod* method)
  4703. {
  4704. {
  4705. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4706. int32_t L_1 = ___value0;
  4707. MainModule_SetScalingMode_m15816227(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  4708. return;
  4709. }
  4710. }
  4711. extern "C" void MainModule_set_scalingMode_m915979420_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
  4712. {
  4713. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4714. MainModule_set_scalingMode_m915979420(_thisAdjusted, ___value0, method);
  4715. }
  4716. // System.Int32 UnityEngine.ParticleSystem/MainModule::get_maxParticles()
  4717. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_get_maxParticles_m2105979121 (MainModule_t2320046318 * __this, const RuntimeMethod* method)
  4718. {
  4719. int32_t V_0 = 0;
  4720. {
  4721. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4722. int32_t L_1 = MainModule_GetMaxParticles_m2130637551(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  4723. V_0 = L_1;
  4724. goto IL_0012;
  4725. }
  4726. IL_0012:
  4727. {
  4728. int32_t L_2 = V_0;
  4729. return L_2;
  4730. }
  4731. }
  4732. extern "C" int32_t MainModule_get_maxParticles_m2105979121_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4733. {
  4734. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4735. return MainModule_get_maxParticles_m2105979121(_thisAdjusted, method);
  4736. }
  4737. // System.Void UnityEngine.ParticleSystem/MainModule::set_maxParticles(System.Int32)
  4738. extern "C" IL2CPP_METHOD_ATTR void MainModule_set_maxParticles_m3383762699 (MainModule_t2320046318 * __this, int32_t ___value0, const RuntimeMethod* method)
  4739. {
  4740. {
  4741. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  4742. int32_t L_1 = ___value0;
  4743. MainModule_SetMaxParticles_m2916351937(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  4744. return;
  4745. }
  4746. }
  4747. extern "C" void MainModule_set_maxParticles_m3383762699_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
  4748. {
  4749. MainModule_t2320046318 * _thisAdjusted = reinterpret_cast<MainModule_t2320046318 *>(__this + 1);
  4750. MainModule_set_maxParticles_m3383762699(_thisAdjusted, ___value0, method);
  4751. }
  4752. // System.Single UnityEngine.ParticleSystem/MainModule::GetDuration(UnityEngine.ParticleSystem)
  4753. extern "C" IL2CPP_METHOD_ATTR float MainModule_GetDuration_m471811572 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  4754. {
  4755. typedef float (*MainModule_GetDuration_m471811572_ftn) (ParticleSystem_t1800779281 *);
  4756. static MainModule_GetDuration_m471811572_ftn _il2cpp_icall_func;
  4757. if (!_il2cpp_icall_func)
  4758. _il2cpp_icall_func = (MainModule_GetDuration_m471811572_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::GetDuration(UnityEngine.ParticleSystem)");
  4759. float retVal = _il2cpp_icall_func(___system0);
  4760. return retVal;
  4761. }
  4762. // System.Boolean UnityEngine.ParticleSystem/MainModule::GetLoop(UnityEngine.ParticleSystem)
  4763. extern "C" IL2CPP_METHOD_ATTR bool MainModule_GetLoop_m1744387122 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  4764. {
  4765. typedef bool (*MainModule_GetLoop_m1744387122_ftn) (ParticleSystem_t1800779281 *);
  4766. static MainModule_GetLoop_m1744387122_ftn _il2cpp_icall_func;
  4767. if (!_il2cpp_icall_func)
  4768. _il2cpp_icall_func = (MainModule_GetLoop_m1744387122_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::GetLoop(UnityEngine.ParticleSystem)");
  4769. bool retVal = _il2cpp_icall_func(___system0);
  4770. return retVal;
  4771. }
  4772. // System.Void UnityEngine.ParticleSystem/MainModule::GetStartDelay(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  4773. extern "C" IL2CPP_METHOD_ATTR void MainModule_GetStartDelay_m1220620588 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method)
  4774. {
  4775. typedef void (*MainModule_GetStartDelay_m1220620588_ftn) (ParticleSystem_t1800779281 *, MinMaxCurve_t1067599125 *);
  4776. static MainModule_GetStartDelay_m1220620588_ftn _il2cpp_icall_func;
  4777. if (!_il2cpp_icall_func)
  4778. _il2cpp_icall_func = (MainModule_GetStartDelay_m1220620588_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::GetStartDelay(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)");
  4779. _il2cpp_icall_func(___system0, ___curve1);
  4780. }
  4781. // System.Void UnityEngine.ParticleSystem/MainModule::GetStartLifetime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  4782. extern "C" IL2CPP_METHOD_ATTR void MainModule_GetStartLifetime_m3113513190 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method)
  4783. {
  4784. typedef void (*MainModule_GetStartLifetime_m3113513190_ftn) (ParticleSystem_t1800779281 *, MinMaxCurve_t1067599125 *);
  4785. static MainModule_GetStartLifetime_m3113513190_ftn _il2cpp_icall_func;
  4786. if (!_il2cpp_icall_func)
  4787. _il2cpp_icall_func = (MainModule_GetStartLifetime_m3113513190_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::GetStartLifetime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)");
  4788. _il2cpp_icall_func(___system0, ___curve1);
  4789. }
  4790. // UnityEngine.ParticleSystemSimulationSpace UnityEngine.ParticleSystem/MainModule::GetSimulationSpace(UnityEngine.ParticleSystem)
  4791. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_GetSimulationSpace_m148461669 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  4792. {
  4793. typedef int32_t (*MainModule_GetSimulationSpace_m148461669_ftn) (ParticleSystem_t1800779281 *);
  4794. static MainModule_GetSimulationSpace_m148461669_ftn _il2cpp_icall_func;
  4795. if (!_il2cpp_icall_func)
  4796. _il2cpp_icall_func = (MainModule_GetSimulationSpace_m148461669_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::GetSimulationSpace(UnityEngine.ParticleSystem)");
  4797. int32_t retVal = _il2cpp_icall_func(___system0);
  4798. return retVal;
  4799. }
  4800. // System.Void UnityEngine.ParticleSystem/MainModule::SetScalingMode(UnityEngine.ParticleSystem,UnityEngine.ParticleSystemScalingMode)
  4801. extern "C" IL2CPP_METHOD_ATTR void MainModule_SetScalingMode_m15816227 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, int32_t ___value1, const RuntimeMethod* method)
  4802. {
  4803. typedef void (*MainModule_SetScalingMode_m15816227_ftn) (ParticleSystem_t1800779281 *, int32_t);
  4804. static MainModule_SetScalingMode_m15816227_ftn _il2cpp_icall_func;
  4805. if (!_il2cpp_icall_func)
  4806. _il2cpp_icall_func = (MainModule_SetScalingMode_m15816227_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::SetScalingMode(UnityEngine.ParticleSystem,UnityEngine.ParticleSystemScalingMode)");
  4807. _il2cpp_icall_func(___system0, ___value1);
  4808. }
  4809. // UnityEngine.ParticleSystemScalingMode UnityEngine.ParticleSystem/MainModule::GetScalingMode(UnityEngine.ParticleSystem)
  4810. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_GetScalingMode_m990858662 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  4811. {
  4812. typedef int32_t (*MainModule_GetScalingMode_m990858662_ftn) (ParticleSystem_t1800779281 *);
  4813. static MainModule_GetScalingMode_m990858662_ftn _il2cpp_icall_func;
  4814. if (!_il2cpp_icall_func)
  4815. _il2cpp_icall_func = (MainModule_GetScalingMode_m990858662_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::GetScalingMode(UnityEngine.ParticleSystem)");
  4816. int32_t retVal = _il2cpp_icall_func(___system0);
  4817. return retVal;
  4818. }
  4819. // System.Void UnityEngine.ParticleSystem/MainModule::SetMaxParticles(UnityEngine.ParticleSystem,System.Int32)
  4820. extern "C" IL2CPP_METHOD_ATTR void MainModule_SetMaxParticles_m2916351937 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, int32_t ___value1, const RuntimeMethod* method)
  4821. {
  4822. typedef void (*MainModule_SetMaxParticles_m2916351937_ftn) (ParticleSystem_t1800779281 *, int32_t);
  4823. static MainModule_SetMaxParticles_m2916351937_ftn _il2cpp_icall_func;
  4824. if (!_il2cpp_icall_func)
  4825. _il2cpp_icall_func = (MainModule_SetMaxParticles_m2916351937_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::SetMaxParticles(UnityEngine.ParticleSystem,System.Int32)");
  4826. _il2cpp_icall_func(___system0, ___value1);
  4827. }
  4828. // System.Int32 UnityEngine.ParticleSystem/MainModule::GetMaxParticles(UnityEngine.ParticleSystem)
  4829. extern "C" IL2CPP_METHOD_ATTR int32_t MainModule_GetMaxParticles_m2130637551 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  4830. {
  4831. typedef int32_t (*MainModule_GetMaxParticles_m2130637551_ftn) (ParticleSystem_t1800779281 *);
  4832. static MainModule_GetMaxParticles_m2130637551_ftn _il2cpp_icall_func;
  4833. if (!_il2cpp_icall_func)
  4834. _il2cpp_icall_func = (MainModule_GetMaxParticles_m2130637551_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/MainModule::GetMaxParticles(UnityEngine.ParticleSystem)");
  4835. int32_t retVal = _il2cpp_icall_func(___system0);
  4836. return retVal;
  4837. }
  4838. #ifdef __clang__
  4839. #pragma clang diagnostic pop
  4840. #endif
  4841. #ifdef __clang__
  4842. #pragma clang diagnostic push
  4843. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4844. #pragma clang diagnostic ignored "-Wunused-variable"
  4845. #endif
  4846. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/MinMaxCurve
  4847. extern "C" void MinMaxCurve_t1067599125_marshal_pinvoke(const MinMaxCurve_t1067599125& unmarshaled, MinMaxCurve_t1067599125_marshaled_pinvoke& marshaled)
  4848. {
  4849. marshaled.___m_Mode_0 = unmarshaled.get_m_Mode_0();
  4850. marshaled.___m_CurveMultiplier_1 = unmarshaled.get_m_CurveMultiplier_1();
  4851. if (unmarshaled.get_m_CurveMin_2() != NULL) AnimationCurve_t3046754366_marshal_pinvoke(*unmarshaled.get_m_CurveMin_2(), marshaled.___m_CurveMin_2);
  4852. if (unmarshaled.get_m_CurveMax_3() != NULL) AnimationCurve_t3046754366_marshal_pinvoke(*unmarshaled.get_m_CurveMax_3(), marshaled.___m_CurveMax_3);
  4853. marshaled.___m_ConstantMin_4 = unmarshaled.get_m_ConstantMin_4();
  4854. marshaled.___m_ConstantMax_5 = unmarshaled.get_m_ConstantMax_5();
  4855. }
  4856. extern "C" void MinMaxCurve_t1067599125_marshal_pinvoke_back(const MinMaxCurve_t1067599125_marshaled_pinvoke& marshaled, MinMaxCurve_t1067599125& unmarshaled)
  4857. {
  4858. static bool s_Il2CppMethodInitialized;
  4859. if (!s_Il2CppMethodInitialized)
  4860. {
  4861. il2cpp_codegen_initialize_method (MinMaxCurve_t1067599125_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
  4862. s_Il2CppMethodInitialized = true;
  4863. }
  4864. int32_t unmarshaled_m_Mode_temp_0 = 0;
  4865. unmarshaled_m_Mode_temp_0 = marshaled.___m_Mode_0;
  4866. unmarshaled.set_m_Mode_0(unmarshaled_m_Mode_temp_0);
  4867. float unmarshaled_m_CurveMultiplier_temp_1 = 0.0f;
  4868. unmarshaled_m_CurveMultiplier_temp_1 = marshaled.___m_CurveMultiplier_1;
  4869. unmarshaled.set_m_CurveMultiplier_1(unmarshaled_m_CurveMultiplier_temp_1);
  4870. unmarshaled.set_m_CurveMin_2((AnimationCurve_t3046754366 *)il2cpp_codegen_object_new(AnimationCurve_t3046754366_il2cpp_TypeInfo_var));
  4871. AnimationCurve__ctor_m3000526466(unmarshaled.get_m_CurveMin_2(), NULL);
  4872. AnimationCurve_t3046754366_marshal_pinvoke_back(marshaled.___m_CurveMin_2, *unmarshaled.get_m_CurveMin_2());
  4873. unmarshaled.set_m_CurveMax_3((AnimationCurve_t3046754366 *)il2cpp_codegen_object_new(AnimationCurve_t3046754366_il2cpp_TypeInfo_var));
  4874. AnimationCurve__ctor_m3000526466(unmarshaled.get_m_CurveMax_3(), NULL);
  4875. AnimationCurve_t3046754366_marshal_pinvoke_back(marshaled.___m_CurveMax_3, *unmarshaled.get_m_CurveMax_3());
  4876. float unmarshaled_m_ConstantMin_temp_4 = 0.0f;
  4877. unmarshaled_m_ConstantMin_temp_4 = marshaled.___m_ConstantMin_4;
  4878. unmarshaled.set_m_ConstantMin_4(unmarshaled_m_ConstantMin_temp_4);
  4879. float unmarshaled_m_ConstantMax_temp_5 = 0.0f;
  4880. unmarshaled_m_ConstantMax_temp_5 = marshaled.___m_ConstantMax_5;
  4881. unmarshaled.set_m_ConstantMax_5(unmarshaled_m_ConstantMax_temp_5);
  4882. }
  4883. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/MinMaxCurve
  4884. extern "C" void MinMaxCurve_t1067599125_marshal_pinvoke_cleanup(MinMaxCurve_t1067599125_marshaled_pinvoke& marshaled)
  4885. {
  4886. AnimationCurve_t3046754366_marshal_pinvoke_cleanup(marshaled.___m_CurveMin_2);
  4887. AnimationCurve_t3046754366_marshal_pinvoke_cleanup(marshaled.___m_CurveMax_3);
  4888. }
  4889. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/MinMaxCurve
  4890. extern "C" void MinMaxCurve_t1067599125_marshal_com(const MinMaxCurve_t1067599125& unmarshaled, MinMaxCurve_t1067599125_marshaled_com& marshaled)
  4891. {
  4892. marshaled.___m_Mode_0 = unmarshaled.get_m_Mode_0();
  4893. marshaled.___m_CurveMultiplier_1 = unmarshaled.get_m_CurveMultiplier_1();
  4894. if (unmarshaled.get_m_CurveMin_2() != NULL) AnimationCurve_t3046754366_marshal_com(*unmarshaled.get_m_CurveMin_2(), *marshaled.___m_CurveMin_2);
  4895. if (unmarshaled.get_m_CurveMax_3() != NULL) AnimationCurve_t3046754366_marshal_com(*unmarshaled.get_m_CurveMax_3(), *marshaled.___m_CurveMax_3);
  4896. marshaled.___m_ConstantMin_4 = unmarshaled.get_m_ConstantMin_4();
  4897. marshaled.___m_ConstantMax_5 = unmarshaled.get_m_ConstantMax_5();
  4898. }
  4899. extern "C" void MinMaxCurve_t1067599125_marshal_com_back(const MinMaxCurve_t1067599125_marshaled_com& marshaled, MinMaxCurve_t1067599125& unmarshaled)
  4900. {
  4901. int32_t unmarshaled_m_Mode_temp_0 = 0;
  4902. unmarshaled_m_Mode_temp_0 = marshaled.___m_Mode_0;
  4903. unmarshaled.set_m_Mode_0(unmarshaled_m_Mode_temp_0);
  4904. float unmarshaled_m_CurveMultiplier_temp_1 = 0.0f;
  4905. unmarshaled_m_CurveMultiplier_temp_1 = marshaled.___m_CurveMultiplier_1;
  4906. unmarshaled.set_m_CurveMultiplier_1(unmarshaled_m_CurveMultiplier_temp_1);
  4907. if (unmarshaled.get_m_CurveMin_2() != NULL)
  4908. {
  4909. AnimationCurve__ctor_m3000526466(unmarshaled.get_m_CurveMin_2(), NULL);
  4910. AnimationCurve_t3046754366_marshal_com_back(*marshaled.___m_CurveMin_2, *unmarshaled.get_m_CurveMin_2());
  4911. }
  4912. if (unmarshaled.get_m_CurveMax_3() != NULL)
  4913. {
  4914. AnimationCurve__ctor_m3000526466(unmarshaled.get_m_CurveMax_3(), NULL);
  4915. AnimationCurve_t3046754366_marshal_com_back(*marshaled.___m_CurveMax_3, *unmarshaled.get_m_CurveMax_3());
  4916. }
  4917. float unmarshaled_m_ConstantMin_temp_4 = 0.0f;
  4918. unmarshaled_m_ConstantMin_temp_4 = marshaled.___m_ConstantMin_4;
  4919. unmarshaled.set_m_ConstantMin_4(unmarshaled_m_ConstantMin_temp_4);
  4920. float unmarshaled_m_ConstantMax_temp_5 = 0.0f;
  4921. unmarshaled_m_ConstantMax_temp_5 = marshaled.___m_ConstantMax_5;
  4922. unmarshaled.set_m_ConstantMax_5(unmarshaled_m_ConstantMax_temp_5);
  4923. }
  4924. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/MinMaxCurve
  4925. extern "C" void MinMaxCurve_t1067599125_marshal_com_cleanup(MinMaxCurve_t1067599125_marshaled_com& marshaled)
  4926. {
  4927. if (&(*marshaled.___m_CurveMin_2) != NULL) AnimationCurve_t3046754366_marshal_com_cleanup(*marshaled.___m_CurveMin_2);
  4928. if (&(*marshaled.___m_CurveMax_3) != NULL) AnimationCurve_t3046754366_marshal_com_cleanup(*marshaled.___m_CurveMax_3);
  4929. }
  4930. // System.Void UnityEngine.ParticleSystem/MinMaxCurve::.ctor(System.Single)
  4931. extern "C" IL2CPP_METHOD_ATTR void MinMaxCurve__ctor_m1734431933 (MinMaxCurve_t1067599125 * __this, float ___constant0, const RuntimeMethod* method)
  4932. {
  4933. {
  4934. __this->set_m_Mode_0(0);
  4935. __this->set_m_CurveMultiplier_1((0.0f));
  4936. __this->set_m_CurveMin_2((AnimationCurve_t3046754366 *)NULL);
  4937. __this->set_m_CurveMax_3((AnimationCurve_t3046754366 *)NULL);
  4938. __this->set_m_ConstantMin_4((0.0f));
  4939. float L_0 = ___constant0;
  4940. __this->set_m_ConstantMax_5(L_0);
  4941. return;
  4942. }
  4943. }
  4944. extern "C" void MinMaxCurve__ctor_m1734431933_AdjustorThunk (RuntimeObject * __this, float ___constant0, const RuntimeMethod* method)
  4945. {
  4946. MinMaxCurve_t1067599125 * _thisAdjusted = reinterpret_cast<MinMaxCurve_t1067599125 *>(__this + 1);
  4947. MinMaxCurve__ctor_m1734431933(_thisAdjusted, ___constant0, method);
  4948. }
  4949. // UnityEngine.AnimationCurve UnityEngine.ParticleSystem/MinMaxCurve::get_curveMin()
  4950. extern "C" IL2CPP_METHOD_ATTR AnimationCurve_t3046754366 * MinMaxCurve_get_curveMin_m1577567431 (MinMaxCurve_t1067599125 * __this, const RuntimeMethod* method)
  4951. {
  4952. AnimationCurve_t3046754366 * V_0 = NULL;
  4953. {
  4954. AnimationCurve_t3046754366 * L_0 = __this->get_m_CurveMin_2();
  4955. V_0 = L_0;
  4956. goto IL_000d;
  4957. }
  4958. IL_000d:
  4959. {
  4960. AnimationCurve_t3046754366 * L_1 = V_0;
  4961. return L_1;
  4962. }
  4963. }
  4964. extern "C" AnimationCurve_t3046754366 * MinMaxCurve_get_curveMin_m1577567431_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4965. {
  4966. MinMaxCurve_t1067599125 * _thisAdjusted = reinterpret_cast<MinMaxCurve_t1067599125 *>(__this + 1);
  4967. return MinMaxCurve_get_curveMin_m1577567431(_thisAdjusted, method);
  4968. }
  4969. // System.Single UnityEngine.ParticleSystem/MinMaxCurve::get_constant()
  4970. extern "C" IL2CPP_METHOD_ATTR float MinMaxCurve_get_constant_m2963124720 (MinMaxCurve_t1067599125 * __this, const RuntimeMethod* method)
  4971. {
  4972. float V_0 = 0.0f;
  4973. {
  4974. float L_0 = __this->get_m_ConstantMax_5();
  4975. V_0 = L_0;
  4976. goto IL_000d;
  4977. }
  4978. IL_000d:
  4979. {
  4980. float L_1 = V_0;
  4981. return L_1;
  4982. }
  4983. }
  4984. extern "C" float MinMaxCurve_get_constant_m2963124720_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  4985. {
  4986. MinMaxCurve_t1067599125 * _thisAdjusted = reinterpret_cast<MinMaxCurve_t1067599125 *>(__this + 1);
  4987. return MinMaxCurve_get_constant_m2963124720(_thisAdjusted, method);
  4988. }
  4989. // UnityEngine.AnimationCurve UnityEngine.ParticleSystem/MinMaxCurve::get_curve()
  4990. extern "C" IL2CPP_METHOD_ATTR AnimationCurve_t3046754366 * MinMaxCurve_get_curve_m4228822969 (MinMaxCurve_t1067599125 * __this, const RuntimeMethod* method)
  4991. {
  4992. AnimationCurve_t3046754366 * V_0 = NULL;
  4993. {
  4994. AnimationCurve_t3046754366 * L_0 = __this->get_m_CurveMax_3();
  4995. V_0 = L_0;
  4996. goto IL_000d;
  4997. }
  4998. IL_000d:
  4999. {
  5000. AnimationCurve_t3046754366 * L_1 = V_0;
  5001. return L_1;
  5002. }
  5003. }
  5004. extern "C" AnimationCurve_t3046754366 * MinMaxCurve_get_curve_m4228822969_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5005. {
  5006. MinMaxCurve_t1067599125 * _thisAdjusted = reinterpret_cast<MinMaxCurve_t1067599125 *>(__this + 1);
  5007. return MinMaxCurve_get_curve_m4228822969(_thisAdjusted, method);
  5008. }
  5009. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/MinMaxCurve::op_Implicit(System.Single)
  5010. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 MinMaxCurve_op_Implicit_m2087694379 (RuntimeObject * __this /* static, unused */, float ___constant0, const RuntimeMethod* method)
  5011. {
  5012. MinMaxCurve_t1067599125 V_0;
  5013. memset(&V_0, 0, sizeof(V_0));
  5014. {
  5015. float L_0 = ___constant0;
  5016. MinMaxCurve_t1067599125 L_1;
  5017. memset(&L_1, 0, sizeof(L_1));
  5018. MinMaxCurve__ctor_m1734431933((&L_1), L_0, /*hidden argument*/NULL);
  5019. V_0 = L_1;
  5020. goto IL_000d;
  5021. }
  5022. IL_000d:
  5023. {
  5024. MinMaxCurve_t1067599125 L_2 = V_0;
  5025. return L_2;
  5026. }
  5027. }
  5028. #ifdef __clang__
  5029. #pragma clang diagnostic pop
  5030. #endif
  5031. #ifdef __clang__
  5032. #pragma clang diagnostic push
  5033. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5034. #pragma clang diagnostic ignored "-Wunused-variable"
  5035. #endif
  5036. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/NoiseModule
  5037. extern "C" void NoiseModule_t962525627_marshal_pinvoke(const NoiseModule_t962525627& unmarshaled, NoiseModule_t962525627_marshaled_pinvoke& marshaled)
  5038. {
  5039. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'NoiseModule': Reference type field marshaling is not supported.");
  5040. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5041. }
  5042. extern "C" void NoiseModule_t962525627_marshal_pinvoke_back(const NoiseModule_t962525627_marshaled_pinvoke& marshaled, NoiseModule_t962525627& unmarshaled)
  5043. {
  5044. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'NoiseModule': Reference type field marshaling is not supported.");
  5045. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5046. }
  5047. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/NoiseModule
  5048. extern "C" void NoiseModule_t962525627_marshal_pinvoke_cleanup(NoiseModule_t962525627_marshaled_pinvoke& marshaled)
  5049. {
  5050. }
  5051. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/NoiseModule
  5052. extern "C" void NoiseModule_t962525627_marshal_com(const NoiseModule_t962525627& unmarshaled, NoiseModule_t962525627_marshaled_com& marshaled)
  5053. {
  5054. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'NoiseModule': Reference type field marshaling is not supported.");
  5055. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5056. }
  5057. extern "C" void NoiseModule_t962525627_marshal_com_back(const NoiseModule_t962525627_marshaled_com& marshaled, NoiseModule_t962525627& unmarshaled)
  5058. {
  5059. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'NoiseModule': Reference type field marshaling is not supported.");
  5060. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5061. }
  5062. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/NoiseModule
  5063. extern "C" void NoiseModule_t962525627_marshal_com_cleanup(NoiseModule_t962525627_marshaled_com& marshaled)
  5064. {
  5065. }
  5066. // System.Void UnityEngine.ParticleSystem/NoiseModule::.ctor(UnityEngine.ParticleSystem)
  5067. extern "C" IL2CPP_METHOD_ATTR void NoiseModule__ctor_m4073267536 (NoiseModule_t962525627 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5068. {
  5069. {
  5070. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5071. __this->set_m_ParticleSystem_0(L_0);
  5072. return;
  5073. }
  5074. }
  5075. extern "C" void NoiseModule__ctor_m4073267536_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5076. {
  5077. NoiseModule_t962525627 * _thisAdjusted = reinterpret_cast<NoiseModule_t962525627 *>(__this + 1);
  5078. NoiseModule__ctor_m4073267536(_thisAdjusted, ___particleSystem0, method);
  5079. }
  5080. #ifdef __clang__
  5081. #pragma clang diagnostic pop
  5082. #endif
  5083. #ifdef __clang__
  5084. #pragma clang diagnostic push
  5085. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5086. #pragma clang diagnostic ignored "-Wunused-variable"
  5087. #endif
  5088. // UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::get_position()
  5089. extern "C" IL2CPP_METHOD_ATTR Vector3_t3722313464 Particle_get_position_m855792854 (Particle_t1882894987 * __this, const RuntimeMethod* method)
  5090. {
  5091. Vector3_t3722313464 V_0;
  5092. memset(&V_0, 0, sizeof(V_0));
  5093. {
  5094. Vector3_t3722313464 L_0 = __this->get_m_Position_0();
  5095. V_0 = L_0;
  5096. goto IL_000d;
  5097. }
  5098. IL_000d:
  5099. {
  5100. Vector3_t3722313464 L_1 = V_0;
  5101. return L_1;
  5102. }
  5103. }
  5104. extern "C" Vector3_t3722313464 Particle_get_position_m855792854_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5105. {
  5106. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5107. return Particle_get_position_m855792854(_thisAdjusted, method);
  5108. }
  5109. // System.Void UnityEngine.ParticleSystem/Particle::set_position(UnityEngine.Vector3)
  5110. extern "C" IL2CPP_METHOD_ATTR void Particle_set_position_m4147191379 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5111. {
  5112. {
  5113. Vector3_t3722313464 L_0 = ___value0;
  5114. __this->set_m_Position_0(L_0);
  5115. return;
  5116. }
  5117. }
  5118. extern "C" void Particle_set_position_m4147191379_AdjustorThunk (RuntimeObject * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5119. {
  5120. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5121. Particle_set_position_m4147191379(_thisAdjusted, ___value0, method);
  5122. }
  5123. // System.Void UnityEngine.ParticleSystem/Particle::set_velocity(UnityEngine.Vector3)
  5124. extern "C" IL2CPP_METHOD_ATTR void Particle_set_velocity_m1686335204 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5125. {
  5126. {
  5127. Vector3_t3722313464 L_0 = ___value0;
  5128. __this->set_m_Velocity_1(L_0);
  5129. return;
  5130. }
  5131. }
  5132. extern "C" void Particle_set_velocity_m1686335204_AdjustorThunk (RuntimeObject * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5133. {
  5134. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5135. Particle_set_velocity_m1686335204(_thisAdjusted, ___value0, method);
  5136. }
  5137. // System.Void UnityEngine.ParticleSystem/Particle::set_lifetime(System.Single)
  5138. extern "C" IL2CPP_METHOD_ATTR void Particle_set_lifetime_m1971908220 (Particle_t1882894987 * __this, float ___value0, const RuntimeMethod* method)
  5139. {
  5140. {
  5141. float L_0 = ___value0;
  5142. __this->set_m_Lifetime_10(L_0);
  5143. return;
  5144. }
  5145. }
  5146. extern "C" void Particle_set_lifetime_m1971908220_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
  5147. {
  5148. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5149. Particle_set_lifetime_m1971908220(_thisAdjusted, ___value0, method);
  5150. }
  5151. // System.Single UnityEngine.ParticleSystem/Particle::get_remainingLifetime()
  5152. extern "C" IL2CPP_METHOD_ATTR float Particle_get_remainingLifetime_m4053779941 (Particle_t1882894987 * __this, const RuntimeMethod* method)
  5153. {
  5154. float V_0 = 0.0f;
  5155. {
  5156. float L_0 = __this->get_m_Lifetime_10();
  5157. V_0 = L_0;
  5158. goto IL_000d;
  5159. }
  5160. IL_000d:
  5161. {
  5162. float L_1 = V_0;
  5163. return L_1;
  5164. }
  5165. }
  5166. extern "C" float Particle_get_remainingLifetime_m4053779941_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5167. {
  5168. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5169. return Particle_get_remainingLifetime_m4053779941(_thisAdjusted, method);
  5170. }
  5171. // System.Single UnityEngine.ParticleSystem/Particle::get_startLifetime()
  5172. extern "C" IL2CPP_METHOD_ATTR float Particle_get_startLifetime_m1587267174 (Particle_t1882894987 * __this, const RuntimeMethod* method)
  5173. {
  5174. float V_0 = 0.0f;
  5175. {
  5176. float L_0 = __this->get_m_StartLifetime_11();
  5177. V_0 = L_0;
  5178. goto IL_000d;
  5179. }
  5180. IL_000d:
  5181. {
  5182. float L_1 = V_0;
  5183. return L_1;
  5184. }
  5185. }
  5186. extern "C" float Particle_get_startLifetime_m1587267174_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5187. {
  5188. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5189. return Particle_get_startLifetime_m1587267174(_thisAdjusted, method);
  5190. }
  5191. // System.Void UnityEngine.ParticleSystem/Particle::set_startLifetime(System.Single)
  5192. extern "C" IL2CPP_METHOD_ATTR void Particle_set_startLifetime_m2608171500 (Particle_t1882894987 * __this, float ___value0, const RuntimeMethod* method)
  5193. {
  5194. {
  5195. float L_0 = ___value0;
  5196. __this->set_m_StartLifetime_11(L_0);
  5197. return;
  5198. }
  5199. }
  5200. extern "C" void Particle_set_startLifetime_m2608171500_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
  5201. {
  5202. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5203. Particle_set_startLifetime_m2608171500(_thisAdjusted, ___value0, method);
  5204. }
  5205. // System.Void UnityEngine.ParticleSystem/Particle::set_startSize(System.Single)
  5206. extern "C" IL2CPP_METHOD_ATTR void Particle_set_startSize_m2554682920 (Particle_t1882894987 * __this, float ___value0, const RuntimeMethod* method)
  5207. {
  5208. {
  5209. float L_0 = ___value0;
  5210. float L_1 = ___value0;
  5211. float L_2 = ___value0;
  5212. Vector3_t3722313464 L_3;
  5213. memset(&L_3, 0, sizeof(L_3));
  5214. Vector3__ctor_m3353183577((&L_3), L_0, L_1, L_2, /*hidden argument*/NULL);
  5215. __this->set_m_StartSize_7(L_3);
  5216. return;
  5217. }
  5218. }
  5219. extern "C" void Particle_set_startSize_m2554682920_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
  5220. {
  5221. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5222. Particle_set_startSize_m2554682920(_thisAdjusted, ___value0, method);
  5223. }
  5224. // System.Single UnityEngine.ParticleSystem/Particle::get_rotation()
  5225. extern "C" IL2CPP_METHOD_ATTR float Particle_get_rotation_m3158189621 (Particle_t1882894987 * __this, const RuntimeMethod* method)
  5226. {
  5227. float V_0 = 0.0f;
  5228. {
  5229. Vector3_t3722313464 * L_0 = __this->get_address_of_m_Rotation_5();
  5230. float L_1 = L_0->get_z_3();
  5231. V_0 = ((float)il2cpp_codegen_multiply((float)L_1, (float)(57.29578f)));
  5232. goto IL_0018;
  5233. }
  5234. IL_0018:
  5235. {
  5236. float L_2 = V_0;
  5237. return L_2;
  5238. }
  5239. }
  5240. extern "C" float Particle_get_rotation_m3158189621_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5241. {
  5242. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5243. return Particle_get_rotation_m3158189621(_thisAdjusted, method);
  5244. }
  5245. // System.Void UnityEngine.ParticleSystem/Particle::set_rotation3D(UnityEngine.Vector3)
  5246. extern "C" IL2CPP_METHOD_ATTR void Particle_set_rotation3D_m2156157200 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5247. {
  5248. static bool s_Il2CppMethodInitialized;
  5249. if (!s_Il2CppMethodInitialized)
  5250. {
  5251. il2cpp_codegen_initialize_method (Particle_set_rotation3D_m2156157200_MetadataUsageId);
  5252. s_Il2CppMethodInitialized = true;
  5253. }
  5254. {
  5255. Vector3_t3722313464 L_0 = ___value0;
  5256. IL2CPP_RUNTIME_CLASS_INIT(Vector3_t3722313464_il2cpp_TypeInfo_var);
  5257. Vector3_t3722313464 L_1 = Vector3_op_Multiply_m3376773913(NULL /*static, unused*/, L_0, (0.0174532924f), /*hidden argument*/NULL);
  5258. __this->set_m_Rotation_5(L_1);
  5259. return;
  5260. }
  5261. }
  5262. extern "C" void Particle_set_rotation3D_m2156157200_AdjustorThunk (RuntimeObject * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5263. {
  5264. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5265. Particle_set_rotation3D_m2156157200(_thisAdjusted, ___value0, method);
  5266. }
  5267. // System.Void UnityEngine.ParticleSystem/Particle::set_angularVelocity3D(UnityEngine.Vector3)
  5268. extern "C" IL2CPP_METHOD_ATTR void Particle_set_angularVelocity3D_m3163963446 (Particle_t1882894987 * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5269. {
  5270. static bool s_Il2CppMethodInitialized;
  5271. if (!s_Il2CppMethodInitialized)
  5272. {
  5273. il2cpp_codegen_initialize_method (Particle_set_angularVelocity3D_m3163963446_MetadataUsageId);
  5274. s_Il2CppMethodInitialized = true;
  5275. }
  5276. {
  5277. Vector3_t3722313464 L_0 = ___value0;
  5278. IL2CPP_RUNTIME_CLASS_INIT(Vector3_t3722313464_il2cpp_TypeInfo_var);
  5279. Vector3_t3722313464 L_1 = Vector3_op_Multiply_m3376773913(NULL /*static, unused*/, L_0, (0.0174532924f), /*hidden argument*/NULL);
  5280. __this->set_m_AngularVelocity_6(L_1);
  5281. return;
  5282. }
  5283. }
  5284. extern "C" void Particle_set_angularVelocity3D_m3163963446_AdjustorThunk (RuntimeObject * __this, Vector3_t3722313464 ___value0, const RuntimeMethod* method)
  5285. {
  5286. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5287. Particle_set_angularVelocity3D_m3163963446(_thisAdjusted, ___value0, method);
  5288. }
  5289. // System.Void UnityEngine.ParticleSystem/Particle::set_startColor(UnityEngine.Color32)
  5290. extern "C" IL2CPP_METHOD_ATTR void Particle_set_startColor_m3825027702 (Particle_t1882894987 * __this, Color32_t2600501292 ___value0, const RuntimeMethod* method)
  5291. {
  5292. {
  5293. Color32_t2600501292 L_0 = ___value0;
  5294. __this->set_m_StartColor_8(L_0);
  5295. return;
  5296. }
  5297. }
  5298. extern "C" void Particle_set_startColor_m3825027702_AdjustorThunk (RuntimeObject * __this, Color32_t2600501292 ___value0, const RuntimeMethod* method)
  5299. {
  5300. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5301. Particle_set_startColor_m3825027702(_thisAdjusted, ___value0, method);
  5302. }
  5303. // System.Void UnityEngine.ParticleSystem/Particle::set_randomSeed(System.UInt32)
  5304. extern "C" IL2CPP_METHOD_ATTR void Particle_set_randomSeed_m2900137887 (Particle_t1882894987 * __this, uint32_t ___value0, const RuntimeMethod* method)
  5305. {
  5306. {
  5307. uint32_t L_0 = ___value0;
  5308. __this->set_m_RandomSeed_9(L_0);
  5309. return;
  5310. }
  5311. }
  5312. extern "C" void Particle_set_randomSeed_m2900137887_AdjustorThunk (RuntimeObject * __this, uint32_t ___value0, const RuntimeMethod* method)
  5313. {
  5314. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5315. Particle_set_randomSeed_m2900137887(_thisAdjusted, ___value0, method);
  5316. }
  5317. // System.Single UnityEngine.ParticleSystem/Particle::GetCurrentSize(UnityEngine.ParticleSystem)
  5318. extern "C" IL2CPP_METHOD_ATTR float Particle_GetCurrentSize_m1620066418 (Particle_t1882894987 * __this, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5319. {
  5320. float V_0 = 0.0f;
  5321. {
  5322. ParticleSystem_t1800779281 * L_0 = ___system0;
  5323. float L_1 = Particle_GetCurrentSize_m1924048853(NULL /*static, unused*/, L_0, __this, /*hidden argument*/NULL);
  5324. V_0 = L_1;
  5325. goto IL_000e;
  5326. }
  5327. IL_000e:
  5328. {
  5329. float L_2 = V_0;
  5330. return L_2;
  5331. }
  5332. }
  5333. extern "C" float Particle_GetCurrentSize_m1620066418_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5334. {
  5335. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5336. return Particle_GetCurrentSize_m1620066418(_thisAdjusted, ___system0, method);
  5337. }
  5338. // UnityEngine.Color32 UnityEngine.ParticleSystem/Particle::GetCurrentColor(UnityEngine.ParticleSystem)
  5339. extern "C" IL2CPP_METHOD_ATTR Color32_t2600501292 Particle_GetCurrentColor_m1246398760 (Particle_t1882894987 * __this, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5340. {
  5341. Color32_t2600501292 V_0;
  5342. memset(&V_0, 0, sizeof(V_0));
  5343. {
  5344. ParticleSystem_t1800779281 * L_0 = ___system0;
  5345. Color32_t2600501292 L_1 = Particle_GetCurrentColor_m4248221110(NULL /*static, unused*/, L_0, __this, /*hidden argument*/NULL);
  5346. V_0 = L_1;
  5347. goto IL_000e;
  5348. }
  5349. IL_000e:
  5350. {
  5351. Color32_t2600501292 L_2 = V_0;
  5352. return L_2;
  5353. }
  5354. }
  5355. extern "C" Color32_t2600501292 Particle_GetCurrentColor_m1246398760_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5356. {
  5357. Particle_t1882894987 * _thisAdjusted = reinterpret_cast<Particle_t1882894987 *>(__this + 1);
  5358. return Particle_GetCurrentColor_m1246398760(_thisAdjusted, ___system0, method);
  5359. }
  5360. // System.Single UnityEngine.ParticleSystem/Particle::GetCurrentSize(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&)
  5361. extern "C" IL2CPP_METHOD_ATTR float Particle_GetCurrentSize_m1924048853 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, Particle_t1882894987 * ___particle1, const RuntimeMethod* method)
  5362. {
  5363. typedef float (*Particle_GetCurrentSize_m1924048853_ftn) (ParticleSystem_t1800779281 *, Particle_t1882894987 *);
  5364. static Particle_GetCurrentSize_m1924048853_ftn _il2cpp_icall_func;
  5365. if (!_il2cpp_icall_func)
  5366. _il2cpp_icall_func = (Particle_GetCurrentSize_m1924048853_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/Particle::GetCurrentSize(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&)");
  5367. float retVal = _il2cpp_icall_func(___system0, ___particle1);
  5368. return retVal;
  5369. }
  5370. // UnityEngine.Color32 UnityEngine.ParticleSystem/Particle::GetCurrentColor(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&)
  5371. extern "C" IL2CPP_METHOD_ATTR Color32_t2600501292 Particle_GetCurrentColor_m4248221110 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, Particle_t1882894987 * ___particle1, const RuntimeMethod* method)
  5372. {
  5373. Color32_t2600501292 V_0;
  5374. memset(&V_0, 0, sizeof(V_0));
  5375. Color32_t2600501292 V_1;
  5376. memset(&V_1, 0, sizeof(V_1));
  5377. {
  5378. ParticleSystem_t1800779281 * L_0 = ___system0;
  5379. Particle_t1882894987 * L_1 = ___particle1;
  5380. Particle_INTERNAL_CALL_GetCurrentColor_m1858777858(NULL /*static, unused*/, L_0, L_1, (&V_0), /*hidden argument*/NULL);
  5381. Color32_t2600501292 L_2 = V_0;
  5382. V_1 = L_2;
  5383. goto IL_0011;
  5384. }
  5385. IL_0011:
  5386. {
  5387. Color32_t2600501292 L_3 = V_1;
  5388. return L_3;
  5389. }
  5390. }
  5391. // System.Void UnityEngine.ParticleSystem/Particle::INTERNAL_CALL_GetCurrentColor(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&,UnityEngine.Color32&)
  5392. extern "C" IL2CPP_METHOD_ATTR void Particle_INTERNAL_CALL_GetCurrentColor_m1858777858 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, Particle_t1882894987 * ___particle1, Color32_t2600501292 * ___value2, const RuntimeMethod* method)
  5393. {
  5394. typedef void (*Particle_INTERNAL_CALL_GetCurrentColor_m1858777858_ftn) (ParticleSystem_t1800779281 *, Particle_t1882894987 *, Color32_t2600501292 *);
  5395. static Particle_INTERNAL_CALL_GetCurrentColor_m1858777858_ftn _il2cpp_icall_func;
  5396. if (!_il2cpp_icall_func)
  5397. _il2cpp_icall_func = (Particle_INTERNAL_CALL_GetCurrentColor_m1858777858_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/Particle::INTERNAL_CALL_GetCurrentColor(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/Particle&,UnityEngine.Color32&)");
  5398. _il2cpp_icall_func(___system0, ___particle1, ___value2);
  5399. }
  5400. #ifdef __clang__
  5401. #pragma clang diagnostic pop
  5402. #endif
  5403. #ifdef __clang__
  5404. #pragma clang diagnostic push
  5405. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5406. #pragma clang diagnostic ignored "-Wunused-variable"
  5407. #endif
  5408. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/RotationBySpeedModule
  5409. extern "C" void RotationBySpeedModule_t3497409583_marshal_pinvoke(const RotationBySpeedModule_t3497409583& unmarshaled, RotationBySpeedModule_t3497409583_marshaled_pinvoke& marshaled)
  5410. {
  5411. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationBySpeedModule': Reference type field marshaling is not supported.");
  5412. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5413. }
  5414. extern "C" void RotationBySpeedModule_t3497409583_marshal_pinvoke_back(const RotationBySpeedModule_t3497409583_marshaled_pinvoke& marshaled, RotationBySpeedModule_t3497409583& unmarshaled)
  5415. {
  5416. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationBySpeedModule': Reference type field marshaling is not supported.");
  5417. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5418. }
  5419. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/RotationBySpeedModule
  5420. extern "C" void RotationBySpeedModule_t3497409583_marshal_pinvoke_cleanup(RotationBySpeedModule_t3497409583_marshaled_pinvoke& marshaled)
  5421. {
  5422. }
  5423. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/RotationBySpeedModule
  5424. extern "C" void RotationBySpeedModule_t3497409583_marshal_com(const RotationBySpeedModule_t3497409583& unmarshaled, RotationBySpeedModule_t3497409583_marshaled_com& marshaled)
  5425. {
  5426. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationBySpeedModule': Reference type field marshaling is not supported.");
  5427. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5428. }
  5429. extern "C" void RotationBySpeedModule_t3497409583_marshal_com_back(const RotationBySpeedModule_t3497409583_marshaled_com& marshaled, RotationBySpeedModule_t3497409583& unmarshaled)
  5430. {
  5431. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationBySpeedModule': Reference type field marshaling is not supported.");
  5432. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5433. }
  5434. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/RotationBySpeedModule
  5435. extern "C" void RotationBySpeedModule_t3497409583_marshal_com_cleanup(RotationBySpeedModule_t3497409583_marshaled_com& marshaled)
  5436. {
  5437. }
  5438. // System.Void UnityEngine.ParticleSystem/RotationBySpeedModule::.ctor(UnityEngine.ParticleSystem)
  5439. extern "C" IL2CPP_METHOD_ATTR void RotationBySpeedModule__ctor_m1387209970 (RotationBySpeedModule_t3497409583 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5440. {
  5441. {
  5442. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5443. __this->set_m_ParticleSystem_0(L_0);
  5444. return;
  5445. }
  5446. }
  5447. extern "C" void RotationBySpeedModule__ctor_m1387209970_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5448. {
  5449. RotationBySpeedModule_t3497409583 * _thisAdjusted = reinterpret_cast<RotationBySpeedModule_t3497409583 *>(__this + 1);
  5450. RotationBySpeedModule__ctor_m1387209970(_thisAdjusted, ___particleSystem0, method);
  5451. }
  5452. #ifdef __clang__
  5453. #pragma clang diagnostic pop
  5454. #endif
  5455. #ifdef __clang__
  5456. #pragma clang diagnostic push
  5457. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5458. #pragma clang diagnostic ignored "-Wunused-variable"
  5459. #endif
  5460. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/RotationOverLifetimeModule
  5461. extern "C" void RotationOverLifetimeModule_t1164372224_marshal_pinvoke(const RotationOverLifetimeModule_t1164372224& unmarshaled, RotationOverLifetimeModule_t1164372224_marshaled_pinvoke& marshaled)
  5462. {
  5463. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationOverLifetimeModule': Reference type field marshaling is not supported.");
  5464. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5465. }
  5466. extern "C" void RotationOverLifetimeModule_t1164372224_marshal_pinvoke_back(const RotationOverLifetimeModule_t1164372224_marshaled_pinvoke& marshaled, RotationOverLifetimeModule_t1164372224& unmarshaled)
  5467. {
  5468. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationOverLifetimeModule': Reference type field marshaling is not supported.");
  5469. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5470. }
  5471. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/RotationOverLifetimeModule
  5472. extern "C" void RotationOverLifetimeModule_t1164372224_marshal_pinvoke_cleanup(RotationOverLifetimeModule_t1164372224_marshaled_pinvoke& marshaled)
  5473. {
  5474. }
  5475. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/RotationOverLifetimeModule
  5476. extern "C" void RotationOverLifetimeModule_t1164372224_marshal_com(const RotationOverLifetimeModule_t1164372224& unmarshaled, RotationOverLifetimeModule_t1164372224_marshaled_com& marshaled)
  5477. {
  5478. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationOverLifetimeModule': Reference type field marshaling is not supported.");
  5479. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5480. }
  5481. extern "C" void RotationOverLifetimeModule_t1164372224_marshal_com_back(const RotationOverLifetimeModule_t1164372224_marshaled_com& marshaled, RotationOverLifetimeModule_t1164372224& unmarshaled)
  5482. {
  5483. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'RotationOverLifetimeModule': Reference type field marshaling is not supported.");
  5484. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5485. }
  5486. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/RotationOverLifetimeModule
  5487. extern "C" void RotationOverLifetimeModule_t1164372224_marshal_com_cleanup(RotationOverLifetimeModule_t1164372224_marshaled_com& marshaled)
  5488. {
  5489. }
  5490. // System.Void UnityEngine.ParticleSystem/RotationOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  5491. extern "C" IL2CPP_METHOD_ATTR void RotationOverLifetimeModule__ctor_m1297284518 (RotationOverLifetimeModule_t1164372224 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5492. {
  5493. {
  5494. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5495. __this->set_m_ParticleSystem_0(L_0);
  5496. return;
  5497. }
  5498. }
  5499. extern "C" void RotationOverLifetimeModule__ctor_m1297284518_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5500. {
  5501. RotationOverLifetimeModule_t1164372224 * _thisAdjusted = reinterpret_cast<RotationOverLifetimeModule_t1164372224 *>(__this + 1);
  5502. RotationOverLifetimeModule__ctor_m1297284518(_thisAdjusted, ___particleSystem0, method);
  5503. }
  5504. #ifdef __clang__
  5505. #pragma clang diagnostic pop
  5506. #endif
  5507. #ifdef __clang__
  5508. #pragma clang diagnostic push
  5509. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5510. #pragma clang diagnostic ignored "-Wunused-variable"
  5511. #endif
  5512. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ShapeModule
  5513. extern "C" void ShapeModule_t3608330829_marshal_pinvoke(const ShapeModule_t3608330829& unmarshaled, ShapeModule_t3608330829_marshaled_pinvoke& marshaled)
  5514. {
  5515. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ShapeModule': Reference type field marshaling is not supported.");
  5516. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5517. }
  5518. extern "C" void ShapeModule_t3608330829_marshal_pinvoke_back(const ShapeModule_t3608330829_marshaled_pinvoke& marshaled, ShapeModule_t3608330829& unmarshaled)
  5519. {
  5520. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ShapeModule': Reference type field marshaling is not supported.");
  5521. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5522. }
  5523. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ShapeModule
  5524. extern "C" void ShapeModule_t3608330829_marshal_pinvoke_cleanup(ShapeModule_t3608330829_marshaled_pinvoke& marshaled)
  5525. {
  5526. }
  5527. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/ShapeModule
  5528. extern "C" void ShapeModule_t3608330829_marshal_com(const ShapeModule_t3608330829& unmarshaled, ShapeModule_t3608330829_marshaled_com& marshaled)
  5529. {
  5530. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ShapeModule': Reference type field marshaling is not supported.");
  5531. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5532. }
  5533. extern "C" void ShapeModule_t3608330829_marshal_com_back(const ShapeModule_t3608330829_marshaled_com& marshaled, ShapeModule_t3608330829& unmarshaled)
  5534. {
  5535. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'ShapeModule': Reference type field marshaling is not supported.");
  5536. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5537. }
  5538. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/ShapeModule
  5539. extern "C" void ShapeModule_t3608330829_marshal_com_cleanup(ShapeModule_t3608330829_marshaled_com& marshaled)
  5540. {
  5541. }
  5542. // System.Void UnityEngine.ParticleSystem/ShapeModule::.ctor(UnityEngine.ParticleSystem)
  5543. extern "C" IL2CPP_METHOD_ATTR void ShapeModule__ctor_m3109297265 (ShapeModule_t3608330829 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5544. {
  5545. {
  5546. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5547. __this->set_m_ParticleSystem_0(L_0);
  5548. return;
  5549. }
  5550. }
  5551. extern "C" void ShapeModule__ctor_m3109297265_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5552. {
  5553. ShapeModule_t3608330829 * _thisAdjusted = reinterpret_cast<ShapeModule_t3608330829 *>(__this + 1);
  5554. ShapeModule__ctor_m3109297265(_thisAdjusted, ___particleSystem0, method);
  5555. }
  5556. #ifdef __clang__
  5557. #pragma clang diagnostic pop
  5558. #endif
  5559. #ifdef __clang__
  5560. #pragma clang diagnostic push
  5561. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5562. #pragma clang diagnostic ignored "-Wunused-variable"
  5563. #endif
  5564. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/SizeBySpeedModule
  5565. extern "C" void SizeBySpeedModule_t1515126846_marshal_pinvoke(const SizeBySpeedModule_t1515126846& unmarshaled, SizeBySpeedModule_t1515126846_marshaled_pinvoke& marshaled)
  5566. {
  5567. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeBySpeedModule': Reference type field marshaling is not supported.");
  5568. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5569. }
  5570. extern "C" void SizeBySpeedModule_t1515126846_marshal_pinvoke_back(const SizeBySpeedModule_t1515126846_marshaled_pinvoke& marshaled, SizeBySpeedModule_t1515126846& unmarshaled)
  5571. {
  5572. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeBySpeedModule': Reference type field marshaling is not supported.");
  5573. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5574. }
  5575. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/SizeBySpeedModule
  5576. extern "C" void SizeBySpeedModule_t1515126846_marshal_pinvoke_cleanup(SizeBySpeedModule_t1515126846_marshaled_pinvoke& marshaled)
  5577. {
  5578. }
  5579. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/SizeBySpeedModule
  5580. extern "C" void SizeBySpeedModule_t1515126846_marshal_com(const SizeBySpeedModule_t1515126846& unmarshaled, SizeBySpeedModule_t1515126846_marshaled_com& marshaled)
  5581. {
  5582. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeBySpeedModule': Reference type field marshaling is not supported.");
  5583. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5584. }
  5585. extern "C" void SizeBySpeedModule_t1515126846_marshal_com_back(const SizeBySpeedModule_t1515126846_marshaled_com& marshaled, SizeBySpeedModule_t1515126846& unmarshaled)
  5586. {
  5587. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeBySpeedModule': Reference type field marshaling is not supported.");
  5588. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5589. }
  5590. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/SizeBySpeedModule
  5591. extern "C" void SizeBySpeedModule_t1515126846_marshal_com_cleanup(SizeBySpeedModule_t1515126846_marshaled_com& marshaled)
  5592. {
  5593. }
  5594. // System.Void UnityEngine.ParticleSystem/SizeBySpeedModule::.ctor(UnityEngine.ParticleSystem)
  5595. extern "C" IL2CPP_METHOD_ATTR void SizeBySpeedModule__ctor_m537593350 (SizeBySpeedModule_t1515126846 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5596. {
  5597. {
  5598. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5599. __this->set_m_ParticleSystem_0(L_0);
  5600. return;
  5601. }
  5602. }
  5603. extern "C" void SizeBySpeedModule__ctor_m537593350_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5604. {
  5605. SizeBySpeedModule_t1515126846 * _thisAdjusted = reinterpret_cast<SizeBySpeedModule_t1515126846 *>(__this + 1);
  5606. SizeBySpeedModule__ctor_m537593350(_thisAdjusted, ___particleSystem0, method);
  5607. }
  5608. #ifdef __clang__
  5609. #pragma clang diagnostic pop
  5610. #endif
  5611. #ifdef __clang__
  5612. #pragma clang diagnostic push
  5613. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5614. #pragma clang diagnostic ignored "-Wunused-variable"
  5615. #endif
  5616. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/SizeOverLifetimeModule
  5617. extern "C" void SizeOverLifetimeModule_t1101123803_marshal_pinvoke(const SizeOverLifetimeModule_t1101123803& unmarshaled, SizeOverLifetimeModule_t1101123803_marshaled_pinvoke& marshaled)
  5618. {
  5619. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeOverLifetimeModule': Reference type field marshaling is not supported.");
  5620. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5621. }
  5622. extern "C" void SizeOverLifetimeModule_t1101123803_marshal_pinvoke_back(const SizeOverLifetimeModule_t1101123803_marshaled_pinvoke& marshaled, SizeOverLifetimeModule_t1101123803& unmarshaled)
  5623. {
  5624. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeOverLifetimeModule': Reference type field marshaling is not supported.");
  5625. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5626. }
  5627. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/SizeOverLifetimeModule
  5628. extern "C" void SizeOverLifetimeModule_t1101123803_marshal_pinvoke_cleanup(SizeOverLifetimeModule_t1101123803_marshaled_pinvoke& marshaled)
  5629. {
  5630. }
  5631. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/SizeOverLifetimeModule
  5632. extern "C" void SizeOverLifetimeModule_t1101123803_marshal_com(const SizeOverLifetimeModule_t1101123803& unmarshaled, SizeOverLifetimeModule_t1101123803_marshaled_com& marshaled)
  5633. {
  5634. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeOverLifetimeModule': Reference type field marshaling is not supported.");
  5635. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5636. }
  5637. extern "C" void SizeOverLifetimeModule_t1101123803_marshal_com_back(const SizeOverLifetimeModule_t1101123803_marshaled_com& marshaled, SizeOverLifetimeModule_t1101123803& unmarshaled)
  5638. {
  5639. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SizeOverLifetimeModule': Reference type field marshaling is not supported.");
  5640. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5641. }
  5642. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/SizeOverLifetimeModule
  5643. extern "C" void SizeOverLifetimeModule_t1101123803_marshal_com_cleanup(SizeOverLifetimeModule_t1101123803_marshaled_com& marshaled)
  5644. {
  5645. }
  5646. // System.Void UnityEngine.ParticleSystem/SizeOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  5647. extern "C" IL2CPP_METHOD_ATTR void SizeOverLifetimeModule__ctor_m2691925398 (SizeOverLifetimeModule_t1101123803 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5648. {
  5649. {
  5650. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5651. __this->set_m_ParticleSystem_0(L_0);
  5652. return;
  5653. }
  5654. }
  5655. extern "C" void SizeOverLifetimeModule__ctor_m2691925398_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5656. {
  5657. SizeOverLifetimeModule_t1101123803 * _thisAdjusted = reinterpret_cast<SizeOverLifetimeModule_t1101123803 *>(__this + 1);
  5658. SizeOverLifetimeModule__ctor_m2691925398(_thisAdjusted, ___particleSystem0, method);
  5659. }
  5660. #ifdef __clang__
  5661. #pragma clang diagnostic pop
  5662. #endif
  5663. #ifdef __clang__
  5664. #pragma clang diagnostic push
  5665. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5666. #pragma clang diagnostic ignored "-Wunused-variable"
  5667. #endif
  5668. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/SubEmittersModule
  5669. extern "C" void SubEmittersModule_t903775760_marshal_pinvoke(const SubEmittersModule_t903775760& unmarshaled, SubEmittersModule_t903775760_marshaled_pinvoke& marshaled)
  5670. {
  5671. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SubEmittersModule': Reference type field marshaling is not supported.");
  5672. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5673. }
  5674. extern "C" void SubEmittersModule_t903775760_marshal_pinvoke_back(const SubEmittersModule_t903775760_marshaled_pinvoke& marshaled, SubEmittersModule_t903775760& unmarshaled)
  5675. {
  5676. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SubEmittersModule': Reference type field marshaling is not supported.");
  5677. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5678. }
  5679. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/SubEmittersModule
  5680. extern "C" void SubEmittersModule_t903775760_marshal_pinvoke_cleanup(SubEmittersModule_t903775760_marshaled_pinvoke& marshaled)
  5681. {
  5682. }
  5683. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/SubEmittersModule
  5684. extern "C" void SubEmittersModule_t903775760_marshal_com(const SubEmittersModule_t903775760& unmarshaled, SubEmittersModule_t903775760_marshaled_com& marshaled)
  5685. {
  5686. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SubEmittersModule': Reference type field marshaling is not supported.");
  5687. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5688. }
  5689. extern "C" void SubEmittersModule_t903775760_marshal_com_back(const SubEmittersModule_t903775760_marshaled_com& marshaled, SubEmittersModule_t903775760& unmarshaled)
  5690. {
  5691. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'SubEmittersModule': Reference type field marshaling is not supported.");
  5692. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5693. }
  5694. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/SubEmittersModule
  5695. extern "C" void SubEmittersModule_t903775760_marshal_com_cleanup(SubEmittersModule_t903775760_marshaled_com& marshaled)
  5696. {
  5697. }
  5698. // System.Void UnityEngine.ParticleSystem/SubEmittersModule::.ctor(UnityEngine.ParticleSystem)
  5699. extern "C" IL2CPP_METHOD_ATTR void SubEmittersModule__ctor_m2064557730 (SubEmittersModule_t903775760 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5700. {
  5701. {
  5702. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5703. __this->set_m_ParticleSystem_0(L_0);
  5704. return;
  5705. }
  5706. }
  5707. extern "C" void SubEmittersModule__ctor_m2064557730_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5708. {
  5709. SubEmittersModule_t903775760 * _thisAdjusted = reinterpret_cast<SubEmittersModule_t903775760 *>(__this + 1);
  5710. SubEmittersModule__ctor_m2064557730(_thisAdjusted, ___particleSystem0, method);
  5711. }
  5712. #ifdef __clang__
  5713. #pragma clang diagnostic pop
  5714. #endif
  5715. #ifdef __clang__
  5716. #pragma clang diagnostic push
  5717. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5718. #pragma clang diagnostic ignored "-Wunused-variable"
  5719. #endif
  5720. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/TextureSheetAnimationModule
  5721. extern "C" void TextureSheetAnimationModule_t738696839_marshal_pinvoke(const TextureSheetAnimationModule_t738696839& unmarshaled, TextureSheetAnimationModule_t738696839_marshaled_pinvoke& marshaled)
  5722. {
  5723. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TextureSheetAnimationModule': Reference type field marshaling is not supported.");
  5724. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5725. }
  5726. extern "C" void TextureSheetAnimationModule_t738696839_marshal_pinvoke_back(const TextureSheetAnimationModule_t738696839_marshaled_pinvoke& marshaled, TextureSheetAnimationModule_t738696839& unmarshaled)
  5727. {
  5728. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TextureSheetAnimationModule': Reference type field marshaling is not supported.");
  5729. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5730. }
  5731. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/TextureSheetAnimationModule
  5732. extern "C" void TextureSheetAnimationModule_t738696839_marshal_pinvoke_cleanup(TextureSheetAnimationModule_t738696839_marshaled_pinvoke& marshaled)
  5733. {
  5734. }
  5735. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/TextureSheetAnimationModule
  5736. extern "C" void TextureSheetAnimationModule_t738696839_marshal_com(const TextureSheetAnimationModule_t738696839& unmarshaled, TextureSheetAnimationModule_t738696839_marshaled_com& marshaled)
  5737. {
  5738. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TextureSheetAnimationModule': Reference type field marshaling is not supported.");
  5739. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5740. }
  5741. extern "C" void TextureSheetAnimationModule_t738696839_marshal_com_back(const TextureSheetAnimationModule_t738696839_marshaled_com& marshaled, TextureSheetAnimationModule_t738696839& unmarshaled)
  5742. {
  5743. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TextureSheetAnimationModule': Reference type field marshaling is not supported.");
  5744. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5745. }
  5746. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/TextureSheetAnimationModule
  5747. extern "C" void TextureSheetAnimationModule_t738696839_marshal_com_cleanup(TextureSheetAnimationModule_t738696839_marshaled_com& marshaled)
  5748. {
  5749. }
  5750. // System.Void UnityEngine.ParticleSystem/TextureSheetAnimationModule::.ctor(UnityEngine.ParticleSystem)
  5751. extern "C" IL2CPP_METHOD_ATTR void TextureSheetAnimationModule__ctor_m932769825 (TextureSheetAnimationModule_t738696839 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5752. {
  5753. {
  5754. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  5755. __this->set_m_ParticleSystem_0(L_0);
  5756. return;
  5757. }
  5758. }
  5759. extern "C" void TextureSheetAnimationModule__ctor_m932769825_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  5760. {
  5761. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5762. TextureSheetAnimationModule__ctor_m932769825(_thisAdjusted, ___particleSystem0, method);
  5763. }
  5764. // System.Boolean UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_enabled()
  5765. extern "C" IL2CPP_METHOD_ATTR bool TextureSheetAnimationModule_get_enabled_m2099392666 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method)
  5766. {
  5767. bool V_0 = false;
  5768. {
  5769. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  5770. bool L_1 = TextureSheetAnimationModule_GetEnabled_m2810172049(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  5771. V_0 = L_1;
  5772. goto IL_0012;
  5773. }
  5774. IL_0012:
  5775. {
  5776. bool L_2 = V_0;
  5777. return L_2;
  5778. }
  5779. }
  5780. extern "C" bool TextureSheetAnimationModule_get_enabled_m2099392666_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5781. {
  5782. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5783. return TextureSheetAnimationModule_get_enabled_m2099392666(_thisAdjusted, method);
  5784. }
  5785. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_numTilesX()
  5786. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_numTilesX_m3782231855 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method)
  5787. {
  5788. int32_t V_0 = 0;
  5789. {
  5790. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  5791. int32_t L_1 = TextureSheetAnimationModule_GetNumTilesX_m1010355971(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  5792. V_0 = L_1;
  5793. goto IL_0012;
  5794. }
  5795. IL_0012:
  5796. {
  5797. int32_t L_2 = V_0;
  5798. return L_2;
  5799. }
  5800. }
  5801. extern "C" int32_t TextureSheetAnimationModule_get_numTilesX_m3782231855_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5802. {
  5803. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5804. return TextureSheetAnimationModule_get_numTilesX_m3782231855(_thisAdjusted, method);
  5805. }
  5806. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_numTilesY()
  5807. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_numTilesY_m1053348500 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method)
  5808. {
  5809. int32_t V_0 = 0;
  5810. {
  5811. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  5812. int32_t L_1 = TextureSheetAnimationModule_GetNumTilesY_m2021848348(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  5813. V_0 = L_1;
  5814. goto IL_0012;
  5815. }
  5816. IL_0012:
  5817. {
  5818. int32_t L_2 = V_0;
  5819. return L_2;
  5820. }
  5821. }
  5822. extern "C" int32_t TextureSheetAnimationModule_get_numTilesY_m1053348500_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5823. {
  5824. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5825. return TextureSheetAnimationModule_get_numTilesY_m1053348500(_thisAdjusted, method);
  5826. }
  5827. // UnityEngine.ParticleSystemAnimationType UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_animation()
  5828. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_animation_m2249866915 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method)
  5829. {
  5830. int32_t V_0 = 0;
  5831. {
  5832. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  5833. int32_t L_1 = TextureSheetAnimationModule_GetAnimationType_m2914365387(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  5834. V_0 = L_1;
  5835. goto IL_0012;
  5836. }
  5837. IL_0012:
  5838. {
  5839. int32_t L_2 = V_0;
  5840. return L_2;
  5841. }
  5842. }
  5843. extern "C" int32_t TextureSheetAnimationModule_get_animation_m2249866915_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5844. {
  5845. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5846. return TextureSheetAnimationModule_get_animation_m2249866915(_thisAdjusted, method);
  5847. }
  5848. // UnityEngine.ParticleSystem/MinMaxCurve UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_frameOverTime()
  5849. extern "C" IL2CPP_METHOD_ATTR MinMaxCurve_t1067599125 TextureSheetAnimationModule_get_frameOverTime_m3059492834 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method)
  5850. {
  5851. MinMaxCurve_t1067599125 V_0;
  5852. memset(&V_0, 0, sizeof(V_0));
  5853. MinMaxCurve_t1067599125 V_1;
  5854. memset(&V_1, 0, sizeof(V_1));
  5855. {
  5856. il2cpp_codegen_initobj((&V_0), sizeof(MinMaxCurve_t1067599125 ));
  5857. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  5858. TextureSheetAnimationModule_GetFrameOverTime_m371108956(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL);
  5859. MinMaxCurve_t1067599125 L_1 = V_0;
  5860. V_1 = L_1;
  5861. goto IL_001d;
  5862. }
  5863. IL_001d:
  5864. {
  5865. MinMaxCurve_t1067599125 L_2 = V_1;
  5866. return L_2;
  5867. }
  5868. }
  5869. extern "C" MinMaxCurve_t1067599125 TextureSheetAnimationModule_get_frameOverTime_m3059492834_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5870. {
  5871. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5872. return TextureSheetAnimationModule_get_frameOverTime_m3059492834(_thisAdjusted, method);
  5873. }
  5874. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_cycleCount()
  5875. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_cycleCount_m1231605148 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method)
  5876. {
  5877. int32_t V_0 = 0;
  5878. {
  5879. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  5880. int32_t L_1 = TextureSheetAnimationModule_GetCycleCount_m4232892544(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  5881. V_0 = L_1;
  5882. goto IL_0012;
  5883. }
  5884. IL_0012:
  5885. {
  5886. int32_t L_2 = V_0;
  5887. return L_2;
  5888. }
  5889. }
  5890. extern "C" int32_t TextureSheetAnimationModule_get_cycleCount_m1231605148_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5891. {
  5892. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5893. return TextureSheetAnimationModule_get_cycleCount_m1231605148(_thisAdjusted, method);
  5894. }
  5895. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::get_rowIndex()
  5896. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_get_rowIndex_m1602825482 (TextureSheetAnimationModule_t738696839 * __this, const RuntimeMethod* method)
  5897. {
  5898. int32_t V_0 = 0;
  5899. {
  5900. ParticleSystem_t1800779281 * L_0 = __this->get_m_ParticleSystem_0();
  5901. int32_t L_1 = TextureSheetAnimationModule_GetRowIndex_m3246918826(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  5902. V_0 = L_1;
  5903. goto IL_0012;
  5904. }
  5905. IL_0012:
  5906. {
  5907. int32_t L_2 = V_0;
  5908. return L_2;
  5909. }
  5910. }
  5911. extern "C" int32_t TextureSheetAnimationModule_get_rowIndex_m1602825482_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
  5912. {
  5913. TextureSheetAnimationModule_t738696839 * _thisAdjusted = reinterpret_cast<TextureSheetAnimationModule_t738696839 *>(__this + 1);
  5914. return TextureSheetAnimationModule_get_rowIndex_m1602825482(_thisAdjusted, method);
  5915. }
  5916. // System.Boolean UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetEnabled(UnityEngine.ParticleSystem)
  5917. extern "C" IL2CPP_METHOD_ATTR bool TextureSheetAnimationModule_GetEnabled_m2810172049 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5918. {
  5919. typedef bool (*TextureSheetAnimationModule_GetEnabled_m2810172049_ftn) (ParticleSystem_t1800779281 *);
  5920. static TextureSheetAnimationModule_GetEnabled_m2810172049_ftn _il2cpp_icall_func;
  5921. if (!_il2cpp_icall_func)
  5922. _il2cpp_icall_func = (TextureSheetAnimationModule_GetEnabled_m2810172049_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetEnabled(UnityEngine.ParticleSystem)");
  5923. bool retVal = _il2cpp_icall_func(___system0);
  5924. return retVal;
  5925. }
  5926. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetNumTilesX(UnityEngine.ParticleSystem)
  5927. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetNumTilesX_m1010355971 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5928. {
  5929. typedef int32_t (*TextureSheetAnimationModule_GetNumTilesX_m1010355971_ftn) (ParticleSystem_t1800779281 *);
  5930. static TextureSheetAnimationModule_GetNumTilesX_m1010355971_ftn _il2cpp_icall_func;
  5931. if (!_il2cpp_icall_func)
  5932. _il2cpp_icall_func = (TextureSheetAnimationModule_GetNumTilesX_m1010355971_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetNumTilesX(UnityEngine.ParticleSystem)");
  5933. int32_t retVal = _il2cpp_icall_func(___system0);
  5934. return retVal;
  5935. }
  5936. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetNumTilesY(UnityEngine.ParticleSystem)
  5937. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetNumTilesY_m2021848348 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5938. {
  5939. typedef int32_t (*TextureSheetAnimationModule_GetNumTilesY_m2021848348_ftn) (ParticleSystem_t1800779281 *);
  5940. static TextureSheetAnimationModule_GetNumTilesY_m2021848348_ftn _il2cpp_icall_func;
  5941. if (!_il2cpp_icall_func)
  5942. _il2cpp_icall_func = (TextureSheetAnimationModule_GetNumTilesY_m2021848348_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetNumTilesY(UnityEngine.ParticleSystem)");
  5943. int32_t retVal = _il2cpp_icall_func(___system0);
  5944. return retVal;
  5945. }
  5946. // UnityEngine.ParticleSystemAnimationType UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetAnimationType(UnityEngine.ParticleSystem)
  5947. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetAnimationType_m2914365387 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5948. {
  5949. typedef int32_t (*TextureSheetAnimationModule_GetAnimationType_m2914365387_ftn) (ParticleSystem_t1800779281 *);
  5950. static TextureSheetAnimationModule_GetAnimationType_m2914365387_ftn _il2cpp_icall_func;
  5951. if (!_il2cpp_icall_func)
  5952. _il2cpp_icall_func = (TextureSheetAnimationModule_GetAnimationType_m2914365387_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetAnimationType(UnityEngine.ParticleSystem)");
  5953. int32_t retVal = _il2cpp_icall_func(___system0);
  5954. return retVal;
  5955. }
  5956. // System.Void UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetFrameOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)
  5957. extern "C" IL2CPP_METHOD_ATTR void TextureSheetAnimationModule_GetFrameOverTime_m371108956 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, MinMaxCurve_t1067599125 * ___curve1, const RuntimeMethod* method)
  5958. {
  5959. typedef void (*TextureSheetAnimationModule_GetFrameOverTime_m371108956_ftn) (ParticleSystem_t1800779281 *, MinMaxCurve_t1067599125 *);
  5960. static TextureSheetAnimationModule_GetFrameOverTime_m371108956_ftn _il2cpp_icall_func;
  5961. if (!_il2cpp_icall_func)
  5962. _il2cpp_icall_func = (TextureSheetAnimationModule_GetFrameOverTime_m371108956_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetFrameOverTime(UnityEngine.ParticleSystem,UnityEngine.ParticleSystem/MinMaxCurve&)");
  5963. _il2cpp_icall_func(___system0, ___curve1);
  5964. }
  5965. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetCycleCount(UnityEngine.ParticleSystem)
  5966. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetCycleCount_m4232892544 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5967. {
  5968. typedef int32_t (*TextureSheetAnimationModule_GetCycleCount_m4232892544_ftn) (ParticleSystem_t1800779281 *);
  5969. static TextureSheetAnimationModule_GetCycleCount_m4232892544_ftn _il2cpp_icall_func;
  5970. if (!_il2cpp_icall_func)
  5971. _il2cpp_icall_func = (TextureSheetAnimationModule_GetCycleCount_m4232892544_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetCycleCount(UnityEngine.ParticleSystem)");
  5972. int32_t retVal = _il2cpp_icall_func(___system0);
  5973. return retVal;
  5974. }
  5975. // System.Int32 UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetRowIndex(UnityEngine.ParticleSystem)
  5976. extern "C" IL2CPP_METHOD_ATTR int32_t TextureSheetAnimationModule_GetRowIndex_m3246918826 (RuntimeObject * __this /* static, unused */, ParticleSystem_t1800779281 * ___system0, const RuntimeMethod* method)
  5977. {
  5978. typedef int32_t (*TextureSheetAnimationModule_GetRowIndex_m3246918826_ftn) (ParticleSystem_t1800779281 *);
  5979. static TextureSheetAnimationModule_GetRowIndex_m3246918826_ftn _il2cpp_icall_func;
  5980. if (!_il2cpp_icall_func)
  5981. _il2cpp_icall_func = (TextureSheetAnimationModule_GetRowIndex_m3246918826_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ParticleSystem/TextureSheetAnimationModule::GetRowIndex(UnityEngine.ParticleSystem)");
  5982. int32_t retVal = _il2cpp_icall_func(___system0);
  5983. return retVal;
  5984. }
  5985. #ifdef __clang__
  5986. #pragma clang diagnostic pop
  5987. #endif
  5988. #ifdef __clang__
  5989. #pragma clang diagnostic push
  5990. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5991. #pragma clang diagnostic ignored "-Wunused-variable"
  5992. #endif
  5993. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/TrailModule
  5994. extern "C" void TrailModule_t2282589118_marshal_pinvoke(const TrailModule_t2282589118& unmarshaled, TrailModule_t2282589118_marshaled_pinvoke& marshaled)
  5995. {
  5996. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TrailModule': Reference type field marshaling is not supported.");
  5997. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  5998. }
  5999. extern "C" void TrailModule_t2282589118_marshal_pinvoke_back(const TrailModule_t2282589118_marshaled_pinvoke& marshaled, TrailModule_t2282589118& unmarshaled)
  6000. {
  6001. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TrailModule': Reference type field marshaling is not supported.");
  6002. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6003. }
  6004. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/TrailModule
  6005. extern "C" void TrailModule_t2282589118_marshal_pinvoke_cleanup(TrailModule_t2282589118_marshaled_pinvoke& marshaled)
  6006. {
  6007. }
  6008. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/TrailModule
  6009. extern "C" void TrailModule_t2282589118_marshal_com(const TrailModule_t2282589118& unmarshaled, TrailModule_t2282589118_marshaled_com& marshaled)
  6010. {
  6011. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TrailModule': Reference type field marshaling is not supported.");
  6012. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6013. }
  6014. extern "C" void TrailModule_t2282589118_marshal_com_back(const TrailModule_t2282589118_marshaled_com& marshaled, TrailModule_t2282589118& unmarshaled)
  6015. {
  6016. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TrailModule': Reference type field marshaling is not supported.");
  6017. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6018. }
  6019. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/TrailModule
  6020. extern "C" void TrailModule_t2282589118_marshal_com_cleanup(TrailModule_t2282589118_marshaled_com& marshaled)
  6021. {
  6022. }
  6023. // System.Void UnityEngine.ParticleSystem/TrailModule::.ctor(UnityEngine.ParticleSystem)
  6024. extern "C" IL2CPP_METHOD_ATTR void TrailModule__ctor_m1147544692 (TrailModule_t2282589118 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  6025. {
  6026. {
  6027. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  6028. __this->set_m_ParticleSystem_0(L_0);
  6029. return;
  6030. }
  6031. }
  6032. extern "C" void TrailModule__ctor_m1147544692_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  6033. {
  6034. TrailModule_t2282589118 * _thisAdjusted = reinterpret_cast<TrailModule_t2282589118 *>(__this + 1);
  6035. TrailModule__ctor_m1147544692(_thisAdjusted, ___particleSystem0, method);
  6036. }
  6037. #ifdef __clang__
  6038. #pragma clang diagnostic pop
  6039. #endif
  6040. #ifdef __clang__
  6041. #pragma clang diagnostic push
  6042. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6043. #pragma clang diagnostic ignored "-Wunused-variable"
  6044. #endif
  6045. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/TriggerModule
  6046. extern "C" void TriggerModule_t1157986180_marshal_pinvoke(const TriggerModule_t1157986180& unmarshaled, TriggerModule_t1157986180_marshaled_pinvoke& marshaled)
  6047. {
  6048. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TriggerModule': Reference type field marshaling is not supported.");
  6049. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6050. }
  6051. extern "C" void TriggerModule_t1157986180_marshal_pinvoke_back(const TriggerModule_t1157986180_marshaled_pinvoke& marshaled, TriggerModule_t1157986180& unmarshaled)
  6052. {
  6053. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TriggerModule': Reference type field marshaling is not supported.");
  6054. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6055. }
  6056. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/TriggerModule
  6057. extern "C" void TriggerModule_t1157986180_marshal_pinvoke_cleanup(TriggerModule_t1157986180_marshaled_pinvoke& marshaled)
  6058. {
  6059. }
  6060. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/TriggerModule
  6061. extern "C" void TriggerModule_t1157986180_marshal_com(const TriggerModule_t1157986180& unmarshaled, TriggerModule_t1157986180_marshaled_com& marshaled)
  6062. {
  6063. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TriggerModule': Reference type field marshaling is not supported.");
  6064. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6065. }
  6066. extern "C" void TriggerModule_t1157986180_marshal_com_back(const TriggerModule_t1157986180_marshaled_com& marshaled, TriggerModule_t1157986180& unmarshaled)
  6067. {
  6068. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'TriggerModule': Reference type field marshaling is not supported.");
  6069. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6070. }
  6071. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/TriggerModule
  6072. extern "C" void TriggerModule_t1157986180_marshal_com_cleanup(TriggerModule_t1157986180_marshaled_com& marshaled)
  6073. {
  6074. }
  6075. // System.Void UnityEngine.ParticleSystem/TriggerModule::.ctor(UnityEngine.ParticleSystem)
  6076. extern "C" IL2CPP_METHOD_ATTR void TriggerModule__ctor_m3759203166 (TriggerModule_t1157986180 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  6077. {
  6078. {
  6079. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  6080. __this->set_m_ParticleSystem_0(L_0);
  6081. return;
  6082. }
  6083. }
  6084. extern "C" void TriggerModule__ctor_m3759203166_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  6085. {
  6086. TriggerModule_t1157986180 * _thisAdjusted = reinterpret_cast<TriggerModule_t1157986180 *>(__this + 1);
  6087. TriggerModule__ctor_m3759203166(_thisAdjusted, ___particleSystem0, method);
  6088. }
  6089. #ifdef __clang__
  6090. #pragma clang diagnostic pop
  6091. #endif
  6092. #ifdef __clang__
  6093. #pragma clang diagnostic push
  6094. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6095. #pragma clang diagnostic ignored "-Wunused-variable"
  6096. #endif
  6097. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/VelocityOverLifetimeModule
  6098. extern "C" void VelocityOverLifetimeModule_t1982232382_marshal_pinvoke(const VelocityOverLifetimeModule_t1982232382& unmarshaled, VelocityOverLifetimeModule_t1982232382_marshaled_pinvoke& marshaled)
  6099. {
  6100. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'VelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  6101. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6102. }
  6103. extern "C" void VelocityOverLifetimeModule_t1982232382_marshal_pinvoke_back(const VelocityOverLifetimeModule_t1982232382_marshaled_pinvoke& marshaled, VelocityOverLifetimeModule_t1982232382& unmarshaled)
  6104. {
  6105. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'VelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  6106. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6107. }
  6108. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/VelocityOverLifetimeModule
  6109. extern "C" void VelocityOverLifetimeModule_t1982232382_marshal_pinvoke_cleanup(VelocityOverLifetimeModule_t1982232382_marshaled_pinvoke& marshaled)
  6110. {
  6111. }
  6112. // Conversion methods for marshalling of: UnityEngine.ParticleSystem/VelocityOverLifetimeModule
  6113. extern "C" void VelocityOverLifetimeModule_t1982232382_marshal_com(const VelocityOverLifetimeModule_t1982232382& unmarshaled, VelocityOverLifetimeModule_t1982232382_marshaled_com& marshaled)
  6114. {
  6115. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'VelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  6116. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6117. }
  6118. extern "C" void VelocityOverLifetimeModule_t1982232382_marshal_com_back(const VelocityOverLifetimeModule_t1982232382_marshaled_com& marshaled, VelocityOverLifetimeModule_t1982232382& unmarshaled)
  6119. {
  6120. Exception_t* ___m_ParticleSystem_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ParticleSystem' of type 'VelocityOverLifetimeModule': Reference type field marshaling is not supported.");
  6121. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ParticleSystem_0Exception,NULL);
  6122. }
  6123. // Conversion method for clean up from marshalling of: UnityEngine.ParticleSystem/VelocityOverLifetimeModule
  6124. extern "C" void VelocityOverLifetimeModule_t1982232382_marshal_com_cleanup(VelocityOverLifetimeModule_t1982232382_marshaled_com& marshaled)
  6125. {
  6126. }
  6127. // System.Void UnityEngine.ParticleSystem/VelocityOverLifetimeModule::.ctor(UnityEngine.ParticleSystem)
  6128. extern "C" IL2CPP_METHOD_ATTR void VelocityOverLifetimeModule__ctor_m1651720034 (VelocityOverLifetimeModule_t1982232382 * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  6129. {
  6130. {
  6131. ParticleSystem_t1800779281 * L_0 = ___particleSystem0;
  6132. __this->set_m_ParticleSystem_0(L_0);
  6133. return;
  6134. }
  6135. }
  6136. extern "C" void VelocityOverLifetimeModule__ctor_m1651720034_AdjustorThunk (RuntimeObject * __this, ParticleSystem_t1800779281 * ___particleSystem0, const RuntimeMethod* method)
  6137. {
  6138. VelocityOverLifetimeModule_t1982232382 * _thisAdjusted = reinterpret_cast<VelocityOverLifetimeModule_t1982232382 *>(__this + 1);
  6139. VelocityOverLifetimeModule__ctor_m1651720034(_thisAdjusted, ___particleSystem0, method);
  6140. }
  6141. #ifdef __clang__
  6142. #pragma clang diagnostic pop
  6143. #endif
  6144. #ifdef __clang__
  6145. #pragma clang diagnostic push
  6146. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6147. #pragma clang diagnostic ignored "-Wunused-variable"
  6148. #endif
  6149. #ifdef __clang__
  6150. #pragma clang diagnostic pop
  6151. #endif
  6152. #ifdef __clang__
  6153. #pragma clang diagnostic push
  6154. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6155. #pragma clang diagnostic ignored "-Wunused-variable"
  6156. #endif
  6157. #ifdef __clang__
  6158. #pragma clang diagnostic pop
  6159. #endif
  6160. #ifdef __clang__
  6161. #pragma clang diagnostic push
  6162. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6163. #pragma clang diagnostic ignored "-Wunused-variable"
  6164. #endif
  6165. #ifdef __clang__
  6166. #pragma clang diagnostic pop
  6167. #endif
  6168. #ifdef __clang__
  6169. #pragma clang diagnostic push
  6170. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6171. #pragma clang diagnostic ignored "-Wunused-variable"
  6172. #endif
  6173. #ifdef __clang__
  6174. #pragma clang diagnostic pop
  6175. #endif
  6176. #ifdef __clang__
  6177. #pragma clang diagnostic push
  6178. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6179. #pragma clang diagnostic ignored "-Wunused-variable"
  6180. #endif
  6181. #ifdef __clang__
  6182. #pragma clang diagnostic pop
  6183. #endif
  6184. #ifdef __clang__
  6185. #pragma clang diagnostic push
  6186. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6187. #pragma clang diagnostic ignored "-Wunused-variable"
  6188. #endif
  6189. #ifdef __clang__
  6190. #pragma clang diagnostic pop
  6191. #endif
  6192. #ifdef __clang__
  6193. #pragma clang diagnostic push
  6194. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6195. #pragma clang diagnostic ignored "-Wunused-variable"
  6196. #endif
  6197. #ifdef __clang__
  6198. #pragma clang diagnostic pop
  6199. #endif