AddCheckBox adds a checkbox to the control folder group
(text string)
| 109 | |
| 110 | // AddCheckBox adds a checkbox to the control folder group |
| 111 | func (g *ControlFolderGroup) AddCheckBox(text string) *CheckRadio { |
| 112 | |
| 113 | cb := NewCheckBox(text) |
| 114 | g.node.Add(cb) |
| 115 | return cb |
| 116 | } |
| 117 | |
| 118 | // AddSlider adds a slider to the control folder group |
| 119 | func (g *ControlFolderGroup) AddSlider(text string, sf, v float32) *Slider { |
nothing calls this directly
no test coverage detected