123456789101112131415161718 |
- var __extends = this.__extends || function (d, b) {
- for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
- function __() { this.constructor = d; }
- __.prototype = b.prototype;
- d.prototype = new __();
- };
- var BABYLON;
- (function (BABYLON) {
- var BlackAndWhitePostProcess = (function (_super) {
- __extends(BlackAndWhitePostProcess, _super);
- function BlackAndWhitePostProcess(name, ratio, camera, samplingMode, engine, reusable) {
- _super.call(this, name, "blackAndWhite", null, null, ratio, camera, samplingMode, engine, reusable);
- }
- return BlackAndWhitePostProcess;
- })(BABYLON.PostProcess);
- BABYLON.BlackAndWhitePostProcess = BlackAndWhitePostProcess;
- })(BABYLON || (BABYLON = {}));
- //# sourceMappingURL=babylon.blackAndWhitePostProcess.js.map
|