HelloIntersection - missing imports?

taken from HelloIntersection.java, part of the learning jme tutorial





import com.jme.sound.SoundAPIController;

import com.jme.sound.SoundPool;

import com.jme.sound.scene.ProgrammableSound;

import com.jme.sound.scene.SoundNode;



where are these imports coming from? i havent got them in any of my jars, and ive only just updated to the latest version of jme from the cvs (couple of days ago)



please can someone tell me what jars i could find these in, or have they just been removed?



thanks for any info…



gilles

they're now com.jmex…



fantastic, thank you. (found this out late last night, but its good to have confirmation!)

thank you again :)

Funny thing is I looked in the current stable jar and the following imports do NOT exist under the jmex package



import com.jme.sound.SoundAPIController;

import com.jme.sound.SoundPool;

import com.jme.sound.scene.ProgrammableSound;



I found SoundNode under: com.jmex.sound.fmod.scene, but not any of the others.



I am guessing that the Controller class is gone and has been replaced by some sort of Handler…but I was hoping to learn this correctly the first time.



Any insights?  Or do I need to go to the beta libraries to use the tutorial?



Best regards,

Summo

Yeah, checked the Wiki and fixed the problem, though I still had to replace the import: com.jme.scene.SceneElement with com.jme.scene.Node, and the single instance in the class…