com.jme3.input.controls
インタフェース AnalogListener
- すべてのスーパーインタフェース:
- InputListener
- 既知の実装クラスの一覧:
- ChaseCamera, FlyByCamera
public interface AnalogListener
- extends InputListener
AnalogListener
is used to receive events of inputs
in analog format.
メソッドの概要 |
void |
onAnalog(java.lang.String name,
float value,
float tpf)
Called to notify the implementation that an analog event has occurred. |
onAnalog
void onAnalog(java.lang.String name,
float value,
float tpf)
- Called to notify the implementation that an analog event has occurred.
The results of KeyTrigger and MouseButtonTrigger events will have tpf
== value.
- パラメータ:
name
- The name of the mapping that was invokedvalue
- Value of the axis, from 0 to 1.tpf
- The time per frame value.