Assembly-CSharp.csproj 232 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <LangVersion>latest</LangVersion>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  9. <ProductVersion>10.0.20506</ProductVersion>
  10. <SchemaVersion>2.0</SchemaVersion>
  11. <RootNamespace></RootNamespace>
  12. <ProjectGuid>{3BB7BB0C-14AB-F2AC-CD75-A4F8AF826CB4}</ProjectGuid>
  13. <OutputType>Library</OutputType>
  14. <AppDesignerFolder>Properties</AppDesignerFolder>
  15. <AssemblyName>Assembly-CSharp</AssemblyName>
  16. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  17. <FileAlignment>512</FileAlignment>
  18. <BaseDirectory>.</BaseDirectory>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>Temp\bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE;UNITY_2019_4_22;UNITY_2019_4;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;UNITY_PRO_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CROSS_PLATFORM_INPUT;ODIN_INSPECTOR;ODIN_INSPECTOR_3;TextMeshPro;UNITY_POST_PROCESSING_STACK_V2;VRTK_VERSION_3_3_0;VRTK_VERSION_3_3_0_OR_NEWER;VRTK_VERSION_3_1_0_OR_NEWER;VRTK_VERSION_3_2_0_OR_NEWER;VRTK_VERSION_3_2_1_OR_NEWER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <NoWarn>0169</NoWarn>
  29. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>Temp\bin\Release\</OutputPath>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <NoWarn>0169</NoWarn>
  38. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <NoConfig>true</NoConfig>
  42. <NoStdLib>true</NoStdLib>
  43. <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
  44. <ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>
  45. <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
  46. </PropertyGroup>
  47. <PropertyGroup>
  48. <ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  49. <UnityProjectGenerator>Unity/VSTU</UnityProjectGenerator>
  50. <UnityProjectGeneratorVersion>4.11.4.0</UnityProjectGeneratorVersion>
  51. <UnityProjectType>Game:1</UnityProjectType>
  52. <UnityBuildTarget>StandaloneWindows64:19</UnityBuildTarget>
  53. <UnityVersion>2019.4.22f1c1</UnityVersion>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Analyzer Include="C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Analyzers\Microsoft.Unity.Analyzers.dll" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Reference Include="UnityEngine">
  60. <HintPath>F:\UNITY\2019.4.22f1c1\Editor\Data\Managed/UnityEngine/UnityEngine.dll</HintPath>
  61. </Reference>
  62. <Reference Include="UnityEditor">
  63. <HintPath>F:\UNITY\2019.4.22f1c1\Editor\Data\Managed/UnityEditor.dll</HintPath>
  64. </Reference>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Assets\ChivaFramework\Author\AuthorForUsbKey\ClientConfig.cs" />
  68. <Compile Include="Assets\ChivaFramework\Author\AuthorForUsbKey\InfoShow.cs" />
  69. <Compile Include="Assets\ChivaFramework\Author\AuthorForUsbKey\SocketClient.cs" />
  70. <Compile Include="Assets\ChivaFramework\Author\Scripts\Author\CodeAuthorKit.cs" />
  71. <Compile Include="Assets\ChivaFramework\Author\Scripts\Author\CodeAuthorPanel.cs" />
  72. <Compile Include="Assets\ChivaFramework\Author\Scripts\Author\UsbKeyAuthorPanel.cs" />
  73. <Compile Include="Assets\ChivaFramework\Author\Scripts\AuthorTool.cs" />
  74. <Compile Include="Assets\ChivaFramework\Author\Scripts\SpriteAnimation.cs" />
  75. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\Modules\DOTweenModuleAudio.cs" />
  76. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\Modules\DOTweenModulePhysics.cs" />
  77. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\Modules\DOTweenModulePhysics2D.cs" />
  78. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\Modules\DOTweenModuleSprite.cs" />
  79. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\Modules\DOTweenModuleUI.cs" />
  80. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\Modules\DOTweenModuleUnityVersion.cs" />
  81. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\Modules\DOTweenModuleUtils.cs" />
  82. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTweenPro\DOTweenAnimation.cs" />
  83. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTweenPro\DOTweenDeAudio.cs" />
  84. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTweenPro\DOTweenDeUnityExtended.cs" />
  85. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTweenPro\DOTweenProShortcuts.cs" />
  86. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTweenPro\DOTweenTextMeshPro.cs" />
  87. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTweenPro\DOTweenTk2d.cs" />
  88. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\BubbleSpot.cs" />
  89. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\CameraController.cs" />
  90. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\Character.cs" />
  91. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\Chicken.cs" />
  92. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\Doughnut.cs" />
  93. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\ICollectable.cs" />
  94. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\InteractableObject.cs" />
  95. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Scripts\UsecaseSwitcher.cs" />
  96. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\BlitUtility.cs" />
  97. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\BlurType.cs" />
  98. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\CameraUtility.cs" />
  99. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\DOTween support\DOTweenEPO.cs" />
  100. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\KeywordsUtility.cs" />
  101. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\OnPreRenderEventTransferer.cs" />
  102. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\Outlinable.cs" />
  103. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\OutlineCustomPass.cs" />
  104. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\OutlineEffect.cs" />
  105. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\OutlineParameters.cs" />
  106. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\OutlineTarget.cs" />
  107. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\Outliner.cs" />
  108. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\PipelineAssetUtility.cs" />
  109. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\RenderTargetUtility.cs" />
  110. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\RendererFilteringUtility.cs" />
  111. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\SerializedPass.cs" />
  112. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\TargetStateListener.cs" />
  113. <Compile Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Scripts\URP support\URPOutlineFeature.cs" />
  114. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Camera\CameraConfig.cs" />
  115. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Camera\CameraController.cs" />
  116. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Controller\CameraJumpManager.cs" />
  117. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Controller\FreeCamera\FreeCameraController.cs" />
  118. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Controller\FreeCamera\FreeCameraData.cs" />
  119. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Controller\PlayMoveWayController.cs" />
  120. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Controller\ScrollInformation.cs" />
  121. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Controller\TeachOperationController.cs" />
  122. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Controller\VR\LeftHandleController.cs" />
  123. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Data\GlobalData.cs" />
  124. <Compile Include="Assets\ChivaFramework\Framework\Scripts\GRPC\GrpcChannelContronller.cs" />
  125. <Compile Include="Assets\ChivaFramework\Framework\Scripts\GRPC\GrpcServerConfig.cs" />
  126. <Compile Include="Assets\ChivaFramework\Framework\Scripts\GRPC\StaticGlobalConfig.cs" />
  127. <Compile Include="Assets\ChivaFramework\Framework\Scripts\GRPC\protos\OperateInfoGreer.cs" />
  128. <Compile Include="Assets\ChivaFramework\Framework\Scripts\GRPC\protos\OperateInfoGreerGrpc.cs" />
  129. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Init\AsyncLoad.cs" />
  130. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Init\AsyncLoad_Qiushi.cs" />
  131. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Init\AsyncLoad_Single.cs" />
  132. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Init\GameLaunch.cs" />
  133. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Init\GameLaunch_Qiushi.cs" />
  134. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\BianDianZhanProxy.cs" />
  135. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\CameraConfigProxy.cs" />
  136. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\ExamProxy.cs" />
  137. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\Models\CameraConfigInfo.cs" />
  138. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\Models\CorrespondTabelOfEquipmentInfo.cs" />
  139. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\Models\OperationStepDataInfo.cs" />
  140. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\Models\ToolConfigInfo.cs" />
  141. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\Models\TreeNodeInfo.cs" />
  142. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\ProxyBase\DAL.cs" />
  143. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\ProxyBase\DataProxy.cs" />
  144. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\ProxyBase\Interface\IProxy.cs" />
  145. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\ProxyBase\Proxy.cs" />
  146. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\StepListProxy.cs" />
  147. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\ToolConfigProxy.cs" />
  148. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\UITreeMenuProxy.cs" />
  149. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Proxys\UserProxy.cs" />
  150. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Rolling.cs" />
  151. <Compile Include="Assets\ChivaFramework\Framework\Scripts\RollingByTime.cs" />
  152. <Compile Include="Assets\ChivaFramework\Framework\Scripts\ScaleContronl.cs" />
  153. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Test.cs" />
  154. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Tool\ChangeChildMat.cs" />
  155. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Tool\DragScrollRect.cs" />
  156. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Tool\GeneralMethod.cs" />
  157. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Tool\Text\TextLoader.cs" />
  158. <Compile Include="Assets\ChivaFramework\Framework\Scripts\Tool\TextGradient.cs" />
  159. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\MicrowaterMeasurement\DetectionPanel.cs" />
  160. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\MicrowaterMeasurement\PowerOffPanel.cs" />
  161. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\MicrowaterMeasurement\PowerOffPanel\ButtonOperation.cs" />
  162. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\MicrowaterMeasurement\PreheatPanel.cs" />
  163. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\MicrowaterMeasurement\PreheatPanel\OperationImageState.cs" />
  164. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\MicrowaterMeasurement\ResultPanel.cs" />
  165. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\PCController\ChallengeManagerForPC.cs" />
  166. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\PCController\ExamManagerForPC.cs" />
  167. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\PCController\OperateSetting.cs" />
  168. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\PCController\PranticeManagerForPC.cs" />
  169. <Compile Include="Assets\ChivaFramework\Framework\Scripts\UI\SelectToggleItem.cs" />
  170. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AniData.cs" />
  171. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationCoroutine\AnimationCoroutine.cs" />
  172. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_ActiveObjs.cs" />
  173. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_CameraLocation.cs" />
  174. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_CloseHandChe.cs" />
  175. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_Countdown.cs" />
  176. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_DoScale.cs" />
  177. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_IntervalAnimation.cs" />
  178. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_JDAnimation.cs" />
  179. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_MoveAndRotateByDistance.cs" />
  180. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_MoveByPath.cs" />
  181. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_MoveByPathItem.cs" />
  182. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_MoveRotateTool.cs" />
  183. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_MoveToTarget.cs" />
  184. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_OpenHandChe.cs" />
  185. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_RotateBySelf.cs" />
  186. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_SetUnityAnimationPose.cs" />
  187. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_SimpleMoveRot.cs" />
  188. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_ToolAnimationItem.cs" />
  189. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_UIStatusSetting.cs" />
  190. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_UVOffset.cs" />
  191. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_UnityAnimation.cs" />
  192. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_UnityEvent.cs" />
  193. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_WaitAudioClipTime.cs" />
  194. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_WaitFrameToActiveObjs.cs" />
  195. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\AniDriver_WaitTime.cs" />
  196. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\HangDiao\HangDiaoController.cs" />
  197. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\MovePathItem\MovePathItem.cs" />
  198. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\MovePathItem\MovePathManager.cs" />
  199. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\SimpleMoveItem\SimpleMoveItem.cs" />
  200. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\Bezier\BezierCurve.cs" />
  201. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\Bezier\MeshPoint.cs" />
  202. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\Bezier\SimpleBezierCurvePath.cs" />
  203. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\Bezier\SimpleBezierCurvePathAlonger.cs" />
  204. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\ToolAnimationBase.cs" />
  205. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\ToolAnimationGroup\ToolAni_BanShou.cs" />
  206. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\ToolAnimationGroup\ToolTest01.cs" />
  207. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver-Example\ToolAnimationItem\ToolAnimationItem.cs" />
  208. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriver.cs" />
  209. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationDriverBase.cs" />
  210. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationManager.cs" />
  211. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationTool-Example\AnimationDataEditor.cs" />
  212. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationTool-Example\AnimationPlayer_Example.cs" />
  213. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationTool-Example\AnimationPlayer_Example2.cs" />
  214. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationTool-Example\CreateProcessManagerByAnimationDataEditor.cs" />
  215. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationTool-Example\EnterCurrentAniData.cs" />
  216. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationTool-Example\OperationCreateEditor.cs" />
  217. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationTool-Example\UnityAnimationDataCreator.cs" />
  218. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\AnimationDriver\AnimationToolkit.cs" />
  219. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\BuilderDriver\OpDataInfoManager.cs" />
  220. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\BuilderDriver\OperationListener.cs" />
  221. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\LinnerMapping-Example\CVR_LinnnerMapping_Animator.cs" />
  222. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\OperationData-Example\OpTrigger_PlaySoundElement.cs" />
  223. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\OperationData-Example\OpTrigger_VRObjTriggerElement.cs" />
  224. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\OperationData-Example\OpTrigger_VRObjValueElement.cs" />
  225. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\OperationData-Example\OpTrigger_VRToolGrabElement.cs" />
  226. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\OperationData-Example\OpTrigger_VRToolTipsElement.cs" />
  227. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\OperationData-Example\OpTrigger_VRToolTriggerElement.cs" />
  228. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\OperationData-Example\OpTrigger_VRToolValueElement.cs" />
  229. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\Other\CVR_ValueSlider.cs" />
  230. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\PlatformChange\CVR_ToolPackConfig.cs" />
  231. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\PlatformChange\ChangePlatform.cs" />
  232. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\PlatformChange\PlatFormManager.cs" />
  233. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_JuanChi.cs" />
  234. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_SimPointDirMove.cs" />
  235. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_Spot.cs" />
  236. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_TriggerStateActiveObj.cs" />
  237. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_TriggerValueLinnerMapping.cs" />
  238. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_TriggerValuePliers.cs" />
  239. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_TriggerValueSetObjPos.cs" />
  240. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\CVR_SimulationAni_TriggerValueYaJieQian.cs" />
  241. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\SimulationAni-Example\SpotRecastItem\RayCastItem_Spot.cs" />
  242. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\TriggerAni-Example\CVR_TriggerAni_Animation.cs" />
  243. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\TriggerAni-Example\CVR_TriggerAni_JiaReQiangCombine.cs" />
  244. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\TriggerAni-Example\CVR_TriggerAni_JiaoDai.cs" />
  245. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\TriggerAni-Example\CVR_TriggerAni_Qingjiejin.cs" />
  246. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\TriggerAni-Example\CVR_TriggerAni_RotAround.cs" />
  247. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\ValueAni-Example\CVR_ValueAni_Animation.cs" />
  248. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\ValueAni-Example\CVR_ValueAni_GangJu.cs" />
  249. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\ValueAni-Example\CVR_ValueAni_JiaoDai.cs" />
  250. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\ValueAni-Example\CVR_ValueAni_PingCuo.cs" />
  251. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\ValueAni-Example\CVR_ValueAni_PlayAniByRotAround.cs" />
  252. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Example\Scripts\ValueAni-Example\CVR_VauleAni_ShaZhi.cs" />
  253. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Assemble\AssembleTool\CVR_Assemble.cs" />
  254. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Assemble\AssembleTool\CVR_AssembleBase.cs" />
  255. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Assemble\AssembleTool\CombineMeshTool\CombineMeshElement.cs" />
  256. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Assemble\AssembleTool\CombineMeshTool\CombineMeshTool.cs" />
  257. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Hint\CVR_HintItem.cs" />
  258. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Hint\CVR_HintManager.cs" />
  259. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Interactable\CVR_InteractableBase.cs" />
  260. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Interactable\CVR_ToolTypeFlags.cs" />
  261. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Manager\CVR_ToolManager.cs" />
  262. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\Mapping\CVR_LinnerMapping.cs" />
  263. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\SimulationTool\CVR_MathTool.cs" />
  264. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\SimulationTool\CVR_SimulationAniBase.cs" />
  265. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\SimulationTool\CVR_SimulationTool.cs" />
  266. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\SimulationTool\SimulationPoint\CVR_SimulationPoint.cs" />
  267. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\SimulationTool\SimulationPoint\CVR_SimulationPool.cs" />
  268. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerObject\CVR_TriggerObj.cs" />
  269. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerObject\CVR_TriggerObjBase.cs" />
  270. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerTool\CVR_TriggerAniBase.cs" />
  271. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerTool\CVR_TriggerElement.cs" />
  272. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerTool\CVR_TriggerList.cs" />
  273. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerTool\CVR_TriggerTool.cs" />
  274. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerTool\CVR_ValueAniBase.cs" />
  275. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\Scripts\TriggerTool\CVR_ValueElement.cs" />
  276. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\VRTK-Expand\CVR_InteractableVRTK.cs" />
  277. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\CVR_Interactable\VRTK-Expand\CVR_InteractableVRTK_ChildOfController.cs" />
  278. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\Bind\Mark.cs" />
  279. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\Bind\MarkContainer.cs" />
  280. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\PlayMode\OpPlay_Null.cs" />
  281. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\ToggleMode\OpToggle_Material.cs" />
  282. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_GoNext.cs" />
  283. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_InputKey.cs" />
  284. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_MouseClickObj.cs" />
  285. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_OperationButtonClick.cs" />
  286. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_Toolbackpack\OpTrigger_ToolPack.cs" />
  287. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_Toolbackpack\ToolPackController\ToolElement.cs" />
  288. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_Toolbackpack\ToolPackController\ToolPackConfig.cs" />
  289. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_Toolbackpack\ToolPackController\ToolPackController.cs" />
  290. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\TriggerMode\OpTrigger_Toolbackpack\ToolPackController\ToolPackUILogic.cs" />
  291. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData-Example\ValueMode\OpTrigger_Slider.cs" />
  292. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationDataBase.cs" />
  293. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData_PlayMode.cs" />
  294. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData_ToggleMode.cs" />
  295. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData_TriggerMode.cs" />
  296. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationData_ValueMode.cs" />
  297. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationLogicBase.cs" />
  298. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\OperationDriver\OperationManager.cs" />
  299. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Example\ProcessState-Example\ProcessState_CurvedUI.cs" />
  300. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Example\ProcessState_Active\PB_OPGroupState_Active.cs" />
  301. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Example\ProcessState_Active\ProcessState_Active.cs" />
  302. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Example\ProcessState_VRCameraReset.cs" />
  303. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Example\RuningJumpProcess_Example.cs" />
  304. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\PreprocessBase.cs" />
  305. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\PreprocessBase_Example\Preprocess_VoiceAndCamera.cs" />
  306. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\OpDataRule\OpDataGroup_RuleBase.cs" />
  307. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\OpDataRule\Rule_AnyFinished.cs" />
  308. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\OpDataRule\Rule_ConditionFinished.cs" />
  309. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\OpDataRule\Rule_FreeFinished.cs" />
  310. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\OpDataRule\Rule_OrderFinished.cs" />
  311. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\PB_JumpOp.cs" />
  312. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\PB_OpData.cs" />
  313. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase-Example\PB_OpDataGroup.cs" />
  314. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessBase.cs" />
  315. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessElement.cs" />
  316. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\Scripts\Manager\ProcessManagement.cs" />
  317. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\Graph\StateGraph.cs" />
  318. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\Nodes\CloseStateNode.cs" />
  319. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\Nodes\ConditionStateNode.cs" />
  320. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\Nodes\EnterStateNode.cs" />
  321. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\Nodes\ExitStateNode.cs" />
  322. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\Nodes\RunStateNode.cs" />
  323. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\Nodes\StateNode.cs" />
  324. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\Process\StateGraph\ProcedureStateGraphController.cs" />
  325. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\ToolManager\CameraMoveToTarget\CameraLerpMoveController.cs" />
  326. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\ToolManager\CameraMoveToTarget\ProcessEvent_CameraMove.cs" />
  327. <Compile Include="Assets\ChivaFramework\Framework\SimulationToolDev\ToolManager\ToolManager.cs" />
  328. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\CallbackNotification.cs" />
  329. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\Example_ChangeLanguage.cs" />
  330. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\Example_LocalizedString.cs" />
  331. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\GlobalParametersExample.cs" />
  332. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\NGUI_LanguagePopup.cs" />
  333. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\RealTimeTranslation.cs" />
  334. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\RegisterBundlesManager.cs" />
  335. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Examples\Common\Scripts\ToggleLanguage.cs" />
  336. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Configurables\PersistentStorage.cs" />
  337. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Configurables\SpecializationManager.cs" />
  338. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\EventCallback.cs" />
  339. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\GoogleLanguages.cs" />
  340. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\GoogleTranslation.cs" />
  341. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\GoogleTranslation_Post.cs" />
  342. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\GoogleTranslation_Queries.cs" />
  343. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\SimpleJSON.cs" />
  344. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\TranslationJob.cs" />
  345. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\TranslationJob_GET.cs" />
  346. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\TranslationJob_Main.cs" />
  347. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\TranslationJob_POST.cs" />
  348. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Google\TranslationJob_WEB.cs" />
  349. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageData.cs" />
  350. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSource.cs" />
  351. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceAsset.cs" />
  352. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData.cs" />
  353. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Assets.cs" />
  354. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Export_CSV.cs" />
  355. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Export_Google.cs" />
  356. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Import_CSV.cs" />
  357. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Import_Google.cs" />
  358. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Languages.cs" />
  359. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Misc.cs" />
  360. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LanguageSource\LanguageSourceData_Terms.cs" />
  361. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LocalizationReader.cs" />
  362. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Localize.cs" />
  363. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\LocalizeDropdown.cs" />
  364. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager.cs" />
  365. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager_Language.cs" />
  366. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager_Parameters.cs" />
  367. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager_RTL.cs" />
  368. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager_Sources.cs" />
  369. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager_SystemLanguage.cs" />
  370. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager_Targets.cs" />
  371. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Manager\LocalizationManager_Translation.cs" />
  372. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\ILocalizeTarget.cs" />
  373. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\ILocalizeTargetDesc.cs" />
  374. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_2DToolKit_Label.cs" />
  375. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_2DToolKit_Sprite.cs" />
  376. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_NGUI_Label.cs" />
  377. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_NGUI_Sprite.cs" />
  378. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_NGUI_Texture.cs" />
  379. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_SVGImporter_Image.cs" />
  380. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_SVGImporter_Renderer.cs" />
  381. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_TextMeshPro_Label.cs" />
  382. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_TextMeshPro_UGUI.cs" />
  383. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityStandard_AudioSource.cs" />
  384. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityStandard_Child.cs" />
  385. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityStandard_MeshRenderer.cs" />
  386. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityStandard_Prefab.cs" />
  387. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityStandard_SpriteRenderer.cs" />
  388. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityStandard_TextMesh.cs" />
  389. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityUI_Image.cs" />
  390. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityUI_RawImage.cs" />
  391. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Targets\LocalizeTarget_UnityUI_Text.cs" />
  392. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\TermData.cs" />
  393. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\AutoChangeCultureInfo.cs" />
  394. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\CoroutineManager.cs" />
  395. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\CustomLocalizeCallback.cs" />
  396. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\HindiFixer.cs" />
  397. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\I2Utils.cs" />
  398. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\LocalizationParamsManager.cs" />
  399. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\LocalizedString.cs" />
  400. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\RTLFixer.cs" />
  401. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\RegisterGlobalParameters.cs" />
  402. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\ResourceManager.cs" />
  403. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\SetLanguage.cs" />
  404. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\SetLanguageDropdown.cs" />
  405. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\Scripts\Utils\StringObfuscator.cs" />
  406. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Command\BuyLifeCommand.cs" />
  407. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Command\KillEnemyCommand.cs" />
  408. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Command\MissCommand.cs" />
  409. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Command\StartGameCommand.cs" />
  410. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Event\GamePassEvent.cs" />
  411. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Event\GameStartEvent.cs" />
  412. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Event\OnCountDownEndEvent.cs" />
  413. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Event\OnEnemyKillEvent.cs" />
  414. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Event\OnMissEvent.cs" />
  415. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Game\Enemy.cs" />
  416. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Game\ErrorArea.cs" />
  417. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Game\Game.cs" />
  418. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Model\GameModel.cs" />
  419. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\PointGame.cs" />
  420. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\System\IAchievementSystem.cs" />
  421. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\System\ICountDownSystem.cs" />
  422. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\System\IScoreSystem.cs" />
  423. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\UI\GamePanel.cs" />
  424. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\UI\GamePassPanel.cs" />
  425. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\UI\GameStartPanel.cs" />
  426. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\UI\UI.cs" />
  427. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\ArchitectureExample\Scripts\Utility\IStorage.cs" />
  428. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\Event\TypeEventSystemExample\1.Usage\TypeEventSystemExample.cs" />
  429. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\Event\TypeEventSystemExample\2.InterfaceMode\InterfaceModeExample.cs" />
  430. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\IOCExample\IOCFrameworkExample.cs" />
  431. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\IOCExample\InjectExample.cs" />
  432. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\IOCExample\MainContainer.cs" />
  433. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Architecture\Examples\IOCExample\NetworkExampleService.cs" />
  434. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\FromUnityToDll\InitFromUnityToDll.cs" />
  435. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\FromUnityToDll\InputFromUnityToDll.cs" />
  436. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\FromUnityToDll\PlatformFromUnityToDll.cs" />
  437. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\FromUnityToDll\SettingFromUnityToDll.cs" />
  438. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\BZip2\BZip2.cs" />
  439. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\BZip2\BZip2Constants.cs" />
  440. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\BZip2\BZip2Exception.cs" />
  441. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\BZip2\BZip2InputStream.cs" />
  442. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\BZip2\BZip2OutputStream.cs" />
  443. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Checksum\Adler32.cs" />
  444. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Checksum\BZip2Crc.cs" />
  445. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Checksum\Crc32.cs" />
  446. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Checksum\IChecksum.cs" />
  447. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Core\FileSystemScanner.cs" />
  448. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Core\INameTransform.cs" />
  449. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Core\IScanFilter.cs" />
  450. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Core\NameFilter.cs" />
  451. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Core\PathFilter.cs" />
  452. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Core\StreamUtils.cs" />
  453. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Core\WindowsPathUtils.cs" />
  454. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Encryption\PkzipClassic.cs" />
  455. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Encryption\ZipAESStream.cs" />
  456. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Encryption\ZipAESTransform.cs" />
  457. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\GZip\GZip.cs" />
  458. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\GZip\GZipConstants.cs" />
  459. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\GZip\GZipException.cs" />
  460. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\GZip\GzipInputStream.cs" />
  461. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\GZip\GzipOutputStream.cs" />
  462. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Lzw\LzwConstants.cs" />
  463. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Lzw\LzwException.cs" />
  464. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Lzw\LzwInputStream.cs" />
  465. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\SharpZipBaseException.cs" />
  466. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\InvalidHeaderException.cs" />
  467. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\TarArchive.cs" />
  468. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\TarBuffer.cs" />
  469. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\TarEntry.cs" />
  470. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\TarException.cs" />
  471. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\TarHeader.cs" />
  472. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\TarInputStream.cs" />
  473. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Tar\TarOutputStream.cs" />
  474. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\Deflater.cs" />
  475. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\DeflaterConstants.cs" />
  476. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\DeflaterEngine.cs" />
  477. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\DeflaterHuffman.cs" />
  478. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\DeflaterPending.cs" />
  479. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\Inflater.cs" />
  480. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\InflaterDynHeader.cs" />
  481. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\InflaterHuffmanTree.cs" />
  482. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\PendingBuffer.cs" />
  483. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\Streams\DeflaterOutputStream.cs" />
  484. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\Streams\InflaterInputStream.cs" />
  485. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\Streams\OutputWindow.cs" />
  486. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\Compression\Streams\StreamManipulator.cs" />
  487. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\FastZip.cs" />
  488. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\IEntryFactory.cs" />
  489. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\WindowsNameTransform.cs" />
  490. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipConstants.cs" />
  491. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipEntry.cs" />
  492. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipEntryFactory.cs" />
  493. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipException.cs" />
  494. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipExtraData.cs" />
  495. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipFile.cs" />
  496. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipHelperStream.cs" />
  497. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipInputStream.cs" />
  498. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipNameTransform.cs" />
  499. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ICSharpCode.SharpZipLib\Zip\ZipOutputStream.cs" />
  500. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\ZipFileHelper.cs" />
  501. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\0.DelayNode\DelayNodeExample.cs" />
  502. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\1.EventNode\EventNodeExample.cs" />
  503. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\2.SequenceNode\SequenceNodeExample.cs" />
  504. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\3.CustomAction\CustomActionExample.cs" />
  505. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\4.DotweenAction\DotweenActionExample.cs" />
  506. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\5.WWWAction\WWWActionExample.cs" />
  507. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\6.TimerDemo\TimerExample.cs" />
  508. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\7.Timeline\TimelineExample.cs" />
  509. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\8.DelayFrameAction\DelayFrameActionExample.cs" />
  510. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Action\ActionLifetimeExample.cs" />
  511. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Action\DelayExample.cs" />
  512. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Action\EventActionExample.cs" />
  513. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Action\SayHelloWorldActionExample.cs" />
  514. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Action\UntilActionExample.cs" />
  515. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Custom\HelloWorldActionExample.cs" />
  516. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Custom\NodeActionLifetimeExample.cs" />
  517. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\FSM\ActionKitFSMExample.cs" />
  518. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\FSM\EnumStateMachineExample.cs" />
  519. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Node\DelaySequenceExample.cs" />
  520. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Node\RepeatNodeExample.cs" />
  521. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Node\SpawnNodeExample.cs" />
  522. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\Node\TimelineNodeExample.cs" />
  523. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\NodeExample.cs" />
  524. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\NodeSystemExample.cs" />
  525. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ActionKit\Example\TestNodeSystemGC\TestNodeSystemGC.cs" />
  526. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Example\Audio\AudioTest.cs" />
  527. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Example\AudioExample.cs" />
  528. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\ActionKitAction\AudioSound.cs" />
  529. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\ActionKitAction\AudioVoice.cs" />
  530. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\AudioKit.cs" />
  531. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\AudioKitSettings.cs" />
  532. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\AudioManager.cs" />
  533. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\AudioPlayer.cs" />
  534. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Deprecated.cs" />
  535. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\AddRetainAudioMsg.cs" />
  536. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\AduioMsgPlayVoiceLoop.cs" />
  537. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\AudioMsgWithBool.cs" />
  538. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\AudioMsgWithNode.cs" />
  539. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\AudioMusicMsg.cs" />
  540. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\AudioSoundMsg.cs" />
  541. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\AudioVoiceMsg.cs" />
  542. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Msg\RemoteRetainAudioMsg.cs" />
  543. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Timer\BinaryHeap.cs" />
  544. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Timer\IBinaryHeapElement.cs" />
  545. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Timer\TimeItem.cs" />
  546. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Timer\TimeUtil.cs" />
  547. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Timer\Timer.cs" />
  548. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Timer\TimerHelper.cs" />
  549. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\AudioKit\Scripts\Timer\TimerManager.cs" />
  550. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\Pool\CallPool.cs" />
  551. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\RefCounter\RefCounterExample.cs" />
  552. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\SingletonExample\0.Singleton\Singleton.cs" />
  553. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\SingletonExample\1.MonoSingleton\MonoSingletonExample.cs" />
  554. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\SingletonExample\2.SingletonProperty\SingletonProperty.cs" />
  555. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\SingletonExample\3.MonoSingletonProperty\MonoSingletonProperty.cs" />
  556. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\SingletonExample\4.MonoSingletonPath\MonoSingletonPath.cs" />
  557. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\SingletonExample\5.PersistentMonoSingleton\PersistentMonoSingletonExample.cs" />
  558. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\CacheKit\Example\SingletonExample\6.ReplaceableMonoSingleton\ReplaceableMonoSingletonExample.cs" />
  559. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\0.BasicUsage\ResKitExample.cs" />
  560. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\1.LoadAssetBundleResExample\AssetBundleResExample.cs" />
  561. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\10.CustomResExample\CustomResExample.cs" />
  562. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\2.LoadResourcesResExample\LoadResourcesResExample.cs" />
  563. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\3.LoadSceneExample\LoadSceneExample.cs" />
  564. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\4.ResLoaderRelateUnloadAsset\ResLoaderRelateUnloadAssetExample.cs" />
  565. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\5.LoadSpriteAtlasExample\TestSpriteAtlas.cs" />
  566. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\7.LoadSceneExample\ResKitExampleMain.cs" />
  567. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\8.NetImageExample\ImageLoaderExample.cs" />
  568. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\ResKit\Example\8.NetImageExample\NetImageExample.cs" />
  569. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\StaticExtensions\Example\AnimatorExample.cs" />
  570. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\StaticExtensions\Example\ExtensionExample.cs" />
  571. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\StaticExtensions\Example\GameObjectExample.cs" />
  572. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\StaticExtensions\Example\TransformExample.cs" />
  573. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\Trigger2DCheck\Example\Trigger2DCheckExample.cs" />
  574. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\Trigger2DCheck\Trigger2DCheck.cs" />
  575. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\11.ManagerOfManagersExample\Enemy.cs" />
  576. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\11.ManagerOfManagersExample\EnemyEvent.cs" />
  577. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\11.ManagerOfManagersExample\EnemyManager.cs" />
  578. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\11.ManagerOfManagersExample\ManagerOfManagersExample.cs" />
  579. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\11.ManagerOfManagersExample\MgrId.cs" />
  580. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\10.MultiPanelExample\MultiPanelExample.cs" />
  581. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\10.MultiPanelExample\Scripts\UI\UIMultiPanel.Designer.cs" />
  582. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\10.MultiPanelExample\Scripts\UI\UIMultiPanel.cs" />
  583. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\QEventSystemExample\EventReceiverExample.cs" />
  584. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\QEventSystemExample\EventSenderExample.cs" />
  585. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Example.cs" />
  586. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UIABCPanel.Designer.cs" />
  587. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UIABCPanel.cs" />
  588. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UIGamePanel.Designer.cs" />
  589. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UIGamePanel.cs" />
  590. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UIMenuPanel.Designer.cs" />
  591. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UIMenuPanel.cs" />
  592. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UISectionPanel.Designer.cs" />
  593. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UISectionPanel.cs" />
  594. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UISettingPanel.Designer.cs" />
  595. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\UI\UISettingPanel.cs" />
  596. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\Scripts\Util\UIEventID.cs" />
  597. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\UIKitExample_LoadFromResources\Scripts\UI\UISomePanelFromResources.Designer.cs" />
  598. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\UIKitExample_LoadFromResources\Scripts\UI\UISomePanelFromResources.cs" />
  599. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIExample\UIKitExample_LoadFromResources\Scripts\UIKitExample_LoadFromResoruces.cs" />
  600. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Example\UIRootTest\UIRootTestExample.cs" />
  601. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\ActionKitSupport\UIKitCameraRenderMode.cs" />
  602. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\ActionKitSupport\UIKitClosePanel.cs" />
  603. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\ActionKitSupport\UIKitOpenPanel.cs" />
  604. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\ActionKitSupport\UIKitScreenOverlayRenderMode.cs" />
  605. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\ActionKitSupport\UIKitSetResolution.cs" />
  606. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Bind.cs" />
  607. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Component\UIComponent.cs" />
  608. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Component\UIElement.cs" />
  609. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Component\UIElementList.cs" />
  610. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Component\UIScrollPage.cs" />
  611. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Component\UIScrollPageMark.cs" />
  612. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Deprecated.cs" />
  613. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\DontDestroyOnLoad.cs" />
  614. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Empty4Raycast.cs" />
  615. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Extension\QUICameraUtil.cs" />
  616. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Extension\UIPointerDownEventListener.cs" />
  617. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Extension\UIPointerUpEventListener.cs" />
  618. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Extension\UIRectTransform.cs" />
  619. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Extension\UISpriteAnimation.cs" />
  620. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Helper\InputFieldEnterSubmitTrigger.cs" />
  621. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Hide.cs" />
  622. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\IPanel.cs" />
  623. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\PanelInfo.cs" />
  624. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\PanelOpenType.cs" />
  625. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\PanelSearchKeys.cs" />
  626. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Script\UIPanelTester.cs" />
  627. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIDefaultPanel.cs" />
  628. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIKit.cs" />
  629. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIKitConfig.cs" />
  630. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UILevel.cs" />
  631. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIManager.cs" />
  632. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIMark.cs" />
  633. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIPanel.cs" />
  634. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIPanelStack.cs" />
  635. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIPanelTable.cs" />
  636. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\UIRoot.cs" />
  637. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Util\CollisionTriggerListener.cs" />
  638. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Util\UIEffectHelper.cs" />
  639. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Toolkits\UIKit\Scripts\Util\UIEventListener.cs" />
  640. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Scripting\ScriptKit\Framework\IScript.cs" />
  641. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Scripting\ScriptKit\Framework\ReflectionScript.cs" />
  642. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Scripting\ScriptKit\Framework\ScriptKit.cs" />
  643. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\QFrameworkData\QAssets.cs" />
  644. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Extras\SteamVR_GazeTracker.cs" />
  645. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Extras\SteamVR_LaserPointer.cs" />
  646. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Extras\SteamVR_Teleporter.cs" />
  647. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Extras\SteamVR_TestThrow.cs" />
  648. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Extras\SteamVR_TestTrackedCamera.cs" />
  649. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Extras\SteamVR_TrackedController.cs" />
  650. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\BodyCollider.cs" />
  651. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\CircularDrive.cs" />
  652. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\ComplexThrowable.cs" />
  653. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\ControllerHoverHighlight.cs" />
  654. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\CustomEvents.cs" />
  655. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\DebugUI.cs" />
  656. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\DestroyOnDetachedFromHand.cs" />
  657. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\DestroyOnParticleSystemDeath.cs" />
  658. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\DestroyOnTriggerEnter.cs" />
  659. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\DistanceHaptics.cs" />
  660. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\DontDestroyOnLoad.cs" />
  661. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\EnumFlags.cs" />
  662. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\FallbackCameraController.cs" />
  663. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\Hand.cs" />
  664. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\HapticRack.cs" />
  665. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\HideOnHandFocusLost.cs" />
  666. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\IgnoreHovering.cs" />
  667. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\InputModule.cs" />
  668. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\Interactable.cs" />
  669. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\InteractableButtonEvents.cs" />
  670. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\InteractableHoverEvents.cs" />
  671. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\ItemPackage.cs" />
  672. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\ItemPackageReference.cs" />
  673. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\ItemPackageSpawner.cs" />
  674. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\LinearAnimation.cs" />
  675. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\LinearAnimator.cs" />
  676. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\LinearAudioPitch.cs" />
  677. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\LinearBlendshape.cs" />
  678. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\LinearDisplacement.cs" />
  679. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\LinearDrive.cs" />
  680. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\LinearMapping.cs" />
  681. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\PlaySound.cs" />
  682. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\Player.cs" />
  683. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\SeeThru.cs" />
  684. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\SleepOnAwake.cs" />
  685. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\SoundDeparent.cs" />
  686. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\SoundPlayOneshot.cs" />
  687. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\SpawnAndAttachAfterControllerIsTracking.cs" />
  688. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\SpawnAndAttachToHand.cs" />
  689. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\SpawnRenderModel.cs" />
  690. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\Throwable.cs" />
  691. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\UIElement.cs" />
  692. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\Unparent.cs" />
  693. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\Util.cs" />
  694. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Scripts\VelocityEstimator.cs" />
  695. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Hints\Scripts\ControllerButtonHints.cs" />
  696. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\ArcheryTarget.cs" />
  697. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\Arrow.cs" />
  698. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\ArrowHand.cs" />
  699. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\ArrowheadRotation.cs" />
  700. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\Balloon.cs" />
  701. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\BalloonColliders.cs" />
  702. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\BalloonHapticBump.cs" />
  703. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\BalloonSpawner.cs" />
  704. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\ExplosionWobble.cs" />
  705. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\FireSource.cs" />
  706. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\Longbow.cs" />
  707. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Longbow\Scripts\SoundBowClick.cs" />
  708. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Samples\Scripts\ControllerHintsExample.cs" />
  709. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Samples\Scripts\InteractableExample.cs" />
  710. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\AllowTeleportWhileAttachedToHand.cs" />
  711. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\ChaperoneInfo.cs" />
  712. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\IgnoreTeleportTrace.cs" />
  713. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\Teleport.cs" />
  714. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\TeleportArc.cs" />
  715. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\TeleportArea.cs" />
  716. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\TeleportMarkerBase.cs" />
  717. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Scripts\TeleportPoint.cs" />
  718. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Plugins\openvr_api.cs" />
  719. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR.cs" />
  720. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Camera.cs" />
  721. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_CameraFlip.cs" />
  722. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_CameraMask.cs" />
  723. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Controller.cs" />
  724. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_ControllerManager.cs" />
  725. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Ears.cs" />
  726. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Events.cs" />
  727. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_ExternalCamera.cs" />
  728. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Fade.cs" />
  729. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Frustum.cs" />
  730. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_GameView.cs" />
  731. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_IK.cs" />
  732. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_LoadLevel.cs" />
  733. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Menu.cs" />
  734. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Overlay.cs" />
  735. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_PlayArea.cs" />
  736. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Render.cs" />
  737. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_RenderModel.cs" />
  738. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Skybox.cs" />
  739. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_SphericalProjection.cs" />
  740. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Stats.cs" />
  741. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_TestController.cs" />
  742. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_TrackedCamera.cs" />
  743. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_TrackedObject.cs" />
  744. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_UpdatePoses.cs" />
  745. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Scripts\SteamVR_Utils.cs" />
  746. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[001 - Interactions] ControllerEvents\Scripts\VRTKExample_ControllerEventsDelegateListeners.cs" />
  747. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[002 - Pointers] StraightPointer\Scripts\VRTKExample_PointerObjectHighlighterActivator.cs" />
  748. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[003 - Pointers] BezierPointer\Scripts\VRTKExample_BezierPointerChanger.cs" />
  749. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[003 - Pointers] BezierPointer\Scripts\VRTKExample_BezierPointerCustomStyles.cs" />
  750. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[003 - Pointers] BezierPointer\Scripts\VRTKExample_BezierPointerDefaults.cs" />
  751. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[003 - Pointers] BezierPointer\Scripts\VRTKExample_BezierPointerLineRenderer.cs" />
  752. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[005 - Interactions] InteractableObjects\Scripts\ControllableReactor.cs" />
  753. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[005 - Interactions] InteractableObjects\Scripts\SnapDropZoneToggle.cs" />
  754. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[005 - Interactions] InteractableObjects\Scripts\ToggleCustomHands.cs" />
  755. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[005 - Interactions] InteractableObjects\Scripts\TogglePointerInteraction.cs" />
  756. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[006 - Locomotion] MovementTypes\Scripts\ClimbableHandLift.cs" />
  757. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[006 - Locomotion] MovementTypes\Scripts\ElevatorControl.cs" />
  758. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[006 - Locomotion] MovementTypes\Scripts\IgnoreTeleportDummy.cs" />
  759. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[006 - Locomotion] MovementTypes\Scripts\OptionsMenu.cs" />
  760. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[006 - Locomotion] MovementTypes\Scripts\ToggleGameObject.cs" />
  761. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[006 - Locomotion] MovementTypes\Scripts\ToggleGameObjectSlider.cs" />
  762. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[007 - Interactions] InteractionHelpers\Scripts\PanelMenuSaucerGrid.cs" />
  763. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SceneResources\[007 - Interactions] InteractionHelpers\Scripts\PanelMenuSphereSlider.cs" />
  764. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Prefabs\AnimatedBezierPointer\Scripts\BeamRotator.cs" />
  765. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Prefabs\FireExtinguisher\Scripts\FireExtinguisher_Base.cs" />
  766. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Prefabs\FireExtinguisher\Scripts\FireExtinguisher_Sprayer.cs" />
  767. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Prefabs\Guns\Scripts\GunShoot.cs" />
  768. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Prefabs\Lamp\Scripts\InteractableLamp.cs" />
  769. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Prefabs\LightSaber\Scripts\ScaleOnUse.cs" />
  770. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Prefabs\Whirlygig\Scripts\InteractableWhirlyGig.cs" />
  771. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Scripts\VRTKExample_FixSetup.cs" />
  772. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Scripts\VRTKExample_ObjectListToggle.cs" />
  773. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Scripts\VRTKExample_OptionTile.cs" />
  774. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Scripts\VRTKExample_OptionTilePointerSelector.cs" />
  775. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Examples\ExampleResources\SharedResources\Scripts\VRTKExample_SceneSwitcher.cs" />
  776. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Archery\Arrow.cs" />
  777. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Archery\ArrowNotch.cs" />
  778. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Archery\ArrowSpawner.cs" />
  779. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Archery\BowAim.cs" />
  780. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Archery\BowAnimation.cs" />
  781. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Archery\BowHandle.cs" />
  782. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Archery\Follow.cs" />
  783. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\AutoRotation.cs" />
  784. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Breakable_Cube.cs" />
  785. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\ButtonReactor.cs" />
  786. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\ControlReactor.cs" />
  787. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Controller_Hand.cs" />
  788. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Controller_Menu.cs" />
  789. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\ControlsMenu.cs" />
  790. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\ExcludeTeleport.cs" />
  791. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\FireExtinguisher_Base.cs" />
  792. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\FireExtinguisher_Sprayer.cs" />
  793. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Gun.cs" />
  794. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\HandLift.cs" />
  795. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Lamp.cs" />
  796. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\LightSaber.cs" />
  797. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Menu_Color_Changer.cs" />
  798. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Menu_Container_Object_Colors.cs" />
  799. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Menu_Object_Spawner.cs" />
  800. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\ModelVillage_TeleportLocation.cs" />
  801. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\MoveBlock.cs" />
  802. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Openable_Door.cs" />
  803. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\PanelMenu\PanelMenuDemoFlyingSaucer.cs" />
  804. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\PanelMenu\PanelMenuDemoSphere.cs" />
  805. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\PanelMenu\PanelMenuUIGrid.cs" />
  806. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\PanelMenu\PanelMenuUISlider.cs" />
  807. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\PusherStickyToggle.cs" />
  808. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\RC_Car.cs" />
  809. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\RC_Car_Controller.cs" />
  810. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\RealGun.cs" />
  811. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\RealGun_SafetySwitch.cs" />
  812. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\RealGun_Slide.cs" />
  813. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Remote_Beam.cs" />
  814. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Remote_Beam_Controller.cs" />
  815. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\RendererOffOnDash.cs" />
  816. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\SceneChanger.cs" />
  817. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\SceneLoader.cs" />
  818. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\SnapDropZoneGroup_Switcher.cs" />
  819. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Sphere_Spawner.cs" />
  820. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Sword.cs" />
  821. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Tests\VRTK_BaseTest.cs" />
  822. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Tests\VRTK_ControllerReference_Setup.cs" />
  823. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\UI_Interactions.cs" />
  824. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\UI_Keyboard.cs" />
  825. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\UseRotate.cs" />
  826. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\VRTK_ControllerAppearance_Example.cs" />
  827. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\VRTK_ControllerEvents_ListenerExample.cs" />
  828. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\VRTK_ControllerInteract_ListenerExample.cs" />
  829. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\VRTK_ControllerPointerEvents_ListenerExample.cs" />
  830. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\VRTK_ControllerUIPointerEvents_ListenerExample.cs" />
  831. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\VRTK_RoomExtender_ControllerExample.cs" />
  832. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Whirlygig.cs" />
  833. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\LegacyExampleFiles\ExampleResources\Scripts\Zipline.cs" />
  834. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\AvatarHands\VRTK_AvatarHandController.cs" />
  835. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\ConsoleViewerCanvas\VRTK_ConsoleViewer.cs" />
  836. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\ControllerRigidbodyActivator\VRTK_ControllerRigidbodyActivator.cs" />
  837. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\ControllerTooltips\VRTK_ControllerTooltips.cs" />
  838. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\DesktopCamera\VRTK_DesktopCamera.cs" />
  839. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\DestinationPoint\VRTK_DestinationPoint.cs" />
  840. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\FramesPerSecondCanvas\VRTK_FramesPerSecondViewer.cs" />
  841. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\ObjectTooltip\VRTK_ObjectTooltip.cs" />
  842. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\PanelMenu\VRTK_PanelMenuController.cs" />
  843. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\PanelMenu\VRTK_PanelMenuItemController.cs" />
  844. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\PointerDirectionIndicator\VRTK_PointerDirectionIndicator.cs" />
  845. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\RadialMenu\RadialMenuButton\RadialButtonIcon.cs" />
  846. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\RadialMenu\RadialMenuButton\UICircle.cs" />
  847. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\RadialMenu\VRTK_IndependentRadialMenuController.cs" />
  848. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\RadialMenu\VRTK_RadialMenu.cs" />
  849. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\RadialMenu\VRTK_RadialMenuController.cs" />
  850. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\SDKSetupSwitcher\VRTK_SDKSetupSwitcher.cs" />
  851. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Prefabs\SnapDropZone\VRTK_SnapDropZone.cs" />
  852. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Base\SDK_Base.cs" />
  853. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Base\SDK_BaseBoundaries.cs" />
  854. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Base\SDK_BaseController.cs" />
  855. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Base\SDK_BaseHeadset.cs" />
  856. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Base\SDK_BaseSystem.cs" />
  857. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Base\SDK_DescriptionAttribute.cs" />
  858. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Base\SDK_ScriptingDefineSymbolPredicateAttribute.cs" />
  859. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Daydream\DaydreamReach.cs" />
  860. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Daydream\SDK_DaydreamBoundaries.cs" />
  861. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Daydream\SDK_DaydreamController.cs" />
  862. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Daydream\SDK_DaydreamDefines.cs" />
  863. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Daydream\SDK_DaydreamHeadset.cs" />
  864. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Daydream\SDK_DaydreamSystem.cs" />
  865. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Fallback\SDK_FallbackBoundaries.cs" />
  866. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Fallback\SDK_FallbackController.cs" />
  867. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Fallback\SDK_FallbackHeadset.cs" />
  868. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Fallback\SDK_FallbackSystem.cs" />
  869. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\HyperealVR\SDK_HyperealVRBoundaries.cs" />
  870. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\HyperealVR\SDK_HyperealVRController.cs" />
  871. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\HyperealVR\SDK_HyperealVRDefines.cs" />
  872. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\HyperealVR\SDK_HyperealVRHeadset.cs" />
  873. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\HyperealVR\SDK_HyperealVRSystem.cs" />
  874. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Oculus\SDK_OculusBoundaries.cs" />
  875. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Oculus\SDK_OculusController.cs" />
  876. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Oculus\SDK_OculusDefines.cs" />
  877. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Oculus\SDK_OculusHeadset.cs" />
  878. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Oculus\SDK_OculusSystem.cs" />
  879. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Simulator\SDK_ControllerSim.cs" />
  880. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Simulator\SDK_InputSimulator.cs" />
  881. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Simulator\SDK_SimBoundaries.cs" />
  882. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Simulator\SDK_SimController.cs" />
  883. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Simulator\SDK_SimHeadset.cs" />
  884. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Simulator\SDK_SimSystem.cs" />
  885. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\SteamVR\SDK_SteamVRBoundaries.cs" />
  886. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\SteamVR\SDK_SteamVRController.cs" />
  887. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\SteamVR\SDK_SteamVRDefines.cs" />
  888. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\SteamVR\SDK_SteamVRHeadset.cs" />
  889. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\SteamVR\SDK_SteamVRSystem.cs" />
  890. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Unity\SDK_UnityBoundaries.cs" />
  891. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Unity\SDK_UnityCameraRig.cs" />
  892. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Unity\SDK_UnityController.cs" />
  893. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Unity\SDK_UnityControllerTracker.cs" />
  894. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Unity\SDK_UnityHeadset.cs" />
  895. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Unity\SDK_UnityHeadsetTracker.cs" />
  896. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Unity\SDK_UnitySystem.cs" />
  897. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\VRTK_SDK_Bridge.cs" />
  898. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\Resources\InteractionSourceExtensions.cs" />
  899. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\Resources\WindowsApiChecker.cs" />
  900. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\Resources\WindowsMR_Camera.cs" />
  901. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\Resources\WindowsMR_ControllerManager.cs" />
  902. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\Resources\WindowsMR_TrackedObject.cs" />
  903. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\SDK_WindowsMRBoundaries.cs" />
  904. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\SDK_WindowsMRController.cs" />
  905. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\SDK_WindowsMRDefines.cs" />
  906. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\SDK_WindowsMRHeadset.cs" />
  907. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\WindowsMR\SDK_WindowsMRSystem.cs" />
  908. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Ximmerse\SDK_XimmerseBoundaries.cs" />
  909. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Ximmerse\SDK_XimmerseController.cs" />
  910. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Ximmerse\SDK_XimmerseDefines.cs" />
  911. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Ximmerse\SDK_XimmerseHeadset.cs" />
  912. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\SDK\Ximmerse\SDK_XimmerseSystem.cs" />
  913. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\Utilities\VRTK_ContentHandler.cs" />
  914. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Button.cs" />
  915. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Chest.cs" />
  916. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Control.cs" />
  917. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Door.cs" />
  918. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Drawer.cs" />
  919. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Knob.cs" />
  920. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Lever.cs" />
  921. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Slider.cs" />
  922. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_SpringLever.cs" />
  923. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Controls\3D\VRTK_Wheel.cs" />
  924. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Highlighters\VRTK_BaseHighlighter.cs" />
  925. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Highlighters\VRTK_MaterialColorSwapHighlighter.cs" />
  926. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Highlighters\VRTK_MaterialPropertyBlockColorSwapHighlighter.cs" />
  927. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Highlighters\VRTK_OutlineObjectCopyHighlighter.cs" />
  928. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\Artificial\VRTK_ArtificialPusher.cs" />
  929. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\Artificial\VRTK_ArtificialRotator.cs" />
  930. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\Artificial\VRTK_ArtificialSlider.cs" />
  931. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\Physics\VRTK_BasePhysicsControllable.cs" />
  932. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\Physics\VRTK_PhysicsPusher.cs" />
  933. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\Physics\VRTK_PhysicsRotator.cs" />
  934. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\Physics\VRTK_PhysicsSlider.cs" />
  935. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\Controllables\VRTK_BaseControllable.cs" />
  936. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_BaseGrabAttach.cs" />
  937. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_BaseJointGrabAttach.cs" />
  938. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_ChildOfControllerGrabAttach.cs" />
  939. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_ClimbableGrabAttach.cs" />
  940. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_ControlAnimationGrabAttach.cs" />
  941. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_CustomJointGrabAttach.cs" />
  942. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_FixedJointGrabAttach.cs" />
  943. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_MoveTransformGrabAttach.cs" />
  944. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_RotateTransformGrabAttach.cs" />
  945. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_RotatorTrackGrabAttach.cs" />
  946. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_SpringJointGrabAttach.cs" />
  947. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\GrabAttachMechanics\VRTK_TrackObjectGrabAttach.cs" />
  948. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\SecondaryControllerGrabActions\VRTK_AxisScaleGrabAction.cs" />
  949. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\SecondaryControllerGrabActions\VRTK_BaseGrabAction.cs" />
  950. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\SecondaryControllerGrabActions\VRTK_ControlDirectionGrabAction.cs" />
  951. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\SecondaryControllerGrabActions\VRTK_SwapControllerGrabAction.cs" />
  952. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_IgnoreInteractTouchColliders.cs" />
  953. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_InteractControllerAppearance.cs" />
  954. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_InteractHaptics.cs" />
  955. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_InteractObjectAppearance.cs" />
  956. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_InteractObjectHighlighter.cs" />
  957. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_InteractableListener.cs" />
  958. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_InteractableObject.cs" />
  959. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactables\VRTK_ObjectTouchAutoInteract.cs" />
  960. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_ControllerEvents.cs" />
  961. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_ControllerHighlighter.cs" />
  962. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_ControllerTrackedCollider.cs" />
  963. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_InteractGrab.cs" />
  964. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_InteractNearTouch.cs" />
  965. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_InteractTouch.cs" />
  966. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_InteractUse.cs" />
  967. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\Interactors\VRTK_ObjectAutoGrab.cs" />
  968. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\VRTK_ControllerHaptics.cs" />
  969. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Interactions\VRTK_ObjectAppearance.cs" />
  970. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Attributes\MinMaxRangeAttribute.cs" />
  971. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Attributes\ObsoleteInspectorAttribute.cs" />
  972. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\DataTypes\Limits2D.cs" />
  973. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\DataTypes\Vector3State.cs" />
  974. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_CollisionTracker.cs" />
  975. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_ControllerReference.cs" />
  976. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_CurveGenerator.cs" />
  977. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_Defines.cs" />
  978. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_EventSystem.cs" />
  979. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_Logger.cs" />
  980. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_ObjectCache.cs" />
  981. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_PlayerObject.cs" />
  982. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_RoomExtender_PlayAreaGizmo.cs" />
  983. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_SDKControllerReady.cs" />
  984. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_ScreenFade.cs" />
  985. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_TrackedController.cs" />
  986. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_TrackedHeadset.cs" />
  987. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_TunnelEffect.cs" />
  988. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_UIGraphicRaycaster.cs" />
  989. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\VRTK_VRInputModule.cs" />
  990. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\ObjectControlActions\VRTK_BaseObjectControlAction.cs" />
  991. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\ObjectControlActions\VRTK_RotateObjectControlAction.cs" />
  992. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\ObjectControlActions\VRTK_SlideObjectControlAction.cs" />
  993. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\ObjectControlActions\VRTK_SnapRotateObjectControlAction.cs" />
  994. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\ObjectControlActions\VRTK_WarpObjectControlAction.cs" />
  995. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_BasicTeleport.cs" />
  996. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_ButtonControl.cs" />
  997. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_DashTeleport.cs" />
  998. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_DragWorld.cs" />
  999. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_HeightAdjustTeleport.cs" />
  1000. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_MoveInPlace.cs" />
  1001. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_ObjectControl.cs" />
  1002. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_PlayerClimb.cs" />
  1003. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_RoomExtender.cs" />
  1004. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_SlingshotJump.cs" />
  1005. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_StepMultiplier.cs" />
  1006. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_TeleportDisableOnControllerObscured.cs" />
  1007. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_TeleportDisableOnHeadsetCollision.cs" />
  1008. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_TouchpadControl.cs" />
  1009. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Locomotion\VRTK_TunnelOverlay.cs" />
  1010. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Pointers\PointerRenderers\VRTK_BasePointerRenderer.cs" />
  1011. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Pointers\PointerRenderers\VRTK_BezierPointerRenderer.cs" />
  1012. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Pointers\PointerRenderers\VRTK_StraightPointerRenderer.cs" />
  1013. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Pointers\VRTK_DestinationMarker.cs" />
  1014. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Pointers\VRTK_PlayAreaCursor.cs" />
  1015. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Pointers\VRTK_Pointer.cs" />
  1016. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Presence\VRTK_BodyPhysics.cs" />
  1017. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Presence\VRTK_HeadsetCollision.cs" />
  1018. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Presence\VRTK_HeadsetCollisionFade.cs" />
  1019. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Presence\VRTK_HeadsetControllerAware.cs" />
  1020. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Presence\VRTK_HeadsetFade.cs" />
  1021. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Presence\VRTK_HipTracking.cs" />
  1022. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Presence\VRTK_PositionRewind.cs" />
  1023. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\UI\VRTK_UICanvas.cs" />
  1024. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\UI\VRTK_UIDraggableItem.cs" />
  1025. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\UI\VRTK_UIDropZone.cs" />
  1026. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\UI\VRTK_UIPointer.cs" />
  1027. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\ControllerModelSettings\VRTK_ControllerElementHighlighters.cs" />
  1028. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\ControllerModelSettings\VRTK_ControllerModelElementPaths.cs" />
  1029. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\ObjectFollow\VRTK_ObjectFollow.cs" />
  1030. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\ObjectFollow\VRTK_RigidbodyFollow.cs" />
  1031. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\ObjectFollow\VRTK_TransformFollow.cs" />
  1032. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\SDK\VRTK_SDKInfo.cs" />
  1033. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\SDK\VRTK_SDKManager.cs" />
  1034. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\SDK\VRTK_SDKSetup.cs" />
  1035. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_BaseControllable_UnityEvents.cs" />
  1036. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_BasicTeleport_UnityEvents.cs" />
  1037. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_BodyPhysics_UnityEvents.cs" />
  1038. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_Button_UnityEvents.cs" />
  1039. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_ControlAnimationGrabAttach_UnityEvents.cs" />
  1040. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_Control_UnityEvents.cs" />
  1041. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_ControllerEvents_UnityEvents.cs" />
  1042. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_ControllerRigidbodyActivator_UnityEvents.cs" />
  1043. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_ControllerTooltips_UnityEvents.cs" />
  1044. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_DashTeleport_UnityEvents.cs" />
  1045. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_DestinationMarker_UnityEvents.cs" />
  1046. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_DestinationPoint_UnityEvents.cs" />
  1047. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_HeadsetCollision_UnityEvents.cs" />
  1048. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_HeadsetControllerAware_UnityEvents.cs" />
  1049. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_HeadsetFade_UnityEvents.cs" />
  1050. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractControllerAppearance_UnityEvents.cs" />
  1051. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractGrab_UnityEvents.cs" />
  1052. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractHaptics_UnityEvents.cs" />
  1053. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractNearTouch_UnityEvents.cs" />
  1054. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractObjectAppearance_UnityEvents.cs" />
  1055. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractObjectHighlighter_UnityEvents.cs" />
  1056. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractTouch_UnityEvents.cs" />
  1057. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractUse_UnityEvents.cs" />
  1058. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_InteractableObject_UnityEvents.cs" />
  1059. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_MoveTransformGrabAttach_UnityEvents.cs" />
  1060. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_ObjectAutoGrab_UnityEvents.cs" />
  1061. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_ObjectControl_UnityEvents.cs" />
  1062. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_ObjectTooltip_UnityEvents.cs" />
  1063. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_PlayAreaCursor_UnityEvents.cs" />
  1064. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_PlayerClimb_UnityEvents.cs" />
  1065. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_PointerDirectionIndicator_UnityEvents.cs" />
  1066. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_Pointer_UnityEvents.cs" />
  1067. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_PositionRewind_UnityEvents.cs" />
  1068. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_RotateTransformGrabAttach_UnityEvents.cs" />
  1069. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_SDKManager_UnityEvents.cs" />
  1070. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_SDKSetup_UnityEvents.cs" />
  1071. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_SlingshotJump_UnityEvents.cs" />
  1072. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_SnapDropZone_UnityEvents.cs" />
  1073. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_UIDraggableItem_UnityEvents.cs" />
  1074. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_UIPointer_UnityEvents.cs" />
  1075. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\UnityEvents\VRTK_UnityEvents.cs" />
  1076. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_AdaptiveQuality.cs" />
  1077. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_CustomRaycast.cs" />
  1078. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_DeviceFinder.cs" />
  1079. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_NavMeshData.cs" />
  1080. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_PolicyList.cs" />
  1081. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_SDKInputOverride.cs" />
  1082. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_SDKObjectAlias.cs" />
  1083. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_SDKObjectState.cs" />
  1084. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_SDKTransformModify.cs" />
  1085. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_SharedMethods.cs" />
  1086. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_Simulator.cs" />
  1087. <Compile Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Utilities\VRTK_VelocityEstimator.cs" />
  1088. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\CSV\CSVDataObject.cs" />
  1089. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\CSV\CSVDataTest.cs" />
  1090. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\CSV\CSVTable.cs" />
  1091. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\CSV\CSVUpdateTool.cs" />
  1092. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\CameraRayCast\CameraRayCastManager.cs" />
  1093. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\CameraRayCast\RayCastItem.cs" />
  1094. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\ChivaExtensions.cs" />
  1095. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_AnimateCurvedFillOnStart.cs" />
  1096. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_CameraController.cs" />
  1097. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_CameraRotationOnButtonHeld.cs" />
  1098. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_ChangeValueOnHold.cs" />
  1099. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_GunController.cs" />
  1100. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_GunMovement.cs" />
  1101. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_MoveAlong.cs" />
  1102. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_MoveHeartbeat.cs" />
  1103. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_OrientOnCurvedSpace.cs" />
  1104. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_PerlinNoisePosition.cs" />
  1105. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_PerlinNoiseRotation.cs" />
  1106. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_RaycastToCanvas.cs" />
  1107. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_RiseChildrenOverTime.cs" />
  1108. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_ShowParentCoordinates.cs" />
  1109. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_TMPChecker.cs" />
  1110. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_ViveButtonState.cs" />
  1111. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_ViveHapticPulse.cs" />
  1112. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_ViveLaserBeam.cs" />
  1113. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_WorldSpaceCursorFollow.cs" />
  1114. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_WorldSpaceMouseMultipleCanvases.cs" />
  1115. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_ZChangeOnHover.cs" />
  1116. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_draggable.cs" />
  1117. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_guntarget.cs" />
  1118. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_inventory_paralax.cs" />
  1119. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_rotation_anim.cs" />
  1120. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\CUI_touchpad.cs" />
  1121. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\CurvedUIInputFieldCaret.cs" />
  1122. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\CurvedUIPointerEventData.cs" />
  1123. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\CurvedUIRaycaster.cs" />
  1124. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\CurvedUISettings.cs" />
  1125. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\CurvedUIVertexEffect.cs" />
  1126. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\CurvedUIViveController.cs" />
  1127. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\CurvedUIViveInputModule.cs" />
  1128. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Scripts\Experimental\CurvedUITMP.cs" />
  1129. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Scripts\CurvedUIBaseController.cs" />
  1130. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Scripts\CurvedUIInfo.cs" />
  1131. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Scripts\CurvedUIPool.cs" />
  1132. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\EncryptionTool.cs" />
  1133. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Event\HightColorEvent.cs" />
  1134. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Eye_ArrowTips\Scripts\ArrowTips_EyeMode.cs" />
  1135. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\FastGeneration\FastGenerationOperation.cs" />
  1136. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Global\GlobalConfig.cs" />
  1137. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Global\StaticGlobal.cs" />
  1138. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Global\ToolPack.cs" />
  1139. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\AudioHelper.cs" />
  1140. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\CSVHelper.cs" />
  1141. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\ExcelHelper.cs" />
  1142. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\FileHelper.cs" />
  1143. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\JsonHelper.cs" />
  1144. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\LoadHelper.cs" />
  1145. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\PathHelper.cs" />
  1146. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Helper\SuffixHelper.cs" />
  1147. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\LUtilitys.cs" />
  1148. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\LearninigUIController\Scripts\LearningUIController.cs" />
  1149. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Loom\Loom.cs" />
  1150. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\OutlineController\OutLineManager.cs" />
  1151. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\OutlineController\OutLinePrefabGroup.cs" />
  1152. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\OutlineController\TestOutLine.cs" />
  1153. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\RoamCameraController\RoamCameraController.cs" />
  1154. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Singleton\MonoSingleton.cs" />
  1155. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Singleton\MonoSingletonDontDestory.cs" />
  1156. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Singleton\SerializedMonoSingleton.cs" />
  1157. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Singleton\Singleton.cs" />
  1158. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\SkinnedMeshCollider\SkinnedMeshCollider.cs" />
  1159. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\SoundManager\SoundManager.cs" />
  1160. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\TapeTool\ExampleScene\Script\JD_Controller_Example.cs" />
  1161. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\TapeTool\Scripts\ChivaVR_JD_ShaderController.cs" />
  1162. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Time\TimestampConvert.cs" />
  1163. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ToolTips\Scripts\OpTrigger_ToolTIpsGroup.cs" />
  1164. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ToolTips\Scripts\ToolTipsController.cs" />
  1165. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ToolTips\Scripts\ToolTipsElement.cs" />
  1166. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\ToolTips\Scripts\ToolTipsManager.cs" />
  1167. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_3DRockerMove\Scripts\RockerMove.cs" />
  1168. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_3DRockerMove\Scripts\RockerMove_VRTK.cs" />
  1169. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_HandHint\Scripts\HandHintController.cs" />
  1170. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_HandHint\Scripts\HandHintExampleTest.cs" />
  1171. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_HandHint\Scripts\HandHintManager.cs" />
  1172. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_HandHint\Scripts\HandTooltipsManager.cs" />
  1173. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_HandHint\Scripts\InteractableHandHint.cs" />
  1174. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_HandHint\Scripts\InteractableHintElement.cs" />
  1175. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_PutDownTool\CVR_PutDownElement.cs" />
  1176. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_PutDownTool\PutDownBoxManager.cs" />
  1177. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\VR_SawingEffect\CVR_SawingEffect.cs" />
  1178. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Windows\HandleManager.cs" />
  1179. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Windows\TransparentWindow.cs" />
  1180. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Windows\WindowActive.cs" />
  1181. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Windows\WindowsSetting.cs" />
  1182. <Compile Include="Assets\ChivaFramework\Framework\Toolkits\Windows\WindowsTools.cs" />
  1183. <Compile Include="Assets\ChivaFramework\Localizattion\LocalizationConfig.cs" />
  1184. <Compile Include="Assets\ChivaFramework\Localizattion\ScriptLocalization.cs" />
  1185. <Compile Include="Assets\ChivaFramework\Localizattion\ToggleLocalizationTest.cs" />
  1186. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\CameraController.cs" />
  1187. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\CameraRestraint.cs" />
  1188. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\ExamManager.cs" />
  1189. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\ExamManagerForVR.cs" />
  1190. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\OperationPanelLogic\OperationPanelLogic.cs" />
  1191. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\OperationPanelLogic\OperationPanelLogicForVR.cs" />
  1192. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\ToolPackLogic\ToolPackPanelLogic.cs" />
  1193. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ExamPanel.Designer.cs" />
  1194. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ExamPanel.cs" />
  1195. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ExamPanel\ScoreReportPanel.Designer.cs" />
  1196. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ExamPanel\ScoreReportPanel.cs" />
  1197. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ExamPanel\ScoreReportPanel\ScoreItem.Designer.cs" />
  1198. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ExamPanel\ScoreReportPanel\ScoreItem.cs" />
  1199. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\OperationPanel.Designer.cs" />
  1200. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\OperationPanel.cs" />
  1201. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\PracticeEndPanel.Designer.cs" />
  1202. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\PracticeEndPanel.cs" />
  1203. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ToolBackPackPanel.Designer.cs" />
  1204. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ToolBackPackPanel.cs" />
  1205. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ToolBackPackPanel\ToolElement.Designer.cs" />
  1206. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UI\ToolBackPackPanel\ToolElement.cs" />
  1207. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\EndExamPanel.cs" />
  1208. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\ExamHandleManager.cs" />
  1209. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\ExamResultPanel.cs" />
  1210. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\HandContronlButtonKit\ButtonChangeScro.cs" />
  1211. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\HandContronlButtonKit\ButtonItem.cs" />
  1212. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\OperationCurvedUI.cs" />
  1213. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\OperationPanelForVR.cs" />
  1214. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\SimulationUI-PC-example\Scripts\UIForVR\ScoreItem.cs" />
  1215. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\箭头\Scripts\JianTouManager.cs" />
  1216. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\Components\PranticeResultItem.Designer.cs" />
  1217. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\Components\PranticeResultItem.cs" />
  1218. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\Components\TreeItem.Designer.cs" />
  1219. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\Components\TreeItem.cs" />
  1220. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\Components\TreeSecondItem.Designer.cs" />
  1221. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\Components\TreeSecondItem.cs" />
  1222. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\LoadProgressPanel.Designer.cs" />
  1223. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\LoadProgressPanel.cs" />
  1224. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeConfigurationPanel.Designer.cs" />
  1225. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeConfigurationPanel.cs" />
  1226. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeConfigurationPanel\LeveItem.Designer.cs" />
  1227. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeConfigurationPanel\LeveItem.cs" />
  1228. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeResultPanel.Designer.cs" />
  1229. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeResultPanel.cs" />
  1230. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeResultPanel\ChanllResultItem.Designer.cs" />
  1231. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ChallengeResultPanel\ChanllResultItem.cs" />
  1232. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ExamPromptPanel.Designer.cs" />
  1233. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\ExamPromptPanel.cs" />
  1234. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\LoginPanel.Designer.cs" />
  1235. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\LoginPanel.cs" />
  1236. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PC_NonTrainingPanel.Designer.cs" />
  1237. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PC_NonTrainingPanel.cs" />
  1238. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PC_PranticeResultPanel.Designer.cs" />
  1239. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PC_PranticeResultPanel.cs" />
  1240. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PC_TitlePanel.Designer.cs" />
  1241. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PC_TitlePanel.cs" />
  1242. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PranticePromptPanel.Designer.cs" />
  1243. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\PranticePromptPanel.cs" />
  1244. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\TimeForCompletingLevelsPanel.Designer.cs" />
  1245. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\TimeForCompletingLevelsPanel.cs" />
  1246. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu.Designer.cs" />
  1247. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu.cs" />
  1248. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\ClickButton.cs" />
  1249. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\NodeStateChange.cs" />
  1250. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\TreeNodeList.cs" />
  1251. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UINodeListCtrl.Designer.cs" />
  1252. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UINodeListCtrl.cs" />
  1253. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UITreeNode.Designer.cs" />
  1254. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UITreeNode.cs" />
  1255. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UITreeNode01.Designer.cs" />
  1256. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UITreeNode01.cs" />
  1257. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UITreeNode02.Designer.cs" />
  1258. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UITreeNode02.cs" />
  1259. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\Old\PC\UITreeMenu\UITreeNodeGroup.cs" />
  1260. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ArrowTipsPanel.Designer.cs" />
  1261. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ArrowTipsPanel.cs" />
  1262. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ButtonEffect\ButtonEffect.cs" />
  1263. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ButtonEffect\DownBGButton.cs" />
  1264. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\CameraPoseSetPanel.Designer.cs" />
  1265. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\CameraPoseSetPanel.cs" />
  1266. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\LogSystemForm.Designer.cs" />
  1267. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\LogSystemForm.cs" />
  1268. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\LogSystemForm\LogItem.Designer.cs" />
  1269. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\LogSystemForm\LogItem.cs" />
  1270. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\MattersNeedingAttentionFrom.Designer.cs" />
  1271. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\MattersNeedingAttentionFrom.cs" />
  1272. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel.Designer.cs" />
  1273. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel.cs" />
  1274. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\ExamInfo.Designer.cs" />
  1275. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\ExamInfo.cs" />
  1276. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\OperateStep.Designer.cs" />
  1277. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\OperateStep.cs" />
  1278. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\OperateStep\FistStepItem.Designer.cs" />
  1279. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\OperateStep\FistStepItem.cs" />
  1280. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\OperateStep\SecondStepItem.Designer.cs" />
  1281. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\OperateStep\SecondStepItem.cs" />
  1282. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\PracticeResult.Designer.cs" />
  1283. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\PracticeResult.cs" />
  1284. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\ScoreInfo.Designer.cs" />
  1285. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\ScoreInfo.cs" />
  1286. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\StartTips.Designer.cs" />
  1287. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\StartTips.cs" />
  1288. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\StudyPanel.Designer.cs" />
  1289. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\StudyPanel.cs" />
  1290. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\SubmitResult.Designer.cs" />
  1291. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_OperatePanel\SubmitResult.cs" />
  1292. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_SettingPanel.Designer.cs" />
  1293. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\PC_SettingPanel.cs" />
  1294. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ScoreInfoItem.cs" />
  1295. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ScrollViewItem\ScrollViewItem.cs" />
  1296. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolDisplayForm.Designer.cs" />
  1297. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolDisplayForm.cs" />
  1298. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolDisplayForm\ToolItemElement.Designer.cs" />
  1299. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolDisplayForm\ToolItemElement.cs" />
  1300. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm.Designer.cs" />
  1301. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm.cs" />
  1302. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolLibrarySelectElement.Designer.cs" />
  1303. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolLibrarySelectElement.cs" />
  1304. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolLibrarySelectElement\ToolItemPrefab.Designer.cs" />
  1305. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolLibrarySelectElement\ToolItemPrefab.cs" />
  1306. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolMessageElement.Designer.cs" />
  1307. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolMessageElement.cs" />
  1308. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolTypeElement.Designer.cs" />
  1309. <Compile Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Scripts\UI\ToolLibraryForm\ToolTypeElement.cs" />
  1310. <Compile Include="Assets\Obi\Rendering\ObiBaseFluidRenderer.cs" />
  1311. <Compile Include="Assets\Obi\Rendering\ObiDistanceFieldRenderer.cs" />
  1312. <Compile Include="Assets\Obi\Rendering\ObiParticleRenderer.cs" />
  1313. <Compile Include="Assets\Obi\Rendering\ObiRopeRenderers\ObiRopeChainRenderer.cs" />
  1314. <Compile Include="Assets\Obi\Rendering\ObiRopeRenderers\ObiRopeExtrudedRenderer.cs" />
  1315. <Compile Include="Assets\Obi\Rendering\ObiRopeRenderers\ObiRopeLineRenderer.cs" />
  1316. <Compile Include="Assets\Obi\Rendering\ObiRopeRenderers\ObiRopeMeshRenderer.cs" />
  1317. <Compile Include="Assets\Obi\Rendering\ObiRopeRenderers\ObiRopeRendererBase.cs" />
  1318. <Compile Include="Assets\Obi\Rendering\ShadowmapExposer.cs" />
  1319. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\ActorSpawner.cs" />
  1320. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\AddRandomVelocity.cs" />
  1321. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\AutoMoveAndRotate.cs" />
  1322. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\Blinker.cs" />
  1323. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\CharacterControl2D.cs" />
  1324. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\CharacterController\ObiCharacter.cs" />
  1325. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\CharacterController\ObiCharacterController.cs" />
  1326. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\ColliderHighlighter.cs" />
  1327. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\CollisionEventHandler.cs" />
  1328. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\CraneController.cs" />
  1329. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\CursorController.cs" />
  1330. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\GrapplingHook.cs" />
  1331. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\Melt.cs" />
  1332. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\ObiActorTeleport.cs" />
  1333. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\ObiParticleCounter.cs" />
  1334. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\ObjectDragger.cs" />
  1335. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\ObjectLimit.cs" />
  1336. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\RobotArmController.cs" />
  1337. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\RuntimeRopeGenerator.cs" />
  1338. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\RuntimeRopeGeneratorUse.cs" />
  1339. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\SlowmoToggler.cs" />
  1340. <Compile Include="Assets\Obi\Sample Scenes\SampleResources\Scripts\SpiralCurve.cs" />
  1341. <Compile Include="Assets\Scripts\Global\DataDock.cs" />
  1342. <Compile Include="Assets\Scripts\Global\JSON\JsonDataAnalyze.cs" />
  1343. <Compile Include="Assets\Scripts\Global\JSON\Struct\OperationTypeConfig.cs" />
  1344. <Compile Include="Assets\Scripts\Manager\Function\ChargingProcessManager.cs" />
  1345. <Compile Include="Assets\Scripts\Manager\Function\SwitchPointerManager.cs" />
  1346. <Compile Include="Assets\Scripts\Manager\Function\TimeManager.cs" />
  1347. <Compile Include="Assets\Scripts\Tool\AniDriver\AniDriver_FormOperation.cs" />
  1348. <Compile Include="Assets\Scripts\Tool\AniDriver_ImageFillAmount.cs" />
  1349. <Compile Include="Assets\Scripts\Tool\Billboard.cs" />
  1350. <Compile Include="Assets\Scripts\Tool\BlackMaskController.cs" />
  1351. <Compile Include="Assets\Scripts\Tool\OpTrigger_RecordTableClick.cs" />
  1352. <Compile Include="Assets\Scripts\Tool\ProcessState\ProcessState_UnityEvent.cs" />
  1353. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\FinalBlit.shader" />
  1354. <None Include="Assets\Obi\Plugins\libOni.bundle\Contents\Resources\CMakeLists.txt" />
  1355. <None Include="Assets\TextMesh Pro\Shaders\TMPro.cginc" />
  1356. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\ZPrepass.shader" />
  1357. <None Include="Assets\Obi\Resources\ObiMaterials\ParticleShader.shader" />
  1358. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF-Mobile Overlay.shader" />
  1359. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Fills\ColorFill.shader" />
  1360. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\TransparentBlit.shader" />
  1361. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Resources\SteamVR_ClearAll.shader" />
  1362. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Dilate.shader" />
  1363. <None Include="Assets\TextMesh Pro\Shaders\TMP_Bitmap.shader" />
  1364. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\link.xml" />
  1365. <None Include="Assets\ChivaFramework\Framework\Plugins\UniRx\ReadMe.txt" />
  1366. <None Include="Assets\ChivaFramework\ChivaFramework.txt" />
  1367. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Fills\EmptyFill.shader" />
  1368. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Resources\SteamVR_SphericalProjection.shader" />
  1369. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\PackageKit\Support.xml" />
  1370. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Shaders\SeeThru.shader" />
  1371. <None Include="Assets\ChivaFramework\Framework\Plugins\Sirenix\Assemblies\Sirenix.OdinInspector.Attributes.xml" />
  1372. <None Include="Assets\TextMesh Pro\Shaders\TMPro_Mobile.cginc" />
  1373. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Resources\SteamVR_ColorOut.shader" />
  1374. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF SSD.shader" />
  1375. <None Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\readme_DOTweenPro.txt" />
  1376. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Fonts\字体包\字体说明.txt" />
  1377. <None Include="Assets\Obi\Resources\ObiMaterials\DistanceFieldSlice.shader" />
  1378. <None Include="Assets\Obi\Resources\ObiMaterials\ObiParticles.cginc" />
  1379. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Sounds\Third-Party Notices.txt" />
  1380. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF-Surface-Mobile.shader" />
  1381. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\readme.txt" />
  1382. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\I2\Localization\I2 Localization - Readme.txt" />
  1383. <None Include="Assets\Obi\CHANGELOG_rope.txt" />
  1384. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\BasicBlit.shader" />
  1385. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\PartialBlit.shader" />
  1386. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\箭头\Shader\WireFloat.shader" />
  1387. <None Include="Assets\ChivaFramework\Framework\Toolkits\TapeTool\Scripts\Shader\JD_RotShader.shader" />
  1388. <None Include="Assets\Obi\Resources\ObiMaterials\StandardVertexColors.shader" />
  1389. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\箭头\Shader\XRay.shader" />
  1390. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Fills\Fresnel.shader" />
  1391. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Outline.shader" />
  1392. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Readme_InteractionSystem.txt" />
  1393. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Fills\Dots.shader" />
  1394. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Demo\Models for Demo scene\2d city\License free.txt" />
  1395. <None Include="Assets\Obi\Resources\ObiMaterials\SimpleParticleShader.shader" />
  1396. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF-Surface.shader" />
  1397. <None Include="Assets\Obi\Resources\ObiMaterials\ObiEllipsoids.cginc" />
  1398. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Documentation.txt" />
  1399. <None Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Shaders and Materials\UIAlwaysOnTop.shader" />
  1400. <None Include="Assets\TextMesh Pro\Sprites\EmojiOne Attribution.txt" />
  1401. <None Include="Assets\TextMesh Pro\Shaders\TMP_Bitmap-Custom-Atlas.shader" />
  1402. <None Include="Assets\ChivaFramework\Framework\Plugins\Sirenix\Assemblies\Sirenix.Serialization.Config.xml" />
  1403. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF.shader" />
  1404. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Teleport\Shaders\Highlight.shader" />
  1405. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Shaders\AdaptiveQualityDebugVisualization.shader" />
  1406. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF-Mobile SSD.shader" />
  1407. <None Include="Assets\TextMesh Pro\Resources\LineBreaking Leading Characters.txt" />
  1408. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Shader\Overlay\Overlay.shader" />
  1409. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Shader\Blur.shader" />
  1410. <None Include="Assets\TextMesh Pro\Shaders\TMPro_Properties.cginc" />
  1411. <None Include="Assets\ChivaFramework\Framework\Toolkits\ChivaVR_CurvedUI_HintInfo\Plugins\CurvedUI\Demo Scenes\Demo Scenes Content\OverlayBlend.shader" />
  1412. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Fills\FillMask.shader" />
  1413. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\MiskCG.cginc" />
  1414. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\EdgeDilate.shader" />
  1415. <None Include="Assets\TextMesh Pro\Shaders\TMPro_Surface.cginc" />
  1416. <None Include="Assets\ChivaFramework\Framework\Plugins\Sirenix\Readme.txt" />
  1417. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\ClearStencil.shader" />
  1418. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Blur.shader" />
  1419. <None Include="Assets\ChivaFramework\Framework\Plugins\Grpc.Core.Api\lib\net45\Grpc.Core.Api.xml" />
  1420. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Shaders\VRTK_TunnelEffect.shader" />
  1421. <None Include="Assets\ChivaFramework\Framework\Toolkits\VR_3DRockerMove\SciFi_Spherical_FX\Shader\Sh_SciFi.shader" />
  1422. <None Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTweenPro\readme.txt" />
  1423. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Resources\SteamVR_AlphaOut.shader" />
  1424. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\OutlineMask.shader" />
  1425. <None Include="Assets\TextMesh Pro\Resources\LineBreaking Following Characters.txt" />
  1426. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Fills\Interlaced.shader" />
  1427. <None Include="Assets\ChivaFramework\Framework\Plugins\Easy performant outline\Resources\Easy performant outline\Shaders\Obstacle.shader" />
  1428. <None Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DemiLib\Core\DemiLib.xml" />
  1429. <None Include="Assets\ChivaFramework\Framework\Plugins\Sirenix\Assemblies\Sirenix.Utilities.xml" />
  1430. <None Include="Assets\ChivaFramework\Author\UI\2023.05.06_软件授权\0_文字.txt" />
  1431. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Shaders\VRTK_OutlineBasic.shader" />
  1432. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Shader\ImageBlur.shader" />
  1433. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Core\Shaders\Silhouette.shader" />
  1434. <None Include="Assets\ChivaFramework\Framework\Plugins\Sirenix\Assemblies\link.xml" />
  1435. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Shaders\Unlit_TransparentColor.shader" />
  1436. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF-Mobile Masking.shader" />
  1437. <None Include="Assets\ChivaFramework\Framework\Plugins\Grpc.Core\lib\net45\Grpc.Core.xml" />
  1438. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Shader\Alpha Blend With Both Side.shader" />
  1439. <None Include="Assets\ChivaFramework\Framework\Plugins\Demigiant\DOTween\readme.txt" />
  1440. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Shaders\UIOverlay.shader" />
  1441. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\VRTK\Source\Scripts\Internal\Shaders\TransparentFresnelBehind.shader" />
  1442. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\Model\famen\DieFa\DieFa.txt" />
  1443. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV2\Fonts\Chinese7000.txt" />
  1444. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF Overlay.shader" />
  1445. <None Include="Assets\Obi\Resources\ObiMaterials\LitParticles.shader" />
  1446. <None Include="Assets\TextMesh Pro\Shaders\TMP_Bitmap-Mobile.shader" />
  1447. <None Include="Assets\ChivaFramework\Framework\Plugins\Sirenix\Assemblies\Sirenix.OdinInspector.Editor.xml" />
  1448. <None Include="Assets\TextMesh Pro\Fonts\LiberationSans - OFL.txt" />
  1449. <None Include="Assets\ChivaFramework\Framework\Plugins\Sirenix\Assemblies\Sirenix.Utilities.Editor.xml" />
  1450. <None Include="Assets\ChivaFramework\OperationUIFrame\OperationUIFrameV1\箭头\Shader\HoloCP.cginc" />
  1451. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\InteractionSystem\Hints\Shaders\ControllerButtonHints.shader" />
  1452. <None Include="Assets\TextMesh Pro\Shaders\TMP_SDF-Mobile.shader" />
  1453. <None Include="Assets\Obi\Resources\ObiMaterials\ObiUtils.cginc" />
  1454. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\QFramework\Framework\Plugins\PackageKit\SupportItem.xml" />
  1455. <None Include="Assets\ChivaFramework\Framework\Third Plug-in\SteamVR\Resources\SteamVR_Fade.shader" />
  1456. <None Include="Assets\TextMesh Pro\Shaders\TMP_Sprite.shader" />
  1457. <None Include="Assets\ChivaFramework\Framework\Toolkits\TapeTool\注意事项(发布必看).txt" />
  1458. <Reference Include="UnityEngine">
  1459. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.dll</HintPath>
  1460. </Reference>
  1461. <Reference Include="UnityEngine.AIModule">
  1462. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath>
  1463. </Reference>
  1464. <Reference Include="UnityEngine.ARModule">
  1465. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath>
  1466. </Reference>
  1467. <Reference Include="UnityEngine.AccessibilityModule">
  1468. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath>
  1469. </Reference>
  1470. <Reference Include="UnityEngine.AndroidJNIModule">
  1471. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll</HintPath>
  1472. </Reference>
  1473. <Reference Include="UnityEngine.AnimationModule">
  1474. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath>
  1475. </Reference>
  1476. <Reference Include="UnityEngine.AssetBundleModule">
  1477. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath>
  1478. </Reference>
  1479. <Reference Include="UnityEngine.AudioModule">
  1480. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath>
  1481. </Reference>
  1482. <Reference Include="UnityEngine.ClothModule">
  1483. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath>
  1484. </Reference>
  1485. <Reference Include="UnityEngine.ClusterInputModule">
  1486. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll</HintPath>
  1487. </Reference>
  1488. <Reference Include="UnityEngine.ClusterRendererModule">
  1489. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll</HintPath>
  1490. </Reference>
  1491. <Reference Include="UnityEngine.CoreModule">
  1492. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath>
  1493. </Reference>
  1494. <Reference Include="UnityEngine.CrashReportingModule">
  1495. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath>
  1496. </Reference>
  1497. <Reference Include="UnityEngine.DSPGraphModule">
  1498. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll</HintPath>
  1499. </Reference>
  1500. <Reference Include="UnityEngine.DirectorModule">
  1501. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath>
  1502. </Reference>
  1503. <Reference Include="UnityEngine.GameCenterModule">
  1504. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath>
  1505. </Reference>
  1506. <Reference Include="UnityEngine.GridModule">
  1507. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath>
  1508. </Reference>
  1509. <Reference Include="UnityEngine.HotReloadModule">
  1510. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath>
  1511. </Reference>
  1512. <Reference Include="UnityEngine.IMGUIModule">
  1513. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath>
  1514. </Reference>
  1515. <Reference Include="UnityEngine.ImageConversionModule">
  1516. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath>
  1517. </Reference>
  1518. <Reference Include="UnityEngine.InputModule">
  1519. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath>
  1520. </Reference>
  1521. <Reference Include="UnityEngine.InputLegacyModule">
  1522. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll</HintPath>
  1523. </Reference>
  1524. <Reference Include="UnityEngine.JSONSerializeModule">
  1525. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath>
  1526. </Reference>
  1527. <Reference Include="UnityEngine.LocalizationModule">
  1528. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath>
  1529. </Reference>
  1530. <Reference Include="UnityEngine.ParticleSystemModule">
  1531. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath>
  1532. </Reference>
  1533. <Reference Include="UnityEngine.PerformanceReportingModule">
  1534. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath>
  1535. </Reference>
  1536. <Reference Include="UnityEngine.PhysicsModule">
  1537. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath>
  1538. </Reference>
  1539. <Reference Include="UnityEngine.Physics2DModule">
  1540. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath>
  1541. </Reference>
  1542. <Reference Include="UnityEngine.ProfilerModule">
  1543. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath>
  1544. </Reference>
  1545. <Reference Include="UnityEngine.ScreenCaptureModule">
  1546. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath>
  1547. </Reference>
  1548. <Reference Include="UnityEngine.SharedInternalsModule">
  1549. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath>
  1550. </Reference>
  1551. <Reference Include="UnityEngine.SpriteMaskModule">
  1552. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath>
  1553. </Reference>
  1554. <Reference Include="UnityEngine.SpriteShapeModule">
  1555. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath>
  1556. </Reference>
  1557. <Reference Include="UnityEngine.StreamingModule">
  1558. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath>
  1559. </Reference>
  1560. <Reference Include="UnityEngine.SubstanceModule">
  1561. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath>
  1562. </Reference>
  1563. <Reference Include="UnityEngine.SubsystemsModule">
  1564. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll</HintPath>
  1565. </Reference>
  1566. <Reference Include="UnityEngine.TLSModule">
  1567. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath>
  1568. </Reference>
  1569. <Reference Include="UnityEngine.TerrainModule">
  1570. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath>
  1571. </Reference>
  1572. <Reference Include="UnityEngine.TerrainPhysicsModule">
  1573. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath>
  1574. </Reference>
  1575. <Reference Include="UnityEngine.TextCoreModule">
  1576. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll</HintPath>
  1577. </Reference>
  1578. <Reference Include="UnityEngine.TextRenderingModule">
  1579. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath>
  1580. </Reference>
  1581. <Reference Include="UnityEngine.TilemapModule">
  1582. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath>
  1583. </Reference>
  1584. <Reference Include="UnityEngine.UIModule">
  1585. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath>
  1586. </Reference>
  1587. <Reference Include="UnityEngine.UIElementsModule">
  1588. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath>
  1589. </Reference>
  1590. <Reference Include="UnityEngine.UNETModule">
  1591. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll</HintPath>
  1592. </Reference>
  1593. <Reference Include="UnityEngine.UmbraModule">
  1594. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath>
  1595. </Reference>
  1596. <Reference Include="UnityEngine.UnityAnalyticsModule">
  1597. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll</HintPath>
  1598. </Reference>
  1599. <Reference Include="UnityEngine.UnityConnectModule">
  1600. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath>
  1601. </Reference>
  1602. <Reference Include="UnityEngine.UnityTestProtocolModule">
  1603. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath>
  1604. </Reference>
  1605. <Reference Include="UnityEngine.UnityWebRequestModule">
  1606. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath>
  1607. </Reference>
  1608. <Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
  1609. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
  1610. </Reference>
  1611. <Reference Include="UnityEngine.UnityWebRequestAudioModule">
  1612. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
  1613. </Reference>
  1614. <Reference Include="UnityEngine.UnityWebRequestTextureModule">
  1615. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
  1616. </Reference>
  1617. <Reference Include="UnityEngine.UnityWebRequestWWWModule">
  1618. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
  1619. </Reference>
  1620. <Reference Include="UnityEngine.VFXModule">
  1621. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath>
  1622. </Reference>
  1623. <Reference Include="UnityEngine.VRModule">
  1624. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll</HintPath>
  1625. </Reference>
  1626. <Reference Include="UnityEngine.VehiclesModule">
  1627. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath>
  1628. </Reference>
  1629. <Reference Include="UnityEngine.VideoModule">
  1630. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath>
  1631. </Reference>
  1632. <Reference Include="UnityEngine.WindModule">
  1633. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath>
  1634. </Reference>
  1635. <Reference Include="UnityEngine.XRModule">
  1636. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll</HintPath>
  1637. </Reference>
  1638. <Reference Include="UnityEditor">
  1639. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/Managed/UnityEditor.dll</HintPath>
  1640. </Reference>
  1641. <Reference Include="AuShell">
  1642. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Author/AuthorForCode/AuShell.dll</HintPath>
  1643. </Reference>
  1644. <Reference Include="BouncyCastle.Cryptography">
  1645. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/BouncyCastle.Cryptography.dll</HintPath>
  1646. </Reference>
  1647. <Reference Include="Newtonsoft.Json">
  1648. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Newtonsoft.Json.dll</HintPath>
  1649. </Reference>
  1650. <Reference Include="DemiLib">
  1651. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Demigiant/DemiLib/Core/DemiLib.dll</HintPath>
  1652. </Reference>
  1653. <Reference Include="DOTween">
  1654. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Demigiant/DOTween/DOTween.dll</HintPath>
  1655. </Reference>
  1656. <Reference Include="DOTweenPro">
  1657. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Demigiant/DOTweenPro/DOTweenPro.dll</HintPath>
  1658. </Reference>
  1659. <Reference Include="System.Drawing">
  1660. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/System.Drawing.dll</HintPath>
  1661. </Reference>
  1662. <Reference Include="EPPlus">
  1663. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/EPPlus.dll</HintPath>
  1664. </Reference>
  1665. <Reference Include="Excel">
  1666. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/Excel.dll</HintPath>
  1667. </Reference>
  1668. <Reference Include="ExcelDataReader.DataSet">
  1669. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/ExcelDataReader.DataSet.dll</HintPath>
  1670. </Reference>
  1671. <Reference Include="ExcelDataReader">
  1672. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/ExcelDataReader.dll</HintPath>
  1673. </Reference>
  1674. <Reference Include="I18N.CJK">
  1675. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/I18N.CJK.dll</HintPath>
  1676. </Reference>
  1677. <Reference Include="I18N">
  1678. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/I18N.dll</HintPath>
  1679. </Reference>
  1680. <Reference Include="I18N.MidEast">
  1681. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/I18N.MidEast.dll</HintPath>
  1682. </Reference>
  1683. <Reference Include="I18N.Other">
  1684. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/I18N.Other.dll</HintPath>
  1685. </Reference>
  1686. <Reference Include="I18N.Rare">
  1687. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/I18N.Rare.dll</HintPath>
  1688. </Reference>
  1689. <Reference Include="I18N.West">
  1690. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/I18N.West.dll</HintPath>
  1691. </Reference>
  1692. <Reference Include="ICSharpCode.SharpZipLib">
  1693. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/ExcelDll/Excel/ICSharpCode.SharpZipLib.dll</HintPath>
  1694. </Reference>
  1695. <Reference Include="Google.Protobuf">
  1696. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Google.Protobuf/lib/net45/Google.Protobuf.dll</HintPath>
  1697. </Reference>
  1698. <Reference Include="Grpc.Core">
  1699. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Grpc.Core/lib/net45/Grpc.Core.dll</HintPath>
  1700. </Reference>
  1701. <Reference Include="Grpc.Core.Api">
  1702. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Grpc.Core.Api/lib/net45/Grpc.Core.Api.dll</HintPath>
  1703. </Reference>
  1704. <Reference Include="Sirenix.OdinInspector.Attributes">
  1705. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Attributes.dll</HintPath>
  1706. </Reference>
  1707. <Reference Include="Sirenix.OdinInspector.Editor">
  1708. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Editor.dll</HintPath>
  1709. </Reference>
  1710. <Reference Include="Sirenix.Serialization.Config">
  1711. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Sirenix/Assemblies/Sirenix.Serialization.Config.dll</HintPath>
  1712. </Reference>
  1713. <Reference Include="Sirenix.Serialization">
  1714. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Sirenix/Assemblies/Sirenix.Serialization.dll</HintPath>
  1715. </Reference>
  1716. <Reference Include="Sirenix.Utilities">
  1717. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Sirenix/Assemblies/Sirenix.Utilities.dll</HintPath>
  1718. </Reference>
  1719. <Reference Include="Sirenix.Utilities.Editor">
  1720. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/Sirenix/Assemblies/Sirenix.Utilities.Editor.dll</HintPath>
  1721. </Reference>
  1722. <Reference Include="System.Buffers">
  1723. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/System.Buffers/lib/net45/System.Buffers.dll</HintPath>
  1724. </Reference>
  1725. <Reference Include="System.Memory">
  1726. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/System.Memory/lib/net45/System.Memory.dll</HintPath>
  1727. </Reference>
  1728. <Reference Include="System.Runtime.CompilerServices.Unsafe">
  1729. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Plugins/System.Runtime.CompilerServices.Unsafe/lib/net45/System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  1730. </Reference>
  1731. <Reference Include="QFramework.Log">
  1732. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Assets/ChivaFramework/Framework/Third Plug-in/QFramework/Framework/Toolkits/CacheKit/Scripts/QFramework.Log.dll</HintPath>
  1733. </Reference>
  1734. <Reference Include="mscorlib">
  1735. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll</HintPath>
  1736. </Reference>
  1737. <Reference Include="System">
  1738. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll</HintPath>
  1739. </Reference>
  1740. <Reference Include="System.Core">
  1741. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll</HintPath>
  1742. </Reference>
  1743. <Reference Include="System.Runtime.Serialization">
  1744. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll</HintPath>
  1745. </Reference>
  1746. <Reference Include="System.Xml">
  1747. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll</HintPath>
  1748. </Reference>
  1749. <Reference Include="System.Xml.Linq">
  1750. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll</HintPath>
  1751. </Reference>
  1752. <Reference Include="System.Numerics">
  1753. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll</HintPath>
  1754. </Reference>
  1755. <Reference Include="System.Numerics.Vectors">
  1756. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll</HintPath>
  1757. </Reference>
  1758. <Reference Include="System.Net.Http">
  1759. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll</HintPath>
  1760. </Reference>
  1761. <Reference Include="Microsoft.CSharp">
  1762. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll</HintPath>
  1763. </Reference>
  1764. <Reference Include="System.Data">
  1765. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll</HintPath>
  1766. </Reference>
  1767. <Reference Include="Microsoft.Win32.Primitives">
  1768. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll</HintPath>
  1769. </Reference>
  1770. <Reference Include="netstandard">
  1771. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll</HintPath>
  1772. </Reference>
  1773. <Reference Include="System.AppContext">
  1774. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll</HintPath>
  1775. </Reference>
  1776. <Reference Include="System.Collections.Concurrent">
  1777. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll</HintPath>
  1778. </Reference>
  1779. <Reference Include="System.Collections">
  1780. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll</HintPath>
  1781. </Reference>
  1782. <Reference Include="System.Collections.NonGeneric">
  1783. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll</HintPath>
  1784. </Reference>
  1785. <Reference Include="System.Collections.Specialized">
  1786. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll</HintPath>
  1787. </Reference>
  1788. <Reference Include="System.ComponentModel.Annotations">
  1789. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll</HintPath>
  1790. </Reference>
  1791. <Reference Include="System.ComponentModel">
  1792. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll</HintPath>
  1793. </Reference>
  1794. <Reference Include="System.ComponentModel.EventBasedAsync">
  1795. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll</HintPath>
  1796. </Reference>
  1797. <Reference Include="System.ComponentModel.Primitives">
  1798. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll</HintPath>
  1799. </Reference>
  1800. <Reference Include="System.ComponentModel.TypeConverter">
  1801. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll</HintPath>
  1802. </Reference>
  1803. <Reference Include="System.Console">
  1804. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll</HintPath>
  1805. </Reference>
  1806. <Reference Include="System.Data.Common">
  1807. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll</HintPath>
  1808. </Reference>
  1809. <Reference Include="System.Diagnostics.Contracts">
  1810. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll</HintPath>
  1811. </Reference>
  1812. <Reference Include="System.Diagnostics.Debug">
  1813. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll</HintPath>
  1814. </Reference>
  1815. <Reference Include="System.Diagnostics.FileVersionInfo">
  1816. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll</HintPath>
  1817. </Reference>
  1818. <Reference Include="System.Diagnostics.Process">
  1819. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll</HintPath>
  1820. </Reference>
  1821. <Reference Include="System.Diagnostics.StackTrace">
  1822. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll</HintPath>
  1823. </Reference>
  1824. <Reference Include="System.Diagnostics.TextWriterTraceListener">
  1825. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll</HintPath>
  1826. </Reference>
  1827. <Reference Include="System.Diagnostics.Tools">
  1828. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll</HintPath>
  1829. </Reference>
  1830. <Reference Include="System.Diagnostics.TraceSource">
  1831. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll</HintPath>
  1832. </Reference>
  1833. <Reference Include="System.Drawing.Primitives">
  1834. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll</HintPath>
  1835. </Reference>
  1836. <Reference Include="System.Dynamic.Runtime">
  1837. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll</HintPath>
  1838. </Reference>
  1839. <Reference Include="System.Globalization.Calendars">
  1840. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll</HintPath>
  1841. </Reference>
  1842. <Reference Include="System.Globalization">
  1843. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll</HintPath>
  1844. </Reference>
  1845. <Reference Include="System.Globalization.Extensions">
  1846. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll</HintPath>
  1847. </Reference>
  1848. <Reference Include="System.IO.Compression.ZipFile">
  1849. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll</HintPath>
  1850. </Reference>
  1851. <Reference Include="System.IO">
  1852. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll</HintPath>
  1853. </Reference>
  1854. <Reference Include="System.IO.FileSystem">
  1855. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll</HintPath>
  1856. </Reference>
  1857. <Reference Include="System.IO.FileSystem.DriveInfo">
  1858. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll</HintPath>
  1859. </Reference>
  1860. <Reference Include="System.IO.FileSystem.Primitives">
  1861. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll</HintPath>
  1862. </Reference>
  1863. <Reference Include="System.IO.FileSystem.Watcher">
  1864. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll</HintPath>
  1865. </Reference>
  1866. <Reference Include="System.IO.IsolatedStorage">
  1867. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll</HintPath>
  1868. </Reference>
  1869. <Reference Include="System.IO.MemoryMappedFiles">
  1870. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll</HintPath>
  1871. </Reference>
  1872. <Reference Include="System.IO.Pipes">
  1873. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll</HintPath>
  1874. </Reference>
  1875. <Reference Include="System.IO.UnmanagedMemoryStream">
  1876. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll</HintPath>
  1877. </Reference>
  1878. <Reference Include="System.Linq">
  1879. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll</HintPath>
  1880. </Reference>
  1881. <Reference Include="System.Linq.Expressions">
  1882. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll</HintPath>
  1883. </Reference>
  1884. <Reference Include="System.Linq.Parallel">
  1885. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll</HintPath>
  1886. </Reference>
  1887. <Reference Include="System.Linq.Queryable">
  1888. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll</HintPath>
  1889. </Reference>
  1890. <Reference Include="System.Net.Http.Rtc">
  1891. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll</HintPath>
  1892. </Reference>
  1893. <Reference Include="System.Net.NameResolution">
  1894. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll</HintPath>
  1895. </Reference>
  1896. <Reference Include="System.Net.NetworkInformation">
  1897. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll</HintPath>
  1898. </Reference>
  1899. <Reference Include="System.Net.Ping">
  1900. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll</HintPath>
  1901. </Reference>
  1902. <Reference Include="System.Net.Primitives">
  1903. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll</HintPath>
  1904. </Reference>
  1905. <Reference Include="System.Net.Requests">
  1906. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll</HintPath>
  1907. </Reference>
  1908. <Reference Include="System.Net.Security">
  1909. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll</HintPath>
  1910. </Reference>
  1911. <Reference Include="System.Net.Sockets">
  1912. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll</HintPath>
  1913. </Reference>
  1914. <Reference Include="System.Net.WebHeaderCollection">
  1915. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll</HintPath>
  1916. </Reference>
  1917. <Reference Include="System.Net.WebSockets.Client">
  1918. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll</HintPath>
  1919. </Reference>
  1920. <Reference Include="System.Net.WebSockets">
  1921. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll</HintPath>
  1922. </Reference>
  1923. <Reference Include="System.ObjectModel">
  1924. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll</HintPath>
  1925. </Reference>
  1926. <Reference Include="System.Reflection">
  1927. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll</HintPath>
  1928. </Reference>
  1929. <Reference Include="System.Reflection.Emit">
  1930. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll</HintPath>
  1931. </Reference>
  1932. <Reference Include="System.Reflection.Emit.ILGeneration">
  1933. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll</HintPath>
  1934. </Reference>
  1935. <Reference Include="System.Reflection.Emit.Lightweight">
  1936. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll</HintPath>
  1937. </Reference>
  1938. <Reference Include="System.Reflection.Extensions">
  1939. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll</HintPath>
  1940. </Reference>
  1941. <Reference Include="System.Reflection.Primitives">
  1942. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll</HintPath>
  1943. </Reference>
  1944. <Reference Include="System.Resources.Reader">
  1945. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll</HintPath>
  1946. </Reference>
  1947. <Reference Include="System.Resources.ResourceManager">
  1948. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll</HintPath>
  1949. </Reference>
  1950. <Reference Include="System.Resources.Writer">
  1951. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll</HintPath>
  1952. </Reference>
  1953. <Reference Include="System.Runtime.CompilerServices.VisualC">
  1954. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll</HintPath>
  1955. </Reference>
  1956. <Reference Include="System.Runtime">
  1957. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll</HintPath>
  1958. </Reference>
  1959. <Reference Include="System.Runtime.Extensions">
  1960. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll</HintPath>
  1961. </Reference>
  1962. <Reference Include="System.Runtime.Handles">
  1963. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll</HintPath>
  1964. </Reference>
  1965. <Reference Include="System.Runtime.InteropServices">
  1966. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll</HintPath>
  1967. </Reference>
  1968. <Reference Include="System.Runtime.InteropServices.RuntimeInformation">
  1969. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
  1970. </Reference>
  1971. <Reference Include="System.Runtime.InteropServices.WindowsRuntime">
  1972. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
  1973. </Reference>
  1974. <Reference Include="System.Runtime.Numerics">
  1975. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll</HintPath>
  1976. </Reference>
  1977. <Reference Include="System.Runtime.Serialization.Formatters">
  1978. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll</HintPath>
  1979. </Reference>
  1980. <Reference Include="System.Runtime.Serialization.Json">
  1981. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll</HintPath>
  1982. </Reference>
  1983. <Reference Include="System.Runtime.Serialization.Primitives">
  1984. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll</HintPath>
  1985. </Reference>
  1986. <Reference Include="System.Runtime.Serialization.Xml">
  1987. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll</HintPath>
  1988. </Reference>
  1989. <Reference Include="System.Security.Claims">
  1990. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll</HintPath>
  1991. </Reference>
  1992. <Reference Include="System.Security.Cryptography.Algorithms">
  1993. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll</HintPath>
  1994. </Reference>
  1995. <Reference Include="System.Security.Cryptography.Csp">
  1996. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll</HintPath>
  1997. </Reference>
  1998. <Reference Include="System.Security.Cryptography.Encoding">
  1999. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll</HintPath>
  2000. </Reference>
  2001. <Reference Include="System.Security.Cryptography.Primitives">
  2002. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll</HintPath>
  2003. </Reference>
  2004. <Reference Include="System.Security.Cryptography.X509Certificates">
  2005. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll</HintPath>
  2006. </Reference>
  2007. <Reference Include="System.Security.Principal">
  2008. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll</HintPath>
  2009. </Reference>
  2010. <Reference Include="System.Security.SecureString">
  2011. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll</HintPath>
  2012. </Reference>
  2013. <Reference Include="System.ServiceModel.Duplex">
  2014. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll</HintPath>
  2015. </Reference>
  2016. <Reference Include="System.ServiceModel.Http">
  2017. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll</HintPath>
  2018. </Reference>
  2019. <Reference Include="System.ServiceModel.NetTcp">
  2020. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll</HintPath>
  2021. </Reference>
  2022. <Reference Include="System.ServiceModel.Primitives">
  2023. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll</HintPath>
  2024. </Reference>
  2025. <Reference Include="System.ServiceModel.Security">
  2026. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll</HintPath>
  2027. </Reference>
  2028. <Reference Include="System.Text.Encoding">
  2029. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll</HintPath>
  2030. </Reference>
  2031. <Reference Include="System.Text.Encoding.Extensions">
  2032. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll</HintPath>
  2033. </Reference>
  2034. <Reference Include="System.Text.RegularExpressions">
  2035. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll</HintPath>
  2036. </Reference>
  2037. <Reference Include="System.Threading">
  2038. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll</HintPath>
  2039. </Reference>
  2040. <Reference Include="System.Threading.Overlapped">
  2041. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll</HintPath>
  2042. </Reference>
  2043. <Reference Include="System.Threading.Tasks">
  2044. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll</HintPath>
  2045. </Reference>
  2046. <Reference Include="System.Threading.Tasks.Parallel">
  2047. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll</HintPath>
  2048. </Reference>
  2049. <Reference Include="System.Threading.Thread">
  2050. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll</HintPath>
  2051. </Reference>
  2052. <Reference Include="System.Threading.ThreadPool">
  2053. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll</HintPath>
  2054. </Reference>
  2055. <Reference Include="System.Threading.Timer">
  2056. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll</HintPath>
  2057. </Reference>
  2058. <Reference Include="System.ValueTuple">
  2059. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll</HintPath>
  2060. </Reference>
  2061. <Reference Include="System.Xml.ReaderWriter">
  2062. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll</HintPath>
  2063. </Reference>
  2064. <Reference Include="System.Xml.XDocument">
  2065. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll</HintPath>
  2066. </Reference>
  2067. <Reference Include="System.Xml.XmlDocument">
  2068. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll</HintPath>
  2069. </Reference>
  2070. <Reference Include="System.Xml.XmlSerializer">
  2071. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll</HintPath>
  2072. </Reference>
  2073. <Reference Include="System.Xml.XPath">
  2074. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll</HintPath>
  2075. </Reference>
  2076. <Reference Include="System.Xml.XPath.XDocument">
  2077. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll</HintPath>
  2078. </Reference>
  2079. <Reference Include="UnityScript">
  2080. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll</HintPath>
  2081. </Reference>
  2082. <Reference Include="UnityScript.Lang">
  2083. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll</HintPath>
  2084. </Reference>
  2085. <Reference Include="Boo.Lang">
  2086. <HintPath>F:/UNITY/2019.4.22f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll</HintPath>
  2087. </Reference>
  2088. <Reference Include="Unity.Timeline.Editor">
  2089. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
  2090. </Reference>
  2091. <Reference Include="Unity.VSCode.Editor">
  2092. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.VSCode.Editor.dll</HintPath>
  2093. </Reference>
  2094. <Reference Include="Unity.TextMeshPro.Editor">
  2095. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
  2096. </Reference>
  2097. <Reference Include="UnityEngine.UI">
  2098. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
  2099. </Reference>
  2100. <Reference Include="Unity.Timeline">
  2101. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
  2102. </Reference>
  2103. <Reference Include="Unity.CollabProxy.Editor">
  2104. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath>
  2105. </Reference>
  2106. <Reference Include="Unity.Postprocessing.Editor">
  2107. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll</HintPath>
  2108. </Reference>
  2109. <Reference Include="Unity.Rider.Editor">
  2110. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.Rider.Editor.dll</HintPath>
  2111. </Reference>
  2112. <Reference Include="Unity.2D.Sprite.Editor">
  2113. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll</HintPath>
  2114. </Reference>
  2115. <Reference Include="Unity.Postprocessing.Runtime">
  2116. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll</HintPath>
  2117. </Reference>
  2118. <Reference Include="Unity.TextMeshPro">
  2119. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
  2120. </Reference>
  2121. <Reference Include="UnityEditor.UI">
  2122. <HintPath>D:/Git/UnityProjectFolder/011_新员工培训/ChivaTechFramework/Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
  2123. </Reference>
  2124. </ItemGroup>
  2125. <ItemGroup>
  2126. <ProjectReference Include="UniRx.csproj">
  2127. <Project>{B5448054-35AB-9749-2E0F-4557CBC078E4}</Project>
  2128. <Name>UniRx</Name>
  2129. </ProjectReference>
  2130. <ProjectReference Include="XNode.csproj">
  2131. <Project>{CE55F71F-7022-6347-8A3E-0B052EC84720}</Project>
  2132. <Name>XNode</Name>
  2133. </ProjectReference>
  2134. <ProjectReference Include="Sirenix.OdinInspector.CompatibilityLayer.Editor.csproj">
  2135. <Project>{40B39FEE-3C88-2C92-4013-0282D547BC06}</Project>
  2136. <Name>Sirenix.OdinInspector.CompatibilityLayer.Editor</Name>
  2137. </ProjectReference>
  2138. <ProjectReference Include="Obi.csproj">
  2139. <Project>{2AEB69EF-9A70-0F60-33EA-935D773E1E5A}</Project>
  2140. <Name>Obi</Name>
  2141. </ProjectReference>
  2142. <ProjectReference Include="Sirenix.OdinInspector.CompatibilityLayer.csproj">
  2143. <Project>{70144330-50B9-8F85-833B-93D043B4BE4A}</Project>
  2144. <Name>Sirenix.OdinInspector.CompatibilityLayer</Name>
  2145. </ProjectReference>
  2146. <ProjectReference Include="QFramework.Runtime.csproj">
  2147. <Project>{A32EF14B-3A6A-E8E1-4066-7E97A7C08902}</Project>
  2148. <Name>QFramework.Runtime</Name>
  2149. </ProjectReference>
  2150. <ProjectReference Include="QFramework.csproj">
  2151. <Project>{3FE77953-5F73-1FC7-3D02-C3A466AB2753}</Project>
  2152. <Name>QFramework</Name>
  2153. </ProjectReference>
  2154. <ProjectReference Include="XNodeEditor.csproj">
  2155. <Project>{85D99870-2D22-067D-64E4-2AA1B6181002}</Project>
  2156. <Name>XNodeEditor</Name>
  2157. </ProjectReference>
  2158. <ProjectReference Include="QFramework.CacheKit.csproj">
  2159. <Project>{49EDEAFD-74F7-9FBB-6793-6D255448B648}</Project>
  2160. <Name>QFramework.CacheKit</Name>
  2161. </ProjectReference>
  2162. </ItemGroup>
  2163. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  2164. <Target Name="GenerateTargetFrameworkMonikerAttribute" />
  2165. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  2166. Other similar extension points exist, see Microsoft.Common.targets.
  2167. <Target Name="BeforeBuild">
  2168. </Target>
  2169. <Target Name="AfterBuild">
  2170. </Target>
  2171. -->
  2172. </Project>