質問

I would like to create a button using dat.gui library. In a perfect world, this would work like this:

gui.add("button", "click me");
役に立ちましたか?

解決

This creates a button with text left aligned.

var obj = { add:function(){ console.log("clicked") }};

gui.add(obj,'add');

他のヒント

FWIW, dat.gui assumes the GUI type based on the target's initial value type.

  • boolean => checkbox
  • int/float => slider
  • string => text input
  • function => button

Examples can be found here: http://workshop.chromeexperiments.com/examples/gui/#1--Basic-Usage

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top