功能更新

This commit is contained in:
GG Z
2026-02-23 11:21:51 +08:00
parent 3650f8550e
commit 6beb8b5be9
24 changed files with 694 additions and 1975 deletions

View File

@@ -19,4 +19,19 @@ public readonly struct TextWithPosition
Position = pos;
TextContent = content;
}
}
// 用于通用存储 地形点(块或点实体)的信息
public readonly struct TerrainEntityInfo
{
public ObjectId ObjectId { get; }
public Point3d Position { get; }
public string Handle { get; }
public TerrainEntityInfo(ObjectId id, Point3d pos)
{
ObjectId = id;
Position = pos;
Handle = id.Handle.Value.ToString();
}
}