summaryrefslogtreecommitdiff
path: root/NT/src/nodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'NT/src/nodes.h')
-rw-r--r--NT/src/nodes.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/NT/src/nodes.h b/NT/src/nodes.h
index 1632363..4b1b2ac 100644
--- a/NT/src/nodes.h
+++ b/NT/src/nodes.h
@@ -12,7 +12,13 @@ namespace Rotor{
};
class Time: public Double_node {
public:
- Time(){type="time";};
+ Time(){
+ type="time";
+ description="time in fractional seconds";
+ title="Time";
+ type_id="4bdaaa7a-8194-11e3-8a4f-2ff6852ae2c7";
+ ui_type="none";
+ };
Time(Json::Value &settings):Time() {
init(settings);
};
@@ -56,6 +62,10 @@ namespace Rotor{
Print(){
inlet=create_inlet<double>("inlet");
type="print";
+ description="number as a string";
+ title="Print";
+ type_id="9b9232b8-8194-11e3-a5a2-07659a1b53c3";
+ ui_type="none";
}
Print(Json::Value &settings):Print() {
init(settings);