From 5d982c71d13429befa251003e34c2b90bd5e47b7 Mon Sep 17 00:00:00 2001 From: "Sha..om" Date: Mon, 9 Jul 2012 14:08:00 +0000 Subject: [PATCH] * Applied wezrule's patch: http://jmonkeyengine.org/groups/physics/forum/topic/making-an-object-hover-purely-by-applying-forces/#post-181360 git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9542 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../bullet-common/com/jme3/bullet/PhysicsTickListener.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/bullet-common/com/jme3/bullet/PhysicsTickListener.java b/engine/src/bullet-common/com/jme3/bullet/PhysicsTickListener.java index f34753ba8..5bc494133 100644 --- a/engine/src/bullet-common/com/jme3/bullet/PhysicsTickListener.java +++ b/engine/src/bullet-common/com/jme3/bullet/PhysicsTickListener.java @@ -42,13 +42,13 @@ public interface PhysicsTickListener { * @param space the physics space * @param tpf the time per frame in seconds */ - public void prePhysicsTick(PhysicsSpace space, float f); + public void prePhysicsTick(PhysicsSpace space, float tpf); /** * Called after the physics has been stepped, use to check for forces etc. * @param space the physics space * @param tpf the time per frame in seconds */ - public void physicsTick(PhysicsSpace space, float f); + public void physicsTick(PhysicsSpace space, float tpf); }