Source code for simvx.editor.panels
"""Editor panel modules."""
from .animation import AnimationPanel
from .animation_editor import AnimationEditorPanel
from .asset_browser import AssetBrowserPanel
from .code_tab import CodeEditorTab
from .console import ConsolePanel
from .file_browser import FileBrowserPanel
from .profiler_panel import ProfilerPanel
from .properties import PropertiesPanel
from .repl_panel import ReplPanel
from .scene2d_view import Scene2DView
from .scene3d_view import Scene3DView
from .scene_tree import SceneTreePanel
from .status_bar import StatusBar
__all__ = [
"Scene2DView",
"Scene3DView",
"StatusBar",
"ConsolePanel",
"PropertiesPanel",
"FileBrowserPanel",
"SceneTreePanel",
"CodeEditorTab",
"AnimationPanel",
"AnimationEditorPanel",
"ProfilerPanel",
"ReplPanel",
"AssetBrowserPanel",
]