Package com.neophob.sematrix.core.fader

Examples of com.neophob.sematrix.core.fader.TransitionManager


        break;
       
      case RANDOMIZE:  //one shot randomizer
        try {
          //save current visual buffer
          TransitionManager transition = new TransitionManager(col);
          Shuffler.manualShuffleStuff();
          transition.startCrossfader();
          col.notifyGuiUpdate();
        } catch (Exception e) {
          LOG.log(Level.WARNING, IGNORE_COMMAND, e);
        }
        break;
View Full Code Here


    int currentOutput = col.getCurrentOutput();
             
    List<String> present = col.getPresets().get(nr).getPresent();         
    if (present!=null) { 
      //save current visual buffer
      TransitionManager transition = new TransitionManager(col);
     
      //load preset
      col.setCurrentStatus(present);
     
      //Restore current Selection
      col.setCurrentVisual(currentVisual);
      col.setCurrentOutput(currentOutput);
     
      //start preset fader here, hardcoded to Crossfading
      transition.startCrossfader();
    }   
  }
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.core.fader.TransitionManager

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.