From 93ac5a643594a8402e4e351f49a8c38009edcb12 Mon Sep 17 00:00:00 2001 From: Jeonghyeon Ha Date: Thu, 7 Aug 2025 15:00:31 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A0=88=EC=8A=A4=ED=86=A0=EB=9E=91=20?= =?UTF-8?q?=EC=94=AC=20=EC=88=98=EC=A0=95=20-=20=ED=83=80=EC=9D=BC=20?= =?UTF-8?q?=EC=8A=A4=ED=94=84=EB=9D=BC=EC=9D=B4=ED=8A=B8=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Common/Shaders/LitEnvironment.shadergraph | 54 +- .../_old/RestaurantTile01.png.meta | 4 +- .../_old/RestaurantTile02.png.meta | 4 +- .../Restaurant/Environments/Geometries.meta | 8 + .../Geometries/BackgroundWall.meta | 8 + .../BackgroundWall}/BackgroundWall.mat | 2 +- .../BackgroundWall}/BackgroundWall.mat.meta | 0 .../BackgroundWall/BackgroundWall.prefab | 75 ++ .../BackgroundWall/BackgroundWall.prefab.meta | 7 + .../BackgroundWall_BaseColor.png | 0 .../BackgroundWall_BaseColor.png.meta | 0 .../BackgroundWall}/BackgroundWall_MOHS.png | 0 .../BackgroundWall_MOHS.png.meta | 0 .../BackgroundWall}/BackgroundWall_Normal.png | 0 .../BackgroundWall_Normal.png.meta | 0 .../Geometries/RestaurantBackgroundTile.meta | 8 + .../Background_Floor_Tile.prefab | 111 ++ .../Background_Floor_Tile.prefab.meta | 7 + .../RestaurantBackgroundTile.mat | 167 +++ .../RestaurantBackgroundTile.mat.meta | 8 + .../Geometries/RestaurantGround.meta | 8 + .../RestaurantGround/RestaurantGround.mat | 167 +++ .../RestaurantGround.mat.meta | 8 + .../RestaurantGround/RestaurantGround.prefab | 165 +++ .../RestaurantGround.prefab.meta | 7 + .../_Addressables/Scenes/Restaurant.unity | 487 ++++----- .../Scenes/Restaurant/LightingData.asset | 4 +- .../Scenes/Restaurant/Lightmap-0_comp_dir.png | 4 +- .../Restaurant/Lightmap-0_comp_light.exr | 4 +- .../Scenes/Restaurant/Lightmap-1_comp_dir.png | 4 +- .../Restaurant/Lightmap-1_comp_light.exr | 4 +- .../Scenes/Restaurant/Lightmap-2_comp_dir.png | 4 +- .../Restaurant/Lightmap-2_comp_light.exr | 4 +- .../Scenes/Restaurant/Lightmap-3_comp_dir.png | 4 +- .../Restaurant/Lightmap-3_comp_light.exr | 4 +- .../Scenes/Restaurant/Lightmap-4_comp_dir.png | 3 + .../Restaurant/Lightmap-4_comp_dir.png.meta | 117 +++ .../Restaurant/Lightmap-4_comp_light.exr | 3 + .../Restaurant/Lightmap-4_comp_light.exr.meta | 117 +++ .../AssetPostprocessorEnvironment.cs | 18 +- ProjectSettings/ProjectSettings.asset | 963 +----------------- ProjectSettings/ShaderGraphSettings.asset | 21 +- ProjectSettings/URPProjectSettings.asset | 18 +- 43 files changed, 1277 insertions(+), 1324 deletions(-) create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries.meta create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall.meta rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall.mat (99%) rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall.mat.meta (100%) create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab.meta rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall_BaseColor.png (100%) rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall_BaseColor.png.meta (100%) rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall_MOHS.png (100%) rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall_MOHS.png.meta (100%) rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall_Normal.png (100%) rename Assets/_DDD/Restaurant/Environments/{Tiles/Wall => Geometries/BackgroundWall}/BackgroundWall_Normal.png.meta (100%) create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile.meta create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab.meta create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat.meta create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround.meta create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat.meta create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab create mode 100644 Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab.meta create mode 100644 Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png create mode 100644 Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png.meta create mode 100644 Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr create mode 100644 Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr.meta diff --git a/Assets/_DDD/Common/Shaders/LitEnvironment.shadergraph b/Assets/_DDD/Common/Shaders/LitEnvironment.shadergraph index e9e6d6d4d..b66c5b6ed 100644 --- a/Assets/_DDD/Common/Shaders/LitEnvironment.shadergraph +++ b/Assets/_DDD/Common/Shaders/LitEnvironment.shadergraph @@ -88,6 +88,9 @@ }, { "m_Id": "fc82697c2b954da298a5c962eefbf917" + }, + { + "m_Id": "463ea6973807410dabf0e3fad02dc93a" } ], "m_Nodes": [ @@ -1374,7 +1377,7 @@ "m_ObjectId": "0a13e827cdfd469e87dda752ac9ed76a", "m_Title": "NormalMap", "m_Position": { - "x": -732.0001220703125, + "x": -732.0, "y": -1098.0 } } @@ -1650,8 +1653,8 @@ "m_ObjectId": "154903d6ba5f4a7da672a744455a8d92", "m_Title": "Parallax", "m_Position": { - "x": -2503.000244140625, - "y": -865.0001220703125 + "x": -2503.0, + "y": -865.0 } } @@ -2298,8 +2301,8 @@ "m_ObjectId": "30eb404d377b4ee995f488277ff0881a", "m_Title": "Emission", "m_Position": { - "x": -750.0001831054688, - "y": 111.99998474121094 + "x": -750.0, + "y": 112.0 } } @@ -2421,7 +2424,7 @@ "m_ObjectId": "3923201a51e041c9a8a1c2dad2fbf086", "m_Title": "Maps", "m_Position": { - "x": -771.0001831054688, + "x": -771.0, "y": -725.0 } } @@ -2616,6 +2619,24 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "463ea6973807410dabf0e3fad02dc93a", + "m_Name": "Opacity", + "m_ChildObjectList": [ + { + "m_Id": "95248e345e134576a9276e3af5478f9b" + }, + { + "m_Id": "72f0899fbf5c470f8ef90d70cdb5784c" + }, + { + "m_Id": "e86955e034c74186ab59d147704736de" + } + ] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", @@ -3145,7 +3166,7 @@ "m_ObjectId": "5e93511e3b064f71b54a63214c2b625c", "m_Title": "Main UVs", "m_Position": { - "x": -2344.000244140625, + "x": -2344.0, "y": -617.0 } } @@ -3436,7 +3457,7 @@ "m_ObjectId": "7062b1d5057b4266b6f536a6c9279cea", "m_Title": "Smoothness", "m_Position": { - "x": -776.0001220703125, + "x": -776.0, "y": -479.0 } } @@ -3964,7 +3985,7 @@ "m_ObjectId": "840e4948a2894ca1bd6c9e7e0d9bf623", "m_Title": "Metallic", "m_Position": { - "x": -769.0001220703125, + "x": -769.0, "y": -363.0 } } @@ -4606,20 +4627,11 @@ "m_ObjectId": "a701cc4740694f32bb93e26a40615380", "m_Name": "", "m_ChildObjectList": [ - { - "m_Id": "e86955e034c74186ab59d147704736de" - }, { "m_Id": "4e7a9b3dbb27499d8a15c7352eda10b3" }, { "m_Id": "da36870823594ea691d7b828667706e6" - }, - { - "m_Id": "95248e345e134576a9276e3af5478f9b" - }, - { - "m_Id": "72f0899fbf5c470f8ef90d70cdb5784c" } ] } @@ -4630,7 +4642,7 @@ "m_ObjectId": "a79adeb299a4447aa2aa6b76e1e220d0", "m_Title": "BaseColor", "m_Position": { - "x": -589.0001220703125, + "x": -589.0, "y": -1495.0 } } @@ -4855,7 +4867,7 @@ "m_ObjectId": "b4ab1432e21d4fdcadb52c542f96596b", "m_Title": "Occlusion", "m_Position": { - "x": -769.0001220703125, + "x": -769.0, "y": -238.0 } } @@ -5220,7 +5232,7 @@ "m_ObjectId": "c5fa6721aa814cd3b24fca69c6e5c5fa", "m_Title": "UV", "m_Position": { - "x": -1660.0001220703125, + "x": -1660.0, "y": -817.0 } } diff --git a/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile01.png.meta b/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile01.png.meta index 80630785d..013f5ce13 100644 --- a/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile01.png.meta +++ b/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile01.png.meta @@ -37,8 +37,8 @@ TextureImporter: filterMode: 1 aniso: 1 mipBias: 0 - wrapU: 1 - wrapV: 1 + wrapU: 0 + wrapV: 0 wrapW: 0 nPOTScale: 0 lightmap: 0 diff --git a/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile02.png.meta b/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile02.png.meta index 64e8918a9..c7d4aaa26 100644 --- a/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile02.png.meta +++ b/Assets/_DDD/Restaurant/Environments/Backgrounds/_old/RestaurantTile02.png.meta @@ -37,8 +37,8 @@ TextureImporter: filterMode: 1 aniso: 1 mipBias: 0 - wrapU: 1 - wrapV: 1 + wrapU: 0 + wrapV: 0 wrapW: 0 nPOTScale: 0 lightmap: 0 diff --git a/Assets/_DDD/Restaurant/Environments/Geometries.meta b/Assets/_DDD/Restaurant/Environments/Geometries.meta new file mode 100644 index 000000000..b730498bb --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c4fe7c9195034e468cdf9804846d1ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall.meta b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall.meta new file mode 100644 index 000000000..7140a2ced --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9618372f5466a45dcb14cea98d6b8a1d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall.mat b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.mat similarity index 99% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall.mat rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.mat index 9f895effa..0b6633196 100644 --- a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall.mat +++ b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.mat @@ -31,7 +31,7 @@ Material: m_TexEnvs: - _BaseMap: m_Texture: {fileID: 2800000, guid: 67d40d0218ea84b3b856c37a23979581, type: 3} - m_Scale: {x: 1, y: 1} + m_Scale: {x: 34, y: 17} m_Offset: {x: 0, y: 0} - _BumpMap: m_Texture: {fileID: 2800000, guid: 097110246f772457fbb0ec31cfcbd028, type: 3} diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall.mat.meta b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.mat.meta similarity index 100% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall.mat.meta rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.mat.meta diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab new file mode 100644 index 000000000..29c091f40 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab @@ -0,0 +1,75 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &5000129062489186441 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 241258902908210317, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalScale.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 241258902908210317, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalScale.y + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2204914584875671904, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4438924429928472453, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_Name + value: BackgroundWall + objectReference: {fileID: 0} + - target: {fileID: 8467019391491472137, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: 'm_Materials.Array.data[0]' + value: + objectReference: {fileID: 2100000, guid: 7f2d9d2cd9ed2436a9d028aeeb156b2c, type: 2} + - target: {fileID: 8516969404588314361, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} + propertyPath: m_Enabled + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5b92de080ada94a51853bbc4570a6c12, type: 3} diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab.meta b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab.meta new file mode 100644 index 000000000..1ce6380f1 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2edc50ba9b2ed48bb87843c2c024d723 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_BaseColor.png b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_BaseColor.png similarity index 100% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_BaseColor.png rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_BaseColor.png diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_BaseColor.png.meta b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_BaseColor.png.meta similarity index 100% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_BaseColor.png.meta rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_BaseColor.png.meta diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_MOHS.png b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_MOHS.png similarity index 100% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_MOHS.png rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_MOHS.png diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_MOHS.png.meta b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_MOHS.png.meta similarity index 100% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_MOHS.png.meta rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_MOHS.png.meta diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_Normal.png b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_Normal.png similarity index 100% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_Normal.png rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_Normal.png diff --git a/Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_Normal.png.meta b/Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_Normal.png.meta similarity index 100% rename from Assets/_DDD/Restaurant/Environments/Tiles/Wall/BackgroundWall_Normal.png.meta rename to Assets/_DDD/Restaurant/Environments/Geometries/BackgroundWall/BackgroundWall_Normal.png.meta diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile.meta b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile.meta new file mode 100644 index 000000000..c875d1059 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8cfd2ea506e264e9782469e6a0b4db7a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab new file mode 100644 index 000000000..c7d2bf8a7 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab @@ -0,0 +1,111 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1600829668444360262 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3983930329338885199} + - component: {fileID: 8533708366092978302} + - component: {fileID: 6371742672776018237} + - component: {fileID: 3126162643841344246} + m_Layer: 0 + m_Name: Background_Floor_Tile + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3983930329338885199 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1600829668444360262} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: -5} + m_LocalScale: {x: 80, y: 40, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8533708366092978302 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1600829668444360262} + m_Mesh: {fileID: 4255123073983782969, guid: 28296a1322fc041de8d0bc6e84c9138c, type: 3} +--- !u!23 &6371742672776018237 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1600829668444360262} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 49df8d9d36523431bb06d8251502aa34, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3126162643841344246 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1600829668444360262} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab.meta b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab.meta new file mode 100644 index 000000000..ea7180b94 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/Background_Floor_Tile.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 83642195a8c664a1cabe39562a0d1246 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat new file mode 100644 index 000000000..fe4bf08b7 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8561639849244979319 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 9 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: RestaurantBackgroundTile + m_Shader: {fileID: -6465566751694194690, guid: 6548a20ac111c4a9c80cb95ed6c4c5a0, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + - _OCCLUSIONMAP + - _PARALLAXMAP + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8fba16e0e5e499649a3908a4a94a7b30, type: 3} + m_Scale: {x: 80, y: 40} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Emiss: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MOHS: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Normal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OpacityMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _CastShadows: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EMISSION: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _METALLICSPECGLOSSMAP: 1 + - _Metallic: 0 + - _NORMALMAP: 1 + - _OCCLUSIONMAP: 1 + - _OcclusionStrength: 1 + - _PARALLAXMAP: 1 + - _Parallax: 0.005 + - _QueueControl: 0 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UseOpacityMask: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZTest: 4 + - _ZWrite: 1 + - _ZWriteControl: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat.meta b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat.meta new file mode 100644 index 000000000..15cb9bdaa --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantBackgroundTile/RestaurantBackgroundTile.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49df8d9d36523431bb06d8251502aa34 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround.meta b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround.meta new file mode 100644 index 000000000..af2274633 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60b7263a6bd7e4c5594b9c6ee5a58ff4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat new file mode 100644 index 000000000..faf659b6e --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8054254040400407701 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 9 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: RestaurantGround + m_Shader: {fileID: -6465566751694194690, guid: 6548a20ac111c4a9c80cb95ed6c4c5a0, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + - _OCCLUSIONMAP + - _PARALLAXMAP + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 6c5436eb1d7e3e940a3cc87dea857769, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Emiss: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MOHS: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Normal: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OpacityMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _CastShadows: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EMISSION: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _METALLICSPECGLOSSMAP: 1 + - _Metallic: 0 + - _NORMALMAP: 1 + - _OCCLUSIONMAP: 1 + - _OcclusionStrength: 1 + - _PARALLAXMAP: 1 + - _Parallax: 0.005 + - _QueueControl: 0 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UseOpacityMask: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZTest: 4 + - _ZWrite: 1 + - _ZWriteControl: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat.meta b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat.meta new file mode 100644 index 000000000..60f9570db --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 571259d52a1b1469c9e5ef6b38a23041 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab new file mode 100644 index 000000000..8132dea3e --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab @@ -0,0 +1,165 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &810137117148345251 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3542290984809426608} + - component: {fileID: 8835311167308124458} + - component: {fileID: 241574284133009341} + - component: {fileID: 15447880633616622} + m_Layer: 0 + m_Name: Plane + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3542290984809426608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810137117148345251} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 5, z: -0} + m_LocalScale: {x: 2, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5296402333637591714} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &8835311167308124458 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810137117148345251} + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &241574284133009341 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810137117148345251} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RayTracingAccelStructBuildFlagsOverride: 0 + m_RayTracingAccelStructBuildFlags: 1 + m_SmallMeshCulling: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 571259d52a1b1469c9e5ef6b38a23041, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &15447880633616622 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810137117148345251} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &7591886023061423312 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5296402333637591714} + - component: {fileID: 8615612076355944459} + m_Layer: 3 + m_Name: RestaurantGround + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 2147483647 + m_IsActive: 1 +--- !u!4 &5296402333637591714 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7591886023061423312} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 8.89} + m_LocalScale: {x: 1.6, y: 1.2, z: 2.2223704} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3542290984809426608} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!65 &8615612076355944459 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7591886023061423312} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 20, y: 10, z: 0.20000005} + m_Center: {x: 0, y: 5, z: 0.1} diff --git a/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab.meta b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab.meta new file mode 100644 index 000000000..e3fbbc978 --- /dev/null +++ b/Assets/_DDD/Restaurant/Environments/Geometries/RestaurantGround/RestaurantGround.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: db0623d330b224557b586634a38acefc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant.unity b/Assets/_DDD/_Addressables/Scenes/Restaurant.unity index 133afc87c..336e1cd01 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant.unity +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant.unity @@ -8163,6 +8163,104 @@ Transform: m_CorrespondingSourceObject: {fileID: 6689525833630355058, guid: 24943e78c04972c46bfd1212be293bc8, type: 3} m_PrefabInstance: {fileID: 1009146741} m_PrefabAsset: {fileID: 0} +--- !u!1001 &727221221 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 5967240833265988352} + m_Modifications: + - target: {fileID: 5061229397797301252, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalScale.x + value: 34 + objectReference: {fileID: 0} + - target: {fileID: 5061229397797301252, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalScale.y + value: 17 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalPosition.z + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalPosition.z + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8718472603145535244, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_Name + value: BackgroundWall + objectReference: {fileID: 0} + - target: {fileID: 8718472603145535244, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} +--- !u!4 &727221222 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6628569409114980841, guid: 2edc50ba9b2ed48bb87843c2c024d723, type: 3} + m_PrefabInstance: {fileID: 727221221} + m_PrefabAsset: {fileID: 0} --- !u!4 &727345922 stripped Transform: m_CorrespondingSourceObject: {fileID: 6689525833630355058, guid: d0ac24eea271d7540b30f3f07f915589, type: 3} @@ -19240,80 +19338,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 04cb72fe661fd534b950283199ac4a83, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!1001 &1922088339 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 5967240833265988352} - m_Modifications: - - target: {fileID: 1253498294594737233, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_Name - value: Env_Sprite_Background_Wall - objectReference: {fileID: 0} - - target: {fileID: 1253498294594737233, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalPosition.z - value: 20 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8286122767098524757, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_Size.x - value: 33.57 - objectReference: {fileID: 0} - - target: {fileID: 8286122767098524757, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - propertyPath: m_Size.y - value: 13.6 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 29c00ec8d75874628af7e4592b281341, type: 3} ---- !u!4 &1922088340 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 6781968921123115509, guid: 29c00ec8d75874628af7e4592b281341, type: 3} - m_PrefabInstance: {fileID: 1922088339} - m_PrefabAsset: {fileID: 0} --- !u!114 &1926192729 MonoBehaviour: m_ObjectHideFlags: 0 @@ -24545,61 +24569,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!212 &450280007132777672 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8924279819925764497} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RayTracingAccelStructBuildFlagsOverride: 0 - m_RayTracingAccelStructBuildFlags: 1 - m_SmallMeshCulling: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: -876546973899608171, guid: 6548a20ac111c4a9c80cb95ed6c4c5a0, type: 3} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 1 - m_Sprite: {fileID: 21300000, guid: 6c5436eb1d7e3e940a3cc87dea857769, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 19.2, y: 10.8} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &451952048811892623 GameObject: m_ObjectHideFlags: 0 @@ -27725,6 +27694,63 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 8560468039380378582} m_Mesh: {fileID: 0} +--- !u!1001 &810967841673335733 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 5960443269030813295} + m_Modifications: + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalPosition.z + value: 8.89 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalRotation.x + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7591886023061423312, guid: db0623d330b224557b586634a38acefc, type: 3} + propertyPath: m_Name + value: RestaurantGround + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: db0623d330b224557b586634a38acefc, type: 3} --- !u!114 &817179627107875865 MonoBehaviour: m_ObjectHideFlags: 0 @@ -35350,27 +35376,6 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!65 &1709838654768943039 -BoxCollider: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8924279819925764497} - m_Material: {fileID: 0} - m_IncludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_ExcludeLayers: - serializedVersion: 2 - m_Bits: 0 - m_LayerOverridePriority: 0 - m_IsTrigger: 0 - m_ProvidesContacts: 0 - m_Enabled: 1 - serializedVersion: 3 - m_Size: {x: 20, y: 10, z: 0.20000005} - m_Center: {x: 0, y: 5, z: 0.1} --- !u!4 &1711868579489263189 Transform: m_ObjectHideFlags: 0 @@ -36921,6 +36926,63 @@ Transform: - {fileID: 2222878722369724105} m_Father: {fileID: 1431490537418851602} m_LocalEulerAnglesHint: {x: 30, y: 0, z: 0} +--- !u!1001 &1893487243018697667 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 1600829668444360262, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_Name + value: Background_Floor_Tile + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalPosition.y + value: -0.01 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalPosition.z + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalRotation.x + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 90 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3983930329338885199, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 83642195a8c664a1cabe39562a0d1246, type: 3} --- !u!212 &1894331230603268186 SpriteRenderer: m_ObjectHideFlags: 0 @@ -54883,21 +54945,6 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &4302969726367423501 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9123030887888451443} - serializedVersion: 2 - m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} - m_LocalPosition: {x: -0.00000011921, y: -0.0010003, z: 5.27} - m_LocalScale: {x: 0.82322, y: 0.82322, z: 0.82322} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5960443269030813295} - m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} --- !u!1 &4305245696491754477 GameObject: m_ObjectHideFlags: 0 @@ -67999,7 +68046,6 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 1 m_Children: - - {fileID: 4302969726367423501} - {fileID: 6430934828325804122} - {fileID: 3243182830244835481} - {fileID: 3529444436528059164} @@ -68091,7 +68137,7 @@ Transform: - {fileID: 5053101606294699671} - {fileID: 7401986588599996586} - {fileID: 3294609362504486467} - - {fileID: 1922088340} + - {fileID: 727221222} m_Father: {fileID: 7627145480117215977} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &5968008838694410031 @@ -72153,21 +72199,11 @@ Transform: - {fileID: 5826619438576021589} m_Father: {fileID: 8598842124031576028} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!4 &6430934828325804122 +--- !u!4 &6430934828325804122 stripped Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 5296402333637591714, guid: db0623d330b224557b586634a38acefc, type: 3} + m_PrefabInstance: {fileID: 810967841673335733} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8924279819925764497} - serializedVersion: 2 - m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: 0.7071068} - m_LocalPosition: {x: 0, y: 0, z: 8.89} - m_LocalScale: {x: 1.6, y: 1.2, z: 2.2223704} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 5960443269030813295} - m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} --- !u!1 &6434215060313119892 GameObject: m_ObjectHideFlags: 0 @@ -89338,61 +89374,6 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!212 &8641004020164842070 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 9123030887888451443} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RayTracingAccelStructBuildFlagsOverride: 0 - m_RayTracingAccelStructBuildFlags: 1 - m_SmallMeshCulling: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: -876546973899608171, guid: 6548a20ac111c4a9c80cb95ed6c4c5a0, type: 3} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: 8fba16e0e5e499649a3908a4a94a7b30, type: 3} - m_Color: {r: 0.33962262, g: 0.33962262, b: 0.33962262, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 2 - m_Size: {x: 40, y: 22.53} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!4 &8641765765020119589 Transform: m_ObjectHideFlags: 0 @@ -91617,24 +91598,6 @@ Transform: - {fileID: 172300683162145949} m_Father: {fileID: 5173560726100629249} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &8924279819925764497 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 6430934828325804122} - - component: {fileID: 450280007132777672} - - component: {fileID: 1709838654768943039} - m_Layer: 3 - m_Name: RestaurantGround - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 2147483647 - m_IsActive: 1 --- !u!23 &8926095118870740914 MeshRenderer: m_ObjectHideFlags: 0 @@ -93334,23 +93297,6 @@ SpriteRenderer: m_WasSpriteAssigned: 1 m_MaskInteraction: 0 m_SpriteSortPoint: 0 ---- !u!1 &9123030887888451443 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4302969726367423501} - - component: {fileID: 8641004020164842070} - m_Layer: 3 - m_Name: RestaurantBackgroundTile - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 2147483647 - m_IsActive: 1 --- !u!4 &9123614221182229392 Transform: m_ObjectHideFlags: 0 @@ -94235,3 +94181,4 @@ SceneRoots: - {fileID: 160264210} - {fileID: 1102368193} - {fileID: 1267906223} + - {fileID: 1893487243018697667} diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/LightingData.asset b/Assets/_DDD/_Addressables/Scenes/Restaurant/LightingData.asset index 71221e0a9..1e38622d1 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/LightingData.asset +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/LightingData.asset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24f090ae2799886df0bc9033d7e6ec11fd164dbb4895e9928764ebdd377940a3 -size 1736372 +oid sha256:06af11e353835bd6ed1995673adb2559ecccb7ceabb083607407d10558253213 +size 3882964 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_dir.png b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_dir.png index 095e12d9f..90a300861 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_dir.png +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_dir.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81622d0eb2f8c854b9772ca08b5f447cbde46f963e83a6bc6ae5b6e79ea34583 -size 46508 +oid sha256:0df32236e07556e99f7a37c74c82cf60bac7bac7692bdd2edc50a755075c4a28 +size 41737 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_light.exr b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_light.exr index c124891ef..f81b657e0 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_light.exr +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-0_comp_light.exr @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c382e576bd890d885ce8925c3ba0d9b51bc158a40b8b9e023ed03443b934f9d6 -size 653370 +oid sha256:6e71b3ad44fccf168228c1d88fbcd3efc722e7da4eeff0889294d3652f8ee8ab +size 722402 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_dir.png b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_dir.png index 1f15c0960..0f04b7c4e 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_dir.png +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_dir.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf0ba4ed09f5caf95d99015610f398c5f0ecd55548213eeb881f0a4ca1bd11e2 -size 66186 +oid sha256:4c1b33c821a9dec7805772abcd537badb51a4ca61d94fe53600381645e9fe43e +size 92519 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_light.exr b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_light.exr index ffb8450cf..1a141a4c3 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_light.exr +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-1_comp_light.exr @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a2d6d8c0bd4d4cef027ce856bd7aa79e582ea7769d8da57a45409a75a17c69b4 -size 1073518 +oid sha256:3f790ad8538a10acfa265b8b2d337c777537836bb55151d9e921ba99e993473d +size 1612913 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_dir.png b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_dir.png index e6dee7b62..bed45164a 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_dir.png +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_dir.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6cf359c2e69d2b21691eaba720920ffcb303d6ff420aa80212807d1a8d7ba50 -size 31242 +oid sha256:be007d08216de059c0659db4a0a052916e8a8d673ce943e82ec5e23026e599ae +size 77844 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_light.exr b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_light.exr index b02179b03..aa91270d8 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_light.exr +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-2_comp_light.exr @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:611fd9d22d65845d40d4edfb5d254b059d0d67c16e8925e73fc80c31bbacef66 -size 664362 +oid sha256:5413656c28e5125ad01d3b3fbbdbc9c51dc320529426c1df677b600e9802e1e7 +size 1778240 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_dir.png b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_dir.png index 14a10bd74..31c91af6d 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_dir.png +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_dir.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:026559aed2f7074ad5304c4bb7d9a5bcbe14de98acfa6ce3b02e93c18e407059 -size 18832 +oid sha256:ac564f75e1ee107b7ca0dca9b3416f91f45ff188f2fd846ebbbbc43034a4f5a6 +size 43334 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_light.exr b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_light.exr index 5af16f972..503414b39 100644 --- a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_light.exr +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-3_comp_light.exr @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4aa3d8f9e0316620e54f31837a06ba4dc2470e11a74699998f88b478df0b4327 -size 249679 +oid sha256:3df82d3e69f9e15dbd869604862fb8a980d9c5d8f85bcfd9efdb57394be56d45 +size 1512718 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png new file mode 100644 index 000000000..47fd62ab7 --- /dev/null +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2838fcf564e2078ae545896a3962229dd5b751d996c1a3ae9bc308b3ddc57952 +size 28392 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png.meta b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png.meta new file mode 100644 index 000000000..0bff33f19 --- /dev/null +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_dir.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 1461852924d9d4aaebdeb1084b8428c7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 1 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 12 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr new file mode 100644 index 000000000..4f0dab61d --- /dev/null +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b3eb44045656a5d4f577b2d28c03193f835086685df66f59c16c1df5400903 +size 430637 diff --git a/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr.meta b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr.meta new file mode 100644 index 000000000..9e87147c3 --- /dev/null +++ b/Assets/_DDD/_Addressables/Scenes/Restaurant/Lightmap-4_comp_light.exr.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: ce6f17bb3ec254ef690a45f8182bdc46 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 1 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 6 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 2 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_DDD/_Scripts/AssetPostprocessors/AssetPostprocessorEnvironment.cs b/Assets/_DDD/_Scripts/AssetPostprocessors/AssetPostprocessorEnvironment.cs index 20881ec13..3d1a51d14 100644 --- a/Assets/_DDD/_Scripts/AssetPostprocessors/AssetPostprocessorEnvironment.cs +++ b/Assets/_DDD/_Scripts/AssetPostprocessors/AssetPostprocessorEnvironment.cs @@ -10,14 +10,12 @@ namespace DDD { public static class AssetPostprocessorEnvironment { - private static readonly HashSet TileTargetPaths = new(); private static readonly HashSet PropTargetPaths = new(); private static readonly HashSet FoodTargetPaths = new(); private static readonly HashSet GeometryTargetPaths = new(); private const string BasePrefabPath_Prop = "Assets/_DDD/_Raw/Environments/Env_Mesh_Prop.prefab"; private const string BasePrefabPath_Geometry = "Assets/_DDD/_Raw/Environments/Env_Mesh_Geometry.prefab"; - private const string BasePrefabPath_Tile = "Assets/_DDD/_Raw/Environments/Env_Sprite_Background.prefab"; private const string BasePrefabPath_Food = "Assets/_DDD/_Raw/Environments/Env_Unlit_Food.prefab"; private const string ShaderName = "Universal Render Pipeline/LitEnvironment"; private const string Prop = "Prop_"; @@ -26,7 +24,6 @@ public static class AssetPostprocessorEnvironment public enum EnvPrefabType { - Tile, Prop, Food, Geometry @@ -70,12 +67,7 @@ private static void AddTargetPath(string path) { string upperPath = path.ToUpper(); - if (upperPath.Contains(PathConstants.RawEnvPathUpper_Tile) && - upperPath.Contains(ExtenstionConstants.PngExtensionUpper)) - { - TileTargetPaths.Add(path); - } - else if (upperPath.Contains(PathConstants.RawEnvPathUpper_Prop) && + if (upperPath.Contains(PathConstants.RawEnvPathUpper_Prop) && upperPath.Contains(ExtenstionConstants.PngExtensionUpper)) { PropTargetPaths.Add(path); @@ -258,7 +250,6 @@ private static string GetBasePrefabPath(EnvPrefabType prefabType) return prefabType switch { EnvPrefabType.Prop => BasePrefabPath_Prop, - EnvPrefabType.Tile => BasePrefabPath_Tile, EnvPrefabType.Food => BasePrefabPath_Food, EnvPrefabType.Geometry => BasePrefabPath_Geometry, _ => BasePrefabPath_Prop @@ -267,11 +258,6 @@ private static string GetBasePrefabPath(EnvPrefabType prefabType) public static void BuildTarget() { - foreach (var path in TileTargetPaths) - { - BuildMaterialAndPrefab(Utils.FolderPath(path), EnvPrefabType.Tile); - } - foreach (var path in PropTargetPaths) { BuildMaterialAndPrefab(Utils.FolderPath(path), EnvPrefabType.Prop); @@ -286,8 +272,6 @@ public static void BuildTarget() { BuildMaterialAndPrefab(Utils.FolderPath(path), EnvPrefabType.Geometry); } - - TileTargetPaths.Clear(); PropTargetPaths.Clear(); FoodTargetPaths.Clear(); GeometryTargetPaths.Clear(); diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 4cfa69fa0..50dc53f7f 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -1,960 +1,3 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!129 &1 -PlayerSettings: - m_ObjectHideFlags: 0 - serializedVersion: 28 - productGUID: 7c93ddfb5850c5244ac0c2c88628860b - AndroidProfiler: 0 - AndroidFilterTouchesWhenObscured: 0 - AndroidEnableSustainedPerformanceMode: 0 - defaultScreenOrientation: 4 - targetDevice: 2 - useOnDemandResources: 0 - accelerometerFrequency: 60 - companyName: Capers - productName: ProjectDDD - defaultCursor: {fileID: 0} - cursorHotspot: {x: 0, y: 0} - m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} - m_ShowUnitySplashScreen: 1 - m_ShowUnitySplashLogo: 1 - m_SplashScreenOverlayOpacity: 1 - m_SplashScreenAnimation: 1 - m_SplashScreenLogoStyle: 1 - m_SplashScreenDrawMode: 0 - m_SplashScreenBackgroundAnimationZoom: 1 - m_SplashScreenLogoAnimationZoom: 1 - m_SplashScreenBackgroundLandscapeAspect: 1 - m_SplashScreenBackgroundPortraitAspect: 1 - m_SplashScreenBackgroundLandscapeUvs: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - m_SplashScreenBackgroundPortraitUvs: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - m_SplashScreenLogos: [] - m_VirtualRealitySplashScreen: {fileID: 0} - m_HolographicTrackingLossScreen: {fileID: 0} - defaultScreenWidth: 1024 - defaultScreenHeight: 768 - defaultScreenWidthWeb: 960 - defaultScreenHeightWeb: 600 - m_StereoRenderingPath: 0 - m_ActiveColorSpace: 1 - unsupportedMSAAFallback: 0 - m_SpriteBatchMaxVertexCount: 65535 - m_SpriteBatchVertexThreshold: 300 - m_MTRendering: 1 - mipStripping: 0 - numberOfMipsStripped: 0 - numberOfMipsStrippedPerMipmapLimitGroup: {} - m_StackTraceTypes: 010000000100000001000000010000000100000001000000 - iosShowActivityIndicatorOnLoading: -1 - androidShowActivityIndicatorOnLoading: -1 - iosUseCustomAppBackgroundBehavior: 0 - allowedAutorotateToPortrait: 1 - allowedAutorotateToPortraitUpsideDown: 1 - allowedAutorotateToLandscapeRight: 1 - allowedAutorotateToLandscapeLeft: 1 - useOSAutorotation: 1 - use32BitDisplayBuffer: 1 - preserveFramebufferAlpha: 0 - disableDepthAndStencilBuffers: 0 - androidStartInFullscreen: 1 - androidRenderOutsideSafeArea: 1 - androidUseSwappy: 0 - androidBlitType: 0 - androidResizeableActivity: 1 - androidDefaultWindowWidth: 1920 - androidDefaultWindowHeight: 1080 - androidMinimumWindowWidth: 400 - androidMinimumWindowHeight: 300 - androidFullscreenMode: 1 - androidAutoRotationBehavior: 1 - androidPredictiveBackSupport: 0 - androidApplicationEntry: 2 - defaultIsNativeResolution: 1 - macRetinaSupport: 1 - runInBackground: 1 - muteOtherAudioSources: 0 - Prepare IOS For Recording: 0 - Force IOS Speakers When Recording: 0 - deferSystemGesturesMode: 0 - hideHomeButton: 0 - submitAnalytics: 1 - usePlayerLog: 1 - dedicatedServerOptimizations: 1 - bakeCollisionMeshes: 0 - forceSingleInstance: 0 - useFlipModelSwapchain: 1 - resizableWindow: 0 - useMacAppStoreValidation: 0 - macAppStoreCategory: public.app-category.games - gpuSkinning: 1 - meshDeformation: 2 - xboxPIXTextureCapture: 0 - xboxEnableAvatar: 0 - xboxEnableKinect: 0 - xboxEnableKinectAutoTracking: 0 - xboxEnableFitness: 0 - visibleInBackground: 1 - allowFullscreenSwitch: 1 - fullscreenMode: 1 - xboxSpeechDB: 0 - xboxEnableHeadOrientation: 0 - xboxEnableGuest: 0 - xboxEnablePIXSampling: 0 - metalFramebufferOnly: 0 - xboxOneResolution: 0 - xboxOneSResolution: 0 - xboxOneXResolution: 3 - xboxOneMonoLoggingLevel: 0 - xboxOneLoggingLevel: 1 - xboxOneDisableEsram: 0 - xboxOneEnableTypeOptimization: 0 - xboxOnePresentImmediateThreshold: 0 - switchQueueCommandMemory: 1048576 - switchQueueControlMemory: 16384 - switchQueueComputeMemory: 262144 - switchNVNShaderPoolsGranularity: 33554432 - switchNVNDefaultPoolsGranularity: 16777216 - switchNVNOtherPoolsGranularity: 16777216 - switchGpuScratchPoolGranularity: 2097152 - switchAllowGpuScratchShrinking: 0 - switchNVNMaxPublicTextureIDCount: 0 - switchNVNMaxPublicSamplerIDCount: 0 - switchMaxWorkerMultiple: 8 - switchNVNGraphicsFirmwareMemory: 32 - vulkanNumSwapchainBuffers: 3 - vulkanEnableSetSRGBWrite: 0 - vulkanEnablePreTransform: 1 - vulkanEnableLateAcquireNextImage: 0 - vulkanEnableCommandBufferRecycling: 1 - loadStoreDebugModeEnabled: 0 - visionOSBundleVersion: 1.0 - tvOSBundleVersion: 1.0 - bundleVersion: 0.1.0 - preloadedAssets: - - {fileID: -944628639613478452, guid: 052faaac586de48259a63d0c4782560b, type: 3} - - {fileID: 11400000, guid: e48678a3d8f99564397a5e15daeb1861, type: 2} - metroInputSource: 0 - wsaTransparentSwapchain: 0 - m_HolographicPauseOnTrackingLoss: 1 - xboxOneDisableKinectGpuReservation: 1 - xboxOneEnable7thCore: 1 - vrSettings: - enable360StereoCapture: 0 - isWsaHolographicRemotingEnabled: 0 - enableFrameTimingStats: 0 - enableOpenGLProfilerGPURecorders: 1 - allowHDRDisplaySupport: 0 - useHDRDisplay: 0 - hdrBitDepth: 0 - m_ColorGamuts: 00000000 - targetPixelDensity: 30 - resolutionScalingMode: 0 - resetResolutionOnWindowResize: 0 - androidSupportedAspectRatio: 1 - androidMaxAspectRatio: 2.4 - androidMinAspectRatio: 1 - applicationIdentifier: - Android: com.UnityTechnologies.com.unity.template.urpblank - Standalone: com.Unity-Technologies.com.unity.template.urp-blank - iPhone: com.Unity-Technologies.com.unity.template.urp-blank - buildNumber: - Standalone: 0 - VisionOS: 0 - iPhone: 0 - tvOS: 0 - overrideDefaultApplicationIdentifier: 1 - AndroidBundleVersionCode: 1 - AndroidMinSdkVersion: 23 - AndroidTargetSdkVersion: 0 - AndroidPreferredInstallLocation: 1 - aotOptions: - stripEngineCode: 1 - iPhoneStrippingLevel: 0 - iPhoneScriptCallOptimization: 0 - ForceInternetPermission: 0 - ForceSDCardPermission: 0 - CreateWallpaper: 0 - androidSplitApplicationBinary: 0 - keepLoadedShadersAlive: 0 - StripUnusedMeshComponents: 0 - strictShaderVariantMatching: 0 - VertexChannelCompressionMask: 4054 - iPhoneSdkVersion: 988 - iOSSimulatorArchitecture: 0 - iOSTargetOSVersionString: 13.0 - tvOSSdkVersion: 0 - tvOSSimulatorArchitecture: 0 - tvOSRequireExtendedGameController: 0 - tvOSTargetOSVersionString: 13.0 - VisionOSSdkVersion: 0 - VisionOSTargetOSVersionString: 1.0 - uIPrerenderedIcon: 0 - uIRequiresPersistentWiFi: 0 - uIRequiresFullScreen: 1 - uIStatusBarHidden: 1 - uIExitOnSuspend: 0 - uIStatusBarStyle: 0 - appleTVSplashScreen: {fileID: 0} - appleTVSplashScreen2x: {fileID: 0} - tvOSSmallIconLayers: [] - tvOSSmallIconLayers2x: [] - tvOSLargeIconLayers: [] - tvOSLargeIconLayers2x: [] - tvOSTopShelfImageLayers: [] - tvOSTopShelfImageLayers2x: [] - tvOSTopShelfImageWideLayers: [] - tvOSTopShelfImageWideLayers2x: [] - iOSLaunchScreenType: 0 - iOSLaunchScreenPortrait: {fileID: 0} - iOSLaunchScreenLandscape: {fileID: 0} - iOSLaunchScreenBackgroundColor: - serializedVersion: 2 - rgba: 0 - iOSLaunchScreenFillPct: 100 - iOSLaunchScreenSize: 100 - iOSLaunchScreeniPadType: 0 - iOSLaunchScreeniPadImage: {fileID: 0} - iOSLaunchScreeniPadBackgroundColor: - serializedVersion: 2 - rgba: 0 - iOSLaunchScreeniPadFillPct: 100 - iOSLaunchScreeniPadSize: 100 - iOSLaunchScreenCustomStoryboardPath: - iOSLaunchScreeniPadCustomStoryboardPath: - iOSDeviceRequirements: [] - iOSURLSchemes: [] - macOSURLSchemes: [] - iOSBackgroundModes: 0 - iOSMetalForceHardShadows: 0 - metalEditorSupport: 1 - metalAPIValidation: 1 - metalCompileShaderBinary: 0 - iOSRenderExtraFrameOnPause: 0 - iosCopyPluginsCodeInsteadOfSymlink: 0 - appleDeveloperTeamID: - iOSManualSigningProvisioningProfileID: - tvOSManualSigningProvisioningProfileID: - VisionOSManualSigningProvisioningProfileID: - iOSManualSigningProvisioningProfileType: 0 - tvOSManualSigningProvisioningProfileType: 0 - VisionOSManualSigningProvisioningProfileType: 0 - appleEnableAutomaticSigning: 0 - iOSRequireARKit: 0 - iOSAutomaticallyDetectAndAddCapabilities: 1 - appleEnableProMotion: 0 - shaderPrecisionModel: 0 - clonedFromGUID: 3c72c65a16f0acb438eed22b8b16c24a - templatePackageId: com.unity.template.urp-blank@17.0.11 - templateDefaultScene: Assets/Scenes/SampleScene.unity - useCustomMainManifest: 0 - useCustomLauncherManifest: 0 - useCustomMainGradleTemplate: 0 - useCustomLauncherGradleManifest: 0 - useCustomBaseGradleTemplate: 0 - useCustomGradlePropertiesTemplate: 0 - useCustomGradleSettingsTemplate: 0 - useCustomProguardFile: 0 - AndroidTargetArchitectures: 2 - AndroidSplashScreenScale: 0 - androidSplashScreen: {fileID: 0} - AndroidKeystoreName: - AndroidKeyaliasName: - AndroidEnableArmv9SecurityFeatures: 0 - AndroidEnableArm64MTE: 0 - AndroidBuildApkPerCpuArchitecture: 0 - AndroidTVCompatibility: 0 - AndroidIsGame: 1 - AndroidEnableTango: 0 - androidEnableBanner: 1 - androidUseLowAccuracyLocation: 0 - androidUseCustomKeystore: 0 - m_AndroidBanners: - - width: 320 - height: 180 - banner: {fileID: 0} - androidGamepadSupportLevel: 0 - AndroidMinifyRelease: 0 - AndroidMinifyDebug: 0 - AndroidValidateAppBundleSize: 1 - AndroidAppBundleSizeToValidate: 150 - AndroidReportGooglePlayAppDependencies: 1 - androidSymbolsSizeThreshold: 800 - m_BuildTargetIcons: [] - m_BuildTargetPlatformIcons: - - m_BuildTarget: iPhone - m_Icons: - - m_Textures: [] - m_Width: 180 - m_Height: 180 - m_Kind: 0 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 120 - m_Height: 120 - m_Kind: 0 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 167 - m_Height: 167 - m_Kind: 0 - m_SubKind: iPad - - m_Textures: [] - m_Width: 152 - m_Height: 152 - m_Kind: 0 - m_SubKind: iPad - - m_Textures: [] - m_Width: 76 - m_Height: 76 - m_Kind: 0 - m_SubKind: iPad - - m_Textures: [] - m_Width: 120 - m_Height: 120 - m_Kind: 3 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 80 - m_Height: 80 - m_Kind: 3 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 80 - m_Height: 80 - m_Kind: 3 - m_SubKind: iPad - - m_Textures: [] - m_Width: 40 - m_Height: 40 - m_Kind: 3 - m_SubKind: iPad - - m_Textures: [] - m_Width: 87 - m_Height: 87 - m_Kind: 1 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 58 - m_Height: 58 - m_Kind: 1 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 29 - m_Height: 29 - m_Kind: 1 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 58 - m_Height: 58 - m_Kind: 1 - m_SubKind: iPad - - m_Textures: [] - m_Width: 29 - m_Height: 29 - m_Kind: 1 - m_SubKind: iPad - - m_Textures: [] - m_Width: 60 - m_Height: 60 - m_Kind: 2 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 40 - m_Height: 40 - m_Kind: 2 - m_SubKind: iPhone - - m_Textures: [] - m_Width: 40 - m_Height: 40 - m_Kind: 2 - m_SubKind: iPad - - m_Textures: [] - m_Width: 20 - m_Height: 20 - m_Kind: 2 - m_SubKind: iPad - - m_Textures: [] - m_Width: 1024 - m_Height: 1024 - m_Kind: 4 - m_SubKind: App Store - - m_BuildTarget: Android - m_Icons: - - m_Textures: [] - m_Width: 432 - m_Height: 432 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 324 - m_Height: 324 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 216 - m_Height: 216 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 162 - m_Height: 162 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 108 - m_Height: 108 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 81 - m_Height: 81 - m_Kind: 2 - m_SubKind: - - m_Textures: [] - m_Width: 192 - m_Height: 192 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 144 - m_Height: 144 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 96 - m_Height: 96 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 72 - m_Height: 72 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 48 - m_Height: 48 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 36 - m_Height: 36 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 192 - m_Height: 192 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 144 - m_Height: 144 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 96 - m_Height: 96 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 72 - m_Height: 72 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 48 - m_Height: 48 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 36 - m_Height: 36 - m_Kind: 0 - m_SubKind: - - m_BuildTarget: tvOS - m_Icons: - - m_Textures: [] - m_Width: 1280 - m_Height: 768 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 800 - m_Height: 480 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 400 - m_Height: 240 - m_Kind: 0 - m_SubKind: - - m_Textures: [] - m_Width: 4640 - m_Height: 1440 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 2320 - m_Height: 720 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 3840 - m_Height: 1440 - m_Kind: 1 - m_SubKind: - - m_Textures: [] - m_Width: 1920 - m_Height: 720 - m_Kind: 1 - m_SubKind: - m_BuildTargetBatching: - - m_BuildTarget: Standalone - m_StaticBatching: 1 - m_DynamicBatching: 0 - m_BuildTargetShaderSettings: [] - m_BuildTargetGraphicsJobs: [] - m_BuildTargetGraphicsJobMode: [] - m_BuildTargetGraphicsAPIs: - - m_BuildTarget: iOSSupport - m_APIs: 10000000 - m_Automatic: 1 - - m_BuildTarget: AndroidPlayer - m_APIs: 150000000b000000 - m_Automatic: 0 - - m_BuildTarget: WindowsStandaloneSupport - m_APIs: 0200000012000000 - m_Automatic: 0 - m_BuildTargetVRSettings: [] - m_DefaultShaderChunkSizeInMB: 16 - m_DefaultShaderChunkCount: 0 - openGLRequireES31: 0 - openGLRequireES31AEP: 0 - openGLRequireES32: 0 - m_TemplateCustomTags: {} - mobileMTRendering: - Android: 1 - iPhone: 1 - tvOS: 1 - m_BuildTargetGroupLightmapEncodingQuality: - - serializedVersion: 2 - m_BuildTarget: Android - m_EncodingQuality: 1 - m_BuildTargetGroupLightmapSettings: [] - m_BuildTargetGroupLoadStoreDebugModeSettings: [] - m_BuildTargetNormalMapEncoding: - - m_BuildTarget: Android - m_Encoding: 1 - m_BuildTargetDefaultTextureCompressionFormat: - - serializedVersion: 3 - m_BuildTarget: Android - m_Formats: 03000000 - playModeTestRunnerEnabled: 0 - runPlayModeTestAsEditModeTest: 0 - actionOnDotNetUnhandledException: 1 - editorGfxJobOverride: 1 - enableInternalProfiler: 0 - logObjCUncaughtExceptions: 1 - enableCrashReportAPI: 0 - cameraUsageDescription: - locationUsageDescription: - microphoneUsageDescription: - bluetoothUsageDescription: - macOSTargetOSVersion: 11.0 - switchNMETAOverride: - switchNetLibKey: - switchSocketMemoryPoolSize: 6144 - switchSocketAllocatorPoolSize: 128 - switchSocketConcurrencyLimit: 14 - switchScreenResolutionBehavior: 2 - switchUseCPUProfiler: 0 - switchEnableFileSystemTrace: 0 - switchLTOSetting: 0 - switchApplicationID: 0x01004b9000490000 - switchNSODependencies: - switchCompilerFlags: - switchTitleNames_0: - switchTitleNames_1: - switchTitleNames_2: - switchTitleNames_3: - switchTitleNames_4: - switchTitleNames_5: - switchTitleNames_6: - switchTitleNames_7: - switchTitleNames_8: - switchTitleNames_9: - switchTitleNames_10: - switchTitleNames_11: - switchTitleNames_12: - switchTitleNames_13: - switchTitleNames_14: - switchTitleNames_15: - switchPublisherNames_0: - switchPublisherNames_1: - switchPublisherNames_2: - switchPublisherNames_3: - switchPublisherNames_4: - switchPublisherNames_5: - switchPublisherNames_6: - switchPublisherNames_7: - switchPublisherNames_8: - switchPublisherNames_9: - switchPublisherNames_10: - switchPublisherNames_11: - switchPublisherNames_12: - switchPublisherNames_13: - switchPublisherNames_14: - switchPublisherNames_15: - switchIcons_0: {fileID: 0} - switchIcons_1: {fileID: 0} - switchIcons_2: {fileID: 0} - switchIcons_3: {fileID: 0} - switchIcons_4: {fileID: 0} - switchIcons_5: {fileID: 0} - switchIcons_6: {fileID: 0} - switchIcons_7: {fileID: 0} - switchIcons_8: {fileID: 0} - switchIcons_9: {fileID: 0} - switchIcons_10: {fileID: 0} - switchIcons_11: {fileID: 0} - switchIcons_12: {fileID: 0} - switchIcons_13: {fileID: 0} - switchIcons_14: {fileID: 0} - switchIcons_15: {fileID: 0} - switchSmallIcons_0: {fileID: 0} - switchSmallIcons_1: {fileID: 0} - switchSmallIcons_2: {fileID: 0} - switchSmallIcons_3: {fileID: 0} - switchSmallIcons_4: {fileID: 0} - switchSmallIcons_5: {fileID: 0} - switchSmallIcons_6: {fileID: 0} - switchSmallIcons_7: {fileID: 0} - switchSmallIcons_8: {fileID: 0} - switchSmallIcons_9: {fileID: 0} - switchSmallIcons_10: {fileID: 0} - switchSmallIcons_11: {fileID: 0} - switchSmallIcons_12: {fileID: 0} - switchSmallIcons_13: {fileID: 0} - switchSmallIcons_14: {fileID: 0} - switchSmallIcons_15: {fileID: 0} - switchManualHTML: - switchAccessibleURLs: - switchLegalInformation: - switchMainThreadStackSize: 1048576 - switchPresenceGroupId: - switchLogoHandling: 0 - switchReleaseVersion: 0 - switchDisplayVersion: 1.0.0 - switchStartupUserAccount: 0 - switchSupportedLanguagesMask: 0 - switchLogoType: 0 - switchApplicationErrorCodeCategory: - switchUserAccountSaveDataSize: 0 - switchUserAccountSaveDataJournalSize: 0 - switchApplicationAttribute: 0 - switchCardSpecSize: -1 - switchCardSpecClock: -1 - switchRatingsMask: 0 - switchRatingsInt_0: 0 - switchRatingsInt_1: 0 - switchRatingsInt_2: 0 - switchRatingsInt_3: 0 - switchRatingsInt_4: 0 - switchRatingsInt_5: 0 - switchRatingsInt_6: 0 - switchRatingsInt_7: 0 - switchRatingsInt_8: 0 - switchRatingsInt_9: 0 - switchRatingsInt_10: 0 - switchRatingsInt_11: 0 - switchRatingsInt_12: 0 - switchLocalCommunicationIds_0: - switchLocalCommunicationIds_1: - switchLocalCommunicationIds_2: - switchLocalCommunicationIds_3: - switchLocalCommunicationIds_4: - switchLocalCommunicationIds_5: - switchLocalCommunicationIds_6: - switchLocalCommunicationIds_7: - switchParentalControl: 0 - switchAllowsScreenshot: 1 - switchAllowsVideoCapturing: 1 - switchAllowsRuntimeAddOnContentInstall: 0 - switchDataLossConfirmation: 0 - switchUserAccountLockEnabled: 0 - switchSystemResourceMemory: 16777216 - switchSupportedNpadStyles: 22 - switchNativeFsCacheSize: 32 - switchIsHoldTypeHorizontal: 0 - switchSupportedNpadCount: 8 - switchEnableTouchScreen: 1 - switchSocketConfigEnabled: 0 - switchTcpInitialSendBufferSize: 32 - switchTcpInitialReceiveBufferSize: 64 - switchTcpAutoSendBufferSizeMax: 256 - switchTcpAutoReceiveBufferSizeMax: 256 - switchUdpSendBufferSize: 9 - switchUdpReceiveBufferSize: 42 - switchSocketBufferEfficiency: 4 - switchSocketInitializeEnabled: 1 - switchNetworkInterfaceManagerInitializeEnabled: 1 - switchDisableHTCSPlayerConnection: 0 - switchUseNewStyleFilepaths: 0 - switchUseLegacyFmodPriorities: 0 - switchUseMicroSleepForYield: 1 - switchEnableRamDiskSupport: 0 - switchMicroSleepForYieldTime: 25 - switchRamDiskSpaceSize: 12 - switchUpgradedPlayerSettingsToNMETA: 0 - ps4NPAgeRating: 12 - ps4NPTitleSecret: - ps4NPTrophyPackPath: - ps4ParentalLevel: 11 - ps4ContentID: ED1633-NPXX51362_00-0000000000000000 - ps4Category: 0 - ps4MasterVersion: 01.00 - ps4AppVersion: 01.00 - ps4AppType: 0 - ps4ParamSfxPath: - ps4VideoOutPixelFormat: 0 - ps4VideoOutInitialWidth: 1920 - ps4VideoOutBaseModeInitialWidth: 1920 - ps4VideoOutReprojectionRate: 60 - ps4PronunciationXMLPath: - ps4PronunciationSIGPath: - ps4BackgroundImagePath: - ps4StartupImagePath: - ps4StartupImagesFolder: - ps4IconImagesFolder: - ps4SaveDataImagePath: - ps4SdkOverride: - ps4BGMPath: - ps4ShareFilePath: - ps4ShareOverlayImagePath: - ps4PrivacyGuardImagePath: - ps4ExtraSceSysFile: - ps4NPtitleDatPath: - ps4RemotePlayKeyAssignment: -1 - ps4RemotePlayKeyMappingDir: - ps4PlayTogetherPlayerCount: 0 - ps4EnterButtonAssignment: 2 - ps4ApplicationParam1: 0 - ps4ApplicationParam2: 0 - ps4ApplicationParam3: 0 - ps4ApplicationParam4: 0 - ps4DownloadDataSize: 0 - ps4GarlicHeapSize: 2048 - ps4ProGarlicHeapSize: 2560 - playerPrefsMaxSize: 32768 - ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ - ps4pnSessions: 1 - ps4pnPresence: 1 - ps4pnFriends: 1 - ps4pnGameCustomData: 1 - playerPrefsSupport: 0 - enableApplicationExit: 0 - resetTempFolder: 1 - restrictedAudioUsageRights: 0 - ps4UseResolutionFallback: 0 - ps4ReprojectionSupport: 0 - ps4UseAudio3dBackend: 0 - ps4UseLowGarlicFragmentationMode: 1 - ps4SocialScreenEnabled: 0 - ps4ScriptOptimizationLevel: 2 - ps4Audio3dVirtualSpeakerCount: 14 - ps4attribCpuUsage: 0 - ps4PatchPkgPath: - ps4PatchLatestPkgPath: - ps4PatchChangeinfoPath: - ps4PatchDayOne: 0 - ps4attribUserManagement: 0 - ps4attribMoveSupport: 0 - ps4attrib3DSupport: 0 - ps4attribShareSupport: 0 - ps4attribExclusiveVR: 0 - ps4disableAutoHideSplash: 0 - ps4videoRecordingFeaturesUsed: 0 - ps4contentSearchFeaturesUsed: 0 - ps4CompatibilityPS5: 0 - ps4AllowPS5Detection: 0 - ps4GPU800MHz: 1 - ps4attribEyeToEyeDistanceSettingVR: 0 - ps4IncludedModules: [] - ps4attribVROutputEnabled: 0 - monoEnv: - splashScreenBackgroundSourceLandscape: {fileID: 0} - splashScreenBackgroundSourcePortrait: {fileID: 0} - blurSplashScreenBackground: 1 - spritePackerPolicy: - webGLMemorySize: 32 - webGLExceptionSupport: 1 - webGLNameFilesAsHashes: 0 - webGLShowDiagnostics: 0 - webGLDataCaching: 1 - webGLDebugSymbols: 0 - webGLEmscriptenArgs: - webGLModulesDirectory: - webGLTemplate: APPLICATION:Default - webGLAnalyzeBuildSize: 0 - webGLUseEmbeddedResources: 0 - webGLCompressionFormat: 0 - webGLWasmArithmeticExceptions: 0 - webGLLinkerTarget: 1 - webGLThreadsSupport: 0 - webGLDecompressionFallback: 0 - webGLInitialMemorySize: 32 - webGLMaximumMemorySize: 2048 - webGLMemoryGrowthMode: 2 - webGLMemoryLinearGrowthStep: 16 - webGLMemoryGeometricGrowthStep: 0.2 - webGLMemoryGeometricGrowthCap: 96 - webGLPowerPreference: 2 - webGLWebAssemblyTable: 0 - webGLWebAssemblyBigInt: 0 - webGLCloseOnQuit: 0 - webWasm2023: 0 - webEnableSubmoduleStrippingCompatibility: 0 - scriptingDefineSymbols: - Android: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;TMP_PRESENT;USE_ADDRESSABLES;USE_CINEMACHINE_3;USE_NEW_INPUT;UNITY_POST_PROCESSING_STACK_V2;COZY_WEATHER;COZY_3_AND_UP;COZY_URP;ODIN_INSPECTOR;ODIN_INSPECTOR_3;ODIN_INSPECTOR_3_1;ODIN_INSPECTOR_3_2;ODIN_INSPECTOR_3_3 - EmbeddedLinux: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - GameCoreScarlett: DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - GameCoreXboxOne: DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - Kepler: DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - LinuxHeadlessSimulation: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - Nintendo Switch: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - PS4: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - PS5: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - QNX: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - ReservedCFE: DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - Server: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI - Standalone: ODIN_INSPECTOR;ODIN_INSPECTOR_3;ODIN_INSPECTOR_3_1;ODIN_INSPECTOR_3_2;ODIN_INSPECTOR_3_3;UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;TMP_PRESENT;USE_ADDRESSABLES;USE_CINEMACHINE_3;USE_NEW_INPUT;COZY_URP;COZY_WEATHER;COZY_3_AND_UP - VisionOS: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - WebGL: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - Windows Store Apps: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;TMP_PRESENT;USE_ADDRESSABLES;USE_CINEMACHINE_3;USE_NEW_INPUT - XboxOne: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - iPhone: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;TMP_PRESENT;USE_ADDRESSABLES;USE_CINEMACHINE_3;USE_NEW_INPUT - tvOS: UNITY_VISUAL_SCRIPTING;ES3_TMPRO;ES3_UGUI;DOTWEEN;UNITY_POST_PROCESSING_STACK_V2 - additionalCompilerArguments: {} - platformArchitecture: {} - scriptingBackend: - Android: 1 - Standalone: 1 - il2cppCompilerConfiguration: {} - il2cppCodeGeneration: - Standalone: 1 - il2cppStacktraceInformation: {} - managedStrippingLevel: {} - incrementalIl2cppBuild: {} - suppressCommonWarnings: 1 - allowUnsafeCode: 0 - useDeterministicCompilation: 1 - additionalIl2CppArgs: - scriptingRuntimeVersion: 1 - gcIncremental: 1 - gcWBarrierValidation: 0 - apiCompatibilityLevelPerPlatform: {} - editorAssembliesCompatibilityLevel: 2 - m_RenderingPath: 1 - m_MobileRenderingPath: 1 - metroPackageName: ProjectDDD - metroPackageVersion: 1.0.0.0 - metroCertificatePath: - metroCertificatePassword: - metroCertificateSubject: - metroCertificateIssuer: - metroCertificateNotAfter: 0000000000000000 - metroApplicationDescription: ProjectDDD - wsaImages: {} - metroTileShortName: ProjectDDD - metroTileShowName: 0 - metroMediumTileShowName: 0 - metroLargeTileShowName: 0 - metroWideTileShowName: 0 - metroSupportStreamingInstall: 0 - metroLastRequiredScene: 0 - metroDefaultTileSize: 1 - metroTileForegroundText: 2 - metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} - metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} - metroSplashScreenUseBackgroundColor: 0 - syncCapabilities: 0 - platformCapabilities: {} - metroTargetDeviceFamilies: {} - metroFTAName: - metroFTAFileTypes: [] - metroProtocolName: - vcxProjDefaultLanguage: - XboxOneProductId: - XboxOneUpdateKey: - XboxOneSandboxId: - XboxOneContentId: - XboxOneTitleId: - XboxOneSCId: - XboxOneGameOsOverridePath: - XboxOnePackagingOverridePath: - XboxOneAppManifestOverridePath: - XboxOneVersion: 1.0.0.0 - XboxOnePackageEncryption: 0 - XboxOnePackageUpdateGranularity: 2 - XboxOneDescription: - XboxOneLanguage: - - enus - XboxOneCapability: [] - XboxOneGameRating: {} - XboxOneIsContentPackage: 0 - XboxOneEnhancedXboxCompatibilityMode: 0 - XboxOneEnableGPUVariability: 1 - XboxOneSockets: {} - XboxOneSplashScreen: {fileID: 0} - XboxOneAllowedProductIds: [] - XboxOnePersistentLocalStorageSize: 0 - XboxOneXTitleMemory: 8 - XboxOneOverrideIdentityName: - XboxOneOverrideIdentityPublisher: - vrEditorSettings: {} - cloudServicesEnabled: {} - luminIcon: - m_Name: - m_ModelFolderPath: - m_PortalFolderPath: - luminCert: - m_CertPath: - m_SignPackage: 1 - luminIsChannelApp: 0 - luminVersion: - m_VersionCode: 1 - m_VersionName: - hmiPlayerDataPath: - hmiForceSRGBBlit: 1 - embeddedLinuxEnableGamepadInput: 0 - hmiCpuConfiguration: - hmiLogStartupTiming: 0 - qnxGraphicConfPath: - apiCompatibilityLevel: 3 - captureStartupLogs: {} - activeInputHandler: 2 - windowsGamepadBackendHint: 0 - cloudProjectId: - framebufferDepthMemorylessMode: 0 - qualitySettingsNames: [] - projectName: - organizationId: - cloudEnabled: 0 - legacyClampBlendShapeWeights: 0 - hmiLoadingImage: {fileID: 0} - platformRequiresReadableAssets: 0 - virtualTexturingSupportEnabled: 0 - insecureHttpOption: 1 - androidVulkanDenyFilterList: [] - androidVulkanAllowFilterList: [] - androidVulkanDeviceFilterListAsset: {fileID: 0} +version https://git-lfs.github.com/spec/v1 +oid sha256:82ceac1294e7988a71a29a422cfd089e1b636ff0515c22d9b2941c66b9276cda +size 27355 diff --git a/ProjectSettings/ShaderGraphSettings.asset b/ProjectSettings/ShaderGraphSettings.asset index 387b2380b..40c1b43d7 100644 --- a/ProjectSettings/ShaderGraphSettings.asset +++ b/ProjectSettings/ShaderGraphSettings.asset @@ -1,18 +1,3 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &1 -MonoBehaviour: - m_ObjectHideFlags: 61 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} - m_Name: - m_EditorClassIdentifier: - shaderVariantLimit: 513 - customInterpolatorErrorThreshold: 32 - customInterpolatorWarningThreshold: 8 - customHeatmapValues: {fileID: 0} +version https://git-lfs.github.com/spec/v1 +oid sha256:f34464df6c5c02947aa29f62b88a560c243f019a65fca6d1256bc28430ec2228 +size 523 diff --git a/ProjectSettings/URPProjectSettings.asset b/ProjectSettings/URPProjectSettings.asset index 08faf0336..2572cd60e 100644 --- a/ProjectSettings/URPProjectSettings.asset +++ b/ProjectSettings/URPProjectSettings.asset @@ -1,15 +1,3 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &1 -MonoBehaviour: - m_ObjectHideFlags: 61 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3} - m_Name: - m_EditorClassIdentifier: - m_LastMaterialVersion: 9 +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a626cb529ccfc0a82e388b8cd32bc60888f7226c33412fad3bc50aba802cd7 +size 410