mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-23 09:10:11 +00:00
update AssetArtScanner
资源扫描工具
This commit is contained in:
24
Assets/YooAsset/Editor/AssetArtScanner/ScannerSchema.cs
Normal file
24
Assets/YooAsset/Editor/AssetArtScanner/ScannerSchema.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace YooAsset.Editor
|
||||
{
|
||||
public abstract class ScannerSchema : ScriptableObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取用户指南信息
|
||||
/// </summary>
|
||||
public abstract string GetUserGuide();
|
||||
|
||||
/// <summary>
|
||||
/// 运行生成扫描报告
|
||||
/// </summary>
|
||||
public abstract ScanReport RunScanner(AssetArtScanner scanner);
|
||||
|
||||
/// <summary>
|
||||
/// 修复扫描结果
|
||||
/// </summary>
|
||||
public abstract void FixResult(List<ReportElement> fixList);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user