Java Code Examples for com.kotcrab.vis.ui.VisUI#dispose()
The following examples show how to use
com.kotcrab.vis.ui.VisUI#dispose() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AnimationTool.java From riiablo with Apache License 2.0 | 6 votes |
@Override public void dispose() { for (int l = 0; l < cof.getNumLayers(); l++) { COF.Layer layer = cof.getLayer(l); Animation.Layer animLayer = anim.getLayer(layer.component); if (animLayer != null) animLayer.getDC().dispose(); } Riiablo.palettes.dispose(); Riiablo.assets.dispose(); Riiablo.shader.dispose(); Riiablo.batch.dispose(); Riiablo.shapes.dispose(); VisUI.dispose(); stage.dispose(); }
Example 2
Source File: DS1Viewer.java From riiablo with Apache License 2.0 | 5 votes |
@Override public void dispose() { VisUI.dispose(); stage.dispose(); shapes.dispose(); palette.dispose(); Riiablo.assets.dispose(); Riiablo.batch.dispose(); Riiablo.shader.dispose(); }
Example 3
Source File: FontMetricsTool.java From riiablo with Apache License 2.0 | 5 votes |
@Override public void dispose() { Riiablo.palettes.dispose(); VisUI.dispose(); Riiablo.assets.dispose(); stage.dispose(); Riiablo.shader.dispose(); Riiablo.batch.dispose(); Riiablo.shader.dispose(); }
Example 4
Source File: Editor.java From bladecoder-adventure-engine with Apache License 2.0 | 5 votes |
@Override public void dispose() { scnEditor.dispose(); stage.dispose(); EditorLogger.console.dispose(); VisUI.dispose(); Ctx.project.saveConfig(); }
Example 5
Source File: App.java From gdx-texture-packer-gui with Apache License 2.0 | 4 votes |
@Override public void dispose() { Disposables.disposeOf(contextDestroyer); VisUI.dispose(false); }
Example 6
Source File: TestLauncher.java From vis-ui with Apache License 2.0 | 4 votes |
@Override public void dispose () { VisUI.dispose(); stage.dispose(); }
Example 7
Source File: TestFloatingGroup.java From vis-ui with Apache License 2.0 | 4 votes |
@Override public void dispose () { VisUI.dispose(); stage.dispose(); }