harfang3d/doc/doc/ImGuiCheckbox.md

6 lines
237 B
Markdown
Raw Normal View History

2021-12-15 19:23:12 +00:00
Display a checkbox widget. Returns an interaction flag (user interacted with the widget) and the current widget state (checked or not after user interaction).
```python
was_clicked, my_value = gs.ImGuiCheckBox('My value', my_value)
```