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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NT/src/nodes.h b/NT/src/nodes.h
index cf1fd3e..6bfb6f5 100644
--- a/NT/src/nodes.h
+++ b/NT/src/nodes.h
@@ -24,7 +24,7 @@ namespace Rotor{
init(settings);
};
const double &get_output(const Frame_parameters &frame){
- value=frame.get_time();
+ value=frame.time;
return value;
}
Time* clone(Json::Value &_settings) { return new Time(_settings);};
@@ -34,7 +34,7 @@ namespace Rotor{
class Multiply: public Double_node {
public:
Multiply(){
- factors=create_array<double>("factors");
+ factors=create_array<double>("factors","Factors to multiply","Factors");
type="multiply";
description="multiplies numbers";
title="Multiply";