AssetListViewMode MediumIcons

robot_2Generated
code_blocksInput

Description

The MediumIcons field is a member of the Editor.AssetListViewMode enumeration. It represents a view mode option within the editor that displays assets using medium-sized icons. This view mode is useful for providing a balance between detail and the number of items visible on the screen, making it easier to identify assets without taking up too much screen space.

Usage

To use the MediumIcons view mode, you can set the asset list view mode in your editor script or tool to Editor.AssetListViewMode.MediumIcons. This will change the display of assets to use medium-sized icons, which can be particularly useful when you need a moderate level of detail and a reasonable number of assets visible at once.

Example

// Example of setting the asset list view mode to MediumIcons
Editor.AssetListViewMode currentViewMode = Editor.AssetListViewMode.MediumIcons;

// Assuming you have a method to set the view mode in your editor
SetAssetListViewMode(currentViewMode);

// This will configure the asset list to display assets with medium-sized icons.