123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- class Input extends UIObject
- {
- constructor(name, value = "", type = "text")
- {
- super(name);
- this.P5Element = createInput(value, type);
- this.setPosition(0, 0);
- this.setStyle(DEFAULT_STYLE);
- this.connectCallbacks();
- this.P5Element.input(this.onInput);
- }
- _onInput()
- {
- }
- onInput()
- {
- this.pandoraObject._onInput();
- }
- }
|