我正在使用以下链接获取在 iOS 中绘制 3D 立方体的源代码。
http://www.raywenderlich.com/5235/beginning-opengl-es-2-0-with-glkit-part-2
这是我的更新例程的代码片段:
- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect {
glClearColor(30/255.0, 30/255.0, 30/255.0, 1.0);
glClear(GL_COLOR_BUFFER_BIT);
// Enable transparency
//glEnable(GL_BLEND);
//glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
[[self effect] prepareToDraw];
glBindVertexArrayOES(_vertexArray);
glDrawElements(GL_TRIANGLES, sizeof(Indices)/sizeof(Indices[0]), GL_UNSIGNED_BYTE, 0);
// Cleanup: Done with the current blend function
//glDisable(GL_BLEND);
}
我正在尝试创建一个具有透明纹理的立方体,并最终绘制底层面。我附上了我的实际纹理。它现在看起来是一个立方体,显示所有面,没有显示底层面的透明度。如果我取消注释混合例程,它会绘制一个在背景上混合的透明立方体,但其他面。
这是我加载纹理的部分内容:
_effect = [[GLKBaseEffect alloc] init];
NSDictionary * options = @{ GLKTextureLoaderOriginBottomLeft: @YES };
NSError *error;
NSString *path = [[NSBundle mainBundle] pathForResource:@"Texture200x200" ofType:@"png"];
GLKTextureInfo *info = [GLKTextureLoader textureWithContentsOfFile:path options:options error:&error];
if (info == nil) {
NSLog(@"Error loading file: %@", error.localizedDescription);
}
[[[self effect] texture2d0] setName:info.name];
[[[self effect] texture2d0] setEnabled:YES];
[[[self effect] texture2d0] setEnvMode:GLKTextureEnvModeDecal];
纹理只是一个带有实心点的 poka-dot 纹理,负空间是完全透明的。我对openGL很陌生。感谢您的帮助!
我包括一个我想要完成的链接。快到最后,你会看到纹理是如何融合在一起的。