When Opening the file dialog in windows editor/player, this dll works perfectly, but when opened on a mac/linux computer, the object seems to be undefined
using System.Windows.Forms;
public class TestClass : MonoBehavior{
private OpenFileDialog ofd_texture = new OpenFileDialog();
void Start(){
ofd_texture.Title = "Test Title";
ofd_texture.Show();
}
}
I have also tried Gtk-sharp but when executed, it gave an error like “method not found” or along those lines. I really need a file browser, are there any good alternatives (i have looked at FileBrowser Enhanced, but tried it with no luck)