mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-09-27 10:46:17 +00:00
提交
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
using System.Collections.Generic;
|
||||
using DotRecast.Core.Collections;
|
||||
using JNGame.Math;
|
||||
using JNGame.Runtime.Util;
|
||||
using JNGame.Sync.State.Tile;
|
||||
@@ -38,11 +37,11 @@ namespace JNGame.Sync.Debuger
|
||||
DrawContains(service.MaxContains,service.MinContains,Color.red);
|
||||
|
||||
//绘制连接区域
|
||||
service.GetLinkTiles().ForEach(index =>
|
||||
foreach (var linkTile in service.GetLinkTiles())
|
||||
{
|
||||
(LVector2 max, LVector2 min) = service.GetTileContains(index);
|
||||
(LVector2 max, LVector2 min) = service.GetTileContains(linkTile);
|
||||
DrawContains(max,min,Color.cyan);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user