Tanoda
SetFileDialogFilePattern.cs
Go to the documentation of this file.
1using System.Collections;
2using System.Collections.Generic;
3using GILES.Interface;
4using UnityEngine;
5
6public class SetFileDialogFilePattern : MonoBehaviour
7{
9 public string pattern = "*";
10
11
12 void Start()
13 {
14 if (!FileDialog)
15 {
16 FileDialog = GetComponent<pb_FileDialog>();
17 }
19 }
20}
string filePattern
If isFileBrowser is true, this string my be used to filter file results (see https://msdn....