コード例 #1
0
ファイル: UserInterface.cs プロジェクト: lfdelta/JigsawNet
 // Disables file buttons with files that have a different file extension (than given to the OpenFilePanel)
 private void DisableWrongExtensionFiles(GameObject button, string file)
 {
     if (!_fileBrowser.CompatibleFileExtension(file) || !_fileBrowser.CompatibleFileSize(file))
     {
         button.GetComponent <Button>().interactable = false;
     }
 }