@0b5vr/imtweakpane
v0.2.0
Published
Tweakpane but with immediate-y interface (actually not)
Downloads
16
Readme
imtweakpane
Tweakpane but with immediate-y interface (actually not)
Rough, experimental, made for myself
<script src="https://unpkg.com/[email protected]/dist/tweakpane.js"></script>
<script src="https://unpkg.com/@0b5vr/[email protected]/dist/imtweakpane.js"></script>
<script>
const gui = new IMTWEAKPANE.ImPane();
const update = () => {
requestAnimationFrame(update);
const folder = gui.folder("folder");
const value = folder.value("value", 1.0, { min: 0.0, max: 1.0 });
};
update();
</script>