doc2txt commited on
Commit
3497d64
1 Parent(s): b2d9d58
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .config/dotnet-tools.json +12 -0
  2. .gitattributes +2 -0
  3. .gitignore +36 -0
  4. .vscode/extensions.json +5 -0
  5. .vscode/launch.json +10 -0
  6. .vscode/settings.json +55 -0
  7. 3DSurvivalGame.sln +20 -0
  8. Assembly-CSharp.csproj +1125 -0
  9. Assets/ART.meta +8 -0
  10. Assets/ART/UI ART.meta +8 -0
  11. Assets/ART/UI ART/cursor.png +0 -0
  12. Assets/ART/UI ART/cursor.png.meta +127 -0
  13. Assets/ART/UI ART/file icon.png +0 -0
  14. Assets/ART/UI ART/file icon.png.meta +127 -0
  15. Assets/ART/UI ART/hand.png +0 -0
  16. Assets/ART/UI ART/hand.png.meta +127 -0
  17. Assets/ART/UI ART/refine icon.png +0 -0
  18. Assets/ART/UI ART/refine icon.png.meta +127 -0
  19. Assets/ART/UI ART/sphere.png +0 -0
  20. Assets/ART/UI ART/sphere.png.meta +127 -0
  21. Assets/ART/UI ART/sticks.png +0 -0
  22. Assets/ART/UI ART/sticks.png.meta +127 -0
  23. Assets/ART/UI ART/tools.png +0 -0
  24. Assets/ART/UI ART/tools.png.meta +127 -0
  25. Assets/ART/UI ART/wall.png +0 -0
  26. Assets/ART/UI ART/wall.png.meta +127 -0
  27. Assets/ART/UI ART/wodden-box.png +0 -0
  28. Assets/ART/UI ART/wodden-box.png.meta +127 -0
  29. Assets/ART/UI ART/wooden wall.png +0 -0
  30. Assets/ART/UI ART/wooden wall.png.meta +127 -0
  31. Assets/ART/birch_parts.meta +8 -0
  32. Assets/ART/birch_parts/birch_bark.png +3 -0
  33. Assets/ART/birch_parts/birch_bark.png.meta +91 -0
  34. Assets/ART/birch_parts/inner_trunk.jpeg +0 -0
  35. Assets/ART/birch_parts/inner_trunk.jpeg.meta +127 -0
  36. Assets/ART/birch_parts/log.png +0 -0
  37. Assets/ART/birch_parts/log.png.meta +127 -0
  38. Assets/ART/birch_parts/stump.png +0 -0
  39. Assets/ART/birch_parts/stump.png.meta +127 -0
  40. Assets/ART/trash.png +0 -0
  41. Assets/ART/trash.png.meta +127 -0
  42. Assets/ART/trash_open.png +0 -0
  43. Assets/ART/trash_open.png.meta +127 -0
  44. Assets/ART/wd_n2_t.PNG +0 -0
  45. Assets/ART/wd_n2_t.PNG.meta +127 -0
  46. Assets/ART/weathered_planks_nor_gl_4k.exr +3 -0
  47. Assets/ART/weathered_planks_nor_gl_4k.exr.meta +127 -0
  48. Assets/Animation.meta +8 -0
  49. Assets/Animation/Axe_model.controller +156 -0
  50. Assets/Animation/Axe_model.controller.meta +8 -0
.config/dotnet-tools.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": 1,
3
+ "isRoot": true,
4
+ "tools": {
5
+ "csharpier": {
6
+ "version": "0.28.2",
7
+ "commands": [
8
+ "dotnet-csharpier"
9
+ ]
10
+ }
11
+ }
12
+ }
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ Assets/ART/weathered_planks_nor_gl_4k.exr filter=lfs diff=lfs merge=lfs -text
37
+ Assets/ART/birch_parts/birch_bark.png filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This .gitignore file should be placed at the root of your Unity project directory.
2
+
3
+ # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
4
+ **/Library/
5
+ **/Temp/
6
+ **/Obj/
7
+ **/Builds/
8
+ **/Logs/
9
+ **/UserSettings/
10
+
11
+ # Asset meta data should only be ignored when the corresponding asset is also ignored.
12
+ !**/*.meta
13
+
14
+ # Uncomment this line if you wish to ignore the asset store tools plugin.
15
+ # **/Assets/AssetStoreTools*
16
+
17
+ # Autogenerated Jetbrains Rider plugin
18
+ **/Assets/Plugins/Editor/JetBrains*
19
+
20
+ # Visual Studio cache directory
21
+ .vs/
22
+
23
+ # Gradle cache directory
24
+ .gradle/
25
+
26
+ # assets
27
+ Assets/Fantasy Skybox FREE/*
28
+ Assets/FantasyEnvironments/*
29
+ Assets/TerrainSampleAssets/*
30
+ Assets/Rock/*
31
+ Assets/Fantasy Wooden GUI Free/*
32
+ Assets/GUI_Parts/*
33
+ Assets/GUI parts (Legacy)/*
34
+ Assets/Rabbits/*
35
+ Assets/New Terrain.asset
36
+ Assets/New Terrain 1.asset
.vscode/extensions.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "recommendations": [
3
+ "visualstudiotoolsforunity.vstuc"
4
+ ]
5
+ }
.vscode/launch.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Attach to Unity",
6
+ "type": "vstuc",
7
+ "request": "attach"
8
+ }
9
+ ]
10
+ }
.vscode/settings.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "files.exclude": {
3
+ "**/.DS_Store": true,
4
+ "**/.git": true,
5
+ "**/.gitmodules": true,
6
+ "**/*.booproj": true,
7
+ "**/*.pidb": true,
8
+ "**/*.suo": true,
9
+ "**/*.user": true,
10
+ "**/*.userprefs": true,
11
+ "**/*.unityproj": true,
12
+ "**/*.dll": true,
13
+ "**/*.exe": true,
14
+ "**/*.pdf": true,
15
+ "**/*.mid": true,
16
+ "**/*.midi": true,
17
+ "**/*.wav": true,
18
+ "**/*.gif": true,
19
+ "**/*.ico": true,
20
+ "**/*.jpg": true,
21
+ "**/*.jpeg": true,
22
+ "**/*.png": true,
23
+ "**/*.psd": true,
24
+ "**/*.tga": true,
25
+ "**/*.tif": true,
26
+ "**/*.tiff": true,
27
+ "**/*.3ds": true,
28
+ "**/*.3DS": true,
29
+ "**/*.fbx": true,
30
+ "**/*.FBX": true,
31
+ "**/*.lxo": true,
32
+ "**/*.LXO": true,
33
+ "**/*.ma": true,
34
+ "**/*.MA": true,
35
+ "**/*.obj": true,
36
+ "**/*.OBJ": true,
37
+ "**/*.asset": true,
38
+ "**/*.cubemap": true,
39
+ "**/*.flare": true,
40
+ "**/*.mat": true,
41
+ "**/*.meta": true,
42
+ "**/*.prefab": true,
43
+ "**/*.unity": true,
44
+ "build/": true,
45
+ "Build/": true,
46
+ "Library/": true,
47
+ "library/": true,
48
+ "obj/": true,
49
+ "Obj/": true,
50
+ "ProjectSettings/": true,
51
+ "temp/": true,
52
+ "Temp/": true
53
+ },
54
+ "dotnet.defaultSolution": "3DSurvivalGame.sln"
55
+ }
3DSurvivalGame.sln ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 12.00
3
+ # Visual Studio 15
4
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{AD92062E-C5F1-BA9C-EF50-0084F4EF227E}"
5
+ EndProject
6
+ Global
7
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
8
+ Debug|Any CPU = Debug|Any CPU
9
+ Release|Any CPU = Release|Any CPU
10
+ EndGlobalSection
11
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
12
+ {AD92062E-C5F1-BA9C-EF50-0084F4EF227E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13
+ {AD92062E-C5F1-BA9C-EF50-0084F4EF227E}.Debug|Any CPU.Build.0 = Debug|Any CPU
14
+ {AD92062E-C5F1-BA9C-EF50-0084F4EF227E}.Release|Any CPU.ActiveCfg = Release|Any CPU
15
+ {AD92062E-C5F1-BA9C-EF50-0084F4EF227E}.Release|Any CPU.Build.0 = Release|Any CPU
16
+ EndGlobalSection
17
+ GlobalSection(SolutionProperties) = preSolution
18
+ HideSolutionNode = FALSE
19
+ EndGlobalSection
20
+ EndGlobal
Assembly-CSharp.csproj ADDED
@@ -0,0 +1,1125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <Project ToolsVersion="Current">
2
+ <!-- Generated file, do not modify, your changes will be overwritten (use AssetPostprocessor.OnGeneratedCSProject) -->
3
+ <PropertyGroup>
4
+ <BaseIntermediateOutputPath>Temp/obj/$(Configuration)/$(MSBuildProjectName)</BaseIntermediateOutputPath>
5
+ <IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
6
+ </PropertyGroup>
7
+ <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
8
+ <ItemGroup>
9
+ <ProjectCapability Include="Unity" />
10
+ </ItemGroup>
11
+ <PropertyGroup>
12
+ <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
13
+ <EnableDefaultItems>false</EnableDefaultItems>
14
+ <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
15
+ <LangVersion>9.0</LangVersion>
16
+ <Configurations>Debug;Release</Configurations>
17
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
18
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
19
+ <RootNamespace></RootNamespace>
20
+ <OutputType>Library</OutputType>
21
+ <AppDesignerFolder>Properties</AppDesignerFolder>
22
+ <AssemblyName>Assembly-CSharp</AssemblyName>
23
+ <TargetFramework>netstandard2.1</TargetFramework>
24
+ <BaseDirectory>.</BaseDirectory>
25
+ </PropertyGroup>
26
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
27
+ <DebugSymbols>true</DebugSymbols>
28
+ <DebugType>full</DebugType>
29
+ <Optimize>false</Optimize>
30
+ <OutputPath>Temp/bin/Debug/</OutputPath>
31
+ <DefineConstants>UNITY_2022_3_29;UNITY_2022_3;UNITY_2022;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;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_2020_3_OR_NEWER;UNITY_2021_1_OR_NEWER;UNITY_2021_2_OR_NEWER;UNITY_2021_3_OR_NEWER;UNITY_2022_1_OR_NEWER;UNITY_2022_2_OR_NEWER;UNITY_2022_3_OR_NEWER;PLATFORM_ARCH_64;UNITY_64;UNITY_INCLUDE_TESTS;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_EDITOR_GAME_SERVICES;ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;ENABLE_MANAGED_UNITYTLS;INCLUDE_DYNAMIC_GI;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;ENABLE_ACCELERATOR_CLIENT_DEBUGGING;ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION;ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT;ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE;PLATFORM_STANDALONE;TEXTCORE_1_0_OR_NEWER;PLATFORM_STANDALONE_OSX;UNITY_STANDALONE_OSX;UNITY_STANDALONE;ENABLE_GAMECENTER;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;ENABLE_SPATIALTRACKING;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;ENABLE_MONO;NET_STANDARD_2_0;NET_STANDARD;NET_STANDARD_2_1;NETSTANDARD;NETSTANDARD2_1;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_OSX;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;TEXTCORE_FONT_ENGINE_1_5_OR_NEWER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
32
+ <ErrorReport>prompt</ErrorReport>
33
+ <WarningLevel>4</WarningLevel>
34
+ <NoWarn>0169;USG0001</NoWarn>
35
+ <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
36
+ </PropertyGroup>
37
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
38
+ <DebugType>pdbonly</DebugType>
39
+ <Optimize>true</Optimize>
40
+ <OutputPath>Temp/bin/Release/</OutputPath>
41
+ <ErrorReport>prompt</ErrorReport>
42
+ <WarningLevel>4</WarningLevel>
43
+ <NoWarn>0169;USG0001</NoWarn>
44
+ <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
45
+ </PropertyGroup>
46
+ <PropertyGroup>
47
+ <NoStandardLibraries>true</NoStandardLibraries>
48
+ <NoStdLib>true</NoStdLib>
49
+ <NoConfig>true</NoConfig>
50
+ <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
51
+ <MSBuildWarningsAsMessages>MSB3277</MSBuildWarningsAsMessages>
52
+ </PropertyGroup>
53
+ <PropertyGroup>
54
+ <UnityProjectGenerator>Package</UnityProjectGenerator>
55
+ <UnityProjectGeneratorVersion>2.0.22</UnityProjectGeneratorVersion>
56
+ <UnityProjectGeneratorStyle>SDK</UnityProjectGeneratorStyle>
57
+ <UnityProjectType>Game:1</UnityProjectType>
58
+ <UnityBuildTarget>StandaloneOSX:2</UnityBuildTarget>
59
+ <UnityVersion>2022.3.29f1</UnityVersion>
60
+ </PropertyGroup>
61
+ <ItemGroup>
62
+ <Analyzer Include="/Users/eliaweiss/.vscode/extensions/visualstudiotoolsforunity.vstuc-1.0.2/Analyzers/Microsoft.Unity.Analyzers.dll" />
63
+ <Analyzer Include="/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" />
64
+ <Analyzer Include="/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" />
65
+ </ItemGroup>
66
+ <ItemGroup>
67
+ <Compile Include="Assets/Scripts/CaloriesBar.cs" />
68
+ <Compile Include="Assets/Scripts/AI_Movement.cs" />
69
+ <Compile Include="Assets/Scripts/HydrationBar.cs" />
70
+ <Compile Include="Assets/Scripts/BuildSystem/ConstructionManager.cs" />
71
+ <Compile Include="Assets/Scripts/GlobalState.cs" />
72
+ <Compile Include="Assets/Scripts/InteractableObject.cs" />
73
+ <Compile Include="Assets/Scripts/BuildSystem/Constructable.cs" />
74
+ <Compile Include="Assets/Scripts/HealthBar.cs" />
75
+ <Compile Include="Assets/Scripts/BuildSystem/GhostItem.cs" />
76
+ <Compile Include="Assets/Scripts/SoundManager.cs" />
77
+ <Compile Include="Assets/Scripts/EquitableItem.cs" />
78
+ <Compile Include="Assets/Scripts/ItemSlot.cs" />
79
+ <Compile Include="Assets/Scripts/PlayerMovement.cs" />
80
+ <Compile Include="Assets/Rabbits/Demo/Scripts/AnimatorParamatersChange.cs" />
81
+ <Compile Include="Assets/Scripts/InventorySystem.cs" />
82
+ <Compile Include="Assets/FantasyEnvironments/Environments/Town/Scripts/Door.cs" />
83
+ <Compile Include="Assets/Scripts/InventoryItem.cs" />
84
+ <Compile Include="Assets/Scripts/ChoppableTree.cs" />
85
+ <Compile Include="Assets/Scripts/BluePrint.cs" />
86
+ <Compile Include="Assets/Scripts/TrashSlot.cs" />
87
+ <Compile Include="Assets/Scripts/ResourceHealthBar.cs" />
88
+ <Compile Include="Assets/Scripts/PlayerState.cs" />
89
+ <Compile Include="Assets/Scripts/DragDrop.cs" />
90
+ <Compile Include="Assets/Scripts/CraftingSystem.cs" />
91
+ <Compile Include="Assets/Scripts/SelectionManager.cs" />
92
+ <Compile Include="Assets/Scripts/MouseMovement.cs" />
93
+ <Compile Include="Assets/Scripts/EquipSystem.cs" />
94
+ </ItemGroup>
95
+ <ItemGroup>
96
+ <None Include="Assets/TerrainSampleAssets/ThirdPartyNotices.txt" />
97
+ <None Include="Assets/Fantasy Skybox FREE/Readme.txt" />
98
+ <None Include="Assets/Fantasy Skybox FREE/ReleaseNotes.txt" />
99
+ <None Include="Assets/TerrainSampleAssets/ShaderGraphs/CustomFunctions/CustomLighting.hlsl" />
100
+ </ItemGroup>
101
+ <ItemGroup>
102
+ <Reference Include="UnityEngine">
103
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll</HintPath>
104
+ <Private>False</Private>
105
+ </Reference>
106
+ <Reference Include="UnityEngine.AIModule">
107
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath>
108
+ <Private>False</Private>
109
+ </Reference>
110
+ <Reference Include="UnityEngine.ARModule">
111
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath>
112
+ <Private>False</Private>
113
+ </Reference>
114
+ <Reference Include="UnityEngine.AccessibilityModule">
115
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath>
116
+ <Private>False</Private>
117
+ </Reference>
118
+ <Reference Include="UnityEngine.AndroidJNIModule">
119
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll</HintPath>
120
+ <Private>False</Private>
121
+ </Reference>
122
+ <Reference Include="UnityEngine.AnimationModule">
123
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath>
124
+ <Private>False</Private>
125
+ </Reference>
126
+ <Reference Include="UnityEngine.AssetBundleModule">
127
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath>
128
+ <Private>False</Private>
129
+ </Reference>
130
+ <Reference Include="UnityEngine.AudioModule">
131
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath>
132
+ <Private>False</Private>
133
+ </Reference>
134
+ <Reference Include="UnityEngine.ClothModule">
135
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath>
136
+ <Private>False</Private>
137
+ </Reference>
138
+ <Reference Include="UnityEngine.ClusterInputModule">
139
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll</HintPath>
140
+ <Private>False</Private>
141
+ </Reference>
142
+ <Reference Include="UnityEngine.ClusterRendererModule">
143
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll</HintPath>
144
+ <Private>False</Private>
145
+ </Reference>
146
+ <Reference Include="UnityEngine.ContentLoadModule">
147
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll</HintPath>
148
+ <Private>False</Private>
149
+ </Reference>
150
+ <Reference Include="UnityEngine.CoreModule">
151
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath>
152
+ <Private>False</Private>
153
+ </Reference>
154
+ <Reference Include="UnityEngine.CrashReportingModule">
155
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath>
156
+ <Private>False</Private>
157
+ </Reference>
158
+ <Reference Include="UnityEngine.DSPGraphModule">
159
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll</HintPath>
160
+ <Private>False</Private>
161
+ </Reference>
162
+ <Reference Include="UnityEngine.DirectorModule">
163
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath>
164
+ <Private>False</Private>
165
+ </Reference>
166
+ <Reference Include="UnityEngine.GIModule">
167
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GIModule.dll</HintPath>
168
+ <Private>False</Private>
169
+ </Reference>
170
+ <Reference Include="UnityEngine.GameCenterModule">
171
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath>
172
+ <Private>False</Private>
173
+ </Reference>
174
+ <Reference Include="UnityEngine.GridModule">
175
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath>
176
+ <Private>False</Private>
177
+ </Reference>
178
+ <Reference Include="UnityEngine.HotReloadModule">
179
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath>
180
+ <Private>False</Private>
181
+ </Reference>
182
+ <Reference Include="UnityEngine.IMGUIModule">
183
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath>
184
+ <Private>False</Private>
185
+ </Reference>
186
+ <Reference Include="UnityEngine.ImageConversionModule">
187
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath>
188
+ <Private>False</Private>
189
+ </Reference>
190
+ <Reference Include="UnityEngine.InputModule">
191
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath>
192
+ <Private>False</Private>
193
+ </Reference>
194
+ <Reference Include="UnityEngine.InputLegacyModule">
195
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll</HintPath>
196
+ <Private>False</Private>
197
+ </Reference>
198
+ <Reference Include="UnityEngine.JSONSerializeModule">
199
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath>
200
+ <Private>False</Private>
201
+ </Reference>
202
+ <Reference Include="UnityEngine.LocalizationModule">
203
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath>
204
+ <Private>False</Private>
205
+ </Reference>
206
+ <Reference Include="UnityEngine.ParticleSystemModule">
207
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath>
208
+ <Private>False</Private>
209
+ </Reference>
210
+ <Reference Include="UnityEngine.PerformanceReportingModule">
211
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath>
212
+ <Private>False</Private>
213
+ </Reference>
214
+ <Reference Include="UnityEngine.PhysicsModule">
215
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath>
216
+ <Private>False</Private>
217
+ </Reference>
218
+ <Reference Include="UnityEngine.Physics2DModule">
219
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath>
220
+ <Private>False</Private>
221
+ </Reference>
222
+ <Reference Include="UnityEngine.ProfilerModule">
223
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath>
224
+ <Private>False</Private>
225
+ </Reference>
226
+ <Reference Include="UnityEngine.PropertiesModule">
227
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PropertiesModule.dll</HintPath>
228
+ <Private>False</Private>
229
+ </Reference>
230
+ <Reference Include="UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule">
231
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll</HintPath>
232
+ <Private>False</Private>
233
+ </Reference>
234
+ <Reference Include="UnityEngine.ScreenCaptureModule">
235
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath>
236
+ <Private>False</Private>
237
+ </Reference>
238
+ <Reference Include="UnityEngine.SharedInternalsModule">
239
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath>
240
+ <Private>False</Private>
241
+ </Reference>
242
+ <Reference Include="UnityEngine.SpriteMaskModule">
243
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath>
244
+ <Private>False</Private>
245
+ </Reference>
246
+ <Reference Include="UnityEngine.SpriteShapeModule">
247
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath>
248
+ <Private>False</Private>
249
+ </Reference>
250
+ <Reference Include="UnityEngine.StreamingModule">
251
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath>
252
+ <Private>False</Private>
253
+ </Reference>
254
+ <Reference Include="UnityEngine.SubstanceModule">
255
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath>
256
+ <Private>False</Private>
257
+ </Reference>
258
+ <Reference Include="UnityEngine.SubsystemsModule">
259
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll</HintPath>
260
+ <Private>False</Private>
261
+ </Reference>
262
+ <Reference Include="UnityEngine.TLSModule">
263
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath>
264
+ <Private>False</Private>
265
+ </Reference>
266
+ <Reference Include="UnityEngine.TerrainModule">
267
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath>
268
+ <Private>False</Private>
269
+ </Reference>
270
+ <Reference Include="UnityEngine.TerrainPhysicsModule">
271
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath>
272
+ <Private>False</Private>
273
+ </Reference>
274
+ <Reference Include="UnityEngine.TextCoreFontEngineModule">
275
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll</HintPath>
276
+ <Private>False</Private>
277
+ </Reference>
278
+ <Reference Include="UnityEngine.TextCoreTextEngineModule">
279
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll</HintPath>
280
+ <Private>False</Private>
281
+ </Reference>
282
+ <Reference Include="UnityEngine.TextRenderingModule">
283
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath>
284
+ <Private>False</Private>
285
+ </Reference>
286
+ <Reference Include="UnityEngine.TilemapModule">
287
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath>
288
+ <Private>False</Private>
289
+ </Reference>
290
+ <Reference Include="UnityEngine.UIModule">
291
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath>
292
+ <Private>False</Private>
293
+ </Reference>
294
+ <Reference Include="UnityEngine.UIElementsModule">
295
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath>
296
+ <Private>False</Private>
297
+ </Reference>
298
+ <Reference Include="UnityEngine.UmbraModule">
299
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath>
300
+ <Private>False</Private>
301
+ </Reference>
302
+ <Reference Include="UnityEngine.UnityAnalyticsModule">
303
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll</HintPath>
304
+ <Private>False</Private>
305
+ </Reference>
306
+ <Reference Include="UnityEngine.UnityAnalyticsCommonModule">
307
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll</HintPath>
308
+ <Private>False</Private>
309
+ </Reference>
310
+ <Reference Include="UnityEngine.UnityConnectModule">
311
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath>
312
+ <Private>False</Private>
313
+ </Reference>
314
+ <Reference Include="UnityEngine.UnityCurlModule">
315
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll</HintPath>
316
+ <Private>False</Private>
317
+ </Reference>
318
+ <Reference Include="UnityEngine.UnityTestProtocolModule">
319
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath>
320
+ <Private>False</Private>
321
+ </Reference>
322
+ <Reference Include="UnityEngine.UnityWebRequestModule">
323
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath>
324
+ <Private>False</Private>
325
+ </Reference>
326
+ <Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
327
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
328
+ <Private>False</Private>
329
+ </Reference>
330
+ <Reference Include="UnityEngine.UnityWebRequestAudioModule">
331
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
332
+ <Private>False</Private>
333
+ </Reference>
334
+ <Reference Include="UnityEngine.UnityWebRequestTextureModule">
335
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
336
+ <Private>False</Private>
337
+ </Reference>
338
+ <Reference Include="UnityEngine.UnityWebRequestWWWModule">
339
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
340
+ <Private>False</Private>
341
+ </Reference>
342
+ <Reference Include="UnityEngine.VFXModule">
343
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath>
344
+ <Private>False</Private>
345
+ </Reference>
346
+ <Reference Include="UnityEngine.VRModule">
347
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll</HintPath>
348
+ <Private>False</Private>
349
+ </Reference>
350
+ <Reference Include="UnityEngine.VehiclesModule">
351
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath>
352
+ <Private>False</Private>
353
+ </Reference>
354
+ <Reference Include="UnityEngine.VideoModule">
355
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath>
356
+ <Private>False</Private>
357
+ </Reference>
358
+ <Reference Include="UnityEngine.VirtualTexturingModule">
359
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll</HintPath>
360
+ <Private>False</Private>
361
+ </Reference>
362
+ <Reference Include="UnityEngine.WindModule">
363
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath>
364
+ <Private>False</Private>
365
+ </Reference>
366
+ <Reference Include="UnityEngine.XRModule">
367
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll</HintPath>
368
+ <Private>False</Private>
369
+ </Reference>
370
+ <Reference Include="UnityEditor">
371
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.dll</HintPath>
372
+ <Private>False</Private>
373
+ </Reference>
374
+ <Reference Include="UnityEditor.CoreModule">
375
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.CoreModule.dll</HintPath>
376
+ <Private>False</Private>
377
+ </Reference>
378
+ <Reference Include="UnityEditor.DeviceSimulatorModule">
379
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll</HintPath>
380
+ <Private>False</Private>
381
+ </Reference>
382
+ <Reference Include="UnityEditor.DiagnosticsModule">
383
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll</HintPath>
384
+ <Private>False</Private>
385
+ </Reference>
386
+ <Reference Include="UnityEditor.EditorToolbarModule">
387
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll</HintPath>
388
+ <Private>False</Private>
389
+ </Reference>
390
+ <Reference Include="UnityEditor.GraphViewModule">
391
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.GraphViewModule.dll</HintPath>
392
+ <Private>False</Private>
393
+ </Reference>
394
+ <Reference Include="UnityEditor.PresetsUIModule">
395
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll</HintPath>
396
+ <Private>False</Private>
397
+ </Reference>
398
+ <Reference Include="UnityEditor.QuickSearchModule">
399
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll</HintPath>
400
+ <Private>False</Private>
401
+ </Reference>
402
+ <Reference Include="UnityEditor.SceneTemplateModule">
403
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll</HintPath>
404
+ <Private>False</Private>
405
+ </Reference>
406
+ <Reference Include="UnityEditor.SceneViewModule">
407
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.SceneViewModule.dll</HintPath>
408
+ <Private>False</Private>
409
+ </Reference>
410
+ <Reference Include="UnityEditor.TextCoreFontEngineModule">
411
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll</HintPath>
412
+ <Private>False</Private>
413
+ </Reference>
414
+ <Reference Include="UnityEditor.TextCoreTextEngineModule">
415
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll</HintPath>
416
+ <Private>False</Private>
417
+ </Reference>
418
+ <Reference Include="UnityEditor.UIBuilderModule">
419
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll</HintPath>
420
+ <Private>False</Private>
421
+ </Reference>
422
+ <Reference Include="UnityEditor.UIElementsModule">
423
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsModule.dll</HintPath>
424
+ <Private>False</Private>
425
+ </Reference>
426
+ <Reference Include="UnityEditor.UIElementsSamplesModule">
427
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll</HintPath>
428
+ <Private>False</Private>
429
+ </Reference>
430
+ <Reference Include="UnityEditor.UnityConnectModule">
431
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll</HintPath>
432
+ <Private>False</Private>
433
+ </Reference>
434
+ <Reference Include="ReportGeneratorMerged">
435
+ <HintPath>Library/PackageCache/com.unity.testtools.codecoverage@1.2.5/lib/ReportGenerator/ReportGeneratorMerged.dll</HintPath>
436
+ <Private>False</Private>
437
+ </Reference>
438
+ <Reference Include="Unity.VisualScripting.Antlr3.Runtime">
439
+ <HintPath>Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll</HintPath>
440
+ <Private>False</Private>
441
+ </Reference>
442
+ <Reference Include="UnityEditor.iOS.Extensions.Xcode">
443
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.iOS.Extensions.Xcode.dll</HintPath>
444
+ <Private>False</Private>
445
+ </Reference>
446
+ <Reference Include="netstandard">
447
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/ref/2.1.0/netstandard.dll</HintPath>
448
+ <Private>False</Private>
449
+ </Reference>
450
+ <Reference Include="Microsoft.Win32.Primitives">
451
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll</HintPath>
452
+ <Private>False</Private>
453
+ </Reference>
454
+ <Reference Include="System.AppContext">
455
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll</HintPath>
456
+ <Private>False</Private>
457
+ </Reference>
458
+ <Reference Include="System.Buffers">
459
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll</HintPath>
460
+ <Private>False</Private>
461
+ </Reference>
462
+ <Reference Include="System.Collections.Concurrent">
463
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll</HintPath>
464
+ <Private>False</Private>
465
+ </Reference>
466
+ <Reference Include="System.Collections.NonGeneric">
467
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll</HintPath>
468
+ <Private>False</Private>
469
+ </Reference>
470
+ <Reference Include="System.Collections.Specialized">
471
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll</HintPath>
472
+ <Private>False</Private>
473
+ </Reference>
474
+ <Reference Include="System.Collections">
475
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll</HintPath>
476
+ <Private>False</Private>
477
+ </Reference>
478
+ <Reference Include="System.ComponentModel.EventBasedAsync">
479
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll</HintPath>
480
+ <Private>False</Private>
481
+ </Reference>
482
+ <Reference Include="System.ComponentModel.Primitives">
483
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll</HintPath>
484
+ <Private>False</Private>
485
+ </Reference>
486
+ <Reference Include="System.ComponentModel.TypeConverter">
487
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll</HintPath>
488
+ <Private>False</Private>
489
+ </Reference>
490
+ <Reference Include="System.ComponentModel">
491
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll</HintPath>
492
+ <Private>False</Private>
493
+ </Reference>
494
+ <Reference Include="System.Console">
495
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll</HintPath>
496
+ <Private>False</Private>
497
+ </Reference>
498
+ <Reference Include="System.Data.Common">
499
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll</HintPath>
500
+ <Private>False</Private>
501
+ </Reference>
502
+ <Reference Include="System.Diagnostics.Contracts">
503
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll</HintPath>
504
+ <Private>False</Private>
505
+ </Reference>
506
+ <Reference Include="System.Diagnostics.Debug">
507
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll</HintPath>
508
+ <Private>False</Private>
509
+ </Reference>
510
+ <Reference Include="System.Diagnostics.FileVersionInfo">
511
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll</HintPath>
512
+ <Private>False</Private>
513
+ </Reference>
514
+ <Reference Include="System.Diagnostics.Process">
515
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll</HintPath>
516
+ <Private>False</Private>
517
+ </Reference>
518
+ <Reference Include="System.Diagnostics.StackTrace">
519
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll</HintPath>
520
+ <Private>False</Private>
521
+ </Reference>
522
+ <Reference Include="System.Diagnostics.TextWriterTraceListener">
523
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll</HintPath>
524
+ <Private>False</Private>
525
+ </Reference>
526
+ <Reference Include="System.Diagnostics.Tools">
527
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll</HintPath>
528
+ <Private>False</Private>
529
+ </Reference>
530
+ <Reference Include="System.Diagnostics.TraceSource">
531
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll</HintPath>
532
+ <Private>False</Private>
533
+ </Reference>
534
+ <Reference Include="System.Diagnostics.Tracing">
535
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll</HintPath>
536
+ <Private>False</Private>
537
+ </Reference>
538
+ <Reference Include="System.Drawing.Primitives">
539
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll</HintPath>
540
+ <Private>False</Private>
541
+ </Reference>
542
+ <Reference Include="System.Dynamic.Runtime">
543
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll</HintPath>
544
+ <Private>False</Private>
545
+ </Reference>
546
+ <Reference Include="System.Globalization.Calendars">
547
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll</HintPath>
548
+ <Private>False</Private>
549
+ </Reference>
550
+ <Reference Include="System.Globalization.Extensions">
551
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll</HintPath>
552
+ <Private>False</Private>
553
+ </Reference>
554
+ <Reference Include="System.Globalization">
555
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll</HintPath>
556
+ <Private>False</Private>
557
+ </Reference>
558
+ <Reference Include="System.IO.Compression.ZipFile">
559
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll</HintPath>
560
+ <Private>False</Private>
561
+ </Reference>
562
+ <Reference Include="System.IO.Compression">
563
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll</HintPath>
564
+ <Private>False</Private>
565
+ </Reference>
566
+ <Reference Include="System.IO.FileSystem.DriveInfo">
567
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll</HintPath>
568
+ <Private>False</Private>
569
+ </Reference>
570
+ <Reference Include="System.IO.FileSystem.Primitives">
571
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll</HintPath>
572
+ <Private>False</Private>
573
+ </Reference>
574
+ <Reference Include="System.IO.FileSystem.Watcher">
575
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll</HintPath>
576
+ <Private>False</Private>
577
+ </Reference>
578
+ <Reference Include="System.IO.FileSystem">
579
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll</HintPath>
580
+ <Private>False</Private>
581
+ </Reference>
582
+ <Reference Include="System.IO.IsolatedStorage">
583
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll</HintPath>
584
+ <Private>False</Private>
585
+ </Reference>
586
+ <Reference Include="System.IO.MemoryMappedFiles">
587
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll</HintPath>
588
+ <Private>False</Private>
589
+ </Reference>
590
+ <Reference Include="System.IO.Pipes">
591
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll</HintPath>
592
+ <Private>False</Private>
593
+ </Reference>
594
+ <Reference Include="System.IO.UnmanagedMemoryStream">
595
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll</HintPath>
596
+ <Private>False</Private>
597
+ </Reference>
598
+ <Reference Include="System.IO">
599
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll</HintPath>
600
+ <Private>False</Private>
601
+ </Reference>
602
+ <Reference Include="System.Linq.Expressions">
603
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll</HintPath>
604
+ <Private>False</Private>
605
+ </Reference>
606
+ <Reference Include="System.Linq.Parallel">
607
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll</HintPath>
608
+ <Private>False</Private>
609
+ </Reference>
610
+ <Reference Include="System.Linq.Queryable">
611
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll</HintPath>
612
+ <Private>False</Private>
613
+ </Reference>
614
+ <Reference Include="System.Linq">
615
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll</HintPath>
616
+ <Private>False</Private>
617
+ </Reference>
618
+ <Reference Include="System.Memory">
619
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll</HintPath>
620
+ <Private>False</Private>
621
+ </Reference>
622
+ <Reference Include="System.Net.Http">
623
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll</HintPath>
624
+ <Private>False</Private>
625
+ </Reference>
626
+ <Reference Include="System.Net.NameResolution">
627
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll</HintPath>
628
+ <Private>False</Private>
629
+ </Reference>
630
+ <Reference Include="System.Net.NetworkInformation">
631
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll</HintPath>
632
+ <Private>False</Private>
633
+ </Reference>
634
+ <Reference Include="System.Net.Ping">
635
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll</HintPath>
636
+ <Private>False</Private>
637
+ </Reference>
638
+ <Reference Include="System.Net.Primitives">
639
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll</HintPath>
640
+ <Private>False</Private>
641
+ </Reference>
642
+ <Reference Include="System.Net.Requests">
643
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll</HintPath>
644
+ <Private>False</Private>
645
+ </Reference>
646
+ <Reference Include="System.Net.Security">
647
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll</HintPath>
648
+ <Private>False</Private>
649
+ </Reference>
650
+ <Reference Include="System.Net.Sockets">
651
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll</HintPath>
652
+ <Private>False</Private>
653
+ </Reference>
654
+ <Reference Include="System.Net.WebHeaderCollection">
655
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll</HintPath>
656
+ <Private>False</Private>
657
+ </Reference>
658
+ <Reference Include="System.Net.WebSockets.Client">
659
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll</HintPath>
660
+ <Private>False</Private>
661
+ </Reference>
662
+ <Reference Include="System.Net.WebSockets">
663
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll</HintPath>
664
+ <Private>False</Private>
665
+ </Reference>
666
+ <Reference Include="System.Numerics.Vectors">
667
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll</HintPath>
668
+ <Private>False</Private>
669
+ </Reference>
670
+ <Reference Include="System.ObjectModel">
671
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll</HintPath>
672
+ <Private>False</Private>
673
+ </Reference>
674
+ <Reference Include="System.Reflection.DispatchProxy">
675
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll</HintPath>
676
+ <Private>False</Private>
677
+ </Reference>
678
+ <Reference Include="System.Reflection.Emit.ILGeneration">
679
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll</HintPath>
680
+ <Private>False</Private>
681
+ </Reference>
682
+ <Reference Include="System.Reflection.Emit.Lightweight">
683
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll</HintPath>
684
+ <Private>False</Private>
685
+ </Reference>
686
+ <Reference Include="System.Reflection.Emit">
687
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll</HintPath>
688
+ <Private>False</Private>
689
+ </Reference>
690
+ <Reference Include="System.Reflection.Extensions">
691
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll</HintPath>
692
+ <Private>False</Private>
693
+ </Reference>
694
+ <Reference Include="System.Reflection.Primitives">
695
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll</HintPath>
696
+ <Private>False</Private>
697
+ </Reference>
698
+ <Reference Include="System.Reflection">
699
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll</HintPath>
700
+ <Private>False</Private>
701
+ </Reference>
702
+ <Reference Include="System.Resources.Reader">
703
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll</HintPath>
704
+ <Private>False</Private>
705
+ </Reference>
706
+ <Reference Include="System.Resources.ResourceManager">
707
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll</HintPath>
708
+ <Private>False</Private>
709
+ </Reference>
710
+ <Reference Include="System.Resources.Writer">
711
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll</HintPath>
712
+ <Private>False</Private>
713
+ </Reference>
714
+ <Reference Include="System.Runtime.CompilerServices.VisualC">
715
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll</HintPath>
716
+ <Private>False</Private>
717
+ </Reference>
718
+ <Reference Include="System.Runtime.Extensions">
719
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll</HintPath>
720
+ <Private>False</Private>
721
+ </Reference>
722
+ <Reference Include="System.Runtime.Handles">
723
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll</HintPath>
724
+ <Private>False</Private>
725
+ </Reference>
726
+ <Reference Include="System.Runtime.InteropServices.RuntimeInformation">
727
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
728
+ <Private>False</Private>
729
+ </Reference>
730
+ <Reference Include="System.Runtime.InteropServices">
731
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll</HintPath>
732
+ <Private>False</Private>
733
+ </Reference>
734
+ <Reference Include="System.Runtime.Numerics">
735
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll</HintPath>
736
+ <Private>False</Private>
737
+ </Reference>
738
+ <Reference Include="System.Runtime.Serialization.Formatters">
739
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll</HintPath>
740
+ <Private>False</Private>
741
+ </Reference>
742
+ <Reference Include="System.Runtime.Serialization.Json">
743
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll</HintPath>
744
+ <Private>False</Private>
745
+ </Reference>
746
+ <Reference Include="System.Runtime.Serialization.Primitives">
747
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll</HintPath>
748
+ <Private>False</Private>
749
+ </Reference>
750
+ <Reference Include="System.Runtime.Serialization.Xml">
751
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll</HintPath>
752
+ <Private>False</Private>
753
+ </Reference>
754
+ <Reference Include="System.Runtime">
755
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll</HintPath>
756
+ <Private>False</Private>
757
+ </Reference>
758
+ <Reference Include="System.Security.Claims">
759
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll</HintPath>
760
+ <Private>False</Private>
761
+ </Reference>
762
+ <Reference Include="System.Security.Cryptography.Algorithms">
763
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll</HintPath>
764
+ <Private>False</Private>
765
+ </Reference>
766
+ <Reference Include="System.Security.Cryptography.Csp">
767
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll</HintPath>
768
+ <Private>False</Private>
769
+ </Reference>
770
+ <Reference Include="System.Security.Cryptography.Encoding">
771
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll</HintPath>
772
+ <Private>False</Private>
773
+ </Reference>
774
+ <Reference Include="System.Security.Cryptography.Primitives">
775
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll</HintPath>
776
+ <Private>False</Private>
777
+ </Reference>
778
+ <Reference Include="System.Security.Cryptography.X509Certificates">
779
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll</HintPath>
780
+ <Private>False</Private>
781
+ </Reference>
782
+ <Reference Include="System.Security.Principal">
783
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll</HintPath>
784
+ <Private>False</Private>
785
+ </Reference>
786
+ <Reference Include="System.Security.SecureString">
787
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll</HintPath>
788
+ <Private>False</Private>
789
+ </Reference>
790
+ <Reference Include="System.Text.Encoding.Extensions">
791
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll</HintPath>
792
+ <Private>False</Private>
793
+ </Reference>
794
+ <Reference Include="System.Text.Encoding">
795
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll</HintPath>
796
+ <Private>False</Private>
797
+ </Reference>
798
+ <Reference Include="System.Text.RegularExpressions">
799
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll</HintPath>
800
+ <Private>False</Private>
801
+ </Reference>
802
+ <Reference Include="System.Threading.Overlapped">
803
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll</HintPath>
804
+ <Private>False</Private>
805
+ </Reference>
806
+ <Reference Include="System.Threading.Tasks.Extensions">
807
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll</HintPath>
808
+ <Private>False</Private>
809
+ </Reference>
810
+ <Reference Include="System.Threading.Tasks.Parallel">
811
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll</HintPath>
812
+ <Private>False</Private>
813
+ </Reference>
814
+ <Reference Include="System.Threading.Tasks">
815
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll</HintPath>
816
+ <Private>False</Private>
817
+ </Reference>
818
+ <Reference Include="System.Threading.Thread">
819
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll</HintPath>
820
+ <Private>False</Private>
821
+ </Reference>
822
+ <Reference Include="System.Threading.ThreadPool">
823
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll</HintPath>
824
+ <Private>False</Private>
825
+ </Reference>
826
+ <Reference Include="System.Threading.Timer">
827
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll</HintPath>
828
+ <Private>False</Private>
829
+ </Reference>
830
+ <Reference Include="System.Threading">
831
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll</HintPath>
832
+ <Private>False</Private>
833
+ </Reference>
834
+ <Reference Include="System.ValueTuple">
835
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll</HintPath>
836
+ <Private>False</Private>
837
+ </Reference>
838
+ <Reference Include="System.Xml.ReaderWriter">
839
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll</HintPath>
840
+ <Private>False</Private>
841
+ </Reference>
842
+ <Reference Include="System.Xml.XDocument">
843
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll</HintPath>
844
+ <Private>False</Private>
845
+ </Reference>
846
+ <Reference Include="System.Xml.XPath.XDocument">
847
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll</HintPath>
848
+ <Private>False</Private>
849
+ </Reference>
850
+ <Reference Include="System.Xml.XPath">
851
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll</HintPath>
852
+ <Private>False</Private>
853
+ </Reference>
854
+ <Reference Include="System.Xml.XmlDocument">
855
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll</HintPath>
856
+ <Private>False</Private>
857
+ </Reference>
858
+ <Reference Include="System.Xml.XmlSerializer">
859
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll</HintPath>
860
+ <Private>False</Private>
861
+ </Reference>
862
+ <Reference Include="System.Runtime.InteropServices.WindowsRuntime">
863
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
864
+ <Private>False</Private>
865
+ </Reference>
866
+ <Reference Include="System.ComponentModel.Composition">
867
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll</HintPath>
868
+ <Private>False</Private>
869
+ </Reference>
870
+ <Reference Include="System.Core">
871
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll</HintPath>
872
+ <Private>False</Private>
873
+ </Reference>
874
+ <Reference Include="System.Data">
875
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll</HintPath>
876
+ <Private>False</Private>
877
+ </Reference>
878
+ <Reference Include="System.Drawing">
879
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll</HintPath>
880
+ <Private>False</Private>
881
+ </Reference>
882
+ <Reference Include="System.IO.Compression.FileSystem">
883
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll</HintPath>
884
+ <Private>False</Private>
885
+ </Reference>
886
+ <Reference Include="System.Net">
887
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll</HintPath>
888
+ <Private>False</Private>
889
+ </Reference>
890
+ <Reference Include="System.Numerics">
891
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll</HintPath>
892
+ <Private>False</Private>
893
+ </Reference>
894
+ <Reference Include="System.Runtime.Serialization">
895
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll</HintPath>
896
+ <Private>False</Private>
897
+ </Reference>
898
+ <Reference Include="System.ServiceModel.Web">
899
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll</HintPath>
900
+ <Private>False</Private>
901
+ </Reference>
902
+ <Reference Include="System.Transactions">
903
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll</HintPath>
904
+ <Private>False</Private>
905
+ </Reference>
906
+ <Reference Include="System.Web">
907
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll</HintPath>
908
+ <Private>False</Private>
909
+ </Reference>
910
+ <Reference Include="System.Windows">
911
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll</HintPath>
912
+ <Private>False</Private>
913
+ </Reference>
914
+ <Reference Include="System.Xml.Linq">
915
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll</HintPath>
916
+ <Private>False</Private>
917
+ </Reference>
918
+ <Reference Include="System.Xml.Serialization">
919
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll</HintPath>
920
+ <Private>False</Private>
921
+ </Reference>
922
+ <Reference Include="System.Xml">
923
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll</HintPath>
924
+ <Private>False</Private>
925
+ </Reference>
926
+ <Reference Include="System">
927
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/System.dll</HintPath>
928
+ <Private>False</Private>
929
+ </Reference>
930
+ <Reference Include="mscorlib">
931
+ <HintPath>/Applications/Unity/Hub/Editor/2022.3.29f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll</HintPath>
932
+ <Private>False</Private>
933
+ </Reference>
934
+ <Reference Include="Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary">
935
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll</HintPath>
936
+ <Private>False</Private>
937
+ </Reference>
938
+ <Reference Include="Unity.EditorCoroutines.Editor">
939
+ <HintPath>Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll</HintPath>
940
+ <Private>False</Private>
941
+ </Reference>
942
+ <Reference Include="Unity.VisualEffectGraph.Runtime">
943
+ <HintPath>Library/ScriptAssemblies/Unity.VisualEffectGraph.Runtime.dll</HintPath>
944
+ <Private>False</Private>
945
+ </Reference>
946
+ <Reference Include="Unity.RenderPipelines.Core.Runtime">
947
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.dll</HintPath>
948
+ <Private>False</Private>
949
+ </Reference>
950
+ <Reference Include="Unity.RenderPipelines.Universal.Runtime">
951
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.dll</HintPath>
952
+ <Private>False</Private>
953
+ </Reference>
954
+ <Reference Include="Unity.Burst.Editor">
955
+ <HintPath>Library/ScriptAssemblies/Unity.Burst.Editor.dll</HintPath>
956
+ <Private>False</Private>
957
+ </Reference>
958
+ <Reference Include="Unity.Burst">
959
+ <HintPath>Library/ScriptAssemblies/Unity.Burst.dll</HintPath>
960
+ <Private>False</Private>
961
+ </Reference>
962
+ <Reference Include="Unity.PlasticSCM.Editor">
963
+ <HintPath>Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll</HintPath>
964
+ <Private>False</Private>
965
+ </Reference>
966
+ <Reference Include="Unity.Timeline.Editor">
967
+ <HintPath>Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
968
+ <Private>False</Private>
969
+ </Reference>
970
+ <Reference Include="Unity.VisualScripting.Shared.Editor">
971
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll</HintPath>
972
+ <Private>False</Private>
973
+ </Reference>
974
+ <Reference Include="Unity.ShaderGraph.Editor">
975
+ <HintPath>Library/ScriptAssemblies/Unity.ShaderGraph.Editor.dll</HintPath>
976
+ <Private>False</Private>
977
+ </Reference>
978
+ <Reference Include="Unity.VisualStudio.Editor">
979
+ <HintPath>Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll</HintPath>
980
+ <Private>False</Private>
981
+ </Reference>
982
+ <Reference Include="UnityEditor.UI">
983
+ <HintPath>Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
984
+ <Private>False</Private>
985
+ </Reference>
986
+ <Reference Include="Unity.VisualScripting.Core">
987
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.Core.dll</HintPath>
988
+ <Private>False</Private>
989
+ </Reference>
990
+ <Reference Include="Unity.VisualScripting.Core.Editor">
991
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll</HintPath>
992
+ <Private>False</Private>
993
+ </Reference>
994
+ <Reference Include="Unity.Rider.Editor">
995
+ <HintPath>Library/ScriptAssemblies/Unity.Rider.Editor.dll</HintPath>
996
+ <Private>False</Private>
997
+ </Reference>
998
+ <Reference Include="UnityEngine.UI">
999
+ <HintPath>Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
1000
+ <Private>False</Private>
1001
+ </Reference>
1002
+ <Reference Include="Unity.RenderPipelines.Universal.Config.Runtime">
1003
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Config.Runtime.dll</HintPath>
1004
+ <Private>False</Private>
1005
+ </Reference>
1006
+ <Reference Include="Unity.RenderPipelines.Core.Editor">
1007
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.dll</HintPath>
1008
+ <Private>False</Private>
1009
+ </Reference>
1010
+ <Reference Include="Unity.VisualEffectGraph.Editor">
1011
+ <HintPath>Library/ScriptAssemblies/Unity.VisualEffectGraph.Editor.dll</HintPath>
1012
+ <Private>False</Private>
1013
+ </Reference>
1014
+ <Reference Include="Unity.VisualScripting.Flow">
1015
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll</HintPath>
1016
+ <Private>False</Private>
1017
+ </Reference>
1018
+ <Reference Include="Unity.VisualScripting.Flow.Editor">
1019
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll</HintPath>
1020
+ <Private>False</Private>
1021
+ </Reference>
1022
+ <Reference Include="Unity.Mathematics.Editor">
1023
+ <HintPath>Library/ScriptAssemblies/Unity.Mathematics.Editor.dll</HintPath>
1024
+ <Private>False</Private>
1025
+ </Reference>
1026
+ <Reference Include="Unity.RenderPipeline.Universal.ShaderLibrary">
1027
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.dll</HintPath>
1028
+ <Private>False</Private>
1029
+ </Reference>
1030
+ <Reference Include="Unity.Timeline">
1031
+ <HintPath>Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
1032
+ <Private>False</Private>
1033
+ </Reference>
1034
+ <Reference Include="Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection">
1035
+ <HintPath>Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll</HintPath>
1036
+ <Private>False</Private>
1037
+ </Reference>
1038
+ <Reference Include="Unity.RenderPipelines.HighDefinition.Config.Runtime">
1039
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.HighDefinition.Config.Runtime.dll</HintPath>
1040
+ <Private>False</Private>
1041
+ </Reference>
1042
+ <Reference Include="Unity.VisualScripting.SettingsProvider.Editor">
1043
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll</HintPath>
1044
+ <Private>False</Private>
1045
+ </Reference>
1046
+ <Reference Include="Unity.Performance.Profile-Analyzer.Editor">
1047
+ <HintPath>Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.dll</HintPath>
1048
+ <Private>False</Private>
1049
+ </Reference>
1050
+ <Reference Include="Unity.RenderPipelines.Core.ShaderLibrary">
1051
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.dll</HintPath>
1052
+ <Private>False</Private>
1053
+ </Reference>
1054
+ <Reference Include="Unity.TestTools.CodeCoverage.Editor">
1055
+ <HintPath>Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.dll</HintPath>
1056
+ <Private>False</Private>
1057
+ </Reference>
1058
+ <Reference Include="Unity.TestTools.CodeCoverage.Editor.OpenCover.Model">
1059
+ <HintPath>Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll</HintPath>
1060
+ <Private>False</Private>
1061
+ </Reference>
1062
+ <Reference Include="Unity.VisualScripting.State.Editor">
1063
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll</HintPath>
1064
+ <Private>False</Private>
1065
+ </Reference>
1066
+ <Reference Include="PPv2URPConverters">
1067
+ <HintPath>Library/ScriptAssemblies/PPv2URPConverters.dll</HintPath>
1068
+ <Private>False</Private>
1069
+ </Reference>
1070
+ <Reference Include="Unity.Mathematics">
1071
+ <HintPath>Library/ScriptAssemblies/Unity.Mathematics.dll</HintPath>
1072
+ <Private>False</Private>
1073
+ </Reference>
1074
+ <Reference Include="Unity.TextMeshPro">
1075
+ <HintPath>Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
1076
+ <Private>False</Private>
1077
+ </Reference>
1078
+ <Reference Include="Unity.TextMeshPro.Editor">
1079
+ <HintPath>Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
1080
+ <Private>False</Private>
1081
+ </Reference>
1082
+ <Reference Include="Unity.Searcher.Editor">
1083
+ <HintPath>Library/ScriptAssemblies/Unity.Searcher.Editor.dll</HintPath>
1084
+ <Private>False</Private>
1085
+ </Reference>
1086
+ <Reference Include="Unity.RenderPipelines.Universal.Shaders">
1087
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.dll</HintPath>
1088
+ <Private>False</Private>
1089
+ </Reference>
1090
+ <Reference Include="Unity.VisualScripting.State">
1091
+ <HintPath>Library/ScriptAssemblies/Unity.VisualScripting.State.dll</HintPath>
1092
+ <Private>False</Private>
1093
+ </Reference>
1094
+ <Reference Include="Unity.VSCode.Editor">
1095
+ <HintPath>Library/ScriptAssemblies/Unity.VSCode.Editor.dll</HintPath>
1096
+ <Private>False</Private>
1097
+ </Reference>
1098
+ <Reference Include="Unity.RenderPipelines.HighDefinition.Runtime">
1099
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.HighDefinition.Runtime.dll</HintPath>
1100
+ <Private>False</Private>
1101
+ </Reference>
1102
+ <Reference Include="Unity.RenderPipelines.Universal.Editor">
1103
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.dll</HintPath>
1104
+ <Private>False</Private>
1105
+ </Reference>
1106
+ <Reference Include="Unity.RenderPipelines.HighDefinition.Editor">
1107
+ <HintPath>Library/ScriptAssemblies/Unity.RenderPipelines.HighDefinition.Editor.dll</HintPath>
1108
+ <Private>False</Private>
1109
+ </Reference>
1110
+ </ItemGroup>
1111
+ <ItemGroup>
1112
+ </ItemGroup>
1113
+ <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
1114
+ <ItemGroup>
1115
+ <ProjectCapability Remove="LaunchProfiles" />
1116
+ <ProjectCapability Remove="SharedProjectReferences" />
1117
+ <ProjectCapability Remove="ReferenceManagerSharedProjects" />
1118
+ <ProjectCapability Remove="ProjectReferences" />
1119
+ <ProjectCapability Remove="ReferenceManagerProjects" />
1120
+ <ProjectCapability Remove="COMReferences" />
1121
+ <ProjectCapability Remove="ReferenceManagerCOM" />
1122
+ <ProjectCapability Remove="AssemblyReferences" />
1123
+ <ProjectCapability Remove="ReferenceManagerAssemblies" />
1124
+ </ItemGroup>
1125
+ </Project>
Assets/ART.meta ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 588607725230f40fa8c988e6c0c517c9
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
Assets/ART/UI ART.meta ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: dd90cad87f9814e8f9c3871717989fb7
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
Assets/ART/UI ART/cursor.png ADDED
Assets/ART/UI ART/cursor.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 6c77a374913d541dc9f2b37f9461797a
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 1
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 0
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 7
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 32
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID:
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/file icon.png ADDED
Assets/ART/UI ART/file icon.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: b62a31fd78c8f4156bb5d29d495aeebf
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/hand.png ADDED
Assets/ART/UI ART/hand.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 05429836094584a0c8ae3c14c122f0b6
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/refine icon.png ADDED
Assets/ART/UI ART/refine icon.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: cf1fbb23b0c8f4d248cdd7e45ef79e42
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/sphere.png ADDED
Assets/ART/UI ART/sphere.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 151780ce128a3428382654aeff08f2fe
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/sticks.png ADDED
Assets/ART/UI ART/sticks.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: efafd35f35eb04923a4fc7fba7549803
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/tools.png ADDED
Assets/ART/UI ART/tools.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: aa29a2b04abbf4105ad2228fd4573c9c
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/wall.png ADDED
Assets/ART/UI ART/wall.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: e3036ccaf189f43ea973977be6200a62
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/wodden-box.png ADDED
Assets/ART/UI ART/wodden-box.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 31f9dbfcf9eda422eb8f8cf4158536f9
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/UI ART/wooden wall.png ADDED
Assets/ART/UI ART/wooden wall.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 11d69b1c63b6e47e3b9713d222c9f247
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/birch_parts.meta ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 241112d18e87a4e2699f328bf6ee5351
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
Assets/ART/birch_parts/birch_bark.png ADDED

Git LFS Details

  • SHA256: 7273e6245ef891d36c0a508d7e4867e1b6244fb08d7d21336b5c86766fd9ec51
  • Pointer size: 132 Bytes
  • Size of remote file: 2.89 MB
Assets/ART/birch_parts/birch_bark.png.meta ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 91ef45221b4494397a179611decc9d7a
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 10
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 1
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ isReadable: 0
24
+ streamingMipmaps: 0
25
+ streamingMipmapsPriority: 0
26
+ grayScaleToAlpha: 0
27
+ generateCubemap: 6
28
+ cubemapConvolution: 0
29
+ seamlessCubemap: 0
30
+ textureFormat: 1
31
+ maxTextureSize: 2048
32
+ textureSettings:
33
+ serializedVersion: 2
34
+ filterMode: -1
35
+ aniso: -1
36
+ mipBias: -100
37
+ wrapU: -1
38
+ wrapV: -1
39
+ wrapW: -1
40
+ nPOTScale: 1
41
+ lightmap: 0
42
+ compressionQuality: 50
43
+ spriteMode: 0
44
+ spriteExtrude: 1
45
+ spriteMeshType: 1
46
+ alignment: 0
47
+ spritePivot: {x: 0.5, y: 0.5}
48
+ spritePixelsToUnits: 100
49
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
50
+ spriteGenerateFallbackPhysicsShape: 1
51
+ alphaUsage: 1
52
+ alphaIsTransparency: 0
53
+ spriteTessellationDetail: -1
54
+ textureType: 0
55
+ textureShape: 1
56
+ singleChannelComponent: 0
57
+ maxTextureSizeSet: 0
58
+ compressionQualitySet: 0
59
+ textureFormatSet: 0
60
+ platformSettings:
61
+ - serializedVersion: 3
62
+ buildTarget: DefaultTexturePlatform
63
+ maxTextureSize: 2048
64
+ resizeAlgorithm: 0
65
+ textureFormat: -1
66
+ textureCompression: 1
67
+ compressionQuality: 50
68
+ crunchedCompression: 0
69
+ allowsAlphaSplitting: 0
70
+ overridden: 0
71
+ androidETC2FallbackOverride: 0
72
+ forceMaximumCompressionQuality_BC6H_BC7: 0
73
+ spriteSheet:
74
+ serializedVersion: 2
75
+ sprites: []
76
+ outline: []
77
+ physicsShape: []
78
+ bones: []
79
+ spriteID:
80
+ internalID: 0
81
+ vertices: []
82
+ indices:
83
+ edges: []
84
+ weights: []
85
+ secondaryTextures: []
86
+ spritePackingTag:
87
+ pSDRemoveMatte: 0
88
+ pSDShowRemoveMatteOption: 0
89
+ userData:
90
+ assetBundleName:
91
+ assetBundleVariant:
Assets/ART/birch_parts/inner_trunk.jpeg ADDED
Assets/ART/birch_parts/inner_trunk.jpeg.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 94ed0bd221d4f48d4a782df5c02ddfc8
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 1
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 0
41
+ wrapV: 0
42
+ wrapW: 0
43
+ nPOTScale: 1
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 0
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 0
56
+ spriteTessellationDetail: -1
57
+ textureType: 0
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID:
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/birch_parts/log.png ADDED
Assets/ART/birch_parts/log.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 37141bfd0fa2e45e88ab73918f36468d
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/birch_parts/stump.png ADDED
Assets/ART/birch_parts/stump.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 0dc54073ddc2342a5815e50da7fdb69c
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 1
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 0
41
+ wrapV: 0
42
+ wrapW: 0
43
+ nPOTScale: 1
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 0
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 0
56
+ spriteTessellationDetail: -1
57
+ textureType: 0
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID:
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/trash.png ADDED
Assets/ART/trash.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 5cce7d1517d1048718e27f91aa6dc7ee
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/trash_open.png ADDED
Assets/ART/trash_open.png.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 01f24c561f093435188a789009204ee5
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/wd_n2_t.PNG ADDED
Assets/ART/wd_n2_t.PNG.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 9af46a64db9524d6b95c17ac330cc089
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 0
10
+ sRGBTexture: 1
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 1
56
+ spriteTessellationDetail: -1
57
+ textureType: 8
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/ART/weathered_planks_nor_gl_4k.exr ADDED

Git LFS Details

  • SHA256: 31b2b455e318be8ebb737bcff8a9a46c0db189de41891e834bf86af79c7dc324
  • Pointer size: 133 Bytes
  • Size of remote file: 32.4 MB
Assets/ART/weathered_planks_nor_gl_4k.exr.meta ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 6342a3a6d599545258b1e600d67fef3d
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 13
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 1
10
+ sRGBTexture: 0
11
+ linearTexture: 0
12
+ fadeOut: 0
13
+ borderMipMap: 0
14
+ mipMapsPreserveCoverage: 0
15
+ alphaTestReferenceValue: 0.5
16
+ mipMapFadeDistanceStart: 1
17
+ mipMapFadeDistanceEnd: 3
18
+ bumpmap:
19
+ convertToNormalMap: 0
20
+ externalNormalMap: 0
21
+ heightScale: 0.25
22
+ normalMapFilter: 0
23
+ flipGreenChannel: 0
24
+ isReadable: 0
25
+ streamingMipmaps: 0
26
+ streamingMipmapsPriority: 0
27
+ vTOnly: 0
28
+ ignoreMipmapLimit: 0
29
+ grayScaleToAlpha: 0
30
+ generateCubemap: 6
31
+ cubemapConvolution: 0
32
+ seamlessCubemap: 0
33
+ textureFormat: 1
34
+ maxTextureSize: 2048
35
+ textureSettings:
36
+ serializedVersion: 2
37
+ filterMode: 1
38
+ aniso: 1
39
+ mipBias: 0
40
+ wrapU: 1
41
+ wrapV: 1
42
+ wrapW: 0
43
+ nPOTScale: 0
44
+ lightmap: 0
45
+ compressionQuality: 50
46
+ spriteMode: 1
47
+ spriteExtrude: 1
48
+ spriteMeshType: 1
49
+ alignment: 0
50
+ spritePivot: {x: 0.5, y: 0.5}
51
+ spritePixelsToUnits: 100
52
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
53
+ spriteGenerateFallbackPhysicsShape: 1
54
+ alphaUsage: 1
55
+ alphaIsTransparency: 0
56
+ spriteTessellationDetail: -1
57
+ textureType: 1
58
+ textureShape: 1
59
+ singleChannelComponent: 0
60
+ flipbookRows: 1
61
+ flipbookColumns: 1
62
+ maxTextureSizeSet: 0
63
+ compressionQualitySet: 0
64
+ textureFormatSet: 0
65
+ ignorePngGamma: 0
66
+ applyGammaDecoding: 0
67
+ swizzle: 50462976
68
+ cookieLightType: 0
69
+ platformSettings:
70
+ - serializedVersion: 3
71
+ buildTarget: DefaultTexturePlatform
72
+ maxTextureSize: 2048
73
+ resizeAlgorithm: 0
74
+ textureFormat: -1
75
+ textureCompression: 1
76
+ compressionQuality: 50
77
+ crunchedCompression: 0
78
+ allowsAlphaSplitting: 0
79
+ overridden: 0
80
+ ignorePlatformSupport: 0
81
+ androidETC2FallbackOverride: 0
82
+ forceMaximumCompressionQuality_BC6H_BC7: 0
83
+ - serializedVersion: 3
84
+ buildTarget: Standalone
85
+ maxTextureSize: 2048
86
+ resizeAlgorithm: 0
87
+ textureFormat: -1
88
+ textureCompression: 1
89
+ compressionQuality: 50
90
+ crunchedCompression: 0
91
+ allowsAlphaSplitting: 0
92
+ overridden: 0
93
+ ignorePlatformSupport: 0
94
+ androidETC2FallbackOverride: 0
95
+ forceMaximumCompressionQuality_BC6H_BC7: 0
96
+ - serializedVersion: 3
97
+ buildTarget: WebGL
98
+ maxTextureSize: 2048
99
+ resizeAlgorithm: 0
100
+ textureFormat: -1
101
+ textureCompression: 1
102
+ compressionQuality: 50
103
+ crunchedCompression: 0
104
+ allowsAlphaSplitting: 0
105
+ overridden: 0
106
+ ignorePlatformSupport: 0
107
+ androidETC2FallbackOverride: 0
108
+ forceMaximumCompressionQuality_BC6H_BC7: 0
109
+ spriteSheet:
110
+ serializedVersion: 2
111
+ sprites: []
112
+ outline: []
113
+ physicsShape: []
114
+ bones: []
115
+ spriteID: 5e97eb03825dee720800000000000000
116
+ internalID: 0
117
+ vertices: []
118
+ indices:
119
+ edges: []
120
+ weights: []
121
+ secondaryTextures: []
122
+ nameFileIdTable: {}
123
+ mipmapLimitGroupName:
124
+ pSDRemoveMatte: 0
125
+ userData:
126
+ assetBundleName:
127
+ assetBundleVariant:
Assets/Animation.meta ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 8fcbef7b9a2f44218af0b6c14cec1383
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
Assets/Animation/Axe_model.controller ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!1102 &-7508550913304033502
4
+ AnimatorState:
5
+ serializedVersion: 6
6
+ m_ObjectHideFlags: 1
7
+ m_CorrespondingSourceObject: {fileID: 0}
8
+ m_PrefabInstance: {fileID: 0}
9
+ m_PrefabAsset: {fileID: 0}
10
+ m_Name: axe_hit
11
+ m_Speed: 1
12
+ m_CycleOffset: 0
13
+ m_Transitions:
14
+ - {fileID: -1137383096276464280}
15
+ m_StateMachineBehaviours: []
16
+ m_Position: {x: 50, y: 50, z: 0}
17
+ m_IKOnFeet: 0
18
+ m_WriteDefaultValues: 1
19
+ m_Mirror: 0
20
+ m_SpeedParameterActive: 0
21
+ m_MirrorParameterActive: 0
22
+ m_CycleOffsetParameterActive: 0
23
+ m_TimeParameterActive: 0
24
+ m_Motion: {fileID: 7400000, guid: 62029adb84f094c02adbc5a05fa20981, type: 2}
25
+ m_Tag:
26
+ m_SpeedParameter:
27
+ m_MirrorParameter:
28
+ m_CycleOffsetParameter:
29
+ m_TimeParameter:
30
+ --- !u!1101 &-1137383096276464280
31
+ AnimatorStateTransition:
32
+ m_ObjectHideFlags: 1
33
+ m_CorrespondingSourceObject: {fileID: 0}
34
+ m_PrefabInstance: {fileID: 0}
35
+ m_PrefabAsset: {fileID: 0}
36
+ m_Name:
37
+ m_Conditions: []
38
+ m_DstStateMachine: {fileID: 0}
39
+ m_DstState: {fileID: 8466767878081584415}
40
+ m_Solo: 0
41
+ m_Mute: 0
42
+ m_IsExit: 0
43
+ serializedVersion: 3
44
+ m_TransitionDuration: 0.06
45
+ m_TransitionOffset: 0
46
+ m_ExitTime: 1
47
+ m_HasExitTime: 1
48
+ m_HasFixedDuration: 1
49
+ m_InterruptionSource: 0
50
+ m_OrderedInterruption: 1
51
+ m_CanTransitionToSelf: 1
52
+ --- !u!1107 &-370632969769054322
53
+ AnimatorStateMachine:
54
+ serializedVersion: 6
55
+ m_ObjectHideFlags: 1
56
+ m_CorrespondingSourceObject: {fileID: 0}
57
+ m_PrefabInstance: {fileID: 0}
58
+ m_PrefabAsset: {fileID: 0}
59
+ m_Name: Base Layer
60
+ m_ChildStates:
61
+ - serializedVersion: 1
62
+ m_State: {fileID: 8466767878081584415}
63
+ m_Position: {x: 280, y: 140, z: 0}
64
+ - serializedVersion: 1
65
+ m_State: {fileID: -7508550913304033502}
66
+ m_Position: {x: 280, y: 270, z: 0}
67
+ m_ChildStateMachines: []
68
+ m_AnyStateTransitions: []
69
+ m_EntryTransitions: []
70
+ m_StateMachineTransitions: {}
71
+ m_StateMachineBehaviours: []
72
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
73
+ m_EntryPosition: {x: 50, y: 120, z: 0}
74
+ m_ExitPosition: {x: 800, y: 120, z: 0}
75
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
76
+ m_DefaultState: {fileID: 8466767878081584415}
77
+ --- !u!91 &9100000
78
+ AnimatorController:
79
+ m_ObjectHideFlags: 0
80
+ m_CorrespondingSourceObject: {fileID: 0}
81
+ m_PrefabInstance: {fileID: 0}
82
+ m_PrefabAsset: {fileID: 0}
83
+ m_Name: Axe_model
84
+ serializedVersion: 5
85
+ m_AnimatorParameters:
86
+ - m_Name: hit
87
+ m_Type: 9
88
+ m_DefaultFloat: 0
89
+ m_DefaultInt: 0
90
+ m_DefaultBool: 0
91
+ m_Controller: {fileID: 9100000}
92
+ m_AnimatorLayers:
93
+ - serializedVersion: 5
94
+ m_Name: Base Layer
95
+ m_StateMachine: {fileID: -370632969769054322}
96
+ m_Mask: {fileID: 0}
97
+ m_Motions: []
98
+ m_Behaviours: []
99
+ m_BlendingMode: 0
100
+ m_SyncedLayerIndex: -1
101
+ m_DefaultWeight: 0
102
+ m_IKPass: 0
103
+ m_SyncedLayerAffectsTiming: 0
104
+ m_Controller: {fileID: 9100000}
105
+ --- !u!1101 &5637291345421421603
106
+ AnimatorStateTransition:
107
+ m_ObjectHideFlags: 1
108
+ m_CorrespondingSourceObject: {fileID: 0}
109
+ m_PrefabInstance: {fileID: 0}
110
+ m_PrefabAsset: {fileID: 0}
111
+ m_Name:
112
+ m_Conditions:
113
+ - m_ConditionMode: 1
114
+ m_ConditionEvent: hit
115
+ m_EventTreshold: 0
116
+ m_DstStateMachine: {fileID: 0}
117
+ m_DstState: {fileID: -7508550913304033502}
118
+ m_Solo: 0
119
+ m_Mute: 0
120
+ m_IsExit: 0
121
+ serializedVersion: 3
122
+ m_TransitionDuration: 0
123
+ m_TransitionOffset: 0
124
+ m_ExitTime: 0.88
125
+ m_HasExitTime: 0
126
+ m_HasFixedDuration: 1
127
+ m_InterruptionSource: 0
128
+ m_OrderedInterruption: 1
129
+ m_CanTransitionToSelf: 1
130
+ --- !u!1102 &8466767878081584415
131
+ AnimatorState:
132
+ serializedVersion: 6
133
+ m_ObjectHideFlags: 1
134
+ m_CorrespondingSourceObject: {fileID: 0}
135
+ m_PrefabInstance: {fileID: 0}
136
+ m_PrefabAsset: {fileID: 0}
137
+ m_Name: axe_idle
138
+ m_Speed: 1
139
+ m_CycleOffset: 0
140
+ m_Transitions:
141
+ - {fileID: 5637291345421421603}
142
+ m_StateMachineBehaviours: []
143
+ m_Position: {x: 50, y: 50, z: 0}
144
+ m_IKOnFeet: 0
145
+ m_WriteDefaultValues: 1
146
+ m_Mirror: 0
147
+ m_SpeedParameterActive: 0
148
+ m_MirrorParameterActive: 0
149
+ m_CycleOffsetParameterActive: 0
150
+ m_TimeParameterActive: 0
151
+ m_Motion: {fileID: 7400000, guid: 1af3991cce8e54865a9f310894185b87, type: 2}
152
+ m_Tag:
153
+ m_SpeedParameter:
154
+ m_MirrorParameter:
155
+ m_CycleOffsetParameter:
156
+ m_TimeParameter:
Assets/Animation/Axe_model.controller.meta ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ fileFormatVersion: 2
2
+ guid: 6d1f7e4b115804e5d9daeeaf974b86b2
3
+ NativeFormatImporter:
4
+ externalObjects: {}
5
+ mainObjectFileID: 9100000
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant: