Exemplo n.º 1
0
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alSource3f(self.source, al.AL_POSITION, x, y, z)
Exemplo n.º 2
0
 def _set_position(self, pos):
     self._position = pos
     x, y, z = map(int, pos)
     al.alSource3f(self.source, al.AL_POSITION, x, y, z)
Exemplo n.º 3
0
 def set_cone_orientation(self, cone_orientation):
     x, y, z = cone_orientation
     al.alSource3f(self._al_source, al.AL_DIRECTION, x, y, z)
Exemplo n.º 4
0
 def set_position(self, position):
     x, y, z = position
     al.alSource3f(self._al_source, al.AL_POSITION, x, y, z)
Exemplo n.º 5
0
 def set_cone_orientation(self, cone_orientation):
     x, y, z = cone_orientation
     al.alSource3f(self._al_source, al.AL_DIRECTION, x, y, z)
Exemplo n.º 6
0
 def set_position(self, position):
     x, y, z = position
     al.alSource3f(self._al_source, al.AL_POSITION, x, y, z)
Exemplo n.º 7
0
 def _set_velocity(self, velocity):
     x, y, z = velocity
     al.alSource3f(self._al_source, al.AL_VELOCITY, x, y, z)
     self._velocity = velocity