-
Install X11.app (it's on the OS X install disk or something.)
-
Install
dwm
. You have to customizeconfig.h
a bit:- Replace
{ MODKEY|ShiftMask, XK_q, quit, {0} },
with{ MODKEY|ControlMask, XK_q, quit, {0} },
to avoid colliding with the Log Out shortcut in the Apple menu.
If you install
dwm
from Homebrew,brew install dwm
, this is done automatically. - Replace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine.Events; | |
using System.Collections; | |
using System.Collections.Generic; | |
/* | |
Unity C# Event manager using UnityEvents and a Hashtable for loosely typed params with event. | |
This EventManager expands the usefulness of UnityEvents by allowing values of any type to be passed as a | |
parameter in the Event eg: int, string, Vector3 etc. | |
Usage: |