Loading...
Searching...
No Matches
plugins/score-plugin-gfx/Gfx/Text/Metadata.hpp
1#pragma once
2#include <Process/ProcessMetadata.hpp>
3
4namespace Gfx::Text
5{
6class Model;
7}
8
9PROCESS_METADATA(
10 , Gfx::Text::Model, "88bd9718-2a36-42ba-8eab-da5f84e3978e",
11 "text", // Internal name
12 "Text", // Pretty name
13 Process::ProcessCategory::Visual, // Category
14 "Visuals", // Category
15 "Display text", // Description
16 "ossia team", // Author
17 (QStringList{"gfx", "text"}), // Tags
18 {}, // Inputs
19 {}, // Outputs
20 QUrl(""),
21 Process::ProcessFlags::SupportsAll | Process::ProcessFlags::ControlSurface // Flags
22)
Definition score-plugin-gfx/Gfx/Text/Process.hpp:15
@ ControlSurface
The process supports being exposed to the ControlSurface.
Definition ProcessFlags.hpp:37