babylon.postProcessManager.js 472 B

1234567891011121314151617181920
  1. var BABYLON = BABYLON || {};
  2. (function () {
  3. BABYLON.PostProcessManager = function () {
  4. this.postProcesses = [];
  5. };
  6. // Methods
  7. BABYLON.PostProcessManager.prototype._prepareFrame = function () {
  8. if (this.postProcesses.length === 0) {
  9. return;
  10. }
  11. };
  12. BABYLON.PostProcessManager.prototype._finalizeFrame = function () {
  13. if (this.postProcesses.length === 0) {
  14. return;
  15. }
  16. };
  17. })();