VSCode开发Blender插件环境配置

本次版本:blender:3.6 vscode:1.81.0python:3.11.41.下载blender方式1(官网):https://www.blender.org/方式2(推荐):https://www.blendercn.org/2.下载vscodehttps://code.visualstudio.com/下载最新版本即可3.下载pythonhttps://www.python.or

- 阅读全文 -

第一个插件

官网import bpy class HelloWorldPanel(bpy.types.Panel): """Creates a Panel in the Object properties window""" bl_label = "Hello World Panel" bl_idnam

- 阅读全文 -