add redist folder. fix doc and readme

This commit is contained in:
yyc12345 2024-01-14 21:25:12 +08:00
parent 200ac40648
commit 8499c25b67
5 changed files with 7 additions and 12 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# disable distribution build folder
redist/

View File

@ -4,11 +4,4 @@
BBP NG, abbr **B**allance **B**lender **P**lugin **N**ext **G**eneration.
## Brief Introduction
The next generation of original Ballance Blender Helper. This plugin is fully rewritten.
This plugin still work in progress. The development will be pushed into `ng` branch in main repository. For legacy plugin user, please visit `master` branch directly.
## Develop Help
Use `pip install fake-bpy-module-latest==20230627` to install the type hint library for Blender. Because fake-bpy-module do not release official 3.6 package, we need install it by choosing the most closest version of Blender 3.6 release. That what I found.
For an introduction to this plugin, installing it, compiling it, reporting bugs, etc., see the GitHub Page for this project: https://yyc12345.github.io/BallanceBlenderHelper

View File

@ -4,7 +4,4 @@
BBP NG又名**B**allance **B**lender **P**lugin **N**ext **G**eneration下一代Ballance Blender插件
## 简介
下一代的Ballance Blender插件。此插件完全重写了上一代插件。
此插件仍然在开发过程中。开发内容会被推送到主仓库的`ng`分支中。对于旧插件的用户,请直接访问`master`分支。
有关此插件的介绍安装编译汇报错误等请参阅本项目的GitHub Page页面https://yyc12345.github.io/BallanceBlenderHelper

View File

@ -24,6 +24,7 @@ BBP内置了一系列自定义图标以及其组件BME需要的用于描述
* `bbp_ng/raw_icons`:原始图片文件夹。
* `bbp_ng/raw_jsons`原始JSON文件夹。
* `bbp_ng/tools`:编译用工具。
* `bbp_ng/.style.yapf`:代码风格描述文件
* `bbp_ng/.gitignore`gitignore
* `bbp_ng/icons/.gitkeep`:文件夹占位符

View File

@ -3,3 +3,5 @@
* BM文件标准https://github.com/yyc12345/gist/blob/master/BMFileSpec/BMSpec_ZH.md
* 制图工具链标准及`meshes`文件夹下的文件的格式https://github.com/yyc12345/gist/blob/master/BMFileSpec/YYCToolsChainSpec_ZH.md
* BMERevenge的JSON文件的格式https://github.com/yyc12345/gist/blob/master/BMERevenge/DevDocument_v2.0_ZH.md
本插件配合了`fake-bpy-module`模块来实现类型提示以加快开发速度。本插件目前基于Blender 3.6,因此使用`pip install fake-bpy-module-latest==20230627`来安装Blender的类型提示库。 这主要是因为`fake-bpy-module`没有发布官方的适用于Blender 3.6的包因此我只能通过选择最接近Blender 3.6版本发布时间的每日编译版本来安装它。