mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 15:28:35 +02:00
Move nodes into subfolders
This commit is contained in:
parent
85eff3509f
commit
aacdf32915
17 changed files with 23 additions and 11 deletions
16
meshroom/nodes/test/ls.py
Normal file
16
meshroom/nodes/test/ls.py
Normal 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,
|
||||
)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue