本文介绍了是否可以逐步使多边形100%透明?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要使用OpenGL ES 1.1使多边形逐渐不可见.我正在为Android开发,但我认为其他平台也会做相同的代码,但需要进行一些细微的更改.

I need to make progressively invisible a polygon with OpenGL ES 1.1. I'm developing for Android, but i think that other platforms will do the same code with some minor changes.

我该怎么做?

该多边形具有纹理,不是colores多边形.

The polygon haves texture, is not a colores polygon.

推荐答案

您可以将纹理环境设置为GL_MODULATE,然后将颜色从纯白色逐渐更改为透明白色.

You can set the texture environment to GL_MODULATE, then progressively change the color from solid white to transparent white.

glTexEnv (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
glBegin (GL_QUADS);
glColor4f (1.0, 1.0, 1.0, opacity);
glTexCoord...
glVertex...
... rest of vertices ...
glEnd ();

然后,将不透明度随时间变化,从1.0降至0.0. GL_MODULATE使纹理乘以多边形的颜色.

Then vary opacity over time to go from 1.0 down to 0.0. GL_MODULATE causes the texture to be multiplied by the color of the polygon.

这篇关于是否可以逐步使多边形100%透明?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 10:44
查看更多