Skip to content
Snippets Groups Projects
Commit d9d2abf9 authored by dg's avatar dg
Browse files

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@5493 51575b47-30f0-44d4-a5cc-537603b46e54
parent 3ced3238
No related branches found
No related tags found
No related merge requests found
......@@ -6,10 +6,10 @@
uniform sampler2D tex;
uniform vec3 color;
uniform float tick;
uniform float speed = 5000.0;
uniform vec2 p2 = vec2(1.0, 1.0);
uniform float a = 1.0;
uniform float amp = 0.2;
uniform float speed;
uniform vec2 p2;
uniform float a;
uniform float amp;
int LFSR_Rand_Gen(in int n)
{
......
......@@ -136,7 +136,7 @@ void main( void ) {
float d = length(uv) * 2.0;
if (d > 0.9) gl_FragColor.a *= 1.0 - 10.0 * (d - 0.9);
else if (d > 1.0) gl_FragColor.a = 0.0;
if (hide_center > 0 && d < 0.5) {
if (hide_center > 0.0 && d < 0.5) {
gl_FragColor.a *= d * d * 4.0;
}
gl_FragColor.a *= ba * aam;
......
......@@ -254,8 +254,6 @@ function _M:redrawAllItems()
for j = 1, #tree.nodes do
local tal = tree.nodes[j]
if not tal.texture then tal.texture = self:getImage(tal.entity.image):glTexture() end
print("tutu")
table.print(tal.entity)
self:drawItem(tal)
end
end
......@@ -468,4 +466,4 @@ function _M:display(x, y, nb_keyframes, screen_x, screen_y, offset_x, offset_y,
if self.focused and self.scrollbar and self.max_h > self.h then
self.scrollbar:display(x + self.w - self.scrollbar.w, y)
end
end
\ No newline at end of file
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment