EbiNaki
pucklovesgames

pucklovesgames

patreon


pucklovesgames posts

Update about No Updates.

It's been quite a few months now with little to no updates. I'm sorry about that.

It's a combination of things, none of them individually overwhelming but all of them adding up to my inability to create new content.

I started this patr...

View Post

Soft Area Lights - FILES

A small and simple little tweak to custom lighting on a shader. It ignores the normals near to the light source to create a soft bleed-through effect, like a directionless subsurface scattering. 

2022-02-08 02:11:32 +0000 UTC View Post

Interactive Waterfall - FILES

Here's an easy way to make an interactive waterfall, by rendering particles to a render texture via an orthographic projection that's aligned with the waterfall surface. These particles define the negative space part of the waterf...

View Post

DrawMeshInstancedIndirect - FILES

PSA: I'm not super familiar with any of this, so there might be incorrect assumptions and mistakes, if so, sorry, I'll correct them as I learn more!

I've been playing around with DrawMeshInstancedIndirect, which is like the souped-u...

View Post

SDF Shader - Cutaway effect - FILES

Here's a little script and some shader functions that let you write out an object's transformation matrix and then read it as a Signed Distance Field (SDF) in a shader.

I've included 3 SDFs, a basic sphere, a rounded box with adjustable roun...

View Post

Quads to Billboards - FILES (Free)

I stumbled upon this really clever shader trick from Pontus Karlsson, where he pushes the verts of a quad mesh into camera facing billboards. You can watch the video of it View Post

Atmospheric Scattering Fog + Blur Masking - FILES

Here's a maskable blur effect that you can use in a variety of ways. It's done the same way the blur on the refractive rain shader (from here https://www...

View Post

Environment Interaction Updated - FILES

This is pretty much the same as the previous Environment Interaction asset, now cleaned up, a bit easier to use, and updated with a few extra things that I've added in since I made the original.

The main visible addition is the grass swa...

View Post

Interactive Ground Fog - FILES

I was recently reminded about the cool ground fog in Mario Odyssey by this tweet https://twitter.com/Patrickd3/status/1351245697845239809

I'd a...

View Post

Fog of War via Render Texture - FILES

Repurposing the Environmental Interaction render texture camera to create a Fog of War effect.

The G channel is "full fog" (unexplored areas), and the R channel is "semi fog" (explored, but currently unobserved areas). You can mark areas as ...

View Post

Blood Steam using a particle ribbon - FILES

The in-built Particle Ribbons are pretty limited to create this effect, and a few workarounds have to be done to get it functional, but it works well enough for a quick one-off. To take it further I'd want to generate my own mesh, to allow the rib...

View Post

Magic Sword Particles - FILES

A simple way to make particles spawn on a weapon and leave a trail behind, plus a few fun particle shader variations for magic weapons - because sharp steel isn't deadly enough, it has to do elemental damage as well.

We want the weapon to le...

View Post

Bubble Popping - FILES (free)

Here's a fun little bubble popping shader that works on particles. Good for mud, lava, or other bubble forming liquids.

The bubble popping part is all done with opacity clip and vertex offset - I've made a quick toon-lite version as an examp...

View Post

Render Texture Feedback - FILES

Ever since seeing the cool explosions in Remedy's Control, when you pop the "Hiss" off a possessed enemy, I've been wanting to play with adding more feedback build-up into my shaders.

Here is the my initial playing around with implementing a...

View Post

Mesh Lights - WRITE UP

I wanted to go over some of the basics of how the mesh lights are put together, and some additions and fixes I've stumbled upon recently.

The above gif is from some lighting tests I'm doing for a project I'm working on that's going to proba...

View Post

The next few months of Patreon: Shaders to Swords.

Hello!

The type of content I’ll be producing for patreon will likely change over the next few months, from almost entirely (100%) shaders and effects, to other game assets, such as 3d models, textures and perhaps some animations to...

View Post

Fake Lights 2. Cube Volume Projection - FILES

I thought it would be a good idea to explore a few more simple variations of the mesh lights from the previous post. These ones don't use N.L light direction, so they're more like volume projection than a different way to do lighting. I've put the...

View Post

Mesh Lights with Texture Projection - FILES

I've added some basic texture projection into the fake mesh light shader. It can now project a cubemap texture or 2d texture spherically around it. The 2d mapping will need tweaking if you need it to visually match the emitter sphere, depending on...

View Post

Fake Billboard Lights - FILES

I've been wanting to make this one for a while - instead of using point lights, this shader fakes it with a billboard quad and calculates all the lighting manually using the Normals and Depth information in the _CameraDepthNormalsTexture <...

View Post

Toon Lighting Basics

I thought it would be a good idea to write up some of the basics of Toon Lighting for anybody that isn't familiar with it. There are heaps of ways to approach this, depending on your rendering pipeline and the style you're going for, this is just ...

View Post

Important info about changes and expectations.

Hello everybody! You might have noticed that I've been absent for the last 2 months and paused the patreon in that time. I'm sorry I haven't been as active as I'd like to be with new content and help on the discord.

I've had a bunch of non w...

View Post

Smudgy Pixelization Post Process - FILES

I'm back after a short break in which I focused on health and family and all things that aren't shaders. So I'm easing back into it with a smudgy depth-based pixelization shader I've been wanting to make for a while.

It blends between 3 leve...

View Post

Patreon Pausing

Hello everyone.

Things have gotten a bit busy at the moment, and I haven't been able to spend the time I've wanted to on working on Patreon posts recently, so I'm putting a pause on payments for the next billing cycle.

What this means ...

View Post

Sphere Billboards (FAKE Spheres on quads) - FILES

Here's a way to fake the rendering of a lit sphere on a quad. Currently all the sphere calculations are done using Maths (generating world normals and spherical depth from the quad UVs), but I'd like to do some tests to see if it might be more per...

View Post

Blurry Blob Variations (forward + deferred) - FILES

Here are a few variations on the blobby polygon compositing shader I've been playing with. In the original version of this effect, I blurred the normals and then injected that back into the render stack, which only works in deferred rende...

View Post

Blobby Polygonal Clouds and Liquid - FILES

Here is a way to make blobby liquids and smoke from simple geometry (sphere in this case) by messing with the gbuffer (blurring the normals) and then compositing it back to the main camera with a depth comparison.

This is a big one for me, w...

View Post

Simple Radial Chart Shader - FILES (Free)

I made a bare-bones radial (pie?) chart shader, for a mana collection mechanic I'm working on - but then I realised I prefer using vanilla 'resource bars' instead. Hopefully somebody can get some use out of it.

It's using a length from UVs t...

View Post

UI Events To Shader - FILES (Free)

A very simple example of how you can adjust shader properties via UI events via script.

I might expand this more in the future to add a better colour picker (with colour set by code), use Material Property Blocks instead for performance, and...

View Post

Toon Eye - FILES

Here's a simple Toon Eye shader with some nifty eye related features. The pupil and iris centre is pushed back via parallax, and the specular reflection is a static matcap, so it always glints in the same place. This is not at all realistic, but g...

View Post

'Black Ice' Triplanar Terrain - FILES

I've been working on tweaking the terrain shader for Black Ice (a cool Tron-like FPS looter/shooter that I've been privileged to be able to contribute a f...

View Post