This commit is contained in:
2024-11-29 17:51:19 +08:00
parent 2a2ab3bf5d
commit d95d117c08
23 changed files with 1555 additions and 384 deletions
+2 -3
View File
@@ -15,7 +15,6 @@ namespace AibisDream.FixSystem
public Socket InitSocket { get; private set; }
public BodyModuleSystem BodyModuleSystem { get; private set; }
private BodyModule[] _bodyModules;
#endregion
@@ -83,9 +82,9 @@ namespace AibisDream.FixSystem
/// <param name="sourcePos">源位置</param>
/// <param name="targetModule">最近的Module</param>
/// <returns>是否能找到目标范围内的Module</returns>
public bool TryFindClosestSocket(Vector3 sourcePos, out BodyModule targetModule)
public bool TryFindClosestModule(Vector3 sourcePos, out BodyModule targetModule)
{
return BodyModuleSystem.TryFindClosestSocket(sourcePos, out targetModule);
return BodyModuleSystem.TryFindClosestModule(sourcePos, out targetModule);
}
#region