Esempio n. 1
0
        public static float ProgressBarWithLabel(Rect position, GUIContent label, float value)
        {
            var style = CustomGUIDetail.ProgressBarDefaultGUIStyle();

            return(ProgressBarWithLabel(position, label, value, style));
        }
Esempio n. 2
0
        public static float ProgressBar(Rect position, float value)
        {
            var style = CustomGUIDetail.ProgressBarDefaultGUIStyle();

            return(ProgressBar(position, value, style));
        }
Esempio n. 3
0
        public static void ProgressBarWithLabel(Rect position, SerializedProperty property, string label)
        {
            var style = CustomGUIDetail.ProgressBarDefaultGUIStyle();

            ProgressBarWithLabel(position, property, label, style);
        }
Esempio n. 4
0
        public static void ProgressBar(Rect position, SerializedProperty property, GUIContent label)
        {
            var style = CustomGUIDetail.ProgressBarDefaultGUIStyle();

            ProgressBar(position, property, label, style);
        }
Esempio n. 5
0
        public static void ProgressBarWithLabel(SerializedProperty property, string label, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ProgressBarDefaultGUIStyle();

            ProgressBarWithLabel(property, label, style, options);
        }
Esempio n. 6
0
        public static float ProgressBarWithLabel(string label, float value, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ProgressBarDefaultGUIStyle();

            return(ProgressBarWithLabel(label, value, style, options));
        }
Esempio n. 7
0
        public static float ProgressBar(float value, params GUILayoutOption[] options)
        {
            var style = CustomGUIDetail.ProgressBarDefaultGUIStyle();

            return(ProgressBar(value, style, options));
        }