Fix #107265: Compositor: output node remove note that z-depth can be saved #104457

Closed
Habib Gahbiche wants to merge 53 commits from zazizizou/blender-manual:com-outputfile into blender-v3.6-release

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
4 changed files with 13 additions and 12 deletions
Showing only changes of commit 9c93e7b0ea - Show all commits

View File

@ -33,6 +33,7 @@ def text_remove_preprocess(text):
non_comment_lines = [line for line in lines if not line.strip().startswith("#")] non_comment_lines = [line for line in lines if not line.strip().startswith("#")]
return "\n".join(non_comment_lines) return "\n".join(non_comment_lines)
def text_join_lines(text): def text_join_lines(text):
lines = text.split("\n") lines = text.split("\n")
lines_out = [[]] lines_out = [[]]