Skip to content

Instantly share code, notes, and snippets.

View kilj's full-sized avatar

Oleksandr Shapoval kilj

View GitHub Profile
@kalinchernev
kalinchernev / countries
Created October 6, 2014 09:42
Plain text list of countries
Afghanistan
Albania
Algeria
Andorra
Angola
Antigua & Deps
Argentina
Armenia
Australia
Austria
@WillzZz
WillzZz / Bindable.cs
Last active August 4, 2016 17:48
Bindable
using System;
public class Bindable<T>
{
private T _value;
public T Value
{
get { return _value; }
set
{
_value = value;
@elringus
elringus / BlendModes.c
Last active March 11, 2024 11:32
Popular blend mode algorithms implemented in Nvidia's Cg. https://elringus.me/blend-modes-in-unity/
fixed3 Darken (fixed3 a, fixed3 b)
{
return min(a, b);
}
fixed3 Multiply (fixed3 a, fixed3 b)
{
return a * b;
}