Consistent const string params

Parent commit broke behaviour.
Thanks @TeTpaAka for testing the fix.
master
est31 2015-05-27 13:23:09 +02:00
parent 21878c9d5c
commit 990a96578f
1 changed files with 2 additions and 2 deletions

View File

@ -151,9 +151,9 @@ public:
{}
virtual void setAnimation(v2f frames, float frame_speed, float frame_blend)
{}
virtual void setBonePosition(std::string bone, v3f position, v3f rotation)
virtual void setBonePosition(const std::string &bone, v3f position, v3f rotation)
{}
virtual void setAttachment(int parent_id, std::string bone, v3f position, v3f rotation)
virtual void setAttachment(int parent_id, const std::string &bone, v3f position, v3f rotation)
{}
virtual ObjectProperties* accessObjectProperties()
{ return NULL; }