-1
我做一個簡單的圓片段着色器:如何使一個簡單的圓周發光/花朵效果?
float dist = length(gl_PointCoord - 0.5); // distance to center
float circle = smoothstep(0.3, 0.5, dist); // apply smoothing curve
現在我會做它周圍的一些開花效應。像這樣: https://i.stack.imgur.com/rIS2o.png
有一個位圖示例,但我猜它應該更容易。 – RED