Implemented SetOrientation and SetPosition functions but still have errors in throwing NotSupported error message

This commit is contained in:
snarasi6 2019-04-26 19:03:06 -04:00 committed by Akhilesh V
parent 94c1551c8f
commit feeb89149d
4 changed files with 42 additions and 21 deletions

View file

@ -17,6 +17,6 @@ interface AudioListener {
readonly attribute AudioParam upX;
readonly attribute AudioParam upY;
readonly attribute AudioParam upZ;
// void setPosition (float x, float y, float z);
// void setOrientation (float x, float y, float z, float xUp, float yUp, float zUp);
[Throws] AudioListener setPosition (float x, float y, float z);
[Throws] AudioListener setOrientation (float x, float y, float z, float xUp, float yUp, float zUp);
};