[AssetSelecter]
Support Types
Type
Description
Parameters
Parameter Name
Arguments
Description
Examples
using UnityEngine;
using RenownedGames.Apex;
public class AssetSelecterExample : MonoBehaviour
{
[AssetSelecter(AssetType = typeof(Material))]
public Material material;
[AssetSelecter(Path = "Assets/Textures", Pattern = "*.png")]
public Texture2D texture;
[AssetSelecter(AssetType = typeof(GameObject), Sort = true)]
public GameObject prefab;
}Last updated