summaryrefslogtreecommitdiffstats
path: root/src/runtime/Qt3DSApplication.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/Qt3DSApplication.h')
-rw-r--r--src/runtime/Qt3DSApplication.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/runtime/Qt3DSApplication.h b/src/runtime/Qt3DSApplication.h
index ce1b366..fd9c871 100644
--- a/src/runtime/Qt3DSApplication.h
+++ b/src/runtime/Qt3DSApplication.h
@@ -101,7 +101,6 @@ enum DataInOutType {
DataInOutTypeRangedNumber,
DataInOutTypeString,
DataInOutTypeFloat,
- DataInOutTypeEvaluator,
DataInOutTypeBoolean,
DataInOutTypeVector4,
DataInOutTypeVector3,
@@ -122,12 +121,7 @@ struct DataInputDef
DataInOutType type = DataInOutTypeInvalid;
float min = 0.0f;
float max = 0.0f;
- QString evaluator;
- QJSValue evalFunc; // keep both evaluator string and JS function
- // to avoid having to evaluate string several times
QVariant value; // most recently set value
- // evaluator datainputs that need to re-evaluate when this datainput changes value
- QVector<QString> dependents;
QHash<QString, QString> metadata;
};