[FilePath]
Support Types
Type
Description
Parameters
Parameter Name
Arguments
Description
Examples
using UnityEngine;
using RenownedGames.Apex;
public class FilePathExample : MonoBehaviour
{
[FilePath]
public string anyFile;
[FilePath(Extension = "png")]
public string imagePath;
[FilePath(Title = "Select Config", Directory = "Assets/Configs", RelativePath = true)]
public string configPath;
}Last updated