Back to project page Fruity-Bang.
The source code is released under:
MIT License
If you think the Android project Fruity-Bang listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * To change this template, choose Tools | Templates * and open the template in the editor.// w w w . j a v a 2 s. co m */ package GameModel; import com.jme3.animation.AnimChannel; import com.jme3.bullet.collision.shapes.BoxCollisionShape; import com.jme3.bullet.control.CharacterControl; import com.jme3.math.Vector3f; import com.jme3.scene.Spatial; /** * * @author Thong */ public class Win extends CuteModel{ private CharacterControl rubyControl; public Win(Spatial s) { super(s); setName("Ruby"); BoxCollisionShape capsule = new BoxCollisionShape(new Vector3f(PLACE_HOLDER, PLACE_HOLDER*0.6f ,PLACE_HOLDER)); rubyControl = new CharacterControl(capsule,0f); addControl(rubyControl); } public void render(int x, int y) { float ratio = .8f; render(x, y, rubyControl, ratio ); } }