You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two instances in the examples project where this error occurs. There is a variable called face in the files BoundCameraExample.java and SplitScreenExample.java that is calling the constructor for AnimatedSprite with an added function call to .animate(100) at the end, the animate returns void so it is throwing this error.
Another Error I found while setting up the project files is in TextBreakExample.java where, on line 106, there is a incorrect declaration of a new TextOptions class.
Lastly in HullAlgorithmExample.java the import for DrawMode should be changed to "import org.andengine.entity.primitive.DrawMode" so that the project will compile.
The text was updated successfully, but these errors were encountered:
There are two instances in the examples project where this error occurs. There is a variable called face in the files BoundCameraExample.java and SplitScreenExample.java that is calling the constructor for AnimatedSprite with an added function call to .animate(100) at the end, the animate returns void so it is throwing this error.
Another Error I found while setting up the project files is in TextBreakExample.java where, on line 106, there is a incorrect declaration of a new TextOptions class.
Lastly in HullAlgorithmExample.java the import for DrawMode should be changed to "import org.andengine.entity.primitive.DrawMode" so that the project will compile.
The text was updated successfully, but these errors were encountered: