(client) feat:实现右键菜单

This commit is contained in:
m0_75251201
2025-07-23 18:53:14 +08:00
parent 046ebe3cfe
commit ac278fba46
19 changed files with 1146 additions and 790 deletions

View File

@ -29,6 +29,7 @@ namespace Data
public class DrawingOrderDef : Define
{
public List<DrawNodeDef> drawNodes = new();
public string texturePath;
public override bool Init(XElement xmlDef)
{
base.Init(xmlDef);
@ -43,7 +44,7 @@ namespace Data
drawNode.Init(node);
drawNodes.Add(drawNode);
}
texturePath= xmlDef.Element("texturePath")?.Value;
return true;;
}
// 重载 == 运算符