this post was submitted on 06 May 2024
0 points (NaN% liked)

Godot

6507 readers
2 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

!roguelikedev@programming.dev

Credits

founded 2 years ago
MODERATORS
 

Hi everyone! Do you remember the video about detecting edges using the Sobel operator, which we enhanced by using Gaussian blur? One of the drawbacks of Gaussian blur is that it's somewhat computationally intensive, which can pose some performance issues for our game if we want to apply such an effect in real-time. In this video, I will demonstrate a much faster way to blur our sprite or the entire screen.

top 2 comments
sorted by: hot top controversial new old
[โ€“] NocturnalMorning@lemmy.world 0 points 11 months ago* (last edited 11 months ago) (1 children)

This is one of the things I like about Unreal. I can make glass easily in unreal without going into all this technical detail. I can choose to do this kind of extra work in Unreal if I want to go the extra mile, but it's not required.

Godot needs stuff like this to be built-in by default. Glass is a super common thing that devs need to make, and having to do this wastes developer time they could be spending on more important things.

[โ€“] FencerDevLog@programming.dev 1 points 11 months ago

Well, Godot is a lightweight engine, so it doesn't have almost anything extra built-in. Which is advantageous because the engine itself then takes up negligible space on disk and the editor starts up within seconds, which can't be said for Unreal. But everyone prefers something different, of course. I mainly wanted to show that implementing your own blur effect can be simpler than it might seem at first glance.