示例#1
0
文件: OpenAL_HRTF.py 项目: shaix/PyAL
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alListener3f(al.AL_POSITION, x, y, z)
示例#2
0
文件: OpenAL.py 项目: anden3/Python
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alListener3f(al.AL_POSITION, x, y, z)
示例#3
0
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
示例#4
0
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
示例#5
0
 def _set_velocity(self, velocity):
     x, y, z = velocity
     al.alListener3f(al.AL_VELOCITY, x, y, z)
     self._velocity = velocity