mirror of
https://github.com/love2d/love.git
synced 2026-08-14 01:20:56 +02:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user