mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Merge remote-tracking branch 'genrich/patch-1'
This commit is contained in:
commit
f93d49b207
@ -42,6 +42,7 @@ This will create a namespaced, unminified build of dat.GUI at `build/dat.gui.mai
|
||||
* Using common.js
|
||||
* Using webpack for build
|
||||
* Fixed an issue with colors based on arrays - https://github.com/dataarts/dat.gui/pull/57
|
||||
* Update factory.js, Step param was not used - https://github.com/dataarts/dat.gui/pull/45
|
||||
|
||||
### 0.5
|
||||
* Moved to requirejs for dependency management.
|
||||
|
@ -4209,7 +4209,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||
BooleanController = __webpack_require__(8),
|
||||
common = __webpack_require__(5);
|
||||
|
||||
module.exports = function(object, property) {
|
||||
module.exports = function (object, property) {
|
||||
|
||||
var initialValue = object[property];
|
||||
|
||||
@ -4223,13 +4223,19 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||
if (common.isNumber(initialValue)) {
|
||||
|
||||
if (common.isNumber(arguments[2]) && common.isNumber(arguments[3])) {
|
||||
|
||||
// Has min and max.
|
||||
if (common.isNumber(arguments[4])) // has step
|
||||
return new NumberControllerSlider(object, property, arguments[2], arguments[3], arguments[4]);
|
||||
else
|
||||
return new NumberControllerSlider(object, property, arguments[2], arguments[3]);
|
||||
|
||||
} else {
|
||||
|
||||
return new NumberControllerBox(object, property, { min: arguments[2], max: arguments[3] });
|
||||
return new NumberControllerBox(object, property, {min: arguments[2], max: arguments[3]});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (common.isString(initialValue)) {
|
||||
@ -4243,6 +4249,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||
if (common.isBoolean(initialValue)) {
|
||||
return new BooleanController(object, property);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/***/ },
|
||||
|
2
build/dat.gui.min.js
vendored
2
build/dat.gui.min.js
vendored
File diff suppressed because one or more lines are too long
@ -19,7 +19,7 @@ var OptionController = require('./OptionController'),
|
||||
BooleanController = require('./BooleanController'),
|
||||
common = require('../utils/common');
|
||||
|
||||
module.exports = function(object, property) {
|
||||
module.exports = function (object, property) {
|
||||
|
||||
var initialValue = object[property];
|
||||
|
||||
@ -33,13 +33,19 @@ var OptionController = require('./OptionController'),
|
||||
if (common.isNumber(initialValue)) {
|
||||
|
||||
if (common.isNumber(arguments[2]) && common.isNumber(arguments[3])) {
|
||||
|
||||
// Has min and max.
|
||||
if (common.isNumber(arguments[4])) // has step
|
||||
return new NumberControllerSlider(object, property, arguments[2], arguments[3], arguments[4]);
|
||||
else
|
||||
return new NumberControllerSlider(object, property, arguments[2], arguments[3]);
|
||||
|
||||
} else {
|
||||
|
||||
return new NumberControllerBox(object, property, { min: arguments[2], max: arguments[3] });
|
||||
return new NumberControllerBox(object, property, {min: arguments[2], max: arguments[3]});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (common.isString(initialValue)) {
|
||||
@ -53,4 +59,5 @@ var OptionController = require('./OptionController'),
|
||||
if (common.isBoolean(initialValue)) {
|
||||
return new BooleanController(object, property);
|
||||
}
|
||||
|
||||
};
|
Loading…
Reference in New Issue
Block a user