fix bug preventing butterflies from animating

(forgot to make base method virtual)
This commit is contained in:
Andrew Meadows 2014-12-08 16:31:36 -08:00
parent a9079b64e4
commit 27bfc9907f

View file

@ -130,7 +130,7 @@ public:
// perform linear extrapolation for SimpleEntitySimulation
void simulate(const quint64& now);
bool needsToCallUpdate() const { return false; }
virtual bool needsToCallUpdate() const { return false; }
virtual void debugDump() const;