12345678910111213141516171819202122232425262728293031323334 |
- import DeveloperError from "../Core/DeveloperError.js";
- function Light() {}
- Object.defineProperties(Light.prototype, {
-
- color: {
- get: DeveloperError.throwInstantiationError,
- },
-
- intensity: {
- get: DeveloperError.throwInstantiationError,
- },
- });
- export default Light;
|