25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- struct FragmentData {
- vec2 texCoords;
- vec4 color;
- };
-
- struct VertexData {
- vec2 pos;
- vec2 dir;
- vec4 color;
- int texture;
- };
-
- const float SHIP_SIZE = 25.0; // absolute ship size
- const float GLOW_SIZE = 4.0; // relative to ship size
- const float GLOW_ALPHA = 0.5;
|