Esempio 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)
Esempio 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)
Esempio n. 3
0
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
Esempio n. 4
0
 def _set_position(self, position):
     x, y, z = position
     al.alListener3f(al.AL_POSITION, x, y, z)
     self._position = position
Esempio n. 5
0
 def _set_velocity(self, velocity):
     x, y, z = velocity
     al.alListener3f(al.AL_VELOCITY, x, y, z)
     self._velocity = velocity