mirror of https://github.com/tuyoogame/YooAsset
update space shooter
parent
a57fec3d71
commit
966c8f2efa
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue