Skip to content

Instantly share code, notes, and snippets.

View emanuelmaues's full-sized avatar

Emanuel Tavares emanuelmaues

View GitHub Profile
# =============== #
# Unity generated #
# =============== #
[Tt]emp/
[Oo]bj/
[Bb]uild
[Ll]ibrary/
sysinfo.txt
# ===================================== #
@emanuelmaues
emanuelmaues / EnumFlagAttribute.cs
Last active May 19, 2019 07:40 — forked from ChemiKhazi/EnumFlagAttribute.cs
This fork includes a way to format the property name in the same style as Unity. Also, you can use EnumFlag in private and protected enums now.
using UnityEngine;
public class EnumFlagAttribute : PropertyAttribute
{
public EnumFlagAttribute() {}
}