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

16
meshroom/nodes/test/ls.py Normal file
View file

@ -0,0 +1,16 @@
from meshroom.core import desc
class Ls(desc.CommandLineNode):
commandLine = 'ls {inputValue} > {outputValue}'
input = desc.FileAttribute(
label='Input',
uid=[0],
)
output = desc.FileAttribute(
label='Output',
value='{cache}/{nodeType}/{uid0}/ls.txt',
isOutput=True,
hasExpression=True,
)