From 5dd9760a2003dc3cb9feb5cd61e402b1a475200e Mon Sep 17 00:00:00 2001 From: GanX <2423855310@qq.com> Date: Mon, 20 Oct 2025 10:12:07 +0800 Subject: [PATCH] =?UTF-8?q?chore(Script.Gameplay.Player):=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=90=8D=E7=A7=B0=E7=A9=BA=E9=97=B4Gameplay.Player=20?= =?UTF-8?q?->=20Script.Gameplay.Player?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Script/Gameplay/Facility/DoorInteractController.cs | 2 +- Assets/Script/Gameplay/Facility/FacilityEditableController.cs | 2 +- Assets/Script/Gameplay/Interface/IEditable.cs | 2 +- Assets/Script/Gameplay/Player/FirstPersonRaycaster.cs | 2 +- Assets/Script/Gameplay/Player/PlayerCameraController.cs | 2 +- Assets/Script/Gameplay/Player/PlayerConnectController.cs | 2 +- .../Script/Gameplay/Player/PlayerConnectionLineController.cs | 2 +- Assets/Script/Gameplay/Player/PlayerController.cs | 3 +-- Assets/Script/Gameplay/Player/PlayerEditController.cs | 2 +- Assets/Script/Gameplay/Player/PlayerInteractorController.cs | 2 +- Assets/Script/Gameplay/Player/PlayerMoveController.cs | 2 +- Assets/Script/Gameplay/Player/PlayerWatchModeController.cs | 2 +- Assets/Script/Gameplay/UI/PlayerConnectViewer.cs | 2 +- Assets/Script/Gameplay/UI/PlayerEditViewer.cs | 2 +- Assets/Script/Gameplay/UI/PlayerHpViewer.cs | 2 +- Assets/Script/Gameplay/UI/PlayerWatchModeViewer.cs | 2 +- 16 files changed, 16 insertions(+), 17 deletions(-) diff --git a/Assets/Script/Gameplay/Facility/DoorInteractController.cs b/Assets/Script/Gameplay/Facility/DoorInteractController.cs index 3e6a5a7..c1339b1 100644 --- a/Assets/Script/Gameplay/Facility/DoorInteractController.cs +++ b/Assets/Script/Gameplay/Facility/DoorInteractController.cs @@ -1,6 +1,6 @@ using System; using System.Collections.Generic; -using Gameplay.Player; +using Script.Gameplay.Player; using UnityEngine; using Script.Gameplay.Interface; using Script.Gameplay.Connect; diff --git a/Assets/Script/Gameplay/Facility/FacilityEditableController.cs b/Assets/Script/Gameplay/Facility/FacilityEditableController.cs index eb6820e..bb5b7f2 100644 --- a/Assets/Script/Gameplay/Facility/FacilityEditableController.cs +++ b/Assets/Script/Gameplay/Facility/FacilityEditableController.cs @@ -1,6 +1,6 @@ using System; using System.Collections.Generic; -using Gameplay.Player; +using Script.Gameplay.Player; using UnityEngine; using Script.Gameplay.Interface; diff --git a/Assets/Script/Gameplay/Interface/IEditable.cs b/Assets/Script/Gameplay/Interface/IEditable.cs index 9295a4c..473846b 100644 --- a/Assets/Script/Gameplay/Interface/IEditable.cs +++ b/Assets/Script/Gameplay/Interface/IEditable.cs @@ -1,5 +1,5 @@ using UnityEngine; -using Gameplay.Player; +using Script.Gameplay.Player; using System.Collections.Generic; using Script.Gameplay.Facility; diff --git a/Assets/Script/Gameplay/Player/FirstPersonRaycaster.cs b/Assets/Script/Gameplay/Player/FirstPersonRaycaster.cs index d7e0aca..f3c1e84 100644 --- a/Assets/Script/Gameplay/Player/FirstPersonRaycaster.cs +++ b/Assets/Script/Gameplay/Player/FirstPersonRaycaster.cs @@ -1,6 +1,6 @@ using UnityEngine; -namespace Gameplay.Player +namespace Script.Gameplay.Player { /// /// 通用第一人称射线检测,获取玩家注视的 GameObject。 diff --git a/Assets/Script/Gameplay/Player/PlayerCameraController.cs b/Assets/Script/Gameplay/Player/PlayerCameraController.cs index 04a72fd..2d7a054 100644 --- a/Assets/Script/Gameplay/Player/PlayerCameraController.cs +++ b/Assets/Script/Gameplay/Player/PlayerCameraController.cs @@ -2,7 +2,7 @@ using Core; using UnityEngine; using Script.Gameplay.Input; -namespace Gameplay.Player +namespace Script.Gameplay.Player { /// /// 玩家第一人称相机控制器 diff --git a/Assets/Script/Gameplay/Player/PlayerConnectController.cs b/Assets/Script/Gameplay/Player/PlayerConnectController.cs index 0a9e076..27ac5c6 100644 --- a/Assets/Script/Gameplay/Player/PlayerConnectController.cs +++ b/Assets/Script/Gameplay/Player/PlayerConnectController.cs @@ -5,7 +5,7 @@ using Script.Gameplay.Connect; using Script.Gameplay.Input; using System; -namespace Gameplay.Player +namespace Script.Gameplay.Player { public class PlayerConnectController : MonoBehaviour { diff --git a/Assets/Script/Gameplay/Player/PlayerConnectionLineController.cs b/Assets/Script/Gameplay/Player/PlayerConnectionLineController.cs index 9b4a6d7..ac2a150 100644 --- a/Assets/Script/Gameplay/Player/PlayerConnectionLineController.cs +++ b/Assets/Script/Gameplay/Player/PlayerConnectionLineController.cs @@ -1,6 +1,6 @@ using UnityEngine; -namespace Gameplay.Player +namespace Script.Gameplay.Player { public class PlayerConnectionLineController : MonoBehaviour { diff --git a/Assets/Script/Gameplay/Player/PlayerController.cs b/Assets/Script/Gameplay/Player/PlayerController.cs index 41da790..a2b5073 100644 --- a/Assets/Script/Gameplay/Player/PlayerController.cs +++ b/Assets/Script/Gameplay/Player/PlayerController.cs @@ -1,13 +1,12 @@ using System; using System.Collections.Generic; using System.Linq; -using Gameplay; using Script.Gameplay.Interface; using UnityEngine; using Core; using Script.Gameplay.Global; -namespace Gameplay.Player +namespace Script.Gameplay.Player { public class PlayerController : MonoBehaviour, IDamageable { diff --git a/Assets/Script/Gameplay/Player/PlayerEditController.cs b/Assets/Script/Gameplay/Player/PlayerEditController.cs index e632968..78894b1 100644 --- a/Assets/Script/Gameplay/Player/PlayerEditController.cs +++ b/Assets/Script/Gameplay/Player/PlayerEditController.cs @@ -3,7 +3,7 @@ using UnityEngine; using Script.Gameplay.Interface; using Script.Gameplay.Input; -namespace Gameplay.Player +namespace Script.Gameplay.Player { public class PlayerEditController:MonoBehaviour { diff --git a/Assets/Script/Gameplay/Player/PlayerInteractorController.cs b/Assets/Script/Gameplay/Player/PlayerInteractorController.cs index 20216e2..e6e2469 100644 --- a/Assets/Script/Gameplay/Player/PlayerInteractorController.cs +++ b/Assets/Script/Gameplay/Player/PlayerInteractorController.cs @@ -3,7 +3,7 @@ using Script.Gameplay.Interface; using System; using Script.Gameplay.Input; -namespace Gameplay.Player +namespace Script.Gameplay.Player { public class PlayerInteractorController : MonoBehaviour { diff --git a/Assets/Script/Gameplay/Player/PlayerMoveController.cs b/Assets/Script/Gameplay/Player/PlayerMoveController.cs index 1621a7f..b698639 100644 --- a/Assets/Script/Gameplay/Player/PlayerMoveController.cs +++ b/Assets/Script/Gameplay/Player/PlayerMoveController.cs @@ -3,7 +3,7 @@ using Core; using Script.Gameplay.Input; using UnityEngine; -namespace Gameplay.Player +namespace Script.Gameplay.Player { public class PlayerMoveController : MonoBehaviour { diff --git a/Assets/Script/Gameplay/Player/PlayerWatchModeController.cs b/Assets/Script/Gameplay/Player/PlayerWatchModeController.cs index 260ea75..e405d1d 100644 --- a/Assets/Script/Gameplay/Player/PlayerWatchModeController.cs +++ b/Assets/Script/Gameplay/Player/PlayerWatchModeController.cs @@ -4,7 +4,7 @@ using UnityEngine; using Core; using Script.Gameplay.Global; -namespace Gameplay.Player +namespace Script.Gameplay.Player { public enum WatchMode { diff --git a/Assets/Script/Gameplay/UI/PlayerConnectViewer.cs b/Assets/Script/Gameplay/UI/PlayerConnectViewer.cs index fb147e6..8961a1b 100644 --- a/Assets/Script/Gameplay/UI/PlayerConnectViewer.cs +++ b/Assets/Script/Gameplay/UI/PlayerConnectViewer.cs @@ -1,6 +1,6 @@ using System; using Core; -using Gameplay.Player; +using Script.Gameplay.Player; using Script.Gameplay.Connect; using TMPro; using UnityEngine; diff --git a/Assets/Script/Gameplay/UI/PlayerEditViewer.cs b/Assets/Script/Gameplay/UI/PlayerEditViewer.cs index b768556..c6aec61 100644 --- a/Assets/Script/Gameplay/UI/PlayerEditViewer.cs +++ b/Assets/Script/Gameplay/UI/PlayerEditViewer.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using Core; using Script.Gameplay.Interface; -using Gameplay.Player; +using Script.Gameplay.Player; using Script.Gameplay.Facility; using UnityEngine; using Script.Gameplay.Input; diff --git a/Assets/Script/Gameplay/UI/PlayerHpViewer.cs b/Assets/Script/Gameplay/UI/PlayerHpViewer.cs index 8cf89b1..3851068 100644 --- a/Assets/Script/Gameplay/UI/PlayerHpViewer.cs +++ b/Assets/Script/Gameplay/UI/PlayerHpViewer.cs @@ -1,6 +1,6 @@ using System; using Core; -using Gameplay.Player; +using Script.Gameplay.Player; using TMPro; using UnityEngine; using UnityEngine.UI; diff --git a/Assets/Script/Gameplay/UI/PlayerWatchModeViewer.cs b/Assets/Script/Gameplay/UI/PlayerWatchModeViewer.cs index 7f5e9cc..833c278 100644 --- a/Assets/Script/Gameplay/UI/PlayerWatchModeViewer.cs +++ b/Assets/Script/Gameplay/UI/PlayerWatchModeViewer.cs @@ -1,6 +1,6 @@ using System; using Core; -using Gameplay.Player; +using Script.Gameplay.Player; using TMPro; using UnityEngine; using UnityEngine.UI;