Skip to content

Instantly share code, notes, and snippets.

@thelebaron
thelebaron / DoomGlow.cs
Created November 6, 2019 19:09 — forked from TiliSleepStealer/DoomGlow.cs
Doom glow - fake volumetric light glow effect in Unity by Tili_us
// This file is in the public domain. Where
// a public domain declaration is not recognized, you are granted
// a license to freely use, modify, and redistribute this file in
// any way you choose.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// Unity remake of a fake volumetric light glow effect
@thelebaron
thelebaron / 00-intro.md
Created February 25, 2019 03:10 — forked from mdo/00-intro.md
Instructions for how to affix an Ikea Gerton table top to the Ikea Bekant sit-stand desk frame.

Ikea Bekant standing desk with Gerton table top

@thelebaron
thelebaron / TextureCombiner.cs
Created February 11, 2019 02:22 — forked from HAliss/TextureCombiner.cs
Texture combiner for Unity 3D
using System.Collections;
using System.Collections.Generic;
using System.IO;
using UnityEditor;
using UnityEngine;
public class TextureCombiner : EditorWindow {
//Input textures
private Texture2D[] textures = new Texture2D[4];