Okay guys so I decided to go a different route for setting up my platformer! I found a tutorial dated from 2011, however it allowed me to set up my basics for my game. I didn’t realize that I was working with an older version of FlashPunk until I was done setting everything up.
After switching everything seems to be in working order except two function in my Player.as class.
The error I am getting is this:
"col: 28 Error: Incompatible override."
Basically inside of the Player.as update function I have these two functions:
override public function moveCollideX(e:Entity):void
{
xSpeed = 0;
}
override public function moveCollideY(e:Entity):void
{
ySpeed = 0;
}
Let me know what you guys think! Thank you!