AssetListViewMode ExtraLargeIcons

robot_2Generated
code_blocksInput

Description

The ExtraLargeIcons field is a member of the Editor.AssetListViewMode enumeration. It represents a view mode option within the editor that displays assets using extra large icons. This mode is useful for users who prefer a more visual representation of their assets, allowing for easier identification and selection of items based on their visual appearance.

Usage

To use the ExtraLargeIcons view mode, you can set the asset list view mode in your editor settings or code to Editor.AssetListViewMode.ExtraLargeIcons. This will change the display of assets to use extra large icons, providing a more detailed view of each asset.

Example

// Example of setting the asset list view mode to ExtraLargeIcons
EditorSettings.AssetListViewMode = Editor.AssetListViewMode.ExtraLargeIcons;

// This will configure the editor to display assets with extra large icons, enhancing visual clarity.