Package org.pollux3d.tuio

Examples of org.pollux3d.tuio.TuioDeviceNetwork


    this.context.setTitle(windowName);
    this.tuioInput.setWindowName(windowName);
    if (settings.getString("inputSystem").equals(PolluxSettingsDialog.InputSystems.Win7)) {
      this.tuioInput.setTuioDevice(new TuioDeviceWin7());
    } else if (settings.getString("inputSystem").equals(PolluxSettingsDialog.InputSystems.Network)) {
      this.tuioInput.setTuioDevice(new TuioDeviceNetwork());
    } else if (settings.getString("inputSystem").equals(PolluxSettingsDialog.InputSystems.Mouse)) {
      this.tuioInput.setInputManager(inputManager);
      this.tuioInput.setUseMouse(true);
    }
   
View Full Code Here


    this.tuioInput.setWindowName(windowName);
    if (System.getProperty("os.name").equals("Windows 7")) {
      this.tuioInput.setTuioDevice(new TuioDeviceWin7());
    //} else if (System.getProperty("os.name").equals("Mac OS X")) {
    } else {
      this.tuioInput.setTuioDevice(new TuioDeviceNetwork());
    }
  }
View Full Code Here

TOP

Related Classes of org.pollux3d.tuio.TuioDeviceNetwork

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.