我正在尝试移动图像而不是jbox2d中的几何形状。
我看不到图片。

BodyDef bodyDef =new BodyDef();
        bodyDef.position.set(100,100);
        bodyDef.type=BodyType.DYNAMIC;
        //texture=TextureLoader.getTexture("PNG",ResourceLoader.getResourceAsStream("resources/small.png"));
        BufferedImage img = null;
        try {
            img = ImageIO.read(new File("resources/small.png"));
        } catch (IOException e) {
        }
        bodyDef.userData=img;

最佳答案

JBox2D基于Box2D引擎,Box2D引擎是一个物理引擎,与视觉对象无关。您必须自己在程序的主循环中绘制图像,该方法通常称为render()

09-07 19:33