diff --git a/Assets/02DaLianShiYou/DaLianShiHua.prefab b/Assets/02DaLianShiYou/DaLianShiHua.prefab index 908818b..b2bdfeb 100644 Binary files a/Assets/02DaLianShiYou/DaLianShiHua.prefab and b/Assets/02DaLianShiYou/DaLianShiHua.prefab differ diff --git a/Assets/Plugins/SmartX1App.dll.meta b/Assets/Plugins/SmartX1App.dll.meta index d258105..d0c10a1 100644 --- a/Assets/Plugins/SmartX1App.dll.meta +++ b/Assets/Plugins/SmartX1App.dll.meta @@ -17,12 +17,12 @@ PluginImporter: enabled: 0 settings: Exclude Editor: 1 - Exclude Linux: 0 - Exclude Linux64: 0 - Exclude LinuxUniversal: 0 - Exclude OSXUniversal: 0 - Exclude Win: 0 - Exclude Win64: 0 + Exclude Linux: 1 + Exclude Linux64: 1 + Exclude LinuxUniversal: 1 + Exclude OSXUniversal: 1 + Exclude Win: 1 + Exclude Win64: 1 - first: Any: second: @@ -51,36 +51,37 @@ PluginImporter: - first: Standalone: Linux second: - enabled: 1 + enabled: 0 settings: CPU: x86 - first: Standalone: Linux64 second: - enabled: 1 + enabled: 0 settings: CPU: x86_64 - first: Standalone: LinuxUniversal second: - enabled: 1 - settings: {} + enabled: 0 + settings: + CPU: None - first: Standalone: OSXUniversal second: - enabled: 1 + enabled: 0 settings: CPU: AnyCPU - first: Standalone: Win second: - enabled: 1 + enabled: 0 settings: CPU: AnyCPU - first: Standalone: Win64 second: - enabled: 1 + enabled: 0 settings: CPU: AnyCPU userData: diff --git a/Assets/Prefab/UI/Canvas.prefab b/Assets/Prefab/UI/Canvas.prefab index 620c2f0..4b55687 100644 Binary files a/Assets/Prefab/UI/Canvas.prefab and b/Assets/Prefab/UI/Canvas.prefab differ diff --git a/Assets/Resources/Prefab/Diaster/FireHuge.prefab b/Assets/Resources/Prefab/Diaster/FireHuge.prefab index 6b8eacb..cd61972 100644 Binary files a/Assets/Resources/Prefab/Diaster/FireHuge.prefab and b/Assets/Resources/Prefab/Diaster/FireHuge.prefab differ diff --git a/Assets/Resources/Prefab/Tool/NaturalWater.prefab b/Assets/Resources/Prefab/Tool/NaturalWater.prefab index 7c12151..958667d 100644 Binary files a/Assets/Resources/Prefab/Tool/NaturalWater.prefab and b/Assets/Resources/Prefab/Tool/NaturalWater.prefab differ diff --git a/Assets/Scene/MainScene_New.unity b/Assets/Scene/MainScene_New.unity index 62bc8d4..b62b2f8 100644 Binary files a/Assets/Scene/MainScene_New.unity and b/Assets/Scene/MainScene_New.unity differ diff --git a/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceCar.asset b/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceCar.asset index 5516804..adc3d8a 100644 Binary files a/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceCar.asset and b/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceCar.asset differ diff --git a/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceMan.asset b/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceMan.asset index 3c8aadc..011081b 100644 Binary files a/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceMan.asset and b/Assets/Scene/MainScene_New/NavMesh-NavMeshSufaceMan.asset differ diff --git a/Assets/Scripts/Compass.cs b/Assets/Scripts/Compass.cs new file mode 100644 index 0000000..f43acfb --- /dev/null +++ b/Assets/Scripts/Compass.cs @@ -0,0 +1,19 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class Compass : MonoBehaviour +{ + private float ZRotation = 0f; + public float InitialRotationAngle = 0f; + + void Update() + { + if (Camera.main) + { + ZRotation = Camera.main.transform.eulerAngles.y + InitialRotationAngle; + this.transform.eulerAngles = new Vector3(0, 0, ZRotation); + } + } +} diff --git a/Assets/Scripts/Compass.cs.meta b/Assets/Scripts/Compass.cs.meta new file mode 100644 index 0000000..5feae86 --- /dev/null +++ b/Assets/Scripts/Compass.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b75e45acb91f18e408cdb72e67fab429 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Power/MultiSelectNAV.cs b/Assets/Scripts/Power/MultiSelectNAV.cs index cb51cdb..866f863 100644 --- a/Assets/Scripts/Power/MultiSelectNAV.cs +++ b/Assets/Scripts/Power/MultiSelectNAV.cs @@ -44,14 +44,18 @@ public class MultiSelectNAV : ResourceLoadPanel var count = TargetPoint.Count; var list = AgentController.LiSan(TargetPoint[count - 1], SelectCars.Count, new Vector3(9, 0, 9)); int indexer = 0; - //开始多选车辆的巡礼操作 - SelectCars.ForEach((X) => + if (SelectCars.Count>0&&list.Count>0) { - TargetPoint[count - 1] = list[indexer]; - X.GetComponent().AutoPathFinding(TargetPoint); - indexer++; - }); - // TargetPoint.Clear(); + //开始多选车辆的巡礼操作 + SelectCars.ForEach((X) => + { + TargetPoint[count - 1] = list[indexer]; + X.GetComponent().AutoPathFinding(TargetPoint); + indexer++; + }); + // TargetPoint.Clear(); + } + } } diff --git a/Assets/Sky/Materials/azure[Sky].mat b/Assets/Sky/Materials/azure[Sky].mat index 065f7e3..5a355c1 100644 Binary files a/Assets/Sky/Materials/azure[Sky].mat and b/Assets/Sky/Materials/azure[Sky].mat differ diff --git a/Assets/UI/Common/方向标指针.png b/Assets/UI/Common/方向标指针.png new file mode 100644 index 0000000..984872d Binary files /dev/null and b/Assets/UI/Common/方向标指针.png differ diff --git a/Assets/UI/Common/方向标指针.png.meta b/Assets/UI/Common/方向标指针.png.meta new file mode 100644 index 0000000..b46cc6f --- /dev/null +++ b/Assets/UI/Common/方向标指针.png.meta @@ -0,0 +1,110 @@ +fileFormatVersion: 2 +guid: fca79997a2870514eb1508ab65fa3169 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: affaac4548d04de4fbd3870153fd45fd + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/UI/Common/方向标背景.png b/Assets/UI/Common/方向标背景.png new file mode 100644 index 0000000..dd330c8 Binary files /dev/null and b/Assets/UI/Common/方向标背景.png differ diff --git a/Assets/UI/Common/方向标背景.png.meta b/Assets/UI/Common/方向标背景.png.meta new file mode 100644 index 0000000..c4343ff --- /dev/null +++ b/Assets/UI/Common/方向标背景.png.meta @@ -0,0 +1,110 @@ +fileFormatVersion: 2 +guid: bcfc31f262205eb4a9711305bd291dff +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 7aafa7a3315461243a18e331cda4da44 + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 0883381..a879718 100644 Binary files a/ProjectSettings/ProjectSettings.asset and b/ProjectSettings/ProjectSettings.asset differ diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset index e88f0f5..550c6d1 100644 Binary files a/ProjectSettings/QualitySettings.asset and b/ProjectSettings/QualitySettings.asset differ