Awesome, exactly what I was looking for! Thank you so much for this tutorial!
@yvanvan37294 жыл бұрын
Fast, simple and powerful. Good work ! Keep on going !
@BramwellWilliams4 жыл бұрын
Thankyou! I'm so out of swing with making videos it seemed best to focus on some short simple content c:
@yvanvan37294 жыл бұрын
@@BramwellWilliams IMHO Short but technically specialized videos are often preferable. I'm pretty sure the Godot community needs them !
@GabeSwart4 жыл бұрын
Your tutorials are really great stuff man! Keep up the hard work
@thoup9956 Жыл бұрын
Brilliant Video. While trying this out in Godot 3.5 I noticed that the code for the shader had broken. The Updated shader code can be found below. shader_type canvas_item; uniform sampler2D n; uniform float intensity = 0.0f; uniform float speed = 1.0f; void fragment(){ vec4 tx = texture(TEXTURE, UV); vec4 noise = texture(n, UV - TIME / (1.0 + speed)); COLOR.a = clamp(tx.r * noise.r * intensity, 0.0, 1.0); COLOR.a = pow(COLOR.a, 2); }
@danielf.r.gordillo7514 Жыл бұрын
sadly, can't make it work in Godot 4
@speedtouchdyomn88810 ай бұрын
make noise repeat by change line2 to uniform sampler2D n: repeat_enable;
@slecornu4 жыл бұрын
Our saviour is back
@BramwellWilliams4 жыл бұрын
Im back Baby :')
@juanloutech28644 жыл бұрын
Brilliant! Thanx mate!
@cmds.learning74263 жыл бұрын
i like your shader tutorial
@Crisisdarkness4 жыл бұрын
Wow this is great. I would like if at some point you could teach how to make a card video game, inspired by Magic or Hearthstone
@BramwellWilliams4 жыл бұрын
Gladly! I'm very happy to do videos about that, if there are any aspects that spring to mind I'm happy to cover them, one thing could be fanning a hand of cards out or moving cards between zones with curved motion
@Crisisdarkness4 жыл бұрын
@@BramwellWilliams Oh that would be great, I've always wanted to make a card video game, but I'm still at a beginner level, I would have many obstacles, I would be very grateful for your help, thanks for your channel
@TheDaxLounge3 жыл бұрын
Would changing the color of the glow be a simple variable change, or would you have to do it in a fundamentally different way?
@TheDaxLounge3 жыл бұрын
Oh I forgot you can use the CanvasItem>Modulate parameter, my bad. Fantastic videos man, you made my game 10x prettier
@thebestofperaable4 жыл бұрын
Wow! You use the Godot framework for card? Or ant plugin?
@BramwellWilliams4 жыл бұрын
No plugin! Just Godot as is all in 2D, getting the cards to animate going to the different zones was the hardest part to get looking good but Godot's so lovely I wouldn't have it any other way c:
@JakubSK4 ай бұрын
I watch at 0.25 playback speed and you still go too fast lol