2017-09-30 43 views

回答

2

它在PlaneRenderer.java設置着色器變量時發生的情況:

int colorIndex = planeIndex % PLANE_COLORS_RGBA.length; 
colorRgbaToFloat(mPlaneColor, PLANE_COLORS_RGBA[colorIndex]); 
GLES20.glUniform4fv(mLineColorUniform, 1, mPlaneColor, 0); 
GLES20.glUniform4fv(mDotColorUniform, 1, mPlaneColor, 0); 

所以最簡單的/最快的修改是將顏色索引設置爲一個固定值

相關問題