com.jme3.bullet
インタフェース PhysicsTickListener

既知の実装クラスの一覧:
BulletAppState

public interface PhysicsTickListener

Implement this interface to be called from the physics thread on a physics update.


メソッドの概要
 void physicsTick(PhysicsSpace space, float f)
          Called after the physics has been stepped, use to check for forces etc.
 void prePhysicsTick(PhysicsSpace space, float f)
          Called before the physics is actually stepped, use to apply forces etc.
 

メソッドの詳細

prePhysicsTick

void prePhysicsTick(PhysicsSpace space,
                    float f)
Called before the physics is actually stepped, use to apply forces etc.

パラメータ:
space -
f -

physicsTick

void physicsTick(PhysicsSpace space,
                 float f)
Called after the physics has been stepped, use to check for forces etc.

パラメータ:
space -
f -