remove flags from some files
This commit is contained in:
@@ -54,7 +54,7 @@ class Network final : public nf7::FileBase,
|
||||
public nf7::GenericConfig, public nf7::DirItem, public nf7::Node {
|
||||
public:
|
||||
static inline const GenericTypeInfo<Network> kType = {
|
||||
"Node/Network", {"nf7::DirItem", "nf7::Node"}};
|
||||
"Node/Network", {"nf7::DirItem"}};
|
||||
static void UpdateTypeTooltip() noexcept {
|
||||
ImGui::TextUnformatted("A Node composed of multiple child Nodes, whose sockets are linked to each other");
|
||||
ImGui::Bullet(); ImGui::TextUnformatted("implements nf7::Node");
|
||||
|
@@ -41,7 +41,7 @@ class NFile final : public nf7::FileBase,
|
||||
public nf7::GenericConfig, public nf7::DirItem, public nf7::Node {
|
||||
public:
|
||||
static inline const nf7::GenericTypeInfo<NFile> kType = {
|
||||
"System/NFile", {"nf7::DirItem", "nf7::Node"}};
|
||||
"System/NFile", {"nf7::DirItem"}};
|
||||
static void UpdateTypeTooltip() noexcept {
|
||||
ImGui::TextUnformatted("Read/Write a file placed on native filesystem.");
|
||||
ImGui::Bullet(); ImGui::TextUnformatted("implements nf7::Node");
|
||||
|
@@ -43,7 +43,7 @@ class Plot final : public nf7::FileBase,
|
||||
public nf7::Node {
|
||||
public:
|
||||
static inline const nf7::GenericTypeInfo<Plot> kType =
|
||||
{"Value/Plot", {"nf7::DirItem", "nf7::Node"}};
|
||||
{"Value/Plot", {"nf7::DirItem"}};
|
||||
static void UpdateTypeTooltip() noexcept {
|
||||
ImGui::TextUnformatted("plotter");
|
||||
ImGui::Bullet(); ImGui::TextUnformatted("implements nf7::Node");
|
||||
|
Reference in New Issue
Block a user