If I wanted to spruce up something like the ragdoll wizard script off the wiki by using a custom skin, is that possible?
void OnGUI()
{
GUISkin mskin=Resources.Load("Editor") as GUISkin;
GUI.skin=mskin;
}
^Just blanks out the window. Its not a null reference btw. What would be proper implementation of this? Thanks
AC