Hello! I am trying to use the plugin for some Blender development. Is there a setting somewhere or something I need to do to get the mark folder as ... menu options?
PyCharm Version: 2023.3.2
BlendCharm Version: 2023.3

I used the plugin to create a new Blender Addon. The folder contains an __init__.py module.
import bpy
bl_info = {
"name": "Exporter",
"author": "shall",
"description": "Exporter",
"blender": (4, 0, 2),
"location": "View3D",
"warning": "",
"category": "Generic"
}
classes = (
)
register, unregister = bpy.utils.register_classes_factory(classes)
Cheers!
Seth
Hello! I am trying to use the plugin for some Blender development. Is there a setting somewhere or something I need to do to get the
mark folder as ...menu options?PyCharm Version: 2023.3.2
BlendCharm Version: 2023.3
I used the plugin to create a new Blender Addon. The folder contains an
__init__.pymodule.Cheers!
Seth