我正在学习一组LibGDX教程。据我了解,overlaps
方法对矩形对象进行操作,并将另一个矩形对象作为参数,我可以从this page看到。
我正在使用这样的方法:
if(bill.bounds.overlaps(steve.bounds)){
System.out.println("Stop touching me bill!");
}
我不断收到错误消息:
方法重叠(矩形)未定义类型矩形。
答案 0 :(得分:2)
问题在于导入。
在你的类中向上移动并搜索矩形导入,删除该行并将其替换为libGDX矩形类(import com.badlogic.gdx.math.Rectangle)