Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been working on a scene manager to control the choice of audio visualisers. The plan was to initialise each scene, build it's pre-requisites and leave it sitting idly until it's called upon.

Essentially, each scene is a self-invoking function, a reference and renderer for each is stored and I can switch the scene by changing the reference.

This is my Scene :

var Scene1 = (function(){

  var init = function()
  {
    // ...Other build code
    SceneController.addRenderer("Scene1", renderer.domElement);

    // Post processing definitions are here for each scene
  }

  var draw = function(sample)
  {
    // do something
  }

})();

And this is my controller;

var SceneController = (function(){

  m_sCurrentScene = "Scene1";

  function addScene = function(sName)
  {
    m_aScenes[sName] = true;
    window[sName].init();
  }

  function addRenderer = function(sName, cRenderer)
  {
    m_aRenderers[sName] = cRenderer;
  }

  function changeScene(sName)
  {
    m_sCurrentScene = sName;
    m_cContainer.empty();
    m_cContainer.append(m_aRenderers[sName]);
  }

  function update() // this gets called every frame
  {
    cCurrentScene = window[m_sCurrentScene];
    cCurrentScene.draw(sample);
  }
})(); 

And to start the whole thing...

SceneManager.addScene('Scene1');

So you can see, to switch scenes, I can just change the m_sCurrentScene variable in the controller.

This works absolutely fine, and the first loaded scene will display in all its visual glory with all PP options. However, if I then switch scene to another with PP, I get a blank screen or some strange artefacted and broken version of the scene. I know the correct functions are being called and that all calculations are taking place, but the screen just doesn't render. However, if I strip out all the post-processing stuff from the second visualiser, they both work fine albeit with the second having no PP.

Is there an issue with trying to new up two sets of PP? Is the limitation something on the hardware side or something I'm missing in my code?

Any help would be greatly appreciated as I'm currently stuck at a stand still :(

Many thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.