@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 516 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Atmosphere = void 0;
const Mapper_1 = require("../common/Mapper");
/**
* @export
* @class Atmosphere
*/
class Atmosphere {
constructor(obj) {
if (!obj) {
return;
}
this.mood = (0, Mapper_1.map)(obj.mood);
this.lighting = (0, Mapper_1.map)(obj.lighting);
this.weather = (0, Mapper_1.map)(obj.weather);
}
}
exports.Atmosphere = Atmosphere;
exports.default = Atmosphere;