| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202 |
- [Info][Process] Loading Editor Platform...
- [Info][Process] Found Editor Platform: WindowsEditorPlatform
- [Info][Process] Loading for BuildTarget StandaloneWindows64 Build Platform...
- [Info][Process] Found Build Platform: DefaultPlatform
- [Info][Process] Loading Dependencies...
- [Info][Process] Found Dependencies:
- E:\Unity\2021.3.22f1c1\Editor\Data\MonoBleedingEdge\lib\mono\unityjit-win32
- E:\Unity\2021.3.22f1c1\Editor\Data\Managed\UnityEngine
- E:\Unity\2021.3.22f1c1\Editor\Data\Managed
- E:\Unity\2021.3.22f1c1\Editor\Data\MonoBleedingEdge\lib\mono\unityjit-win32\Facades
- E:\Unity\2021.3.22f1c1\Editor\Data\PlaybackEngines\AndroidPlayer
- E:\Unity\2021.3.22f1c1\Editor\Data\PlaybackEngines\iOSSupport
- E:\Unity\2021.3.22f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport
- E:\000MyProject\InfraredLocate\Library\ScriptAssemblies
- E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.collab-proxy@2.0.1\Lib\Editor\PlasticSCM
- E:\000MyProject\InfraredLocate\Assets\Plugins\o0Lib\netstandard2.0
- E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet
- E:\000MyProject\InfraredLocate\Assets\OPS\Obfuscator.Pro\Plugins
- E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\EditorAssetResources
- E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip
- E:\000MyProject\InfraredLocate\Assets\OPS\Editor\Plugins\Mono.Cecil
- E:\000MyProject\InfraredLocate\Assets\OPS\Obfuscator.Pro\Editor\Plugins
- E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Runtime\VisualScripting.Flow\Dependencies\NCalc
- E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.testtools.codecoverage@1.2.2\lib\ReportGenerator
- E:\000MyProject\InfraredLocate\Assets\Plugins
- E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom
- E:\Unity\2021.3.22f1c1\Editor\Managed
- [Info][Process] Loading Helper Assembly Location...
- [Info][Process] For Assemblies:
- OPS.Obfuscator.dll
- [Info][Process] Found Helper Assemblies Location:
- E:\000MyProject\InfraredLocate\Assets\OPS\Obfuscator.Pro\Plugins\OPS.Obfuscator.dll
- [Info][Process] Loading Assembly Location...
- [Info][Process] For Assemblies:
- Assembly-CSharp.dll
- Assembly-CSharp-firstpass.dll
- [Warning][Process] Could not find Assembly: Assembly-CSharp-firstpass.dll
- [Info][Process] Found Assemblies Location:
- E:\000MyProject\InfraredLocate\Library\PlayerScriptAssemblies\Assembly-CSharp.dll
- [Info][Process] Start Assembly obfuscation
- [Info][Process] Lock Assemblies
- [Info][Process] Loading Processings Steps...
- [Info][Process] Finished Processings Steps loading.
- [Info][Process] Processing Step: Init Assemblies
- [Info][Preprocess] [Assembly-CSharp] Searching Member References...
- [Info][Preprocess] [Assembly-CSharp] Searching Type References...
- [Info][Process] Finished Step: Init Assemblies
- [Info][Process] Processing Step: Init Methods
- [Info][Preprocess] [Assembly-CSharp] Searching Method Semantics...
- [Info][Process] Finished Step: Init Methods
- [Info][Process] Processing Step: Analyse Strings
- [Info][Analyse] [Assembly-CSharp] Analyse Strings...
- [Info][Analyse Files] Found Strings: 53
- [Info][Process] Finished Step: Analyse Strings
- [Info][Process] Processing Step: Analyse Files
- [Info][Analyse Files] Searching Gui Methods...
- [Info][Analyse Files] Found Gui Methods: 6
- [Info][Process] Finished Step: Analyse Files
- [Info][Process] Processing Step: Analyse Files
- [Info][Analyse Files] Searching Animation Methods...
- [Info][Analyse Files] Found Animation Methods: 0
- [Info][Process] Finished Step: Analyse Files
- [Info][Process] Processing Step: Analyse Files
- [Info][Analyse Files] Searching Unity Types...
- [Info][Process] Finished Step: Analyse Files
- [Info][Process] Processing Step: Analyse Namespaces
- [Info][Analyse] [Assembly-CSharp] Analyse Namespaces...
- [Info][Skip Namespace] [[Assembly-CSharp]GameCrossHair] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Namespace] [[Assembly-CSharp]GameMode] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Namespace] [[Assembly-CSharp]ZIM.InfraredLocate/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Namespace] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Namespace] [[Assembly-CSharp]o0.Project.Extension/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Namespace] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Namespace] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Process] Finished Step: Analyse Namespaces
- [Info][Process] Processing Step: Analyse Types
- [Info][Analyse] [Assembly-CSharp] Analyse Types...
- [Info][Skip Type] [[Assembly-CSharp]GameBootListener] Because of some addon: .Net Framework [Has RuntimeInitializeOnLoadMethodAttribute.]
- [Info][Skip Type] [[Assembly-CSharp]GameController] Because of some addon: Reflection and Coroutine [Matchs some String. Have a look at Obfuscator Settings->Advanced->Search matching members.]
- [Info][Skip Type] [[Assembly-CSharp]GameCrossHair] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Type] [[Assembly-CSharp]GameMode] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Type] [[Assembly-CSharp]ZIM.InfraredLocate/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Type] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Type] [[Assembly-CSharp]o0.Project.Extension/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Type] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Skip Type] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
- [Info][Process] Finished Step: Analyse Types
- [Info][Process] Processing Step: Analyse Members
- [Info][Analyse] [Assembly-CSharp] Analyse Members...
- [Info][Skip Field] [[Assembly-CSharp]GameController GameCrossHair::gameController] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]ScreenLocate GameCrossHair::screenLocate] Because of some addon: Obfuscator [Is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]UnityEngine.RectTransform GameCrossHair::myRTF] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]UnityEngine.Vector2 GameCrossHair::targetPos] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameCrossHair::infraredSpotsIndex] Because of some addon: Obfuscator [Is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector3> GameCrossHair::_lastPosition] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::aBoxWidth] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameMode::aDevideCount] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::bBoxWidth] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameMode::bDevideCount] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::cBoxWidth] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameMode::cDevideCount] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::boxDownSpeed] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::createBoxInterval] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]UnityEngine.RectTransform GameMode::container] Because of some addon: Obfuscator [Is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]UnityEngine.GameObject GameMode::boxPrefab] Because of some addon: Obfuscator [Is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Collections.Generic.Queue`1<System.Single> GameMode::useStartYQueue] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::timeCount] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Int32 ScreenLocate/Mode::value__] Because of some addon: .Net Framework [Is value__.]
- [Info][Skip Field] [[Assembly-CSharp]System.Int32 ZIM.InfraredMatch::value__] Because of some addon: .Net Framework [Is value__.]
- [Info][Skip Field] [[Assembly-CSharp]ZIM.InfraredLocate/<>c ZIM.InfraredLocate/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<ZIM.PixelSpotArea> ZIM.InfraredLocate/<>c::<>9__13_0] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<ZIM.PixelSpotArea> ZIM.InfraredLocate/<>c::<>9__13_1] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<ZIM.PixelCircleArea> ZIM.InfraredLocate/<>c::<>9__16_1] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Property] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray::Item] Because of some Addon: .Net Framework [Is 'Item']
- [Info][Skip Property] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray::Item] Because of some Addon: .Net Framework [Is 'Item']
- [Info][Skip Field] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c ZIM.Image.ConvEdge/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Single,o0.Geometry2D.Vector`1<System.Single>>> ZIM.Image.ConvEdge/<>c::<>9__4_0] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Property] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::Item] Because of some Addon: .Net Framework [Is 'Item']
- [Info][Skip Field] [[Assembly-CSharp]System.Int32 o0.Project.ColorChannel::value__] Because of some addon: .Net Framework [Is value__.]
- [Info][Skip Field] [[Assembly-CSharp]o0.Project.Extension/<>c o0.Project.Extension/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_2] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_3] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_4] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_5] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`4<o0.Geometry2D.Float.Line,System.Single,System.Single,System.Single>> o0.Project.Extension/<>c::<>9__15_3] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.Extension/<>c::<>9__15_2] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`3<o0.Geometry2D.Float.Line,System.Single,System.Single>> o0.Project.Extension/<>c::<>9__15_0] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Func`4<System.Single,System.Single,System.Single,System.Single> o0.Project.Extension/<>c::<>9__18_0] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Func`4<System.Single,System.Single,System.Single,System.Single> o0.Project.Extension/<>c::<>9__19_0] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Single,o0.Geometry2D.Float.Vector>> o0.Project.Extension/<>c::<>9__23_1] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Single,o0.Geometry2D.Float.Line>> o0.Project.Extension/<>c::<>9__25_1] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c o0.Project.InfraredIdentification/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.InfraredIdentification/<>c::<>9__9_4] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.InfraredIdentification/<>c::<>9__9_5] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.InfraredIdentification/<>c::<>9__9_6] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.Single> o0.Project.InfraredIdentification/<>c::<>9__14_0] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.Single> o0.Project.InfraredIdentification/<>c::<>9__14_1] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.Single> o0.Project.InfraredIdentification/<>c::<>9__14_2] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c o0.Project.ScreenIdentification/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.ScreenIdentification/<>c::<>9__33_1] Because of some addon: Obfuscator [Class is Serializeable.]
- [Info][Process] Finished Step: Analyse Members
- [Info][Process] Processing Step: Analyse Methods
- [Info][Analyse] [Assembly-CSharp] Analyse Types...
- [Info][Skip Method] [[Assembly-CSharp]BombChild::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]BombChild::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]Box::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]Box::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]Box::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]FPSTester::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]FPSTester::OnGUI()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]FPSTester::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]GameBootListener::OnRuntimeMethodLoad()] Because of some Addon: .Net Framework [Has RuntimeInitializeOnLoadMethodAttribute.]
- [Info][Skip Method] [[Assembly-CSharp]GameBootListener::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]GameController::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]GameController::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]GameController::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]GameCrossHair::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]GameCrossHair::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]GameCrossHair::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]GameMode::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]GameMode::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]GameMode::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::OnClick_Open()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::OnClick_Close()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]InfraredLocateTest::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]InfraredLocateTest::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass14_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_1::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::DoScreenLocate()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]TestLineRegression::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]TestLineRegression::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]TestLineRegression::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]InfraredSpotSettings::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::Awake()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::BtnScreenLocate()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::BtnScreenMap()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::BtnScreenLocateManual()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::Start()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::Update()] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::OnClick_Open()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::OnClick_Close()] Because of some Addon: Gui or Animation method
- [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::Update([netstandard]System.Double[])] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass16_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate::.ctor([Assembly-CSharp]ZIMWebCamera [Assembly-CSharp]o0.Project.ScreenIdentification [Assembly-CSharp]InfraredSpotSettings)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate::Update([UnityEngine.CoreModule]UnityEngine.Color[])] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::.ctor([Assembly-CSharp]ZIM.Unity.ScreenMap [Assembly-CSharp]ZIM.InfraredMatch)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::Reset()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::Update([Assembly-CSharp]ZIM.PixelSpotArea)] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea/<>c__DisplayClass15_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea::.ctor([netstandard]System.Collections.Generic.IList`1<[Assembly-CSharp]ZIM.PixelArea>)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelCircleArea::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelCircleArea::.ctor([netstandard]System.Collections.Generic.IList`1<[Assembly-CSharp]ZIM.PixelCircleArea>)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea/<>c__DisplayClass23_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea::.ctor([netstandard]System.Collections.Generic.IList`1<[Assembly-CSharp]ZIM.PixelSpotArea>)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.SimpleLocationEstimation::.ctor([netstandard]System.Single)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.SimpleLocationEstimation::Update([UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass10_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::.ctor([netstandard]System.Single[] [netstandard]System.Int32 [netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ConvEdge::.ctor([Assembly-CSharp]ZIM.Image.ImgProcessGray [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32 [netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.ScreenMap::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.ScreenMap::.ctor([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::.ctor([netstandard]System.Int32 [netstandard]System.Int32 [UnityEngine.CoreModule]UnityEngine.TextureFormat [netstandard]System.Boolean)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::.ctor([UnityEngine.CoreModule]UnityEngine.Texture2D)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::.ctor([o0NetLib]o0.Geometry2D.Float.Quadrilateral [o0NetLib]o0.Geometry2D.Float.Quadrilateral)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass4_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass5_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass6_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass7_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass8_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass9_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass10_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass12_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_1::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass19_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass20_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass21_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass22_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass23_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass24_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass25_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass14_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification::.ctor([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification::Update([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.WebCam::.ctor([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/Line::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass2_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass24_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass27_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass28_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass32_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass33_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::.ctor([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::.ctor([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::Reset()] Because of some Addon: Unity [Is Unity Method.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::Update([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: Unity [Is Editor Method.]
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::.cctor()] Because of some Addon: .Net Framework [Is Special.]
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::MoveNext()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.IDisposable.Dispose()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::MoveNext()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Reset()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.get_Current()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.IDisposable.Dispose()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::MoveNext()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Reset()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.get_Current()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::Finalize()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::ToString()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.IDisposable.Dispose()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::MoveNext()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Reset()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.get_Current()] Some other method in method group getting skipped.
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerable.GetEnumerator()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.WebCam::Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
- [Info][Skip Method] [[Assembly-CSharp]o0.Project.WebCam::Dispose()] Some other method in method group getting skipped.
- [Info][Process] Finished Step: Analyse Methods
- [Info][Process] Processing Step: Analyse Unity Types
- [Info][Analyse] [Assembly-CSharp] Analyse Unity Types...
- [Info][Process] Finished Step: Analyse Unity Types
- [Info][Process] Processing Step: Find obfuscated name for Members
- [Info][FindName] [Assembly-CSharp] Find Member Names...
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector3 BombChild::velocity] : a
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 Box::bombDivideCount] : b
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single Box::boxWidth] : c
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single Box::parentHeight] : d
- [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean Box::hasBomb] : e
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::fpsOutputTime] : f
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::frameCount] : g
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::fps] : h
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::tempDT] : i
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect FPSTester::fpsGuiRect] : j
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.GameObject GameController::gameNode] : k
- [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean GameController::crossHairIsOn] : l
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0WebCamera::width] : m
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0WebCamera::height] : n
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0WebCamera::fps] : h
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage] : o
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage2] : p
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage3] : q
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage4] : r
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage5] : s
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage6] : t
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.WebCamTexture o0WebCamera::_webCamTexture] : u
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification o0WebCamera::o0InfraredIdentification] : v
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.UI.RawImage> o0WebCamera::DebugImage] : w
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.WebCamTexture o0WebCamera::webCamTexture] : a
- [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera InfraredLocateTest::webCamera] : x
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.UI.RawImage> InfraredLocateTest::crosshairInCamera] : y
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> InfraredLocateTest::<InfraredLocation>k__BackingField] : z
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] InfraredLocateTest::<pixels>k__BackingField] : ba
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate InfraredLocateTest::infraredLocate] : bb
- [Info][Found new Property Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> InfraredLocateTest::InfraredLocation] : b
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Color[] InfraredLocateTest::pixels] : c
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass14_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ScreenLocateTestOld/<>c__DisplayClass14_0::pixels] : c
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass18_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness0] : bd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness1] : be
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness2] : bf
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness3] : bg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass18_0::pixelsInScreen] : bh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>1__state] : bi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>2__current] : bj
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0 ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>8__1] : bk
- [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.Current] : d
- [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.Current] : e
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass19_0::BrightnessValue] : bl
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass19_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass19_0::brightness0] : bd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Nullable`1<System.Int32> ScreenLocateTestOld/<>c__DisplayClass19_0::threshold] : bm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Action`1<System.Int32> ScreenLocateTestOld/<>c__DisplayClass19_0::<>9__0] : bn
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>1__state] : bi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>2__current] : bj
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0 ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>8__1] : bk
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<mean0>5__2] : bo
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Texture2D ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<testTexture>5__3] : bp
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<i>5__4] : bq
- [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.Current] : d
- [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Current] : e
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass20_0::sub] : br
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass20_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass20_0::brightness0] : bd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>1__state] : bi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>2__current] : bj
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0 ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>8__1] : bk
- [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.Current] : d
- [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Current] : e
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass21_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsLast] : bs
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsInScreen] : bh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<UnityEngine.Vector2> ScreenLocateTestOld/<>c__DisplayClass21_0::Edge] : bt
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsOut] : bu
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsIn] : bv
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<>c__DisplayClass21_1::n] : bw
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0 ScreenLocateTestOld/<>c__DisplayClass21_1::CS$<>8__locals1] : bx
- [Info][Found new Field Name] [[Assembly-CSharp]System.Action`1<System.Int32> ScreenLocateTestOld/<>c__DisplayClass21_1::<>9__1] : by
- [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera ScreenLocateTestOld::webCamera] : x
- [Info][Found new Field Name] [[Assembly-CSharp]TMPro.TextMeshProUGUI ScreenLocateTestOld::info] : bz
- [Info][Found new Field Name] [[Assembly-CSharp]TMPro.TextMeshProUGUI ScreenLocateTestOld::location] : ca
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::crosshairInScreen] : cb
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::background] : cc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Transform ScreenLocateTestOld::Screen] : cd
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::testImage] : ce
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::testImage2] : cf
- [Info][Found new Field Name] [[Assembly-CSharp]InfraredLocateTest ScreenLocateTestOld::infraredLocateTest] : cg
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect ScreenLocateTestOld::canvasRect] : ch
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Quadrilateral ScreenLocateTestOld::screenQuad] : ci
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld::record] : cj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld::brightnessRecord] : ck
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> TestLineRegression::coordsCS] : cl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single InfraredSpotSettings::RadiusThreshold] : cm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.Single> InfraredSpotSettings::data] : cn
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate/Mode::InfraredLocate] : co
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate/Mode::ScreenMap] : cp
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate/Mode::ScreenLocateManual] : cq
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredSpot[] ScreenLocate::<InfraredSpots>k__BackingField] : cr
- [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera ScreenLocate::WebCamera] : cs
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.Text ScreenLocate::Info] : ct
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.RectTransform> ScreenLocate::CrosshairInCamera] : cu
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.RectTransform> ScreenLocate::CrosshairInScreen] : cv
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.RectTransform ScreenLocate::ScreenQuad] : cw
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.Toggle ScreenLocate::SaveToggle] : cx
- [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean ScreenLocate::ShowScreenQuad] : cy
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage] : o
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage1] : cz
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage2] : p
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage3] : q
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage4] : r
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage5] : s
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::FullScreenImage] : da
- [Info][Found new Field Name] [[Assembly-CSharp]InfraredSpotSettings ScreenLocate::InfraredSpotSettings] : db
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Texture2D ScreenLocate::DebugScreenImage] : dc
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate ScreenLocate::infraredLocate] : bb
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.RectTransform ScreenLocate::canvas] : dd
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate::mode] : de
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ScreenLocate::pointManual] : df
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification ScreenLocate::screenIdentification] : dg
- [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate ScreenLocate::Main] : dh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.UI.RawImage> ScreenLocate::DebugImage] : w
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.RectTransform ScreenLocate::BackQuad] : di
- [Info][Found new Property Name] [[Assembly-CSharp]ZIM.InfraredSpot[] ScreenLocate::InfraredSpots] : f
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::cameraIndex] : dj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::width] : m
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::height] : n
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::fps] : h
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ZIMWebCamera::rawImage] : o
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.WebCamTexture ZIMWebCamera::_webCamTexture] : u
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.WebCamTexture ZIMWebCamera::webCamTexture] : a
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIMWebCamera::Size] : g
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 UnscentedKalmanFilter.UKF::L] : dk
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 UnscentedKalmanFilter.UKF::m] : dl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::alpha] : dm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::ki] : dn
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::beta] : do
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::lambda] : dp
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::c] : dq
- [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::Wm] : dr
- [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::Wc] : ds
- [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::x] : dt
- [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::P] : du
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::q] : dv
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::r] : dw
- [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::Q] : dx
- [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::R] : dy
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredMatch::Nomatch] : dz
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredMatch::Match0] : ea
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredMatch::Match1] : eb
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMax] : ec
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMin] : ed
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate ZIM.InfraredLocate/<>c__DisplayClass14_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.InfraredLocate/<>c__DisplayClass14_0::pixels] : c
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.InfraredLocate/<>c__DisplayClass14_0::spotPoint] : ee
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.InfraredLocate/<>c__DisplayClass14_0::brightPoint] : ef
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.InfraredLocate/<>c__DisplayClass16_0::origin] : eg
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate ZIM.InfraredLocate/<>c__DisplayClass16_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ZIM.InfraredLocate/<>c__DisplayClass16_0::brightness] : eh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.Dictionary`2<System.Single,System.Collections.Generic.List`1<UnityEngine.Vector2>> ZIM.InfraredLocate/<>c__DisplayClass16_0::brightPixelDic] : ei
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect ZIM.InfraredLocate/<>c__DisplayClass16_0::rect] : ej
- [Info][Found new Field Name] [[Assembly-CSharp]System.Object ZIM.InfraredLocate::locker] : ek
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredLocate::samplingScale] : el
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.InfraredLocate::spotBrightness] : em
- [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera ZIM.InfraredLocate::camera] : en
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification ZIM.InfraredLocate::screenIdentification] : dg
- [Info][Found new Field Name] [[Assembly-CSharp]InfraredSpotSettings ZIM.InfraredLocate::infraredSpotSettings] : eo
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredSpot[] ZIM.InfraredLocate::InfraredSpots] : f
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredLocate::CheakFrame] : ep
- [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean ZIM.InfraredLocate::Infrared12Overlap] : eq
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredLocate::cheakCounter] : er
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredSpot::MaxVerifyFailLimit] : es
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.InfraredSpot::MinVerifyLength] : et
- [Info][Found new Field Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::<Predict>k__BackingField] : eu
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredSpot::<Match>k__BackingField] : ev
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredSpot::verifyFailLimit] : ew
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<ZIM.PixelSpotArea> ZIM.InfraredSpot::spots] : ex
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.SimpleLocationEstimation ZIM.InfraredSpot::estimation] : ey
- [Info][Found new Field Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::ScreenLocation] : ez
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap ZIM.InfraredSpot::screenMap] : fa
- [Info][Found new Property Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::ScreenUV] : h
- [Info][Found new Property Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::CameraLocation] : i
- [Info][Found new Property Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::Predict] : j
- [Info][Found new Property Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredSpot::Match] : k
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelArea/<>c__DisplayClass15_0::rectMin] : ed
- [Info][Found new Field Name] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Int32> ZIM.PixelArea/<>c__DisplayClass15_0::Vector2ToIndex] : fb
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.PixelArea/<>c__DisplayClass15_0::pixels] : c
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelArea/<>c__DisplayClass15_0::rectMax] : ec
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelArea/<>c__DisplayClass15_0::total] : fc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.PixelArea::gridLength] : fd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelArea::angleStep] : fe
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`2<System.Double,System.Double>> ZIM.PixelArea::angleMathList] : ff
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelArea::Center] : fg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelArea::MaxRadius] : fh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<UnityEngine.Vector2> ZIM.PixelArea::Pixels] : fi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelArea::grids] : fj
- [Info][Found new Property Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`2<System.Double,System.Double>> ZIM.PixelArea::AngleMathList] : l
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelCircleArea::Center] : fg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelCircleArea::MaxRadius] : fh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<UnityEngine.Vector2> ZIM.PixelCircleArea::Pixels] : fi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelCircleArea::grids] : fj
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMin] : ed
- [Info][Found new Field Name] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Int32> ZIM.PixelSpotArea/<>c__DisplayClass23_0::Vector2ToIndex] : fb
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.PixelSpotArea/<>c__DisplayClass23_0::pixels] : c
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMax] : ec
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelSpotArea/<>c__DisplayClass23_0::total] : fc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.PixelSpotArea::gridLength0] : fk
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.PixelSpotArea::gridLength1] : fl
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelSpotArea::center] : fm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelSpotArea::radius] : fn
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.PixelSpotArea::Pixels0] : fo
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.PixelSpotArea::Pixels1] : fp
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelSpotArea::grids0] : fq
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelSpotArea::grids1] : fr
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelSpotArea::Center] : fg
- [Info][Found new Property Name] [[Assembly-CSharp]System.Single ZIM.PixelSpotArea::Radius] : m
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::Predict] : j
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::LastLocation] : fs
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::LastSpeed] : ft
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::LastAcc] : fu
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.SimpleLocationEstimation::AccChangeScale] : fv
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.SimpleLocationEstimation::Locations] : fw
- [Info][Found new Field Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF ZIM.SimpleLocationEstimation::filterx] : fx
- [Info][Found new Field Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF ZIM.SimpleLocationEstimation::filtery] : fy
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass10_0::p] : fz
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass10_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Extension/<>c__DisplayClass10_0::scale] : gb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Extension/<>c__DisplayClass12_0::p] : fz
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass12_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Extension/<>c__DisplayClass12_0::scale] : gb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Extension/<>c__DisplayClass13_0::p] : fz
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass13_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Extension/<>c__DisplayClass13_0::scale] : gb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ZIM.Extension/<>c__DisplayClass13_0::pint] : gc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Extension/<>c__DisplayClass13_0::bit] : gd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Extension/<>c__DisplayClass13_0::D] : ge
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass13_0::pixelLighted] : gf
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::half_size] : gg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::kernel_size] : gh
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Image.ConvEdge[] ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::edgeArray] : gi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_width] : gj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::result] : gk
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_height] : gl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::p] : fz
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::mean] : gm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::p] : fz
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::scale] : gb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::p] : fz
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::scale] : gb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::pint] : gc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::bit] : gd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::D] : ge
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray::width] : m
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray::height] : n
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray::pixels] : c
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> ZIM.Image.ConvEdge::EdgePoint] : gn
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> ZIM.Image.ConvEdge::EdgeDirection] : go
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ConvEdge::Variance] : gp
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ConvEdge::noiseCount] : gq
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect ZIM.Unity.ScreenMap::<QuadRect>k__BackingField] : gr
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.ScreenMap::<UVSize>k__BackingField] : gs
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Quadrilateral ZIM.Unity.ScreenMap::quad] : gt
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform ZIM.Unity.ScreenMap::perspective] : gu
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Rect ZIM.Unity.ScreenMap::QuadRect] : n
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.ScreenMap::UVSize] : o
- [Info][Found new Property Name] [[Assembly-CSharp]System.Boolean ZIM.Unity.ScreenMap::Active] : p
- [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Float.Quadrilateral ZIM.Unity.ScreenMap::Quad] : q
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Texture2D ZIM.Unity.Texture2DZIM::Texture] : gv
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Unity.Texture2DZIM::Width] : gw
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Unity.Texture2DZIM::Height] : gx
- [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.Texture2DZIM::Size] : g
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::a] : gy
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::b] : gz
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::c] : dq
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::d] : ha
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double[0...,0...] o0.Geometry2D.Float.PerspectiveTransform::H] : hb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double[0...,0...] o0.Geometry2D.Float.PerspectiveTransform::InverseH] : hc
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ColorChannel o0.Project.ColorChannel::Red] : hd
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ColorChannel o0.Project.ColorChannel::Green] : he
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ColorChannel o0.Project.ColorChannel::Blue] : hf
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass0_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass0_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass1_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass1_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass2_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass2_0::ele] : hh
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass3_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass3_0::ele] : hh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass4_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass4_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass4_0::conSize] : hj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass4_0::conArea] : hk
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass4_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass5_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass5_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass5_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass6_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass6_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass6_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass7_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass7_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass7_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass8_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass8_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass8_0::conSize] : hj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass8_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass8_0::pixelDir] : hm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass9_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass9_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass9_0::conSize] : hj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass9_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass9_0::pixelDir] : hm
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<>c__DisplayClass10_0::start] : hn
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass10_0::xToYRate] : ho
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<>1__state] : bi
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`4<System.ValueTuple`2<System.Single,System.Single>,System.ValueTuple`2<System.Single,System.Single>,System.Single,System.Single> o0.Project.Extension/<lineSeg>d__10::<>2__current] : bj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<>l__initialThreadId] : hp
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::start] : hn
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::<>3__start] : hq
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::angle] : hr
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<>3__angle] : hs
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::end] : ht
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::<>3__end] : hu
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::<>3__mat] : hv
- [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean o0.Project.Extension/<lineSeg>d__10::reverseXY] : hw
- [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean o0.Project.Extension/<lineSeg>d__10::<>3__reverseXY] : hx
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::dir] : hy
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::<>3__dir] : hz
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<graA>5__2] : ia
- [Info][Found new Field Name] [[Assembly-CSharp]System.Func`2<System.Single,System.Single> o0.Project.Extension/<lineSeg>d__10::<xToYFunc>5__3] : ib
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<A1>5__4] : ic
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<B1>5__5] : id
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<Sum1>5__6] : ie
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<A2>5__7] : if
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<B2>5__8] : ig
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<Sum2>5__9] : ih
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<x>5__10] : ii
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C0A>5__11] : ij
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C1A>5__12] : ik
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C2A>5__13] : il
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C3A>5__14] : im
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<CV>5__15] : in
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<avaAngle2>5__16] : io
- [Info][Found new Property Name] [[Assembly-CSharp]System.ValueTuple`4<System.ValueTuple`2<System.Single,System.Single>,System.ValueTuple`2<System.Single,System.Single>,System.Single,System.Single> o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.Current] : r
- [Info][Found new Property Name] [[Assembly-CSharp]System.Object o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Current] : e
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Extension/<>c__DisplayClass11_0::polarSpaceStep] : ip
- [Info][Found new Field Name] [[Assembly-CSharp]o0.SortedList`1<System.ValueTuple`2<System.Int32,System.Single>> o0.Project.Extension/<>c__DisplayClass11_0::maxGraIndex] : iq
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass11_0::dir] : hy
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double o0.Project.Extension/<>c__DisplayClass11_0::avaAngle] : ir
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass11_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass11_0::polarSpace] : is
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Matrix2D`1<System.Collections.Generic.List`1<System.ValueTuple`2<System.Int32,System.Int32>>> o0.Project.Extension/<>c__DisplayClass11_0::sourcePos] : it
- [Info][Found new Field Name] [[Assembly-CSharp]o0.SortedList`1<System.ValueTuple`2<System.Int32,System.Single>> o0.Project.Extension/<>c__DisplayClass11_0::maxPolarIndex] : iu
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass11_0::minLineSegLength] : iv
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Matrix2D`1<System.ValueTuple`2<o0.Geometry2D.Line`1<System.Single>,System.Single>> o0.Project.Extension/<>c__DisplayClass11_0::lineSegMat] : iw
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector o0.Project.Extension/<>c__DisplayClass12_0::start] : hn
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass12_0::xToYRate] : ho
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass15_0::gradientValueMat] : ix
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass15_0::gradientDirMat] : iy
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector o0.Project.Extension/<>c__DisplayClass15_0::maxVector] : iz
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass15_0::matBuffer] : ja
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`4<o0.Geometry2D.Float.Line,System.Single,System.Single,System.Single>> o0.Project.Extension/<>c__DisplayClass15_1::lines] : jb
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_0 o0.Project.Extension/<>c__DisplayClass15_1::CS$<>8__locals1] : bx
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass19_0::newMatElement] : jc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Func`4<System.Single,System.Single,System.Single,System.Single> o0.Project.Extension/<>c__DisplayClass19_0::map] : jd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass19_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass19_0::minC] : je
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass19_0::maxC] : jf
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass20_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass20_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass20_0::conSize] : hj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass20_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass20_0::pixelDir] : hm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass21_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass21_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass21_0::conSize] : hj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass21_0::conSizeLevel] : jg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass21_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass21_0::pixelDir] : hm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass22_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass22_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass22_0::conSize] : hj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass22_0::sampleCount] : jh
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<o0.Geometry2D.Float.Vector,o0.Geometry2D.Float.Vector>[] o0.Project.Extension/<>c__DisplayClass22_0::samples] : ji
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass22_0::scales] : jj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass22_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass22_0::pixelDir] : hm
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] o0.Project.Extension/<>c__DisplayClass22_0::angles] : jk
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass23_0::convolutionWidth] : hi
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass23_0::mat] : hg
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass23_0::conSize] : hj
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass23_0::pixelC] : hl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass23_0::pixelDir] : hm
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector o0.Project.Extension/<>c__DisplayClass24_0::start] : hn
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass24_0::xToYRate] : ho
- [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass25_0::screenLocateMat] : jl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass25_0::valueSumsColumn] : jm
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector[] o0.Project.Extension/<>c__DisplayClass25_0::avgPointsColumn] : jn
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.InfraredIdentification/<>c__DisplayClass9_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.InfraredIdentification/<>c__DisplayClass9_1::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.InfraredIdentification/<>c__DisplayClass9_2::newPixel] : jo
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1 o0.Project.InfraredIdentification/<>c__DisplayClass9_2::CS$<>8__locals1] : bx
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMin] : jp
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMax] : jq
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Int32> o0.Project.InfraredIdentification::Size] : g
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::DelayWhite] : jr
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::CaptureWhite] : js
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::DelayBlack] : jt
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::CaptureBlack] : ju
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single>[] o0.Project.InfraredIdentification::ScreenLocateTexture] : jv
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::ScreenCaptureCount] : jw
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single> o0.Project.InfraredIdentification::LastMin] : jx
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single> o0.Project.InfraredIdentification::LastMax] : jy
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.WebCamTexture o0.Project.WebCam::webCam] : jz
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::<A>k__BackingField] : ka
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::<B>k__BackingField] : kb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<o0.Geometry2D.Vector`1<System.Single>> o0.Project.Hough/Line::Points] : kc
- [Info][Found new Property Name] [[Assembly-CSharp]System.Int32 o0.Project.Hough/Line::PointsCount] : s
- [Info][Found new Property Name] [[Assembly-CSharp]System.Single o0.Project.Hough/Line::Length] : t
- [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::A] : u
- [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::B] : v
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.Hough/Line[0...,0...] o0.Project.Hough/<>c__DisplayClass1_0::Acumulator] : kd
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Single,System.Single>[] o0.Project.Hough/<>c__DisplayClass1_0::TrigValues] : ke
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Hough/<>c__DisplayClass1_0::Bright] : kf
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double o0.Project.Hough/<>c__DisplayClass1_0::rho] : kg
- [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Single,System.Single>[] o0.Project.Hough/<>c__DisplayClass2_0::result] : gk
- [Info][Found new Field Name] [[Assembly-CSharp]System.Double o0.Project.Hough/<>c__DisplayClass2_0::theta] : kh
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Hough/<>c__DisplayClass3_0::p] : fz
- [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Hough/<>c__DisplayClass3_0::scale] : gb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] o0.Project.Hough/<>c__DisplayClass3_0::pint] : gc
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Hough/<>c__DisplayClass3_0::bit] : gd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformWidth] : ki
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform o0.Project.ScreenIdentification/<>c__DisplayClass24_0::pt] : kj
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass24_0::dstPixel] : kk
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcPixel] : kl
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcWidth] : km
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformHeight] : kn
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass27_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass28_0::pixel] : ga
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass32_0::differPixel] : ko
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<>4__this] : bc
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass33_0::differPixel] : ko
- [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect[][] o0.Project.ScreenIdentification::LocateAreaData] : kp
- [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean o0.Project.ScreenIdentification::LocateDebug] : kq
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Int32> o0.Project.ScreenIdentification::<Size>k__BackingField] : kr
- [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap o0.Project.ScreenIdentification::Screen] : cd
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::capture] : ks
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::delay] : kt
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::maxCapture] : ku
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::maxDelay] : kv
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single>[] o0.Project.ScreenIdentification::ScreenBlackTexture] : kw
- [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single>[] o0.Project.ScreenIdentification::ScreenWhiteTexture] : kx
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::locateIndex] : ky
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Rect> o0.Project.ScreenIdentification::locateArea] : kz
- [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::areaSelected] : la
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.Single> o0.Project.ScreenIdentification::sumTemp] : lb
- [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<o0.Geometry2D.Float.Quadrilateral> o0.Project.ScreenIdentification::quadTemp] : lc
- [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Int32> o0.Project.ScreenIdentification::Size] : g
- [Info][Found new Property Name] [[Assembly-CSharp]System.Single o0.Project.ScreenIdentification::areaPercent] : w
- [Info][Found new Field Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::88EF9688D5D01ED45017CCAE288BB412F1F7A5AEA07137F1FD32BBF2881C1E8D] : ld
- [Info][Found new Field Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::C23888948D5D7B6E79F08608B60ADABEB993DB51B3DC234DF30B048900281DA6] : le
- [Info][Found new Field Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::E0B0515FD8FCCF5A5AE5989BCA39F0D176479B9F19F4FAC1BCA94E2748E4FF5A] : lf
- [Info][Process] Finished Step: Find obfuscated name for Members
- [Info][Process] Processing Step: Find obfuscated name for Methods
- [Info][FindName] [Assembly-CSharp] Find Method Names...
- [Info][Found new Method Name] [[Assembly-CSharp]Box::Bomb()] : a
- [Info][Found new Method Name] [[Assembly-CSharp]o0WebCamera::get_webCamTexture()] : b
- [Info][Found new Method Name] [[Assembly-CSharp]o0WebCamera::DebugTexture([netstandard]System.Int32 [UnityEngine.CoreModule]UnityEngine.Texture)] : c
- [Info][Found new Method Name] [[Assembly-CSharp]o0WebCamera::SetScreen([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Color>)] : d
- [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::get_InfraredLocation()] : e
- [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::set_InfraredLocation([netstandard]System.Collections.Generic.List`1<[UnityEngine.CoreModule]UnityEngine.Vector2>)] : f
- [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::get_pixels()] : g
- [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::set_pixels([UnityEngine.CoreModule]UnityEngine.Color[])] : h
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass14_0::<Update>b__0([netstandard]System.Int32)] : i
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0::<ScreenLocateCorutine>b__0([netstandard]System.Int32)] : j
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.get_Current()] : k
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0::<ScreenLocateCorutine2>b__0([netstandard]System.Int32)] : l
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.get_Current()] : m
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0::<ScreenTestCoruine>b__0([netstandard]System.Int32)] : n
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.get_Current()] : o
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0::<PixlesProcessToEdge>b__0([netstandard]System.Int32)] : p
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_1::<PixlesProcessToEdge>b__1([netstandard]System.Int32)] : q
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::SavePng([netstandard]System.String [UnityEngine.CoreModule]UnityEngine.Color[])] : r
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::SavePngFloat([netstandard]System.String [netstandard]System.Single[] [netstandard]System.Int32)] : s
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::ScreenLocateCorutine()] : t
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::ScreenLocateCorutine2()] : u
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::ScreenTestCoruine()] : v
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::PixlesProcessToEdge([netstandard]System.Int32[])] : w
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::Conv2DAverageInt([netstandard]System.Int32[] [UnityEngine.CoreModule]UnityEngine.Vector2Int [netstandard]System.Int32 [netstandard]System.Int32)] : x
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::EdgeCalculation([netstandard]System.Int32[] [UnityEngine.CoreModule]UnityEngine.Vector2Int [netstandard]System.Int32)] : y
- [Info][Found new Method Name] [[Assembly-CSharp]InfraredSpotSettings::UpdateThreshold([netstandard]System.Single)] : z
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::get_InfraredSpots()] : ba
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::set_InfraredSpots([Assembly-CSharp]ZIM.InfraredSpot[])] : bb
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::DebugTexture([netstandard]System.Int32 [UnityEngine.CoreModule]UnityEngine.Texture)] : bc
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::SetScreen([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Color>)] : bd
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::SetScreen([UnityEngine.CoreModule]UnityEngine.Rect [netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Color>)] : be
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::DebugBackQuad([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Rect>)] : bf
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::ShowScreen([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] : bg
- [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::ToMode([Assembly-CSharp]ScreenLocate/Mode)] : bh
- [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::get_webCamTexture()] : bi
- [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::get_Size()] : bj
- [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::IndexToCoord([netstandard]System.Int32)] : bk
- [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::CoordToIndex([netstandard]System.Int32 [netstandard]System.Int32)] : bl
- [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::init()] : bm
- [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::getState()] : bn
- [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::getCovariance()] : bo
- [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::UnscentedTransform([MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [netstandard]System.Int32 [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double>)] : bp
- [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::GetSigmaPoints([MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [netstandard]System.Double)] : bq
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::<Update>b__13_0([Assembly-CSharp]ZIM.PixelSpotArea [Assembly-CSharp]ZIM.PixelSpotArea)] : br
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::<Update>b__13_1([Assembly-CSharp]ZIM.PixelSpotArea [Assembly-CSharp]ZIM.PixelSpotArea)] : bs
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::<LocateOld>b__16_1([Assembly-CSharp]ZIM.PixelCircleArea [Assembly-CSharp]ZIM.PixelCircleArea)] : bt
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__0([netstandard]System.Int32)] : bu
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__1([netstandard]System.Int32)] : bv
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__2([netstandard]System.Int32)] : bw
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass16_0::<LocateOld>b__0([netstandard]System.Int32)] : bx
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::GetMatches([Assembly-CSharp]ZIM.InfraredMatch)] : by
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::GetSpot([Assembly-CSharp]ZIM.InfraredMatch)] : bz
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::LocateToScreen([UnityEngine.CoreModule]UnityEngine.Color[] [UnityEngine.CoreModule]UnityEngine.Rect)] : ca
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::Get([netstandard]System.Int32[])] : cb
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::LocateOld([netstandard]System.Int32[] [UnityEngine.CoreModule]UnityEngine.Rect)] : cc
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::ConvBrightness([netstandard]System.Int32[] [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32)] : cd
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_ScreenUV()] : ce
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_CameraLocation()] : cf
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_Predict()] : cg
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::set_Predict([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Vector2>)] : ch
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_Match()] : ci
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::set_Match([Assembly-CSharp]ZIM.InfraredMatch)] : cj
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::Verify([netstandard]System.Collections.Generic.List`1<[Assembly-CSharp]ZIM.PixelSpotArea> [netstandard]System.Collections.Generic.Dictionary`2<[Assembly-CSharp]ZIM.InfraredMatch,[Assembly-CSharp]ZIM.PixelSpotArea>)] : ck
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::UpdateByPredict()] : cl
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea/<>c__DisplayClass15_0::<TotalBrightness>b__0([netstandard]System.Int32)] : cm
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::GetGrid([UnityEngine.CoreModule]UnityEngine.Vector2)] : cn
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::get_AngleMathList()] : co
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::Include([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : cp
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2)] : cq
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : cr
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::TotalBrightness([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Func`3<[netstandard]System.Int32,[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32)] : cs
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::Include([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : ct
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2)] : cu
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : cv
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::CircleBrightness([netstandard]System.Single& [netstandard]System.Int32[] [netstandard]System.Func`4<[netstandard]System.Int32[],[netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>,[netstandard]System.Int32,[netstandard]System.Single> [netstandard]System.Int32)] : cw
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea/<>c__DisplayClass23_0::<TotalBrightness>b__0([netstandard]System.Int32)] : cx
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::GetGrid0([UnityEngine.CoreModule]UnityEngine.Vector2)] : cy
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::GetGrid1([UnityEngine.CoreModule]UnityEngine.Vector2)] : cz
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Cluster([netstandard]System.Collections.Generic.List`1<[UnityEngine.CoreModule]UnityEngine.Vector2> [netstandard]System.Collections.Generic.List`1<[UnityEngine.CoreModule]UnityEngine.Vector2> [netstandard]System.Func`2<[UnityEngine.CoreModule]UnityEngine.Vector2,[netstandard]System.Boolean>)] : da
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::get_Center()] : db
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::set_Radius([netstandard]System.Single)] : dc
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::get_Radius()] : dd
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Include0([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : de
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Include1([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : df
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Join([UnityEngine.CoreModule]UnityEngine.Vector2)] : dg
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Join([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : dh
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2)] : di
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::TotalBrightness([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Func`3<[netstandard]System.Int32,[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32)] : dj
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.ZIMMath::DegreeToXAxis([o0NetLib]o0.Geometry2D.Float.Vector)] : dk
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass10_0::<zimAutoLightSimple>b__0([netstandard]System.Int32)] : dl
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__0([netstandard]System.Int32)] : dm
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__1([netstandard]System.Int32)] : dn
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__0([netstandard]System.Int32)] : do
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__1([netstandard]System.Int32)] : dp
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__2([netstandard]System.Int32)] : dq
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__3([netstandard]System.Int32)] : dr
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__4([netstandard]System.Int32)] : ds
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::UnityVector([o0NetLib]o0.Geometry2D.Float.Vector)] : dt
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::o0Vector([UnityEngine.CoreModule]UnityEngine.Vector2)] : du
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::LengthManhattan([UnityEngine.CoreModule]UnityEngine.Vector2)] : dv
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::Brightness([UnityEngine.CoreModule]UnityEngine.Color)] : dw
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::Brightness([UnityEngine.CoreModule]UnityEngine.Color [netstandard]System.Int32)] : dx
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::pixelToLocalPosition_AnchorCenter([UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Rect)] : dy
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::pixelToLocalPosition_AnchorCenter([UnityEngine.CoreModule]UnityEngine.Vector2 [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32> [UnityEngine.CoreModule]UnityEngine.Rect)] : dz
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::IsInScreen([o0NetLib]o0.Geometry2D.Float.Quadrilateral [UnityEngine.CoreModule]UnityEngine.Vector2)] : ea
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::DegreeToXAxis([UnityEngine.CoreModule]UnityEngine.Vector2)] : eb
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLightSimple([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : ec
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLightSimple([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Int32 [netstandard]System.Int32)] : ed
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLight([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : ee
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLight([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Int32 [netstandard]System.Int32)] : ef
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLevelEqualization([UnityEngine.AudioModule]UnityEngine.WebCamTexture [netstandard]System.Int32)] : eg
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<FindLines>b__0([netstandard]System.Int32)] : eh
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::<SigmodAdjust>b__0([netstandard]System.Int32)] : ei
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::<LevelAdjust>b__0([netstandard]System.Int32)] : ej
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__0([netstandard]System.Int32)] : ek
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__1([netstandard]System.Int32)] : el
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__2([netstandard]System.Int32)] : em
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::FindLines()] : en
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::SigmodAdjust([netstandard]System.Single[])] : eo
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::LevelAdjust([netstandard]System.Single[])] : ep
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::LevelEqualization([netstandard]System.Single[] [netstandard]System.Int32)] : eq
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c::<.ctor>b__4_0([netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>> [netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>>)] : er
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ConvEdge::AreaOfPoint([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : es
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ConvEdge::GetEdgeDirection([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single> [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : et
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_QuadRect()] : eu
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::set_QuadRect([UnityEngine.CoreModule]UnityEngine.Rect)] : ev
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_UVSize()] : ew
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::set_UVSize([UnityEngine.CoreModule]UnityEngine.Vector2)] : ex
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_Active()] : ey
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_Quad()] : ez
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::set_Quad([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] : fa
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::UVInScreen([UnityEngine.CoreModule]UnityEngine.Vector2)] : fb
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::UVNormalize([UnityEngine.CoreModule]UnityEngine.Vector2)] : fc
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::TransformToScreen([UnityEngine.CoreModule]UnityEngine.Vector2)] : fd
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::TransformToCamera([UnityEngine.CoreModule]UnityEngine.Vector2)] : fe
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::get_Size()] : ff
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::ReadPixels([UnityEngine.CoreModule]UnityEngine.RenderTexture)] : fg
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::GetPixels()] : fh
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::IndexToCoord([netstandard]System.Int32)] : fi
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::CoordToIndex([netstandard]System.Int32 [netstandard]System.Int32)] : fj
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::op_Implicit([Assembly-CSharp]ZIM.Unity.Texture2DZIM)] : fk
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::op_Implicit([Assembly-CSharp]ZIM.Unity.Texture2DZIM)] : fl
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::IsInScreen([UnityEngine.CoreModule]UnityEngine.Vector2)] : fm
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::InterpolationFactors([UnityEngine.CoreModule]UnityEngine.Vector2)] : fn
- [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::Fit([netstandard]System.Collections.Generic.IEnumerable`1<[UnityEngine.CoreModule]UnityEngine.Vector2> [UnityEngine.CoreModule]UnityEngine.Vector2)] : fo
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformRound([netstandard]System.Int32 [netstandard]System.Int32)] : fp
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::Transform([netstandard]System.Single [netstandard]System.Single)] : fq
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::Transform([netstandard]System.Double [netstandard]System.Double)] : fr
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformInverse([netstandard]System.Single [netstandard]System.Single)] : fs
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformInverse([netstandard]System.Double [netstandard]System.Double)] : ft
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformEstimate([netstandard]System.Double[] [netstandard]System.Double[] [netstandard]System.Double[] [netstandard]System.Double[])] : fu
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransposeMatrix([netstandard]System.Double[])] : fv
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix([netstandard]System.Double[] [netstandard]System.Int32 [netstandard]System.Int32)] : fw
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix([netstandard]System.Double[] [netstandard]System.Int32 [netstandard]System.Int32)] : fx
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::MatrixMultiply([netstandard]System.Double[] [netstandard]System.Double[])] : fy
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::MatrixInverse([netstandard]System.Double[])] : fz
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__0([netstandard]System.Int32)] : ga
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__1([netstandard]System.Int32)] : gb
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__2([netstandard]System.Int32)] : gc
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__0([netstandard]System.Int32)] : gd
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__1([netstandard]System.Int32)] : ge
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__2([netstandard]System.Int32)] : gf
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__0([netstandard]System.Int32)] : gg
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__1([netstandard]System.Int32)] : gh
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__2([netstandard]System.Int32)] : gi
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__0([netstandard]System.Int32)] : gj
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__1([netstandard]System.Int32)] : gk
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__2([netstandard]System.Int32)] : gl
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass4_0::<IdentifyEdgeVariance>b__0([netstandard]System.Int32)] : gm
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass5_0::<IdentifyEdgeGradientX>b__0([netstandard]System.Int32)] : gn
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass6_0::<IdentifyEdgeGradientY>b__0([netstandard]System.Int32)] : go
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass7_0::<IdentifyEdgeGradient>b__0([netstandard]System.Int32)] : gp
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass8_0::<IdentifyEdge>b__0([netstandard]System.Int32)] : gq
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass9_0::<IdentifyEdge55GradientFull>b__0([netstandard]System.Int32)] : gr
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass10_0::<lineSeg>b__0([netstandard]System.Single)] : gs
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.get_Current()] : gt
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerable<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.GetEnumerator()] : gu
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__0([netstandard]System.Int32)] : gv
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__1([netstandard]System.Int32)] : gw
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_2([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : gx
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_3([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : gy
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_4([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : gz
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_5([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : ha
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_3([netstandard]System.ValueTuple`4<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single,[netstandard]System.Single> [netstandard]System.ValueTuple`4<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single,[netstandard]System.Single>)] : hb
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_2([netstandard]System.Int32 [netstandard]System.Int32)] : hc
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_0([netstandard]System.ValueTuple`3<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single> [netstandard]System.ValueTuple`3<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single>)] : hd
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<AutoLight>b__18_0([netstandard]System.Single [netstandard]System.Single [netstandard]System.Single)] : he
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<AutoLight>b__19_0([netstandard]System.Single [netstandard]System.Single [netstandard]System.Single)] : hf
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<zimIdentifyEdgeGradientGroup>b__23_1([netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Vector> [netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Vector>)] : hg
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyQuadLSD>b__25_1([netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Line> [netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Line>)] : hh
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass12_0::<lineSegGradient>b__0([netstandard]System.Single)] : hi
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_1::<IdentifyLineLSD>b__1([netstandard]System.Int32)] : hj
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass19_0::<AutoLight>b__1([netstandard]System.Int32)] : hk
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass20_0::<zimIdentifyEdge55GradientFull>b__0([netstandard]System.Int32)] : hl
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass21_0::<zimIdentifyEdgeGradient45>b__0([netstandard]System.Int32)] : hm
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass22_0::<zimIdentifyEdgeGradientAny>b__0([netstandard]System.Int32)] : hn
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass23_0::<zimIdentifyEdgeGradientGroup>b__0([netstandard]System.Int32)] : ho
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass24_0::<zimLineSegGradient>b__0([netstandard]System.Single)] : hp
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass25_0::<IdentifyQuadLSD>b__0([netstandard]System.Int32)] : hq
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::Too0Mat([UnityEngine.AudioModule]UnityEngine.WebCamTexture [Assembly-CSharp]o0.Project.ColorChannel)] : hr
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::Too0Mat([UnityEngine.CoreModule]UnityEngine.Texture2D [Assembly-CSharp]o0.Project.ColorChannel)] : hs
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::ToTex([o0NetLib]o0.MatrixF2D [Assembly-CSharp]o0.Project.ColorChannel)] : ht
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::ToRGB([UnityEngine.CoreModule]UnityEngine.Texture2D [Assembly-CSharp]o0.Project.ColorChannel)] : hu
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeVariance([o0NetLib]o0.MatrixF2D)] : hv
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeGradientX([o0NetLib]o0.MatrixF2D)] : hw
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeGradientY([o0NetLib]o0.MatrixF2D)] : hx
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeGradient([o0NetLib]o0.MatrixF2D)] : hy
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdge([o0NetLib]o0.MatrixF2D)] : hz
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdge55GradientFull([o0NetLib]o0.MatrixF2D)] : ia
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::lineSeg([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Boolean)] : ib
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyLine([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] : ic
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::lineSegGradient([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [o0NetLib]o0.Geometry2D.Float.Vector [o0NetLib]o0.Geometry2D.Float.Vector [netstandard]System.Boolean)] : id
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::lineSegGradient([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [o0NetLib]o0.Geometry2D.Float.Vector)] : ie
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyLineLSD([o0NetLib]o0.MatrixF2D [netstandard]System.Single)] : if
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyLineLSD([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.Int32)] : ig
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([UnityEngine.CoreModule]UnityEngine.Texture2D [netstandard]System.Int32 [netstandard]System.Int32)] : ih
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([UnityEngine.AudioModule]UnityEngine.WebCamTexture [netstandard]System.Int32 [netstandard]System.Int32)] : ii
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([UnityEngine.CoreModule]UnityEngine.Color[] [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32> [netstandard]System.Int32 [netstandard]System.Int32)] : ij
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : ik
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdge55GradientFull([o0NetLib]o0.MatrixF2D)] : il
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdgeGradient45([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : im
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdgeGradientAny([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : in
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdgeGradientGroup([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : io
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimLineSegGradient([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [o0NetLib]o0.Geometry2D.Float.Vector [o0NetLib]o0.Geometry2D.Float.Vector [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Boolean)] : ip
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyQuadLSD([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Collections.Generic.List`1<o0.Geometry2D.Float.Line>& [netstandard]System.Single [netstandard]System.Single)] : iq
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<Update>b__0([netstandard]System.Int32)] : ir
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<Update>b__1([netstandard]System.Int32)] : is
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__2([netstandard]System.Int32)] : it
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__3([netstandard]System.Int32)] : iu
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<Update>b__9_4([netstandard]System.Int32 [netstandard]System.Int32)] : iv
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<Update>b__9_5([netstandard]System.Int32 [netstandard]System.Int32)] : iw
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<Update>b__9_6([netstandard]System.Int32 [netstandard]System.Int32)] : ix
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_0([netstandard]System.Single [netstandard]System.Single)] : iy
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_1([netstandard]System.Single [netstandard]System.Single)] : iz
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_2([netstandard]System.Single [netstandard]System.Single)] : ja
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass14_0::<AutoLight2>b__3([netstandard]System.Single [netstandard]System.Single [netstandard]System.Single)] : jb
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::LocateScreen([netstandard]System.Int32 [netstandard]System.Int32)] : jc
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::AutoLight2([UnityEngine.CoreModule]UnityEngine.Texture2D [netstandard]System.Boolean)] : jd
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::AutoLight2([UnityEngine.AudioModule]UnityEngine.WebCamTexture [netstandard]System.Boolean)] : je
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::AutoLight2([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Boolean)] : jf
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_PointsCount()] : jg
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_Length()] : jh
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_A()] : ji
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::set_A([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : jj
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_B()] : jk
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::set_B([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : jl
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::Add([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : jm
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__0([netstandard]System.Int32)] : jn
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__1([netstandard]System.Int32)] : jo
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass2_0::<GetTrigValues>b__0([netstandard]System.Int32)] : jp
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__0([netstandard]System.Int32)] : jq
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__1([netstandard]System.Int32)] : jr
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::Transform([o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.Int32 [netstandard]System.Double)] : js
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::Lines([o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.Double [netstandard]System.Double [netstandard]System.Double)] : jt
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::GetTrigValues([netstandard]System.Double)] : ju
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::GetBrightElements([o0NetLib]o0.MatrixF2D [netstandard]System.Int32 [netstandard]System.Int32)] : jv
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass24_0::<DebugImage>b__0([netstandard]System.Int32)] : jw
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<CaptureBlack>b__0([netstandard]System.Int32)] : jx
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<CaptureWhite>b__0([netstandard]System.Int32)] : jy
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<GetBrightness>b__0([netstandard]System.Int32)] : jz
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<QuadrilateralFit>b__0([netstandard]System.Int32)] : ka
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c::<QuadrilateralFit>b__33_1([netstandard]System.Int32 [netstandard]System.Int32)] : kb
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::get_Size()] : kc
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::set_Size([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] : kd
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::get_areaPercent()] : ke
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::LocateScreenManual([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] : kf
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::LocateScreen([netstandard]System.Int32 [netstandard]System.Int32)] : kg
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::DebugImage([UnityEngine.CoreModule]UnityEngine.Texture2D)] : kh
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::NextScreen()] : ki
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureBlack([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : kj
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureWhite([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : kk
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureStay([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : kl
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureEnd()] : km
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::GetBrightness()] : kn
- [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::QuadrilateralFit([UnityEngine.CoreModule]UnityEngine.Texture2D& [UnityEngine.CoreModule]UnityEngine.Texture2D& [UnityEngine.CoreModule]UnityEngine.Texture2D)] : ko
- [Info][Process] Finished Step: Find obfuscated name for Methods
- [Info][Process] Processing Step: Find obfuscated name for Types
- [Info][FindName] [Assembly-CSharp] Find Type Names...
- [Info][Found new Type Name] [[Assembly-CSharp]BombChild] : a
- [Info][Found new Type Name] [[Assembly-CSharp]Box] : b
- [Info][Found new Type Name] [[Assembly-CSharp]FPSTester] : c
- [Info][Found new Type Name] [[Assembly-CSharp]o0WebCamera] : d
- [Info][Found new Type Name] [[Assembly-CSharp]InfraredLocateTest] : e
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass14_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0] : b
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18] : c
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0] : d
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19] : e
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0] : f
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20] : g
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0] : h
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_1] : i
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld] : f
- [Info][Found new Type Name] [[Assembly-CSharp]TestLineRegression] : g
- [Info][Found new Type Name] [[Assembly-CSharp]InfraredSpotSettings] : h
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocate/Mode] : a
- [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocate] : i
- [Info][Found new Type Name] [[Assembly-CSharp]ZIMWebCamera] : j
- [Info][Found new Type Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF] : k
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredMatch] : l
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0] : b
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass16_0] : c
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredLocate] : m
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredSpot] : n
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelArea/<>c__DisplayClass15_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelArea] : o
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelCircleArea] : p
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelSpotArea/<>c__DisplayClass23_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelSpotArea] : q
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.SimpleLocationEstimation] : r
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.ZIMMath] : s
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass10_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0] : b
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0] : c
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension] : t
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0] : b
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0] : c
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0] : d
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray] : u
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ConvEdge] : v
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap] : w
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM] : x
- [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral] : y
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform] : z
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ColorChannel] : ba
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0] : b
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0] : c
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0] : d
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass4_0] : e
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass5_0] : f
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass6_0] : g
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass7_0] : h
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass8_0] : i
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass9_0] : j
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass10_0] : k
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10] : l
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0] : m
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass12_0] : o
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_0] : p
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_1] : q
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass19_0] : r
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass20_0] : s
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass21_0] : t
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass22_0] : u
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass23_0] : v
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass24_0] : w
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass25_0] : x
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension] : bb
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1] : b
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2] : c
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass14_0] : e
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification] : bc
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.WebCam] : bd
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/Line] : a
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0] : b
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass2_0] : c
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0] : d
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough] : be
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass24_0] : a
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass27_0] : b
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass28_0] : c
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass32_0] : d
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass33_0] : e
- [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification] : bf
- [Info][Found new Type Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12] : a
- [Info][Found new Type Name] [[Assembly-CSharp]<PrivateImplementationDetails>] : bg
- [Info][Process] Finished Step: Find obfuscated name for Types
- [Info][Process] Processing Step: Find obfuscated name for Namespaces
- [Info][FindName] [Assembly-CSharp] Find Namespace Names...
- [Info][Found new Namespace Name] [[Assembly-CSharp]BombChild] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]Box] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]FPSTester] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0WebCamera] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]InfraredLocateTest] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ScreenLocateTestOld] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]TestLineRegression] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]InfraredSpotSettings] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ScreenLocate] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIMWebCamera] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.InfraredMatch] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.InfraredLocate] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.InfraredSpot] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.PixelArea] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.PixelCircleArea] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.PixelSpotArea] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.SimpleLocationEstimation] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.ZIMMath] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Extension] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Image.ConvEdge] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.ColorChannel] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.Extension] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.InfraredIdentification] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.WebCam] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.Hough] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.ScreenIdentification] :
- [Info][Found new Namespace Name] [[Assembly-CSharp]<PrivateImplementationDetails>] :
- [Info][Process] Finished Step: Find obfuscated name for Namespaces
- [Info][Process] Processing Step: Add Not Obfuscated Cause
- [Info][Process] Finished Step: Add Not Obfuscated Cause
- [Info][Process] Processing Step: Rename Unity Types
- [Info][PreRename] [Assembly-CSharp] Check Unity Types and Namespaces...
- [Info][Process] Finished Step: Rename Unity Types
- [Info][Process] Processing Step: Rename Fields
- [Info][Rename] [Assembly-CSharp] Rename Fields...
- [Info][Rename Field] [BombChild::velocity] to a
- [Info][Rename Field] [Box::bombDivideCount] to b
- [Info][Rename Field] [Box::boxWidth] to c
- [Info][Rename Field] [Box::parentHeight] to d
- [Info][Rename Field] [Box::hasBomb] to e
- [Info][Rename Field] [FPSTester::fpsOutputTime] to f
- [Info][Rename Field] [FPSTester::frameCount] to g
- [Info][Rename Field] [FPSTester::fps] to h
- [Info][Rename Field] [FPSTester::tempDT] to i
- [Info][Rename Field] [FPSTester::fpsGuiRect] to j
- [Info][Rename Field] [GameController::gameNode] to k
- [Info][Rename Field] [GameController::crossHairIsOn] to l
- [Info][Rename Field] [o0WebCamera::width] to m
- [Info][Rename Field] [o0WebCamera::height] to n
- [Info][Rename Field] [o0WebCamera::fps] to h
- [Info][Rename Field] [o0WebCamera::rawImage] to o
- [Info][Rename Field] [o0WebCamera::rawImage2] to p
- [Info][Rename Field] [o0WebCamera::rawImage3] to q
- [Info][Rename Field] [o0WebCamera::rawImage4] to r
- [Info][Rename Field] [o0WebCamera::rawImage5] to s
- [Info][Rename Field] [o0WebCamera::rawImage6] to t
- [Info][Rename Field] [o0WebCamera::_webCamTexture] to u
- [Info][Rename Field] [o0WebCamera::o0InfraredIdentification] to v
- [Info][Rename Field] [o0WebCamera::DebugImage] to w
- [Info][Rename Field] [InfraredLocateTest::webCamera] to x
- [Info][Rename Field] [InfraredLocateTest::crosshairInCamera] to y
- [Info][Rename Field] [InfraredLocateTest::<InfraredLocation>k__BackingField] to <z>k__BackingField
- [Info][Rename Field] [InfraredLocateTest::<pixels>k__BackingField] to <ba>k__BackingField
- [Info][Rename Field] [InfraredLocateTest::infraredLocate] to bb
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass14_0::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass14_0::pixels] to c
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness0] to bd
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness1] to be
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness2] to bf
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness3] to bg
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::pixelsInScreen] to bh
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>1__state] to bi
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>2__current] to bj
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>8__1] to bk
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::BrightnessValue] to bl
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::brightness0] to bd
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::threshold] to bm
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::<>9__0] to bn
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>1__state] to bi
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>2__current] to bj
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>8__1] to bk
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<mean0>5__2] to bo
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<testTexture>5__3] to bp
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<i>5__4] to bq
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass20_0::sub] to br
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass20_0::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass20_0::brightness0] to bd
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>1__state] to bi
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>2__current] to bj
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>8__1] to bk
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::<>4__this] to bc
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsLast] to bs
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsInScreen] to bh
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::Edge] to bt
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsOut] to bu
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsIn] to bv
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::n] to bw
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::CS$<>8__locals1] to bx
- [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::<>9__1] to by
- [Info][Rename Field] [ScreenLocateTestOld::webCamera] to x
- [Info][Rename Field] [ScreenLocateTestOld::info] to bz
- [Info][Rename Field] [ScreenLocateTestOld::location] to ca
- [Info][Rename Field] [ScreenLocateTestOld::crosshairInScreen] to cb
- [Info][Rename Field] [ScreenLocateTestOld::background] to cc
- [Info][Rename Field] [ScreenLocateTestOld::Screen] to cd
- [Info][Rename Field] [ScreenLocateTestOld::testImage] to ce
- [Info][Rename Field] [ScreenLocateTestOld::testImage2] to cf
- [Info][Rename Field] [ScreenLocateTestOld::infraredLocateTest] to cg
- [Info][Rename Field] [ScreenLocateTestOld::canvasRect] to ch
- [Info][Rename Field] [ScreenLocateTestOld::screenQuad] to ci
- [Info][Rename Field] [ScreenLocateTestOld::record] to cj
- [Info][Rename Field] [ScreenLocateTestOld::brightnessRecord] to ck
- [Info][Rename Field] [TestLineRegression::coordsCS] to cl
- [Info][Rename Field] [InfraredSpotSettings::RadiusThreshold] to cm
- [Info][Rename Field] [InfraredSpotSettings::data] to cn
- [Info][Rename Field] [ScreenLocate/Mode::InfraredLocate] to co
- [Info][Rename Field] [ScreenLocate/Mode::ScreenMap] to cp
- [Info][Rename Field] [ScreenLocate/Mode::ScreenLocateManual] to cq
- [Info][Rename Field] [ScreenLocate::<InfraredSpots>k__BackingField] to <cr>k__BackingField
- [Info][Rename Field] [ScreenLocate::WebCamera] to cs
- [Info][Rename Field] [ScreenLocate::Info] to ct
- [Info][Rename Field] [ScreenLocate::CrosshairInCamera] to cu
- [Info][Rename Field] [ScreenLocate::CrosshairInScreen] to cv
- [Info][Rename Field] [ScreenLocate::ScreenQuad] to cw
- [Info][Rename Field] [ScreenLocate::SaveToggle] to cx
- [Info][Rename Field] [ScreenLocate::ShowScreenQuad] to cy
- [Info][Rename Field] [ScreenLocate::rawImage] to o
- [Info][Rename Field] [ScreenLocate::rawImage1] to cz
- [Info][Rename Field] [ScreenLocate::rawImage2] to p
- [Info][Rename Field] [ScreenLocate::rawImage3] to q
- [Info][Rename Field] [ScreenLocate::rawImage4] to r
- [Info][Rename Field] [ScreenLocate::rawImage5] to s
- [Info][Rename Field] [ScreenLocate::FullScreenImage] to da
- [Info][Rename Field] [ScreenLocate::InfraredSpotSettings] to db
- [Info][Rename Field] [ScreenLocate::DebugScreenImage] to dc
- [Info][Rename Field] [ScreenLocate::infraredLocate] to bb
- [Info][Rename Field] [ScreenLocate::canvas] to dd
- [Info][Rename Field] [ScreenLocate::mode] to de
- [Info][Rename Field] [ScreenLocate::pointManual] to df
- [Info][Rename Field] [ScreenLocate::screenIdentification] to dg
- [Info][Rename Field] [ScreenLocate::Main] to dh
- [Info][Rename Field] [ScreenLocate::DebugImage] to w
- [Info][Rename Field] [ScreenLocate::BackQuad] to di
- [Info][Rename Field] [ZIMWebCamera::cameraIndex] to dj
- [Info][Rename Field] [ZIMWebCamera::width] to m
- [Info][Rename Field] [ZIMWebCamera::height] to n
- [Info][Rename Field] [ZIMWebCamera::fps] to h
- [Info][Rename Field] [ZIMWebCamera::rawImage] to o
- [Info][Rename Field] [ZIMWebCamera::_webCamTexture] to u
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::L] to dk
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::m] to dl
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::alpha] to dm
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::ki] to dn
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::beta] to do
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::lambda] to dp
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::c] to dq
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::Wm] to dr
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::Wc] to ds
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::x] to dt
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::P] to du
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::q] to dv
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::r] to dw
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::Q] to dx
- [Info][Rename Field] [UnscentedKalmanFilter.UKF::R] to dy
- [Info][Rename Field] [ZIM.InfraredMatch::Nomatch] to dz
- [Info][Rename Field] [ZIM.InfraredMatch::Match0] to ea
- [Info][Rename Field] [ZIM.InfraredMatch::Match1] to eb
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMax] to ec
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMin] to ed
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<>4__this] to bc
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::pixels] to c
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::spotPoint] to ee
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::brightPoint] to ef
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::origin] to eg
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::<>4__this] to bc
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::brightness] to eh
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::brightPixelDic] to ei
- [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::rect] to ej
- [Info][Rename Field] [ZIM.InfraredLocate::locker] to ek
- [Info][Rename Field] [ZIM.InfraredLocate::samplingScale] to el
- [Info][Rename Field] [ZIM.InfraredLocate::spotBrightness] to em
- [Info][Rename Field] [ZIM.InfraredLocate::camera] to en
- [Info][Rename Field] [ZIM.InfraredLocate::screenIdentification] to dg
- [Info][Rename Field] [ZIM.InfraredLocate::infraredSpotSettings] to eo
- [Info][Rename Field] [ZIM.InfraredLocate::InfraredSpots] to f
- [Info][Rename Field] [ZIM.InfraredLocate::CheakFrame] to ep
- [Info][Rename Field] [ZIM.InfraredLocate::Infrared12Overlap] to eq
- [Info][Rename Field] [ZIM.InfraredLocate::cheakCounter] to er
- [Info][Rename Field] [ZIM.InfraredSpot::MaxVerifyFailLimit] to es
- [Info][Rename Field] [ZIM.InfraredSpot::MinVerifyLength] to et
- [Info][Rename Field] [ZIM.InfraredSpot::<Predict>k__BackingField] to <eu>k__BackingField
- [Info][Rename Field] [ZIM.InfraredSpot::<Match>k__BackingField] to <ev>k__BackingField
- [Info][Rename Field] [ZIM.InfraredSpot::verifyFailLimit] to ew
- [Info][Rename Field] [ZIM.InfraredSpot::spots] to ex
- [Info][Rename Field] [ZIM.InfraredSpot::estimation] to ey
- [Info][Rename Field] [ZIM.InfraredSpot::ScreenLocation] to ez
- [Info][Rename Field] [ZIM.InfraredSpot::screenMap] to fa
- [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::rectMin] to ed
- [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::Vector2ToIndex] to fb
- [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::pixels] to c
- [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::rectMax] to ec
- [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::total] to fc
- [Info][Rename Field] [ZIM.PixelArea::gridLength] to fd
- [Info][Rename Field] [ZIM.PixelArea::angleStep] to fe
- [Info][Rename Field] [ZIM.PixelArea::angleMathList] to ff
- [Info][Rename Field] [ZIM.PixelArea::Center] to fg
- [Info][Rename Field] [ZIM.PixelArea::MaxRadius] to fh
- [Info][Rename Field] [ZIM.PixelArea::Pixels] to fi
- [Info][Rename Field] [ZIM.PixelArea::grids] to fj
- [Info][Rename Field] [ZIM.PixelCircleArea::Center] to fg
- [Info][Rename Field] [ZIM.PixelCircleArea::MaxRadius] to fh
- [Info][Rename Field] [ZIM.PixelCircleArea::Pixels] to fi
- [Info][Rename Field] [ZIM.PixelCircleArea::grids] to fj
- [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMin] to ed
- [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::Vector2ToIndex] to fb
- [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::pixels] to c
- [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMax] to ec
- [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::total] to fc
- [Info][Rename Field] [ZIM.PixelSpotArea::gridLength0] to fk
- [Info][Rename Field] [ZIM.PixelSpotArea::gridLength1] to fl
- [Info][Rename Field] [ZIM.PixelSpotArea::center] to fm
- [Info][Rename Field] [ZIM.PixelSpotArea::radius] to fn
- [Info][Rename Field] [ZIM.PixelSpotArea::Pixels0] to fo
- [Info][Rename Field] [ZIM.PixelSpotArea::Pixels1] to fp
- [Info][Rename Field] [ZIM.PixelSpotArea::grids0] to fq
- [Info][Rename Field] [ZIM.PixelSpotArea::grids1] to fr
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::Predict] to j
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::LastLocation] to fs
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::LastSpeed] to ft
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::LastAcc] to fu
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::AccChangeScale] to fv
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::Locations] to fw
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::filterx] to fx
- [Info][Rename Field] [ZIM.SimpleLocationEstimation::filtery] to fy
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass10_0::p] to fz
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass10_0::pixel] to ga
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass10_0::scale] to gb
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass12_0::p] to fz
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass12_0::pixel] to ga
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass12_0::scale] to gb
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::p] to fz
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::pixel] to ga
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::scale] to gb
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::pint] to gc
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::bit] to gd
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::D] to ge
- [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::pixelLighted] to gf
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<>4__this] to bc
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::half_size] to gg
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::kernel_size] to gh
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::edgeArray] to gi
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_width] to gj
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::result] to gk
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_height] to gl
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::p] to fz
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::mean] to gm
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::p] to fz
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::scale] to gb
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::p] to fz
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::scale] to gb
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::pint] to gc
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::bit] to gd
- [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::D] to ge
- [Info][Rename Field] [ZIM.Image.ImgProcessGray::width] to m
- [Info][Rename Field] [ZIM.Image.ImgProcessGray::height] to n
- [Info][Rename Field] [ZIM.Image.ImgProcessGray::pixels] to c
- [Info][Rename Field] [ZIM.Image.ConvEdge::EdgePoint] to gn
- [Info][Rename Field] [ZIM.Image.ConvEdge::EdgeDirection] to go
- [Info][Rename Field] [ZIM.Image.ConvEdge::Variance] to gp
- [Info][Rename Field] [ZIM.Image.ConvEdge::noiseCount] to gq
- [Info][Rename Field] [ZIM.Unity.ScreenMap::<QuadRect>k__BackingField] to <gr>k__BackingField
- [Info][Rename Field] [ZIM.Unity.ScreenMap::<UVSize>k__BackingField] to <gs>k__BackingField
- [Info][Rename Field] [ZIM.Unity.ScreenMap::quad] to gt
- [Info][Rename Field] [ZIM.Unity.ScreenMap::perspective] to gu
- [Info][Rename Field] [ZIM.Unity.Texture2DZIM::Texture] to gv
- [Info][Rename Field] [ZIM.Unity.Texture2DZIM::Width] to gw
- [Info][Rename Field] [ZIM.Unity.Texture2DZIM::Height] to gx
- [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::a] to gy
- [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::b] to gz
- [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::c] to dq
- [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::d] to ha
- [Info][Rename Field] [o0.Geometry2D.Float.PerspectiveTransform::H] to hb
- [Info][Rename Field] [o0.Geometry2D.Float.PerspectiveTransform::InverseH] to hc
- [Info][Rename Field] [o0.Project.ColorChannel::Red] to hd
- [Info][Rename Field] [o0.Project.ColorChannel::Green] to he
- [Info][Rename Field] [o0.Project.ColorChannel::Blue] to hf
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass0_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass0_0::pixel] to ga
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass1_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass1_0::pixel] to ga
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass2_0::pixel] to ga
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass2_0::ele] to hh
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass3_0::pixel] to ga
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass3_0::ele] to hh
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::conSize] to hj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::conArea] to hk
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass5_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass5_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass5_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass6_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass6_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass6_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass7_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass7_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass7_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::conSize] to hj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::pixelDir] to hm
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::conSize] to hj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::pixelDir] to hm
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass10_0::start] to hn
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass10_0::xToYRate] to ho
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>1__state] to bi
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>2__current] to bj
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>l__initialThreadId] to hp
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::start] to hn
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__start] to hq
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::angle] to hr
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__angle] to hs
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::end] to ht
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__end] to hu
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__mat] to hv
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::reverseXY] to hw
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__reverseXY] to hx
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::dir] to hy
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__dir] to hz
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<graA>5__2] to ia
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<xToYFunc>5__3] to ib
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<A1>5__4] to ic
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<B1>5__5] to id
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<Sum1>5__6] to ie
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<A2>5__7] to if
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<B2>5__8] to ig
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<Sum2>5__9] to ih
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<x>5__10] to ii
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C0A>5__11] to ij
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C1A>5__12] to ik
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C2A>5__13] to il
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C3A>5__14] to im
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<CV>5__15] to in
- [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<avaAngle2>5__16] to io
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::polarSpaceStep] to ip
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::maxGraIndex] to iq
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::dir] to hy
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::avaAngle] to ir
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::polarSpace] to is
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::sourcePos] to it
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::maxPolarIndex] to iu
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::minLineSegLength] to iv
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::lineSegMat] to iw
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass12_0::start] to hn
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass12_0::xToYRate] to ho
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::gradientValueMat] to ix
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::gradientDirMat] to iy
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::maxVector] to iz
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::matBuffer] to ja
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_1::lines] to jb
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_1::CS$<>8__locals1] to bx
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::newMatElement] to jc
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::map] to jd
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::pixel] to ga
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::minC] to je
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::maxC] to jf
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::conSize] to hj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::pixelDir] to hm
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::conSize] to hj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::conSizeLevel] to jg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::pixelDir] to hm
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::conSize] to hj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::sampleCount] to jh
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::samples] to ji
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::scales] to jj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::pixelDir] to hm
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::angles] to jk
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::convolutionWidth] to hi
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::mat] to hg
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::conSize] to hj
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::pixelC] to hl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::pixelDir] to hm
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass24_0::start] to hn
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass24_0::xToYRate] to ho
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass25_0::screenLocateMat] to jl
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass25_0::valueSumsColumn] to jm
- [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass25_0::avgPointsColumn] to jn
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0::pixel] to ga
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<>4__this] to bc
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1::pixel] to ga
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<>4__this] to bc
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::newPixel] to jo
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::CS$<>8__locals1] to bx
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMin] to jp
- [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMax] to jq
- [Info][Rename Field] [o0.Project.InfraredIdentification::Size] to g
- [Info][Rename Field] [o0.Project.InfraredIdentification::DelayWhite] to jr
- [Info][Rename Field] [o0.Project.InfraredIdentification::CaptureWhite] to js
- [Info][Rename Field] [o0.Project.InfraredIdentification::DelayBlack] to jt
- [Info][Rename Field] [o0.Project.InfraredIdentification::CaptureBlack] to ju
- [Info][Rename Field] [o0.Project.InfraredIdentification::ScreenLocateTexture] to jv
- [Info][Rename Field] [o0.Project.InfraredIdentification::ScreenCaptureCount] to jw
- [Info][Rename Field] [o0.Project.InfraredIdentification::LastMin] to jx
- [Info][Rename Field] [o0.Project.InfraredIdentification::LastMax] to jy
- [Info][Rename Field] [o0.Project.WebCam::webCam] to jz
- [Info][Rename Field] [o0.Project.Hough/Line::<A>k__BackingField] to <ka>k__BackingField
- [Info][Rename Field] [o0.Project.Hough/Line::<B>k__BackingField] to <kb>k__BackingField
- [Info][Rename Field] [o0.Project.Hough/Line::Points] to kc
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::Acumulator] to kd
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::TrigValues] to ke
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::Bright] to kf
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::rho] to kg
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass2_0::result] to gk
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass2_0::theta] to kh
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::p] to fz
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::scale] to gb
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::pint] to gc
- [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::bit] to gd
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformWidth] to ki
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::pt] to kj
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::dstPixel] to kk
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcPixel] to kl
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcWidth] to km
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformHeight] to kn
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0::pixel] to ga
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<>4__this] to bc
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0::pixel] to ga
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<>4__this] to bc
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<>4__this] to bc
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0::differPixel] to ko
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<>4__this] to bc
- [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0::differPixel] to ko
- [Info][Rename Field] [o0.Project.ScreenIdentification::LocateAreaData] to kp
- [Info][Rename Field] [o0.Project.ScreenIdentification::LocateDebug] to kq
- [Info][Rename Field] [o0.Project.ScreenIdentification::<Size>k__BackingField] to <kr>k__BackingField
- [Info][Rename Field] [o0.Project.ScreenIdentification::Screen] to cd
- [Info][Rename Field] [o0.Project.ScreenIdentification::capture] to ks
- [Info][Rename Field] [o0.Project.ScreenIdentification::delay] to kt
- [Info][Rename Field] [o0.Project.ScreenIdentification::maxCapture] to ku
- [Info][Rename Field] [o0.Project.ScreenIdentification::maxDelay] to kv
- [Info][Rename Field] [o0.Project.ScreenIdentification::ScreenBlackTexture] to kw
- [Info][Rename Field] [o0.Project.ScreenIdentification::ScreenWhiteTexture] to kx
- [Info][Rename Field] [o0.Project.ScreenIdentification::locateIndex] to ky
- [Info][Rename Field] [o0.Project.ScreenIdentification::locateArea] to kz
- [Info][Rename Field] [o0.Project.ScreenIdentification::areaSelected] to la
- [Info][Rename Field] [o0.Project.ScreenIdentification::sumTemp] to lb
- [Info][Rename Field] [o0.Project.ScreenIdentification::quadTemp] to lc
- [Info][Rename Field] [<PrivateImplementationDetails>::88EF9688D5D01ED45017CCAE288BB412F1F7A5AEA07137F1FD32BBF2881C1E8D] to ld
- [Info][Rename Field] [<PrivateImplementationDetails>::C23888948D5D7B6E79F08608B60ADABEB993DB51B3DC234DF30B048900281DA6] to le
- [Info][Rename Field] [<PrivateImplementationDetails>::E0B0515FD8FCCF5A5AE5989BCA39F0D176479B9F19F4FAC1BCA94E2748E4FF5A] to lf
- [Info][Process] Finished Step: Rename Fields
- [Info][Process] Processing Step: Rename Properties and Events
- [Info][Rename] [Assembly-CSharp] Rename Properties and Events...
- [Info][Rename Property] [o0WebCamera::webCamTexture] to a
- [Info][Rename Property] [InfraredLocateTest::InfraredLocation] to b
- [Info][Rename Property] [InfraredLocateTest::pixels] to c
- [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.Current] to d
- [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.Current] to e
- [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.Current] to d
- [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Current] to e
- [Info][Rename Property] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.Current] to d
- [Info][Rename Property] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Current] to e
- [Info][Rename Property] [ScreenLocate::InfraredSpots] to f
- [Info][Rename Property] [ZIMWebCamera::webCamTexture] to a
- [Info][Rename Property] [ZIMWebCamera::Size] to g
- [Info][Rename Property] [ZIM.InfraredSpot::ScreenUV] to h
- [Info][Rename Property] [ZIM.InfraredSpot::CameraLocation] to i
- [Info][Rename Property] [ZIM.InfraredSpot::Predict] to j
- [Info][Rename Property] [ZIM.InfraredSpot::Match] to k
- [Info][Rename Property] [ZIM.PixelArea::AngleMathList] to l
- [Info][Rename Property] [ZIM.PixelSpotArea::Center] to fg
- [Info][Rename Property] [ZIM.PixelSpotArea::Radius] to m
- [Info][Rename Property] [ZIM.Unity.ScreenMap::QuadRect] to n
- [Info][Rename Property] [ZIM.Unity.ScreenMap::UVSize] to o
- [Info][Rename Property] [ZIM.Unity.ScreenMap::Active] to p
- [Info][Rename Property] [ZIM.Unity.ScreenMap::Quad] to q
- [Info][Rename Property] [ZIM.Unity.Texture2DZIM::Size] to g
- [Info][Rename Property] [o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.Current] to r
- [Info][Rename Property] [o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Current] to e
- [Info][Rename Property] [o0.Project.Hough/Line::PointsCount] to s
- [Info][Rename Property] [o0.Project.Hough/Line::Length] to t
- [Info][Rename Property] [o0.Project.Hough/Line::A] to u
- [Info][Rename Property] [o0.Project.Hough/Line::B] to v
- [Info][Rename Property] [o0.Project.ScreenIdentification::Size] to g
- [Info][Rename Property] [o0.Project.ScreenIdentification::areaPercent] to w
- [Info][Process] Finished Step: Rename Properties and Events
- [Info][Process] Processing Step: Rename Methods
- [Info][Rename] [Assembly-CSharp] Rename Methods...
- [Info][Rename Method] [Box::Bomb] to a
- [Info][Rename Method] [o0WebCamera::get_webCamTexture] to b
- [Info][Rename Method] [o0WebCamera::DebugTexture] to c
- [Info][Rename Method] [o0WebCamera::SetScreen] to d
- [Info][Rename Method] [InfraredLocateTest::get_InfraredLocation] to e
- [Info][Rename Method] [InfraredLocateTest::set_InfraredLocation] to f
- [Info][Rename Method] [InfraredLocateTest::get_pixels] to g
- [Info][Rename Method] [InfraredLocateTest::set_pixels] to h
- [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass14_0::<Update>b__0] to i
- [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass18_0::<ScreenLocateCorutine>b__0] to j
- [Info][Rename Method] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.get_Current] to k
- [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass19_0::<ScreenLocateCorutine2>b__0] to l
- [Info][Rename Method] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.get_Current] to m
- [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass20_0::<ScreenTestCoruine>b__0] to n
- [Info][Rename Method] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.get_Current] to o
- [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass21_0::<PixlesProcessToEdge>b__0] to p
- [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass21_1::<PixlesProcessToEdge>b__1] to q
- [Info][Rename Method] [ScreenLocateTestOld::SavePng] to r
- [Info][Rename Method] [ScreenLocateTestOld::SavePngFloat] to s
- [Info][Rename Method] [ScreenLocateTestOld::ScreenLocateCorutine] to t
- [Info][Rename Method] [ScreenLocateTestOld::ScreenLocateCorutine2] to u
- [Info][Rename Method] [ScreenLocateTestOld::ScreenTestCoruine] to v
- [Info][Rename Method] [ScreenLocateTestOld::PixlesProcessToEdge] to w
- [Info][Rename Method] [ScreenLocateTestOld::Conv2DAverageInt] to x
- [Info][Rename Method] [ScreenLocateTestOld::EdgeCalculation] to y
- [Info][Rename Method] [InfraredSpotSettings::UpdateThreshold] to z
- [Info][Rename Method] [ScreenLocate::get_InfraredSpots] to ba
- [Info][Rename Method] [ScreenLocate::set_InfraredSpots] to bb
- [Info][Rename Method] [ScreenLocate::DebugTexture] to bc
- [Info][Rename Method] [ScreenLocate::SetScreen] to bd
- [Info][Rename Method] [ScreenLocate::SetScreen] to be
- [Info][Rename Method] [ScreenLocate::DebugBackQuad] to bf
- [Info][Rename Method] [ScreenLocate::ShowScreen] to bg
- [Info][Rename Method] [ScreenLocate::ToMode] to bh
- [Info][Rename Method] [ZIMWebCamera::get_webCamTexture] to bi
- [Info][Rename Method] [ZIMWebCamera::get_Size] to bj
- [Info][Rename Method] [ZIMWebCamera::IndexToCoord] to bk
- [Info][Rename Method] [ZIMWebCamera::CoordToIndex] to bl
- [Info][Rename Method] [UnscentedKalmanFilter.UKF::init] to bm
- [Info][Rename Method] [UnscentedKalmanFilter.UKF::getState] to bn
- [Info][Rename Method] [UnscentedKalmanFilter.UKF::getCovariance] to bo
- [Info][Rename Method] [UnscentedKalmanFilter.UKF::UnscentedTransform] to bp
- [Info][Rename Method] [UnscentedKalmanFilter.UKF::GetSigmaPoints] to bq
- [Info][Rename Method] [ZIM.InfraredLocate/<>c::<Update>b__13_0] to br
- [Info][Rename Method] [ZIM.InfraredLocate/<>c::<Update>b__13_1] to bs
- [Info][Rename Method] [ZIM.InfraredLocate/<>c::<LocateOld>b__16_1] to bt
- [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__0] to bu
- [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__1] to bv
- [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__2] to bw
- [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass16_0::<LocateOld>b__0] to bx
- [Info][Rename Method] [ZIM.InfraredLocate::GetMatches] to by
- [Info][Rename Method] [ZIM.InfraredLocate::GetSpot] to bz
- [Info][Rename Method] [ZIM.InfraredLocate::LocateToScreen] to ca
- [Info][Rename Method] [ZIM.InfraredLocate::Get] to cb
- [Info][Rename Method] [ZIM.InfraredLocate::LocateOld] to cc
- [Info][Rename Method] [ZIM.InfraredLocate::ConvBrightness] to cd
- [Info][Rename Method] [ZIM.InfraredSpot::get_ScreenUV] to ce
- [Info][Rename Method] [ZIM.InfraredSpot::get_CameraLocation] to cf
- [Info][Rename Method] [ZIM.InfraredSpot::get_Predict] to cg
- [Info][Rename Method] [ZIM.InfraredSpot::set_Predict] to ch
- [Info][Rename Method] [ZIM.InfraredSpot::get_Match] to ci
- [Info][Rename Method] [ZIM.InfraredSpot::set_Match] to cj
- [Info][Rename Method] [ZIM.InfraredSpot::Verify] to ck
- [Info][Rename Method] [ZIM.InfraredSpot::UpdateByPredict] to cl
- [Info][Rename Method] [ZIM.PixelArea/<>c__DisplayClass15_0::<TotalBrightness>b__0] to cm
- [Info][Rename Method] [ZIM.PixelArea::GetGrid] to cn
- [Info][Rename Method] [ZIM.PixelArea::get_AngleMathList] to co
- [Info][Rename Method] [ZIM.PixelArea::Include] to cp
- [Info][Rename Method] [ZIM.PixelArea::Add] to cq
- [Info][Rename Method] [ZIM.PixelArea::Add] to cr
- [Info][Rename Method] [ZIM.PixelArea::TotalBrightness] to cs
- [Info][Rename Method] [ZIM.PixelCircleArea::Include] to ct
- [Info][Rename Method] [ZIM.PixelCircleArea::Add] to cu
- [Info][Rename Method] [ZIM.PixelCircleArea::Add] to cv
- [Info][Rename Method] [ZIM.PixelCircleArea::CircleBrightness] to cw
- [Info][Rename Method] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::<TotalBrightness>b__0] to cx
- [Info][Rename Method] [ZIM.PixelSpotArea::GetGrid0] to cy
- [Info][Rename Method] [ZIM.PixelSpotArea::GetGrid1] to cz
- [Info][Rename Method] [ZIM.PixelSpotArea::Cluster] to da
- [Info][Rename Method] [ZIM.PixelSpotArea::get_Center] to db
- [Info][Rename Method] [ZIM.PixelSpotArea::set_Radius] to dc
- [Info][Rename Method] [ZIM.PixelSpotArea::get_Radius] to dd
- [Info][Rename Method] [ZIM.PixelSpotArea::Include0] to de
- [Info][Rename Method] [ZIM.PixelSpotArea::Include1] to df
- [Info][Rename Method] [ZIM.PixelSpotArea::Join] to dg
- [Info][Rename Method] [ZIM.PixelSpotArea::Join] to dh
- [Info][Rename Method] [ZIM.PixelSpotArea::Add] to di
- [Info][Rename Method] [ZIM.PixelSpotArea::TotalBrightness] to dj
- [Info][Rename Method] [ZIM.ZIMMath::DegreeToXAxis] to dk
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass10_0::<zimAutoLightSimple>b__0] to dl
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__0] to dm
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__1] to dn
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__0] to do
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__1] to dp
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__2] to dq
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__3] to dr
- [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__4] to ds
- [Info][Rename Method] [ZIM.Extension::UnityVector] to dt
- [Info][Rename Method] [ZIM.Extension::o0Vector] to du
- [Info][Rename Method] [ZIM.Extension::LengthManhattan] to dv
- [Info][Rename Method] [ZIM.Extension::Brightness] to dw
- [Info][Rename Method] [ZIM.Extension::Brightness] to dx
- [Info][Rename Method] [ZIM.Extension::pixelToLocalPosition_AnchorCenter] to dy
- [Info][Rename Method] [ZIM.Extension::pixelToLocalPosition_AnchorCenter] to dz
- [Info][Rename Method] [ZIM.Extension::IsInScreen] to ea
- [Info][Rename Method] [ZIM.Extension::DegreeToXAxis] to eb
- [Info][Rename Method] [ZIM.Extension::zimAutoLightSimple] to ec
- [Info][Rename Method] [ZIM.Extension::zimAutoLightSimple] to ed
- [Info][Rename Method] [ZIM.Extension::zimAutoLight] to ee
- [Info][Rename Method] [ZIM.Extension::zimAutoLight] to ef
- [Info][Rename Method] [ZIM.Extension::zimAutoLevelEqualization] to eg
- [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<FindLines>b__0] to eh
- [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::<SigmodAdjust>b__0] to ei
- [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::<LevelAdjust>b__0] to ej
- [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__0] to ek
- [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__1] to el
- [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__2] to em
- [Info][Rename Method] [ZIM.Image.ImgProcessGray::FindLines] to en
- [Info][Rename Method] [ZIM.Image.ImgProcessGray::SigmodAdjust] to eo
- [Info][Rename Method] [ZIM.Image.ImgProcessGray::LevelAdjust] to ep
- [Info][Rename Method] [ZIM.Image.ImgProcessGray::LevelEqualization] to eq
- [Info][Rename Method] [ZIM.Image.ConvEdge/<>c::<.ctor>b__4_0] to er
- [Info][Rename Method] [ZIM.Image.ConvEdge::AreaOfPoint] to es
- [Info][Rename Method] [ZIM.Image.ConvEdge::GetEdgeDirection] to et
- [Info][Rename Method] [ZIM.Unity.ScreenMap::get_QuadRect] to eu
- [Info][Rename Method] [ZIM.Unity.ScreenMap::set_QuadRect] to ev
- [Info][Rename Method] [ZIM.Unity.ScreenMap::get_UVSize] to ew
- [Info][Rename Method] [ZIM.Unity.ScreenMap::set_UVSize] to ex
- [Info][Rename Method] [ZIM.Unity.ScreenMap::get_Active] to ey
- [Info][Rename Method] [ZIM.Unity.ScreenMap::get_Quad] to ez
- [Info][Rename Method] [ZIM.Unity.ScreenMap::set_Quad] to fa
- [Info][Rename Method] [ZIM.Unity.ScreenMap::UVInScreen] to fb
- [Info][Rename Method] [ZIM.Unity.ScreenMap::UVNormalize] to fc
- [Info][Rename Method] [ZIM.Unity.ScreenMap::TransformToScreen] to fd
- [Info][Rename Method] [ZIM.Unity.ScreenMap::TransformToCamera] to fe
- [Info][Rename Method] [ZIM.Unity.Texture2DZIM::get_Size] to ff
- [Info][Rename Method] [ZIM.Unity.Texture2DZIM::ReadPixels] to fg
- [Info][Rename Method] [ZIM.Unity.Texture2DZIM::GetPixels] to fh
- [Info][Rename Method] [ZIM.Unity.Texture2DZIM::IndexToCoord] to fi
- [Info][Rename Method] [ZIM.Unity.Texture2DZIM::CoordToIndex] to fj
- [Info][Rename Method] [ZIM.Unity.Texture2DZIM::op_Implicit] to fk
- [Info][Rename Method] [ZIM.Unity.Texture2DZIM::op_Implicit] to fk
- [Info][Rename Method] [ZIM.Unity.UnityQuadrilateral::IsInScreen] to fm
- [Info][Rename Method] [ZIM.Unity.UnityQuadrilateral::InterpolationFactors] to fn
- [Info][Rename Method] [ZIM.Unity.UnityQuadrilateral::Fit] to fo
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformRound] to fp
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::Transform] to fq
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::Transform] to fr
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformInverse] to fs
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformInverse] to ft
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformEstimate] to fu
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransposeMatrix] to fv
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix] to fw
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix] to fw
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::MatrixMultiply] to fy
- [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::MatrixInverse] to fz
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__0] to ga
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__1] to gb
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__2] to gc
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__0] to gd
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__1] to ge
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__2] to gf
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__0] to gg
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__1] to gh
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__2] to gi
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__0] to gj
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__1] to gk
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__2] to gl
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass4_0::<IdentifyEdgeVariance>b__0] to gm
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass5_0::<IdentifyEdgeGradientX>b__0] to gn
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass6_0::<IdentifyEdgeGradientY>b__0] to go
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass7_0::<IdentifyEdgeGradient>b__0] to gp
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass8_0::<IdentifyEdge>b__0] to gq
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass9_0::<IdentifyEdge55GradientFull>b__0] to gr
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass10_0::<lineSeg>b__0] to gs
- [Info][Rename Method] [o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.get_Current] to gt
- [Info][Rename Method] [o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerable<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.GetEnumerator] to gu
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__0] to gv
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__1] to gw
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_2] to gx
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_3] to gy
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_4] to gz
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_5] to ha
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_3] to hb
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_2] to hc
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_0] to hd
- [Info][Rename Method] [o0.Project.Extension/<>c::<AutoLight>b__18_0] to he
- [Info][Rename Method] [o0.Project.Extension/<>c::<AutoLight>b__19_0] to hf
- [Info][Rename Method] [o0.Project.Extension/<>c::<zimIdentifyEdgeGradientGroup>b__23_1] to hg
- [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyQuadLSD>b__25_1] to hh
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass12_0::<lineSegGradient>b__0] to hi
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass15_1::<IdentifyLineLSD>b__1] to hj
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass19_0::<AutoLight>b__1] to hk
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass20_0::<zimIdentifyEdge55GradientFull>b__0] to hl
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass21_0::<zimIdentifyEdgeGradient45>b__0] to hm
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass22_0::<zimIdentifyEdgeGradientAny>b__0] to hn
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass23_0::<zimIdentifyEdgeGradientGroup>b__0] to ho
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass24_0::<zimLineSegGradient>b__0] to hp
- [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass25_0::<IdentifyQuadLSD>b__0] to hq
- [Info][Rename Method] [o0.Project.Extension::Too0Mat] to hr
- [Info][Rename Method] [o0.Project.Extension::Too0Mat] to hs
- [Info][Rename Method] [o0.Project.Extension::ToTex] to ht
- [Info][Rename Method] [o0.Project.Extension::ToRGB] to hu
- [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeVariance] to hv
- [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeGradientX] to hw
- [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeGradientY] to hx
- [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeGradient] to hy
- [Info][Rename Method] [o0.Project.Extension::IdentifyEdge] to hz
- [Info][Rename Method] [o0.Project.Extension::IdentifyEdge55GradientFull] to ia
- [Info][Rename Method] [o0.Project.Extension::lineSeg] to ib
- [Info][Rename Method] [o0.Project.Extension::IdentifyLine] to ic
- [Info][Rename Method] [o0.Project.Extension::lineSegGradient] to id
- [Info][Rename Method] [o0.Project.Extension::lineSegGradient] to ie
- [Info][Rename Method] [o0.Project.Extension::IdentifyLineLSD] to if
- [Info][Rename Method] [o0.Project.Extension::IdentifyLineLSD] to ig
- [Info][Rename Method] [o0.Project.Extension::AutoLight] to ih
- [Info][Rename Method] [o0.Project.Extension::AutoLight] to ii
- [Info][Rename Method] [o0.Project.Extension::AutoLight] to ij
- [Info][Rename Method] [o0.Project.Extension::AutoLight] to ik
- [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdge55GradientFull] to il
- [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdgeGradient45] to im
- [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdgeGradientAny] to in
- [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdgeGradientGroup] to io
- [Info][Rename Method] [o0.Project.Extension::zimLineSegGradient] to ip
- [Info][Rename Method] [o0.Project.Extension::IdentifyQuadLSD] to iq
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<Update>b__0] to ir
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<Update>b__1] to is
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__2] to it
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__3] to iu
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<Update>b__9_4] to iv
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<Update>b__9_5] to iw
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<Update>b__9_6] to ix
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_0] to iy
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_1] to iz
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_2] to ja
- [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0::<AutoLight2>b__3] to jb
- [Info][Rename Method] [o0.Project.InfraredIdentification::LocateScreen] to jc
- [Info][Rename Method] [o0.Project.InfraredIdentification::AutoLight2] to jd
- [Info][Rename Method] [o0.Project.InfraredIdentification::AutoLight2] to je
- [Info][Rename Method] [o0.Project.InfraredIdentification::AutoLight2] to jf
- [Info][Rename Method] [o0.Project.Hough/Line::get_PointsCount] to jg
- [Info][Rename Method] [o0.Project.Hough/Line::get_Length] to jh
- [Info][Rename Method] [o0.Project.Hough/Line::get_A] to ji
- [Info][Rename Method] [o0.Project.Hough/Line::set_A] to jj
- [Info][Rename Method] [o0.Project.Hough/Line::get_B] to jk
- [Info][Rename Method] [o0.Project.Hough/Line::set_B] to jl
- [Info][Rename Method] [o0.Project.Hough/Line::Add] to jm
- [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__0] to jn
- [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__1] to jo
- [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass2_0::<GetTrigValues>b__0] to jp
- [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__0] to jq
- [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__1] to jr
- [Info][Rename Method] [o0.Project.Hough::Transform] to js
- [Info][Rename Method] [o0.Project.Hough::Lines] to jt
- [Info][Rename Method] [o0.Project.Hough::GetTrigValues] to ju
- [Info][Rename Method] [o0.Project.Hough::GetBrightElements] to jv
- [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::<DebugImage>b__0] to jw
- [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<CaptureBlack>b__0] to jx
- [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<CaptureWhite>b__0] to jy
- [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<GetBrightness>b__0] to jz
- [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<QuadrilateralFit>b__0] to ka
- [Info][Rename Method] [o0.Project.ScreenIdentification/<>c::<QuadrilateralFit>b__33_1] to kb
- [Info][Rename Method] [o0.Project.ScreenIdentification::get_Size] to kc
- [Info][Rename Method] [o0.Project.ScreenIdentification::set_Size] to kd
- [Info][Rename Method] [o0.Project.ScreenIdentification::get_areaPercent] to ke
- [Info][Rename Method] [o0.Project.ScreenIdentification::LocateScreenManual] to kf
- [Info][Rename Method] [o0.Project.ScreenIdentification::LocateScreen] to kg
- [Info][Rename Method] [o0.Project.ScreenIdentification::DebugImage] to kh
- [Info][Rename Method] [o0.Project.ScreenIdentification::NextScreen] to ki
- [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureBlack] to kj
- [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureWhite] to kk
- [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureStay] to kl
- [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureEnd] to km
- [Info][Rename Method] [o0.Project.ScreenIdentification::GetBrightness] to kn
- [Info][Rename Method] [o0.Project.ScreenIdentification::QuadrilateralFit] to ko
- [Info][Process] Finished Step: Rename Methods
- [Info][Process] Processing Step: Rename Types and Namespaces
- [Info][Rename] [Assembly-CSharp] Rename Type Names and Namespaces...
- [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass14_0] to a
- [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass18_0] to b
- [Info][Update Reference Type] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18]
- [Info][Rename Reference] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18] Name: <ScreenLocateCorutine>d__18
- [Info][Rename Type] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18] to c
- [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass19_0] to d
- [Info][Update Reference Type] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19]
- [Info][Rename Reference] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19] Name: <ScreenLocateCorutine2>d__19
- [Info][Rename Type] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19] to e
- [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass20_0] to f
- [Info][Update Reference Type] [ScreenLocateTestOld/<ScreenTestCoruine>d__20]
- [Info][Rename Reference] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20] Name: <ScreenTestCoruine>d__20
- [Info][Rename Type] [ScreenLocateTestOld/<ScreenTestCoruine>d__20] to g
- [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass21_0] to h
- [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass21_1] to i
- [Info][Rename Type] [ScreenLocate/Mode] to a
- [Info][Rename Namespace] [UnscentedKalmanFilter.UKF] to
- [Info][Rename Type] [UnscentedKalmanFilter.UKF] to k
- [Info][Rename Namespace] [ZIM.InfraredMatch] to
- [Info][Rename Type] [ZIM.InfraredMatch] to l
- [Info][Rename Type] [ZIM.InfraredLocate/<>c__DisplayClass14_0] to b
- [Info][Rename Type] [ZIM.InfraredLocate/<>c__DisplayClass16_0] to c
- [Info][Rename Namespace] [ZIM.InfraredLocate] to
- [Info][Rename Type] [ZIM.InfraredLocate] to m
- [Info][Rename Namespace] [ZIM.InfraredSpot] to
- [Info][Rename Type] [ZIM.InfraredSpot] to n
- [Info][Rename Type] [ZIM.PixelArea/<>c__DisplayClass15_0] to a
- [Info][Rename Namespace] [ZIM.PixelArea] to
- [Info][Rename Type] [ZIM.PixelArea] to o
- [Info][Rename Namespace] [ZIM.PixelCircleArea] to
- [Info][Rename Type] [ZIM.PixelCircleArea] to p
- [Info][Rename Type] [ZIM.PixelSpotArea/<>c__DisplayClass23_0] to a
- [Info][Rename Namespace] [ZIM.PixelSpotArea] to
- [Info][Rename Type] [ZIM.PixelSpotArea] to q
- [Info][Rename Namespace] [ZIM.SimpleLocationEstimation] to
- [Info][Rename Type] [ZIM.SimpleLocationEstimation] to r
- [Info][Rename Namespace] [ZIM.ZIMMath] to
- [Info][Rename Type] [ZIM.ZIMMath] to s
- [Info][Rename Type] [ZIM.Extension/<>c__DisplayClass10_0] to a
- [Info][Rename Type] [ZIM.Extension/<>c__DisplayClass12_0] to b
- [Info][Rename Type] [ZIM.Extension/<>c__DisplayClass13_0] to c
- [Info][Rename Namespace] [ZIM.Extension] to
- [Info][Rename Type] [ZIM.Extension] to t
- [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0] to a
- [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0] to b
- [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0] to c
- [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0] to d
- [Info][Rename Namespace] [ZIM.Image.ImgProcessGray] to
- [Info][Rename Type] [ZIM.Image.ImgProcessGray] to u
- [Info][Rename Namespace] [ZIM.Image.ConvEdge] to
- [Info][Rename Type] [ZIM.Image.ConvEdge] to v
- [Info][Rename Namespace] [ZIM.Unity.ScreenMap] to
- [Info][Rename Type] [ZIM.Unity.ScreenMap] to w
- [Info][Rename Namespace] [ZIM.Unity.Texture2DZIM] to
- [Info][Rename Type] [ZIM.Unity.Texture2DZIM] to x
- [Info][Rename Namespace] [ZIM.Unity.UnityQuadrilateral] to
- [Info][Rename Type] [ZIM.Unity.UnityQuadrilateral] to y
- [Info][Rename Namespace] [o0.Geometry2D.Float.PerspectiveTransform] to
- [Info][Rename Type] [o0.Geometry2D.Float.PerspectiveTransform] to z
- [Info][Rename Namespace] [o0.Project.ColorChannel] to
- [Info][Rename Type] [o0.Project.ColorChannel] to ba
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass0_0] to a
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass1_0] to b
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass2_0] to c
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass3_0] to d
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass4_0] to e
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass5_0] to f
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass6_0] to g
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass7_0] to h
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass8_0] to i
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass9_0] to j
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass10_0] to k
- [Info][Update Reference Type] [o0.Project.Extension/<lineSeg>d__10]
- [Info][Rename Reference] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10] Name: <lineSeg>d__10
- [Info][Rename Type] [o0.Project.Extension/<lineSeg>d__10] to l
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass11_0] to m
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass12_0] to o
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass15_0] to p
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass15_1] to q
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass19_0] to r
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass20_0] to s
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass21_0] to t
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass22_0] to u
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass23_0] to v
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass24_0] to w
- [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass25_0] to x
- [Info][Rename Namespace] [o0.Project.Extension] to
- [Info][Rename Type] [o0.Project.Extension] to bb
- [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0] to a
- [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1] to b
- [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2] to c
- [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0] to e
- [Info][Rename Namespace] [o0.Project.InfraredIdentification] to
- [Info][Rename Type] [o0.Project.InfraredIdentification] to bc
- [Info][Rename Namespace] [o0.Project.WebCam] to
- [Info][Rename Type] [o0.Project.WebCam] to bd
- [Info][Rename Type] [o0.Project.Hough/Line] to a
- [Info][Rename Type] [o0.Project.Hough/<>c__DisplayClass1_0] to b
- [Info][Rename Type] [o0.Project.Hough/<>c__DisplayClass2_0] to c
- [Info][Rename Type] [o0.Project.Hough/<>c__DisplayClass3_0] to d
- [Info][Rename Namespace] [o0.Project.Hough] to
- [Info][Rename Type] [o0.Project.Hough] to be
- [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0] to a
- [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0] to b
- [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0] to c
- [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0] to d
- [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0] to e
- [Info][Rename Namespace] [o0.Project.ScreenIdentification] to
- [Info][Rename Type] [o0.Project.ScreenIdentification] to bf
- [Info][Rename Type] [<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12] to a
- [Info][Rename Namespace] [<PrivateImplementationDetails>] to
- [Info][Rename Type] [<PrivateImplementationDetails>] to bg
- [Info][Process] Finished Step: Rename Types and Namespaces
- [Info][Process] Processing Step: Rename Unity Types and Namespaces
- [Info][Rename] [Assembly-CSharp] Rename Unity Type Names and Namespaces...
- [Info][Rename Namespace] [BombChild] to
- [Info][Rename Type] [BombChild] to a
- [Info][Rename Namespace] [Box] to
- [Info][Rename Type] [Box] to b
- [Info][Rename Namespace] [FPSTester] to
- [Info][Rename Type] [FPSTester] to c
- [Info][Rename Namespace] [o0WebCamera] to
- [Info][Rename Type] [o0WebCamera] to d
- [Info][Rename Namespace] [InfraredLocateTest] to
- [Info][Rename Type] [InfraredLocateTest] to e
- [Info][Rename Namespace] [ScreenLocateTestOld] to
- [Info][Rename Type] [ScreenLocateTestOld] to f
- [Info][Rename Namespace] [TestLineRegression] to
- [Info][Rename Type] [TestLineRegression] to g
- [Info][Rename Namespace] [InfraredSpotSettings] to
- [Info][Rename Type] [InfraredSpotSettings] to h
- [Info][Rename Namespace] [ScreenLocate] to
- [Info][Rename Type] [ScreenLocate] to i
- [Info][Rename Namespace] [ZIMWebCamera] to
- [Info][Rename Type] [ZIMWebCamera] to j
- [Info][Process] Finished Step: Rename Unity Types and Namespaces
- [Info][Process] Processing Step: Rename Parameters
- [Info][Rename] [Assembly-CSharp] Rename Parameter...
- [Info][Process] Finished Step: Rename Parameters
- [Info][Process] Processing Step: Add SuppressIldasmAttribute
- [Info][SuppressIldasmAttribute] [Assembly-CSharp] Add to assembly the SuppressIldasmAttribute...
- [Info][Process] Finished Step: Add SuppressIldasmAttribute
- [Info][Process] Processing Step: Obfuscate Strings
- [Info][String] [Assembly-CSharp] Processing String Obfuscation ...
- [Info][StringObfuscation] String 'FPS: ' got Obfuscated to byte Code: 'ElBTOiA='.
- [Info][StringObfuscation] String 'zimWebCamera' got Obfuscated to byte Code: 'n2ltV2ViQ2FtZXJh'.
- [Info][StringObfuscation] String 'GameController' got Obfuscated to byte Code: 'omFtZUNvbnRyb2xsZXI='.
- [Info][StringObfuscation] String '===游戏初始化完成===' got Obfuscated to byte Code: '2D095ri45oiP5Yid5aeL5YyW5a6M5oiQPT09'.
- [Info][StringObfuscation] String 'GameDemo' got Obfuscated to byte Code: 'JmFtZURlbW8='.
- [Info][StringObfuscation] String '相近,重新计算随机x点' got Obfuscated to byte Code: 's5u46L+R77yM6YeN5paw6K6h566X6ZqP5py6eOeCuQ=='.
- [Info][StringObfuscation] String 'WebCameraView' got Obfuscated to byte Code: 'HWViQ2FtZXJhVmlldw=='.
- [Info][StringObfuscation] String 'Background' got Obfuscated to byte Code: 'CGFja2dyb3VuZA=='.
- [Info][StringObfuscation] String '开启失败,请先关闭正在使用的摄像头!' got Obfuscated to byte Code: 'E7yA5ZCv5aSx6LSl77yM6K+35YWI5YWz6Zet5q2j5Zyo5L2/55So55qE5pGE5YOP5aS077yB'.
- [Info][StringObfuscation] String '开启失败,没找到可用的摄像头!' got Obfuscated to byte Code: 'E7yA5ZCv5aSx6LSl77yM5rKh5om+5Yiw5Y+v55So55qE5pGE5YOP5aS077yB'.
- [Info][StringObfuscation] String '成功开启摄像头 ' got Obfuscated to byte Code: 'EIiQ5Yqf5byA5ZCv5pGE5YOP5aS0IA=='.
- [Info][StringObfuscation] String '开启失败,用户未授予摄像头权限!' got Obfuscated to byte Code: 'E7yA5ZCv5aSx6LSl77yM55So5oi35pyq5o6I5LqI5pGE5YOP5aS05p2D6ZmQ77yB'.
- [Info][StringObfuscation] String '成功关闭摄像头' got Obfuscated to byte Code: 'eYiQ5Yqf5YWz6Zet5pGE5YOP5aS0'.
- [Info][StringObfuscation] String 'Locate Complete!
- ' got Obfuscated to byte Code: 'Sm9jYXRlIENvbXBsZXRlIQ0K'.
- [Info][StringObfuscation] String '显示器黑色' got Obfuscated to byte Code: '65i+56S65Zmo6buR6Imy'.
- [Info][StringObfuscation] String '显示器白色' got Obfuscated to byte Code: '65i+56S65Zmo55m96Imy'.
- [Info][StringObfuscation] String 'Locate Complete!
- threshold: {0}
- {1}' got Obfuscated to byte Code: 'QW9jYXRlIENvbXBsZXRlIQ0KdGhyZXNob2xkOiB7MH0NCnsxfQ=='.
- [Info][StringObfuscation] String '显示器黑色' got Obfuscated to byte Code: '/Ji+56S65Zmo6buR6Imy'.
- [Info][StringObfuscation] String '显示器白色' got Obfuscated to byte Code: '/Ji+56S65Zmo55m96Imy'.
- [Info][StringObfuscation] String '亮度差值' got Obfuscated to byte Code: '/rqu5bqm5beu5YC8'.
- [Info][StringObfuscation] String '.png' got Obfuscated to byte Code: '8nBuZw=='.
- [Info][StringObfuscation] String '.png' got Obfuscated to byte Code: 'hnBuZw=='.
- [Info][StringObfuscation] String 'dataX.js' got Obfuscated to byte Code: '7mF0YVguanM='.
- [Info][StringObfuscation] String 'dataY.js' got Obfuscated to byte Code: '7mF0YVkuanM='.
- [Info][StringObfuscation] String 'Fire1' got Obfuscated to byte Code: 'V2lyZTE='.
- [Info][StringObfuscation] String 'WebCameraView' got Obfuscated to byte Code: 'BGViQ2FtZXJhVmlldw=='.
- [Info][StringObfuscation] String 'Background' got Obfuscated to byte Code: 'EWFja2dyb3VuZA=='.
- [Info][StringObfuscation] String 'WebCameraView' got Obfuscated to byte Code: 'sGViQ2FtZXJhVmlldw=='.
- [Info][StringObfuscation] String 'Background' got Obfuscated to byte Code: 'pWFja2dyb3VuZA=='.
- [Info][StringObfuscation] String 'Point' got Obfuscated to byte Code: 'OG9pbnQ='.
- [Info][StringObfuscation] String '左键单击屏幕 右下角' got Obfuscated to byte Code: 'jbem6ZSu5Y2V5Ye75bGP5bmVIOWPs+S4i+inkg=='.
- [Info][StringObfuscation] String '左键单击屏幕 右上角' got Obfuscated to byte Code: 'jbem6ZSu5Y2V5Ye75bGP5bmVIOWPs+S4iuinkg=='.
- [Info][StringObfuscation] String '左键单击屏幕 左上角' got Obfuscated to byte Code: 'jbem6ZSu5Y2V5Ye75bGP5bmVIOW3puS4iuinkg=='.
- [Info][StringObfuscation] String '识别屏幕失败' got Obfuscated to byte Code: 'ha+G5Yir5bGP5bmV5aSx6LSl'.
- [Info][StringObfuscation] String '已识别到屏幕' got Obfuscated to byte Code: 'iLey6K+G5Yir5Yiw5bGP5bmV'.
- [Info][StringObfuscation] String '先定位屏幕' got Obfuscated to byte Code: 'iYWI5a6a5L2N5bGP5bmV'.
- [Info][StringObfuscation] String '按ESC退出' got Obfuscated to byte Code: 'ioyJRVND6YCA5Ye6'.
- [Info][StringObfuscation] String '定位屏幕失败' got Obfuscated to byte Code: 'ia6a5L2N5bGP5bmV5aSx6LSl'.
- [Info][StringObfuscation] String '已定位屏幕' got Obfuscated to byte Code: 'ibey5a6a5L2N5bGP5bmV'.
- [Info][StringObfuscation] String '左键单击屏幕 左下角' got Obfuscated to byte Code: 'ibem6ZSu5Y2V5Ye75bGP5bmVIOW3puS4i+inkg=='.
- [Info][StringObfuscation] String '开启失败,请先关闭正在使用的摄像头!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM6K+35YWI5YWz6Zet5q2j5Zyo5L2/55So55qE5pGE5YOP5aS077yB'.
- [Info][StringObfuscation] String '开启失败,没找到可用的摄像头!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM5rKh5om+5Yiw5Y+v55So55qE5pGE5YOP5aS077yB'.
- [Info][StringObfuscation] String '开启失败,没有对应序号的摄像头!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM5rKh5pyJ5a+55bqU5bqP5Y+355qE5pGE5YOP5aS077yB'.
- [Info][StringObfuscation] String '成功开启摄像头 ' got Obfuscated to byte Code: 'joiQ5Yqf5byA5ZCv5pGE5YOP5aS0IA=='.
- [Info][StringObfuscation] String '开启失败,用户未授予摄像头权限!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM55So5oi35pyq5o6I5LqI5pGE5YOP5aS05p2D6ZmQ77yB'.
- [Info][StringObfuscation] String '成功关闭摄像头' got Obfuscated to byte Code: 'J4iQ5Yqf5YWz6Zet5pGE5YOP5aS0'.
- [Info][StringObfuscation] String '[InfraredSpot] Update Wrong' got Obfuscated to byte Code: 'aUluZnJhcmVkU3BvdF0gVXBkYXRlIFdyb25n'.
- [Info][StringObfuscation] String 'Input array length must be equal to width * height' got Obfuscated to byte Code: 'E25wdXQgYXJyYXkgbGVuZ3RoIG11c3QgYmUgZXF1YWwgdG8gd2lkdGggKiBoZWlnaHQ='.
- [Info][StringObfuscation] String '{0}, {1}, {2}, {3}' got Obfuscated to byte Code: 'KTB9LCB7MX0sIHsyfSwgezN9'.
- [Info][StringObfuscation] String 'Invalid reshape dimensions' got Obfuscated to byte Code: 'zW52YWxpZCByZXNoYXBlIGRpbWVuc2lvbnM='.
- [Info][StringObfuscation] String 'Invalid matrix dimensions' got Obfuscated to byte Code: 'kW52YWxpZCBtYXRyaXggZGltZW5zaW9ucw=='.
- [Info][StringObfuscation] String '屏幕定位数据20230505_145229.bin' got Obfuscated to byte Code: 'HLGP5bmV5a6a5L2N5pWw5o2uMjAyMzA1MDVfMTQ1MjI5LmJpbg=='.
- [Info][StringObfuscation] String 'TestData/' got Obfuscated to byte Code: 'rWVzdERhdGEv'.
- [Info][StringObfuscation] String 'Read ' got Obfuscated to byte Code: 'q2VhZCA='.
- [Info][StringObfuscation] String '屏幕定位数据.bin' got Obfuscated to byte Code: 'HLGP5bmV5a6a5L2N5pWw5o2uLmJpbg=='.
- [Info][StringObfuscation] String 'ScreenLocateTexture Saved To: ' got Obfuscated to byte Code: 'qmNyZWVuTG9jYXRlVGV4dHVyZSBTYXZlZCBUbzog'.
- [Info][StringObfuscation] String 'time: ' got Obfuscated to byte Code: 'jWltZTog'.
- [Info][StringObfuscation] String '12313123' got Obfuscated to byte Code: 'CDIzMTMxMjM='.
- [Info][StringObfuscation] String 'output/Bright.png' got Obfuscated to byte Code: 'KnV0cHV0L0JyaWdodC5wbmc='.
- [Info][StringObfuscation] String '拟合四边形失败, quadTemp.Count: {0}' got Obfuscated to byte Code: 'xYuf5ZCI5Zub6L655b2i5aSx6LSlLCBxdWFkVGVtcC5Db3VudDogezB9'.
- [Info][StringObfuscation] String '[InfraredIdentification2拟合结果] RSquared: {0}, Quad: {1}' got Obfuscated to byte Code: 'eEluZnJhcmVkSWRlbnRpZmljYXRpb24y5ouf5ZCI57uT5p6cXSBSU3F1YXJlZDogezB9LCBRdWFkOiB7MX0='.
- [Info][StringObfuscation] String 'Debug ' got Obfuscated to byte Code: 'jWVidWcg'.
- [Info][StringObfuscation] String 'yyyyMMdd_HHmmss' got Obfuscated to byte Code: 'sHl5eU1NZGRfSEhtbXNz'.
- [Info][StringObfuscation] String '屏幕定位数据.bin' got Obfuscated to byte Code: 'LLGP5bmV5a6a5L2N5pWw5o2uLmJpbg=='.
- [Info][StringObfuscation] String '屏幕.png' got Obfuscated to byte Code: 'LLGP5bmVLnBuZw=='.
- [Info][StringObfuscation] String '屏幕边框识别.png' got Obfuscated to byte Code: 'LLGP5bmV6L655qGG6K+G5YirLnBuZw=='.
- [Info][StringObfuscation] String 'ScreenLocateTexture Saved To: ' got Obfuscated to byte Code: 'mmNyZWVuTG9jYXRlVGV4dHVyZSBTYXZlZCBUbzog'.
- [Info][Process] Finished Step: Obfuscate Strings
- [Info][Process] Processing Step: Obfuscate Unity Methods
- [Info][Process] Finished Step: Obfuscate Unity Methods
- [Info][Process] Processing Step: Add random Methods
- [Info][CloneMethods] Random Code generation is deactivated!
- [Info][Process] Finished Step: Add random Methods
- [Info][Process] Unlock Assemblies
- [Info][Process] Finished Assembly obfuscation successfully.
- [Info][None] Start Asset Obfuscation.
- [Info][AssetPostProcessor_Process] Create temporary file: E:/000MyProject/InfraredLocate/Assets\OPS\Obfuscator.Pro\Editor\Temp\Obfuscator_UnityObject_RenamingTable.obf
- [Info][None] Finished Asset Obfuscation.
- [Info][Save Assemblies] Saving...
- [Info][Save Assemblies] Saved.
- [Info][None] Start Asset Revert.
- [Info][AssetPostProcessor_Revert] Delete temporary file: E:/000MyProject/InfraredLocate/Assets\OPS\Obfuscator.Pro\Editor\Temp\Obfuscator_UnityObject_RenamingTable.obf
- [Info][None] Finished Asset Revert.
|