mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-24 09:40:11 +00:00
update space shooter
This commit is contained in:
@@ -21,6 +21,12 @@ public class TextureSchema : ScannerSchema
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public int MaxHeight = 1024;
|
public int MaxHeight = 1024;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 测试列表
|
||||||
|
/// </summary>
|
||||||
|
public List<string> TestStringValues = new List<string>();
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取用户指南信息
|
/// 获取用户指南信息
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -177,6 +183,12 @@ public class TextureSchema : ScannerSchema
|
|||||||
});
|
});
|
||||||
container.Add(maxHeightField);
|
container.Add(maxHeightField);
|
||||||
|
|
||||||
|
// 创建测试列表
|
||||||
|
ReorderableListView reorderableListView = new ReorderableListView();
|
||||||
|
reorderableListView.SourceData = TestStringValues;
|
||||||
|
reorderableListView.HeaderName = "测试列表";
|
||||||
|
container.Add(reorderableListView);
|
||||||
|
|
||||||
SchemaInspector inspector = new SchemaInspector(container);
|
SchemaInspector inspector = new SchemaInspector(container);
|
||||||
return inspector;
|
return inspector;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user