string FriendlyName { get; set; }

robot_2Generated
code_blocksInput

Description

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 easier to understand than technical identifiers, making it suitable for presentation in UI elements such as asset browsers or editors.

Usage

Use the FriendlyName property when you need to display the name of an asset type in a user interface. This property is particularly useful for providing context to users who may not be familiar with the technical details of asset types.

Example

// 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.