コード例 #1
0
        /// <summary>
        /// Gets the style for the specified key.
        /// </summary>
        public static GUIStyle GetStyle(string key)
        {
            GUIStyle style;

            if (!StyleDictionary.TryGetValue(key, out style))
            {
                style = GUIStyle.none;
            }
            return(style);
        }