We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb6acf8 commit 135aac9Copy full SHA for 135aac9
2 files changed
src/PluginExample/MyBehaviorModel.cpp
@@ -47,7 +47,7 @@ void MyBehaviorModel::reinit()
47
{
48
}
49
50
-void MyBehaviorModel::updatePosition(double dt)
+void MyBehaviorModel::doUpdatePosition(double dt)
51
52
SOFA_UNUSED(dt);
53
src/PluginExample/MyBehaviorModel.h
@@ -45,7 +45,7 @@ class SOFA_PLUGINEXAMPLE_API MyBehaviorModel : public sofa::core::BehaviorModel
45
public:
46
void init() override;
void reinit() override;
- void updatePosition(double dt) override;
+ void doUpdatePosition(double dt) override;
Data<unsigned> d_customUnsignedData; ///< Example of unsigned data with custom widget
Data<unsigned> d_regularUnsignedData; ///< Example of unsigned data with standard widget
0 commit comments