Add PannerNode.setPosition(), setOrientation()

This commit is contained in:
Manish Goregaokar 2018-08-24 09:48:22 -07:00
parent 7daec55010
commit 18960b6c94
2 changed files with 20 additions and 5 deletions

View file

@ -51,6 +51,6 @@ interface PannerNode : AudioNode {
attribute double coneInnerAngle;
attribute double coneOuterAngle;
attribute double coneOuterGain;
// void setPosition (float x, float y, float z);
// void setOrientation (float x, float y, float z);
};
void setPosition (float x, float y, float z);
void setOrientation (float x, float y, float z);
};