We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 607d761 commit 36f3287Copy full SHA for 36f3287
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -214,9 +214,9 @@ public override void OnInspectorGUI() {
214
}
215
216
217
- private static bool HideRepairMissingScripts(){
218
- var version = FbxExporters.Editor.ModelExporter.GetVersionFromReadme ();
219
- return version.Equals ("1.1.0b1")? false : true;
+ private bool HideRepairMissingScripts(){
+ var docPath = Application.dataPath + "/FbxExporters/FBX_Exporter_User_Guide_v1.1.0b1.pdf";
+ return File.Exists(docPath)? false : true;
220
221
222
private static string TryFindDCC(string dccPath, string ext, ExportSettings.DCCType dccType){
0 commit comments