Skip to content

Instantly share code, notes, and snippets.

@just-Addict
just-Addict / seekbar-griddrawing.fx
Last active August 16, 2022 07:21
draws gridlines at set intervals (either horizontal, vertical or both) color density, distance and line thickness configurable.
texture tex : WAVEFORMDATA;
sampler sTex = sampler_state
{
Texture = (tex);
MipFilter = LINEAR;
MinFilter = LINEAR;
MagFilter = LINEAR;
AddressU = Clamp;
@just-Addict
just-Addict / seekbar-timescale.fx
Last active August 16, 2022 07:21
adding a time scale to borders (or middle) in the default wavebar, single function can easily be copy/pasted.
texture tex : WAVEFORMDATA;
sampler sTex = sampler_state
{
Texture = (tex);
MipFilter = LINEAR;
MinFilter = LINEAR;
MagFilter = LINEAR;
AddressU = Clamp;
@just-Addict
just-Addict / seekbar-minmaxrms-mood.fx
Created June 4, 2016 18:54
Instead of a waveform just colored lines based on minmaxrms.g peak value. pinks-blues = low peak, yellows-reds high peaks
texture tex : WAVEFORMDATA;
sampler sTex = sampler_state
{
Texture = (tex);
MipFilter = LINEAR;
MinFilter = LINEAR;
MagFilter = LINEAR;
AddressU = Clamp;
@just-Addict
just-Addict / seekbar-minmaxrms-peakmeter.fx
Created June 4, 2016 18:01
Min, Max and RMS peak meter type effect
texture tex : WAVEFORMDATA;
sampler sTex = sampler_state
{
Texture = (tex);
MipFilter = LINEAR;
MinFilter = LINEAR;
MagFilter = LINEAR;
AddressU = Clamp;