Tree-Axis ``` Processing  


Back  
Class   Ess
   
Name  

Ess.engine

   
Examples  
// Example by Krister Olsson

import krister.Ess.*;

void setup() {
  size(256,200);

  // start up Ess
  Ess.start(this,Ess.COREAUDIO);

  if (Ess.engine==Ess.JAVASOUND) {
    println("We are rendering to JavaSound");
  } else if (Ess.engine==Ess.COREAUDIO) {
    println("We are rendering to CoreAudio");
  }
}

void draw() {
}

// we are done, clean up Ess

public void stop() {
  Ess.stop();
  super.stop();
}


Description   Contains the currently active sound engine, either Ess.JAVASOUND or Ess.COREAUDIO. NOTE: Currently sound can only be rendered to Ess.JAVASOUND
   
Syntax  
Ess.engine
   
Returns   nothing
   
Usage   Web & Application
   
 
 






   
 
Updated: Tue May 31 04:52:43 PDT 2006


 
  Questions, comments, corrections: e-mail Krister Olsson.