|
637 | 637 | "}", |
638 | 638 | "", |
639 | 639 | "const editorLightCountMax = {", |
640 | | - " value: 4", |
| 640 | + " value: 20", |
641 | 641 | "};", |
642 | 642 | "", |
643 | 643 | "const lightCountMax = {", |
|
1211 | 1211 | "if (!object.setColor && !object.getColor) {", |
1212 | 1212 | " const prototype = Object.getPrototypeOf(object);", |
1213 | 1213 | " prototype.setColor = function(tint) {", |
1214 | | - " this.SetColor(tint, eventsFunctionContext);", |
| 1214 | + " this._setColor(tint);", |
| 1215 | + " this.__spotLightAdapter.setColor(tint);", |
1215 | 1216 | " }", |
1216 | 1217 | " prototype.getColor = function() {", |
1217 | | - " return this.Color(eventsFunctionContext);", |
| 1218 | + " return this._getColor(eventsFunctionContext);", |
1218 | 1219 | " }", |
1219 | 1220 | "}", |
1220 | 1221 | "" |
|
3295 | 3296 | "if (!object.setColor && !object.getColor) {", |
3296 | 3297 | " const prototype = Object.getPrototypeOf(object);", |
3297 | 3298 | " prototype.setColor = function(tint) {", |
3298 | | - " this.SetColor(tint, eventsFunctionContext);", |
| 3299 | + " this._setColor(tint);", |
| 3300 | + " this.__pointLightAdapter.setColor(tint);", |
3299 | 3301 | " }", |
3300 | 3302 | " prototype.getColor = function() {", |
3301 | | - " return this.Color(eventsFunctionContext);", |
| 3303 | + " return this._getColor(eventsFunctionContext);", |
3302 | 3304 | " }", |
3303 | 3305 | "}", |
3304 | 3306 | "" |
|
0 commit comments