add a RenderManager method to remove a pre view by name ... in trunk

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@11099 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
experimental
sgold 11 years ago
parent acf255ab9b
commit 035ed5ebec
  1. 18
      engine/src/core/com/jme3/renderer/RenderManager.java

@ -106,6 +106,24 @@ public class RenderManager {
return null; return null;
} }
/**
* Removes the pre ViewPort with the specified name.
*
* @param viewName The name of the pre ViewPort to remove
* @return True if the ViewPort was removed successfully.
*
* @see #createPreView(java.lang.String, com.jme3.renderer.Camera)
*/
public boolean removePreView(String viewName) {
for (int i = 0; i < preViewPorts.size(); i++) {
if (preViewPorts.get(i).getName().equals(viewName)) {
preViewPorts.remove(i);
return true;
}
}
return false;
}
/** /**
* Removes the specified pre ViewPort. * Removes the specified pre ViewPort.
* *

Loading…
Cancel
Save