Move nodes into subfolders

This commit is contained in:
Fabien Castan 2017-10-11 18:12:28 +02:00
parent 85eff3509f
commit aacdf32915
17 changed files with 23 additions and 11 deletions

View file

@ -0,0 +1,20 @@
from meshroom.core import desc
class AppendText(desc.CommandLineNode):
commandLine = 'cat {inputValue} > {outputValue} && echo {inputTextValue} >> {outputValue}'
input = desc.FileAttribute(
label='Input File',
uid=[0],
)
output = desc.FileAttribute(
label='Output',
value='{cache}/{nodeType}/{uid0}/appendText.txt',
isOutput=True,
hasExpression=True,
)
inputText = desc.FileAttribute(
label='Input Text',
uid=[0],
)