robot_2Generated
code_blocksInput

Description

The SmallIcons field is a member of the Editor.AssetListViewMode enumeration. It represents a view mode option in the editor where assets are displayed using small icons. This mode is useful for users who want to see more items at once in a compact format, while still having a visual representation of each asset.

Usage

To use the SmallIcons view mode, you can set the asset list view mode in your editor script or configuration to Editor.AssetListViewMode.SmallIcons. This will change the display of assets to use small icons, allowing for a more condensed view.

Example

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

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

// This will configure the asset list to display items with small icons.