fixed various caching issues when rapidly changing values

This commit is contained in:
itsmattkc
2019-09-09 04:07:51 +10:00
parent 6fcfd01c8f
commit ba7a10177f
37 changed files with 495 additions and 217 deletions
+6
View File
@@ -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;
}