mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-04 20:11:28 +02:00
remove double const in AvatarData.h
This commit is contained in:
parent
7c69b85bc5
commit
142a8a6f08
1 changed files with 2 additions and 2 deletions
|
@ -48,11 +48,11 @@ public:
|
||||||
|
|
||||||
// Hand State
|
// Hand State
|
||||||
void setHandState(char s) { _handState = s; };
|
void setHandState(char s) { _handState = s; };
|
||||||
const char getHandState() const {return _handState; };
|
char getHandState() const {return _handState; };
|
||||||
|
|
||||||
// Instantaneous audio loudness to drive mouth/facial animation
|
// Instantaneous audio loudness to drive mouth/facial animation
|
||||||
void setLoudness(float l) { _audioLoudness = l; };
|
void setLoudness(float l) { _audioLoudness = l; };
|
||||||
const float getLoudness() const {return _audioLoudness; };
|
float getLoudness() const {return _audioLoudness; };
|
||||||
|
|
||||||
// getters for camera details
|
// getters for camera details
|
||||||
const glm::vec3& getCameraPosition() const { return _cameraPosition; };
|
const glm::vec3& getCameraPosition() const { return _cameraPosition; };
|
||||||
|
|
Loading…
Reference in a new issue