-
Hello, com.almasb.fxgl.entity.Entity imports fine as well as every other class as far as I can tell. Right now, I need the entities class to make screen bounds with FXGL.getGameWorld().addEntity(Entities.makescreenbounds(40)). Is there a way I can get around this or would you happen to know how I can fix this issue? Thanks a ton! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, |
Beta Was this translation helpful? Give feedback.
@Harley-L
Hi,
Entities.*
is legacy API, the current API isFXGL.entityBuilder().*
. You will be able to find screen bounds generation there.