robot_2Generated
code_blocksInput

Description

The Editor.AssetListViewMode.List field is a member of the Editor.AssetListViewMode enumeration. It represents a view mode option for displaying assets in a list format within the editor. This mode is typically used when a detailed view of assets is required, allowing for easy reading of asset names and other metadata.

Usage

To use the Editor.AssetListViewMode.List field, you can set it as the view mode for an asset list in the editor. This is useful when you want to display assets in a list format, which provides a more detailed view compared to icon-based modes.

Example

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

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