article thumbnail

The Kristala Dev Blog - Issue #21

Astral Clock Tower Studios

Here are a few clips of our menu systems and consumables in action so you can get an idea of how they're intended to look - and work! - Here's a look at Joe's most recent work on the level; we're pumped to get our new player character into the Nasahara Ruins level so we can share some actual gameplay clips of this stunning, post-war city.

Dev 52
article thumbnail

Creating a See-Through | X-Ray Effect In Unity – Shader Tutorial

Awesome Tuts

The vert function on line 37 uses UnityObjectToClipPos which will transform the mesh vertex position from local object space to clip space. The idea here is that we’re going to use the alpha channel of the material color to make the material transparent. Then we indicate the end of the shader code on line 47 with ENDCG.

Shaders 90
article thumbnail

Godot's 2D engine gets several improvements for upcoming 4.0

Mircosoft Game Dev

2D Masking / Clipping. branch, this will be doable in a much easier way, thanks to the "clip children" property in the visibility section. while(accum < max_dist) { float d = texture_sdf(at); accum+=d; if (d < 0.01) { break; } at += d * dir; } float alpha = 1.0-min(1.0,accum/max_dist);

Engine 54