mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-30 06:48:47 +02:00
Tests cover loading/unloading plugins, registering/unregistering node plugins, and reloading them.
28 lines
No EOL
546 B
Python
28 lines
No EOL
546 B
Python
__version__ = "1.0"
|
|
|
|
from meshroom.core import desc
|
|
|
|
class PluginBNodeB(desc.Node):
|
|
inputs = [
|
|
desc.File(
|
|
name="input",
|
|
label="Input",
|
|
description="",
|
|
value="",
|
|
),
|
|
desc.IntParam(
|
|
name="int",
|
|
label="Integer",
|
|
description="",
|
|
value="not an integer",
|
|
),
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name="output",
|
|
label="Output",
|
|
description="",
|
|
value="",
|
|
),
|
|
] |