I am using Xcode to program a new application that is of the game sorts, and when I run it the file that I am using as a main character does not appear. It is just a basic script, but I want it to all be right the first time. Here is the code I think the issue would be found in:
self.effect = [[GLKBaseEffect alloc] init];
GLKMatrix4 projectionMatrix = GLKMatrix4MakeOrtho(0, 480, 0, 320, -1024, 1024);
self.effect.transform.projectionMatrix = projectionMatrix;
self.player = [[SGGSprite alloc] initWithFile:@"Player.png" effect:self.effect];