What is the difference between float tpf and float intensity

Specifically for the onAnalog(String name, float tpf, float intensity) method of the AnalogListener interface.

I see that I can use both of the float values to rotate geometries, but I don’t know the difference. I’m a curious fellow, so could someone please explain to me the difference?

Never mind, I found out myself.

Which analog listener are you looking at? The JME3 one has tpf as the last parameter and the Java doc clearly explains what the parameters are:
http://hub.jmonkeyengine.org/javadoc/com/jme3/input/controls/AnalogListener.html#onAnalog(java.lang.String,%20float,%20float)

@pspeed said: Which analog listener are you looking at? The JME3 one has tpf as the last parameter and the Java doc clearly explains what the parameters are: http://hub.jmonkeyengine.org/javadoc/com/jme3/input/controls/AnalogListener.html#onAnalog(java.lang.String,%20float,%20float)

Yes, I know. That was the one I was looking for, and from my previous posts I figured I should just look at the documentation myself.

@coolman50544 said: Yes, I know. That was the one I was looking for, and from my previous posts I figured I should just look at the documentation myself.

Ok, just wanted to make sure you weren’t using them backwards.

…and to me, ‘value’ is much clearer than ‘intensity’ so I was making sure some other docs weren’t leading you astray with a sillier word.