If you are posting an issue, please provide the following information:
1. The AppGameKit version you are using
Latest - 108.24
2. Are you working in Tier 1 or Tier 2
Tier 2
3. If in Tier 2, where did you get the template you are using
From the windows installer
4. If in Tier 1 and the issue is with the Player, where did you get the Player?
N/A
5. Any code that might be relevant to the issue.
N/A
I was working on with the 108.12 AppGameKit version. I stopped game dev for a few months and picked back up with the 108.24 version. I tried to open my old project with the new AGK.When I run my project i get a 3dMath.h file not found. I added the new include folder which fixed that error.
Now I'm getting a xcode cast from pointer to smaller int error within EAGLView.m. Could this be because of the changes/updates from 108.12 to 108.24?
Has anyone ran into these issues?
Heres the functions causing the error.
Quote: "
for ( UITouch *pTouch in touches )
{
CGPoint location = [ pTouch locationInView: self ];
//NSLog( @"Touch Pressed ID: %p, X: %f, Y: %f", pTouch, location.x, location.y );
agk::TouchPressed( (UINT) pTouch, location.x, location.y );
}
"