Example #1
0
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alListener3f(al.AL_POSITION, x, y, z)
Example #2
0
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alListener3f(al.AL_POSITION, x, y, z)
Example #3
0
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
Example #4
0
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
Example #5
0
 def _set_velocity(self, velocity):
     x, y, z = velocity
     al.alListener3f(al.AL_VELOCITY, x, y, z)
     self._velocity = velocity