moved todo to readme
parent
8f689af892
commit
32336e0451
22
README.md
22
README.md
|
@ -22,3 +22,25 @@ To contribute to this repository, you will have to create you own development br
|
|||
Branches should be named in `kebab-case`, and can be grouped using `/`.
|
||||
|
||||
Examples: `bug/fix-crash-on-startup`, `bug/fix-font`, `feature/new-colors`, `theme-logic-refactor`, etc...
|
||||
|
||||
|
||||
<!--
|
||||
## TODO:
|
||||
## Transfer useful and generic render function from gp_render:
|
||||
- mute/unmute all file output nodes
|
||||
- export crop infos to json (hardcoded path in gp_render. make an export dialog instead, with eventually an environnement variable for the path)
|
||||
- Viewlayer list view
|
||||
|
||||
## Transfer useful and genereric render stuff from gp_toolbox:
|
||||
- ? Conflict visibility checker ? This also fit other tasks, but more often use to debug at precomp/rendering step.
|
||||
|
||||
## Improve existing:
|
||||
- Add a toggle to separate tech passes (always set to 32bit default)
|
||||
- toggle to always create a new node (don't try connect to existing file output node)
|
||||
- optional : only connect to existing file output if node settings are aligned with current ones
|
||||
- Connect to file output node should not remove unlinked output by defaut (should be an option in window)
|
||||
|
||||
## Done:
|
||||
|
||||
- (just added an option "scene + node name socket") - Connect to file output node should have the option to add scene name as output prefix
|
||||
- Connect to file output node should have search and replace options for output names in window -->
|
||||
|
|
15
__init__.py
15
__init__.py
|
@ -11,21 +11,6 @@ bl_info = {
|
|||
"category": "Object"
|
||||
}
|
||||
|
||||
## TODO:
|
||||
## Transfer useful and generic render function from gp_render:
|
||||
# - mute/unmute all file output nodes
|
||||
# - export crop infos to json (hardcoded path in gp_render. make an export dialog instead, with eventually an environnement variable for the path)
|
||||
# - Viewlayer list view
|
||||
|
||||
## Transfer useful and genereric render stuff from gp_toolbox:
|
||||
# - ? Conflict visibility checker ? This also fit other tasks, but more often use to debug at precomp/rendering step.
|
||||
|
||||
## Improve existing:
|
||||
# - Connect to file output node should have the option to add scene name as output prefix
|
||||
# - Connect to file output node should have search and replace options for output names in window
|
||||
# - Connect to file output node should not remove unlinked output by defaut (should be an option in window)
|
||||
|
||||
|
||||
from . import setup_outputs
|
||||
from . import ui
|
||||
|
||||
|
|
Loading…
Reference in New Issue