awayjs-display
Version:
AwayJS displaylist classes
22 lines • 828 B
JavaScript
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var EventBase_1 = require("awayjs-core/lib/events/EventBase");
var LightEvent = (function (_super) {
__extends(LightEvent, _super);
function LightEvent(type) {
_super.call(this, type);
}
//@override
LightEvent.prototype.clone = function () {
return new LightEvent(this.type);
};
LightEvent.CASTS_SHADOW_CHANGE = "castsShadowChange";
return LightEvent;
}(EventBase_1.default));
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = LightEvent;
//# sourceMappingURL=LightEvent.js.map
;