fixed various caching issues when rapidly changing values
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
|
||||
NodeParam::NodeParam(const QString &id) :
|
||||
time_(-1),
|
||||
value_caching_(true),
|
||||
id_(id)
|
||||
{
|
||||
Q_ASSERT(!id_.isEmpty());
|
||||
@@ -251,3 +252,8 @@ const rational &NodeParam::LastRequestedTime()
|
||||
{
|
||||
return time_;
|
||||
}
|
||||
|
||||
void NodeParam::SetValueCachingEnabled(bool enabled)
|
||||
{
|
||||
value_caching_ = enabled;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user