com.jme3.input.vr.DigitalActionState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jme3-vr Show documentation
Show all versions of jme3-vr Show documentation
jMonkeyEngine is a 3-D game engine for adventurous Java developers
package com.jme3.input.vr;
/**
* @deprecated The jme3-vr module is deprecated and will be removed in a future version (as it only supports OpenVR).
* For new Virtual Reality projects, use user libraries that provide OpenXR support.
* See Virtual Reality JME wiki section
* for more information.
*/
@Deprecated
public class DigitalActionState{
/**
* The current value of this action
*/
public final boolean state;
/**
* If since the last loop the value of this action has changed
*/
public final boolean changed;
public DigitalActionState(boolean state, boolean changed){
this.state = state;
this.changed = changed;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy