Files
YooAsset/Assets/YooAsset/Editor/AssetBundleBuilder/BuildSystem/ErrorCode.cs

44 lines
1.2 KiB
C#
Raw Normal View History


namespace YooAsset.Editor
{
2023-12-21 19:29:26 +08:00
internal enum ErrorCode
{
// TaskPrepare
ThePipelineIsBuiding = 100,
FoundUnsavedScene = 101,
NoBuildTarget = 110,
PackageNameIsNullOrEmpty = 111,
PackageVersionIsNullOrEmpty = 112,
BuildOutputRootIsNullOrEmpty = 113,
BuildinFileRootIsNullOrEmpty = 114,
PackageOutputDirectoryExists = 115,
2025-01-07 10:06:03 +08:00
BuildPipelineIsNullOrEmpty = 116,
BuildBundleTypeIsUnknown = 117,
2023-12-21 19:29:26 +08:00
RecommendScriptBuildPipeline = 130,
2023-12-21 19:29:26 +08:00
// TaskGetBuildMap
RemoveInvalidTags = 200,
FoundUndependedAsset = 201,
PackAssetListIsEmpty = 202,
NotSupportMultipleRawAsset = 210,
2023-12-21 19:29:26 +08:00
// TaskBuilding
UnityEngineBuildFailed = 300,
UnityEngineBuildFatal = 301,
2023-12-21 19:29:26 +08:00
// TaskUpdateBundleInfo
CharactersOverTheLimit = 400,
NotFoundUnityBundleHash = 401,
NotFoundUnityBundleCRC = 402,
BundleTempSizeIsZero = 403,
2023-12-21 19:29:26 +08:00
// TaskVerifyBuildResult
UnintendedBuildBundle = 500,
UnintendedBuildResult = 501,
// TaskCreateManifest
NotFoundUnityBundleInBuildResult = 600,
FoundStrayBundle = 601,
2024-12-13 11:00:30 +08:00
BundleHashConflict = 602,
2023-12-21 19:29:26 +08:00
}
}