Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
AssetMessageCode.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 namespace SiliconStudio.Assets.Diagnostics
4 {
5  /// <summary>
6  /// A message code used by <see cref="AssetLogMessage"/> to identify an error/warning.
7  /// </summary>
8  /// Note that internally AssetMessageStrings.resx should contain an associated error message to this enum.
9  public enum AssetMessageCode
10  {
11  /// <summary>
12  /// A raw asset was not found
13  /// </summary>
15 
16  /// <summary>
17  /// The asset not found
18  /// </summary>
20 
21  /// <summary>
22  /// The asset reference has been changed for a particular location
23  /// </summary>
25 
26  /// <summary>
27  /// The asset loading failed
28  /// </summary>
30 
31  /// <summary>
32  /// The asset cannot be deleted
33  /// </summary>
35 
36  /// <summary>
37  /// The asset cannot be saved
38  /// </summary>
40 
41  /// <summary>
42  /// The package not found
43  /// </summary>
45 
46  /// <summary>
47  /// The package filepath is not set for saving
48  /// </summary>
50 
51  /// <summary>
52  /// The package not found
53  /// </summary>
55 
56  /// <summary>
57  /// The package cannot be saved
58  /// </summary>
60 
61  /// <summary>
62  /// The package dependency is modified
63  /// </summary>
65 
66  /// <summary>
67  /// The package build profile cannot be null
68  /// </summary>
70 
71  /// <summary>
72  /// The package build profile should not have a File extension null
73  /// </summary>
75 
76  /// <summary>
77  /// Asset contains invalid circular references
78  /// </summary>
80 
81  /// <summary>
82  /// The base not found
83  /// </summary>
85 
86  /// <summary>
87  /// The base was changed
88  /// </summary>
90 
91  /// <summary>
92  /// The base is not the same type as the current asset.
93  /// </summary>
95 
96  /// <summary>
97  /// The asset has been successfully compiled.
98  /// </summary>
100 
101  /// <summary>
102  /// The asset compilation failed.
103  /// </summary>
105 
106  /// <summary>
107  /// The asset compilation has been cancelled.
108  /// </summary>
110 
111  /// <summary>
112  /// The asset has not been compiled because it is already up-to-date.
113  /// </summary>
115 
116  /// <summary>
117  /// The asset has not been compiled because its prerequisites failed to compile.
118  /// </summary>
120 
121  /// <summary>
122  /// An unexpected internal error occured.
123  /// </summary>
125 
126  /// <summary>
127  /// A fatal error that caused the asset compilation to fail.
128  /// </summary>
130 
131  /// <summary>
132  /// An error that caused the asset compilation to fail.
133  /// </summary>
135 
136  /// <summary>
137  /// A warning that occured in the asset compilation.
138  /// </summary>
140  }
141 }
The asset compilation has been cancelled.
A warning that occured in the asset compilation.
A fatal error that caused the asset compilation to fail.
The package build profile cannot be null
AssetMessageCode
A message code used by AssetLogMessage to identify an error/warning.
Asset contains invalid circular references
The package filepath is not set for saving
The asset has been successfully compiled.
An unexpected internal error occured.
The base is not the same type as the current asset.
An error that caused the asset compilation to fail.
The package build profile should not have a File extension null
The asset reference has been changed for a particular location
The asset has not been compiled because its prerequisites failed to compile.
The asset has not been compiled because it is already up-to-date.