ExampleEngine icon indicating copy to clipboard operation
ExampleEngine copied to clipboard

An example 2d game engine built on GLKit

Results 2 ExampleEngine issues
Sort by recently updated
recently updated
newest added

According to [Apple](http://developer.apple.com/library/ios/#documentation/GLkit/Reference/GLKMatrix4/Reference/reference.html), `GLKMatrix4MakeOrtho`'s `nearZ` param _must be positive_ and the `farZ` param _must be positive and greater than the near distance_. Unfortunately, in your [EEScene.m](https://github.com/ianterrell/ExampleEngine/blob/master/ExampleEngine/EEScene.m#L42) file you have: ```...

Issue is resolved by commenting replacing EEShape.m section as follows. Otherwise you'll get a compiler error for iOS 5.1 I've commented out the offending lines. if (texture != nil) {...