getListenerAttributes() public method

public getListenerAttributes ( int listener, FMOD.Studio.ATTRIBUTES_3D &attributes ) : RESULT
listener int
attributes FMOD.Studio.ATTRIBUTES_3D
return RESULT
Esempio n. 1
0
 public Attributes3D GetListenerAttributes(int listener)
 {
     FMOD.Studio._3D_ATTRIBUTES attr;
     _system.getListenerAttributes(listener, out attr).Check();
     return(new Attributes3D(ref attr));
 }