
com.simsilica.lemur.event.LemurProtectedSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tamarin Show documentation
Show all versions of tamarin Show documentation
A VR utilities library that extends the functionality in JMonkeyEngine
package com.simsilica.lemur.event;
import com.jme3.input.event.MouseButtonEvent;
import java.util.List;
/**
* This is just to provide a way in to get protected methods
*/
public class LemurProtectedSupport{
public static PickEventSession getSession(BasePickState pickState){
return pickState.getSession();
}
public static List getPickRoots(PickEventSession session){
return session.getRootList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy