import pygame
import types
+import kinect.pygamedisplay as kinect
+
import minwii.events as events
from minwii.log import eventLogger
from minwii.eventutils import event_handler, EventDispatcher, EventHandlerMixin
self.columns = {}
self._initColumns()
self._running = False
+ self.kinectRgb = kinect.RGBSprite(alpha=128)
+ self.add(self.kinectRgb, layer=CURSOR_LAYER)
+ self._initCursor()
self.draw(pygame.display.get_surface())
- self._initCursor()
+
def _initRects(self) :
""" création des espaces réservés pour
pygame.mouse.set_visible(False)
while self._running :
EventDispatcher.dispatchEvents()
+ self.kinectRgb.update()
dirty = self.draw(pygame.display.get_surface())
pygame.display.update(dirty)
clock.tick(FRAMERATE)