The FriendlyName
property provides a user-friendly name for the asset type, intended for display in user interfaces. This name is typically more descriptive and readable than the technical or file-based name of the asset type.
The FriendlyName
property provides a user-friendly name for the asset type, intended for display in user interfaces. This name is typically more descriptive and readable than the technical or file-based name of the asset type.
Use the FriendlyName
property when you need to display the name of an asset type in a user interface, such as in an asset browser or editor panel. This property is read-only and provides a string that represents the asset type in a way that is easily understandable by users.
// Example of accessing the FriendlyName property Editor.AssetType assetType = Editor.AssetType.Model; string displayName = assetType.FriendlyName; // displayName will contain a user-friendly name for the model asset type, e.g., "Model".