We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877fc43 commit 7aae387Copy full SHA for 7aae387
examples/jsm/inspector/ui/Values.js
@@ -157,6 +157,14 @@ class ValueNumber extends Value {
157
158
}
159
160
+ setValue( val ) {
161
+
162
+ this.input.value = val;
163
164
+ return super.setValue( val );
165
166
+ }
167
168
getValue() {
169
170
return parseFloat( this.input.value );
@@ -194,6 +202,14 @@ class ValueCheckbox extends Value {
194
202
195
203
196
204
205
206
207
+ this.checkbox.value = val;
208
209
210
211
212
197
213
198
214
199
215
return this.checkbox.checked;
0 commit comments