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