mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 16:58:09 +02:00
const methods.
This commit is contained in:
parent
2f2b59b6b6
commit
653e46fdd3
1 changed files with 2 additions and 2 deletions
|
@ -65,9 +65,9 @@ public:
|
||||||
float getPriority() const { return _priority; }
|
float getPriority() const { return _priority; }
|
||||||
void setMix(float mix) { _mix = mix; }
|
void setMix(float mix) { _mix = mix; }
|
||||||
void setFade(float fade) { _fade = fade; }
|
void setFade(float fade) { _fade = fade; }
|
||||||
float getFade() { return _fade; }
|
float getFade() const { return _fade; }
|
||||||
void setFadePerSecond(float fadePerSecond) { _fadePerSecond = fadePerSecond; }
|
void setFadePerSecond(float fadePerSecond) { _fadePerSecond = fadePerSecond; }
|
||||||
float getFadePerSecond() { return _fadePerSecond; }
|
float getFadePerSecond() const { return _fadePerSecond; }
|
||||||
|
|
||||||
void setMaskedJoints(const QStringList& maskedJoints);
|
void setMaskedJoints(const QStringList& maskedJoints);
|
||||||
const QStringList& getMaskedJoints() const { return _maskedJoints; }
|
const QStringList& getMaskedJoints() const { return _maskedJoints; }
|
||||||
|
|
Loading…
Reference in a new issue