feat(BUGCube):实现BUG位置生成异常方块

This commit is contained in:
2025-10-28 10:10:41 +08:00
parent da4edb55a8
commit 7fdd7a1bb1
11 changed files with 5687 additions and 27 deletions

View File

@@ -75,12 +75,12 @@ namespace Script.Gameplay.Connect
var connectionLine = GenerateConnectionLine(source, target);
if (connectionLine == null)
{
Debug.Log($"编号为{preConnection.PreConnectionID}的连接线存在重复连接,生成失败");
Debug.LogWarning($"编号为{preConnection.PreConnectionID}的连接线存在重复连接,生成失败");
}
}
else
{
Debug.Log($"编号为{preConnection.PreConnectionID}的连接线的配置错误,生成失败");
Debug.LogWarning($"编号为{preConnection.PreConnectionID}的连接线的配置错误,生成失败");
}
}
}