Small coding style fixes

This commit is contained in:
Alexander Bock
2020-08-17 22:50:27 +02:00
parent edb7d9ba1d
commit a6d8d0e735
3 changed files with 22 additions and 13 deletions

View File

@@ -65,8 +65,8 @@ public:
void setCamera(Camera* camera);
void clearPreviousState();
SceneGraphNode* focusNode() const;
void setFocusNode(const SceneGraphNode* focusNode, bool resetVelocitiesOnChange = true);
void setFocusNode(const SceneGraphNode* focusNode,
bool resetVelocitiesOnChange = true);
void setFocusNode(const std::string& focusNode, bool resetVelocitiesOnChange = true);
void setAnchorNode(const std::string& anchorNode);
void setAimNode(const std::string& aimNode);
@@ -121,7 +121,8 @@ private:
properties::FloatProperty friction;
};
void setAnchorNode(const SceneGraphNode* anchorNode, bool resetVelocitiesOnChange = true);
void setAnchorNode(const SceneGraphNode* anchorNode,
bool resetVelocitiesOnChange = true);
void setAimNode(const SceneGraphNode* aimNode);
Camera* _camera;