All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jme3.input.vr.DigitalActionState Maven / Gradle / Ivy

There is a newer version: 3.7.0-stable
Show newest version
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