mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 03:04:33 +02:00
Merge pull request #135 from birarda/master
remove double consts in AvatarData
This commit is contained in:
commit
2a601799ce
1 changed files with 2 additions and 2 deletions
|
@ -48,11 +48,11 @@ public:
|
|||
|
||||
// Hand State
|
||||
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
|
||||
void setLoudness(float l) { _audioLoudness = l; };
|
||||
const float getLoudness() const {return _audioLoudness; };
|
||||
float getLoudness() const {return _audioLoudness; };
|
||||
|
||||
// getters for camera details
|
||||
const glm::vec3& getCameraPosition() const { return _cameraPosition; };
|
||||
|
|
Loading…
Reference in a new issue