Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 gui,用户可以在其中选择不同的形状以使用下拉菜单进行渲染。这很好用。现在我想显示一个带有一些滑块的文件夹。滑块的计数、名称和最小/最大值因选择的形状而异。我怎样才能用 dat.gui 做到这一点。
好的,通过将其添加到 dat.GUI 原型中找到了解决方案:
dat.GUI.prototype.removeFolder = function(name) { var folder = this.__folders[name]; if (!folder) { return; } folder.close(); this.__ul.removeChild(folder.domElement.parentNode); delete this.__folders[name]; this.onResize(); }