update space shooter

pull/497/head
何冠峰 2025-02-18 18:41:05 +08:00
parent a57fec3d71
commit 966c8f2efa
1 changed files with 12 additions and 0 deletions

View File

@ -21,6 +21,12 @@ public class TextureSchema : ScannerSchema
/// </summary>
public int MaxHeight = 1024;
/// <summary>
/// 测试列表
/// </summary>
public List<string> TestStringValues = new List<string>();
/// <summary>
/// 获取用户指南信息
/// </summary>
@ -177,6 +183,12 @@ public class TextureSchema : ScannerSchema
});
container.Add(maxHeightField);
// 创建测试列表
ReorderableListView reorderableListView = new ReorderableListView();
reorderableListView.SourceData = TestStringValues;
reorderableListView.HeaderName = "测试列表";
container.Add(reorderableListView);
SchemaInspector inspector = new SchemaInspector(container);
return inspector;
}