mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-14 19:40:47 +00:00
update space shooter
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user