abstractMesh.decalMap.js 351 B

123456789101112
  1. import { AbstractMesh } from "../Meshes/abstractMesh.js";
  2. Object.defineProperty(AbstractMesh.prototype, "decalMap", {
  3. get: function () {
  4. return this._decalMap;
  5. },
  6. set: function (decalMap) {
  7. this._decalMap = decalMap;
  8. },
  9. enumerable: true,
  10. configurable: true,
  11. });
  12. //# sourceMappingURL=abstractMesh.decalMap.js.map