mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-23 04:10:53 +00:00
c00c9908eb
* fixed/ overhauld asset & blueprint scanning * added polling for blueprints (not 100% sure yet) * add-on-prefs => settings * removed the now obsolete auto-export operator & preperences * a lot of other minor changes
76 lines
2.3 KiB
Python
76 lines
2.3 KiB
Python
from types import SimpleNamespace
|
|
import bpy
|
|
import json
|
|
import os
|
|
import uuid
|
|
from pathlib import Path
|
|
from bpy_types import (PropertyGroup)
|
|
from bpy.props import (StringProperty, BoolProperty, FloatProperty, FloatVectorProperty, IntProperty, IntVectorProperty, EnumProperty, PointerProperty, CollectionProperty)
|
|
|
|
from ..settings import load_settings
|
|
from ..core.scene_helpers import get_main_and_library_scenes
|
|
from .blueprints_scan import blueprints_scan
|
|
|
|
|
|
|
|
def refresh_blueprints():
|
|
try:
|
|
blueprints_registry = bpy.context.window_manager.blueprints_registry
|
|
blueprints_registry.refresh_blueprints()
|
|
#print('refresh blueprints')
|
|
except:pass
|
|
|
|
return 3
|
|
|
|
# this is where we store the information for all available Blueprints
|
|
class BlueprintsRegistry(PropertyGroup):
|
|
blueprints_data = {}
|
|
blueprints_list = []
|
|
|
|
asset_name_selector: StringProperty(
|
|
name="asset name",
|
|
description="name of asset to add",
|
|
) # type: ignore
|
|
|
|
asset_type_selector: EnumProperty(
|
|
name="asset type",
|
|
description="type of asset to add",
|
|
items=(
|
|
('MODEL', "Model", ""),
|
|
('AUDIO', "Audio", ""),
|
|
('IMAGE', "Image", ""),
|
|
)
|
|
) # type: ignore
|
|
|
|
asset_path_selector: StringProperty(
|
|
name="asset path",
|
|
description="path of asset to add",
|
|
subtype='FILE_PATH'
|
|
) # type: ignore
|
|
|
|
@classmethod
|
|
def register(cls):
|
|
bpy.types.WindowManager.blueprints_registry = PointerProperty(type=BlueprintsRegistry)
|
|
bpy.app.timers.register(refresh_blueprints)
|
|
|
|
@classmethod
|
|
def unregister(cls):
|
|
try:
|
|
bpy.app.timers.unregister(refresh_blueprints)
|
|
except: pass
|
|
|
|
del bpy.types.WindowManager.blueprints_registry
|
|
|
|
|
|
def add_blueprint(self, blueprint):
|
|
self.blueprints_list.append(blueprint)
|
|
|
|
def refresh_blueprints(self):
|
|
blenvy = bpy.context.window_manager.blenvy
|
|
settings = blenvy
|
|
[main_scene_names, level_scenes, library_scene_names, library_scenes] = get_main_and_library_scenes(settings)
|
|
blueprints_data = blueprints_scan(level_scenes, library_scenes, settings)
|
|
self.blueprints_data = blueprints_data
|
|
"""for blueprint in blueprints_data.blueprints:
|
|
self.add_blueprint(blueprint)"""
|