Pixmap Icon128 { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Icon128 property provides a 128x128 pixel icon representation for the asset type. This icon is typically used in user interfaces to visually represent the asset type at a larger scale compared to smaller icons like Icon16 or Icon64.

Usage

To access the 128x128 icon for a specific asset type, you can use the Icon128 property. This property is an instance property, so it must be accessed through an instance of the AssetType class.

Example

// Example of accessing the Icon128 property
Editor.AssetType assetType = Editor.AssetType.Model;
Editor.Pixmap icon = assetType.Icon128;

// Use the icon in your UI or other components
// For example, setting it as an image source in a UI element