Added Source:setRelativePosition and Source:hasRelativePosition, if enabled the Source's position will always be relative to the listener instead of absolute.

This commit is contained in:
Alex Szpakowski
2013-10-11 02:25:48 -03:00
parent 2710c6c488
commit 7f3cd7f044
7 changed files with 54 additions and 0 deletions
+10
View File
@@ -135,6 +135,16 @@ void Source::getDirection(float *) const
{
}
void Source::setRelativePosition(bool relative)
{
relativePosition = relative;
}
bool Source::hasRelativePosition() const
{
return relativePosition;
}
void Source::setLooping(bool looping)
{
this->looping = looping;