def register(): reload_topbar_menu() for cls in classes: try: bpy.utils.register_class(cls) except ValueError: pass try: bpy.types.Scene.panel_props = bpy.props.PointerProperty( type=PanelPropertyGroup) except AttributeError: pass finally: bpy.types.TOPBAR_MT_editor_menus.append( TOPBAR_MT_google_earth_optimization_menus.draw) if not hasattr(bpy.types.Scene, "settings"): bpy.types.Scene.settings = Settings(get_sources_path())
# # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # # # <pep8 compliant> from utils import Settings, get_sources_path, reload_modules, print_title, isolated_print settings = Settings(get_sources_path()) # reload modules if the option is enabled in the optimization_tools.ini file reload_modules(settings) import os from pathlib import Path from constants import * from utils import check_configuration, ScriptError, build_package, pr_bg_green, pr_bg_red from msfs_project import MsfsProject def merge_sceneries(script_settings): try: # instantiate the msfsProject and create the necessary resources if it does not exist
# # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # # # <pep8 compliant> import bpy from bpy.types import Menu from constants import CLEAR_CONSOLE_CMD from utils import Settings, get_sources_path updatedSettingsPropertyGroup = None bpy.types.Scene.settings = Settings(get_sources_path()) from .operator.tools import * from .operator import PanelPropertyGroup, OT_ProjectPathOperator, OT_ProjectsPathOperator, OT_MsfsBuildExePathOperator, \ OT_CompressonatorExePathOperator, OT_InitMsfsSceneryProjectOperator, OT_OptimizeMsfsSceneryOperator, OT_UpdateTilesPositionOperator, \ OT_UpdateMinSizeValuesOperator, OT_CompressBuiltPackageOperator, OT_SaveSettingsOperator, OT_ReloadSettingsOperator, OT_InitMsfsSceneryPanel, \ OT_OptimizeSceneryPanel, OT_UpdateTilesPositionPanel, OT_UpdateMinSizeValuesPanel, OT_CompressBuiltPackagePanel, OT_ProjectPathToMergeOperator, \ OT_MergeSceneriesPanel, OT_MergeSceneriesOperator, OT_CleanPackageFilesOperator, OT_CleanPackageFilesPanel, OT_FixTilesLightningIssuesPanel, \ OT_FixTilesLightningIssuesOperator, OT_addLodOperator, OT_removeLowerLodOperator, OT_openSettingsFileOperator, OT_AddTileCollidersPanel, OT_RemoveTileCollidersPanel, OT_AddTileCollidersOperator, OT_RemoveTileCollidersOperator class TOPBAR_MT_google_earth_optimization_menus(Menu): os.system(CLEAR_CONSOLE_CMD) bl_idname = "TOPBAR_MT_google_earth_optimization_menus" bl_label = ""