Skip to content

Instantly share code, notes, and snippets.

@serrasqueiro
serrasqueiro / iso-3166-1.tsv
Last active November 3, 2022 15:03
Tab-Separated values in a text file
#Country(UTF-8) Alpha-2 code Alpha-3 code Numeric
Afghanistan AF AFG 004
Albania AL ALB 008
Algeria DZ DZA 012
American Samoa AS ASM 016
Andorra AD AND 020
Angola AO AGO 024
Anguilla AI AIA 660
Antarctica AQ ATA 010
Antigua and Barbuda AG ATG 028
@paniq
paniq / ecs.md
Last active July 3, 2024 06:41
Entity Component Systems
@GuilleUCM
GuilleUCM / ObjectShake.cs
Last active August 7, 2023 18:34
Unity:Animation:Shake object vibrate
using UnityEngine;
using System.Collections;
/// http://www.mikedoesweb.com/2012/camera-shake-in-unity/
public class ObjectShake : MonoBehaviour {
private Vector3 originPosition;
private Quaternion originRotation;
public float shake_decay = 0.002f;