mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Update API.md
This commit is contained in:
parent
5a7f51d29f
commit
e22ea1b6d5
5
API.md
5
API.md
@ -185,13 +185,14 @@ is a `<select>` dropdown.
|
|||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| object | <code>Object</code> | The object to be manipulated |
|
| object | <code>Object</code> | The object to be manipulated |
|
||||||
| property | <code>String</code> | The name of the property to be manipulated |
|
| property | <code>String</code> | The name of the property to be manipulated |
|
||||||
| values | <code>Array</code> | Array of possible options' values |
|
| values | <code>Array|Object</code> | Array or Dictionary of possible options' values |
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Add a dropdown controller.
|
// Add a dropdown controller.
|
||||||
var person = {name: 'Sam'};
|
var person = {name: 'Sam'};
|
||||||
gui.add(person, 'name', ['Sam', 'Alex', 'Riley']);
|
gui.add(person, 'name', ['Sam', 'Alex', 'Ray']);
|
||||||
|
gui.add(person, 'name', {'Sam': 'Sammy', 'Alex': 'Alexis', 'Ray': 'Riley']);
|
||||||
```
|
```
|
||||||
<a name="GUI+addColor"></a>
|
<a name="GUI+addColor"></a>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user