Hi, I try to write some dat.GUI elements. I want to know if I can access them in Julia? Or I can only write functions in JavaScript?
For example, could I type the filename in the dat.GUI text box and use it to load *.obj file in Julia?
// add in src/index.js => class Viewer
let params = {
obj_file: "example.obj"
}
this.gui.add(params, "obj_file").name("Load obj");
Hi, I try to write some dat.GUI elements. I want to know if I can access them in Julia? Or I can only write functions in JavaScript? For example, could I type the filename in the dat.GUI text box and use it to load *.obj file in Julia?
Thank you!