This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 314
/
preferences.py
executable file
·96 lines (87 loc) · 3.27 KB
/
preferences.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# MB-Lab
# MB-Lab fork website : https://github.com/animate1978/MB-Lab
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
import bpy
from bpy.props import BoolProperty, IntProperty, EnumProperty, StringProperty
from . import addon_updater_ops
# demo bare-bones preferences
@addon_updater_ops.make_annotations
class MBPreferences(bpy.types.AddonPreferences):
'''
Updater preferences
'''
bl_idname = __package__
# addon updater preferences
# Auto updater disabled for now
# auto_check_update = bpy.props.BoolProperty(
# name="Auto-check for Update",
# description="If enabled, auto-check for updates using an interval",
# default=False,
# )
# updater_interval_months = bpy.props.IntProperty(
# name='Months',
# description="Number of months between checking for updates",
# default=0,
# min=0
# )
# updater_interval_days = bpy.props.IntProperty(
# name='Days',
# description="Number of days between checking for updates",
# default=7,
# min=0,
# max=31
# )
# updater_interval_hours = bpy.props.IntProperty(
# name='Hours',
# description="Number of hours between checking for updates",
# default=0,
# min=0,
# max=23
# )
# updater_interval_minutes = bpy.props.IntProperty(
# name='Minutes',
# description="Number of minutes between checking for updates",
# default=0,
# min=0,
# max=59
# )
#
use_censors = bpy.props.BoolProperty(
name='censors',
description="Use censors to cover genitals and breasts",
default=True
)
def draw(self, context):
layout = self.layout
# col = layout.column() # works best if a column, or even just self.layout
mainrow = layout.row()
col = mainrow.column()
#add censor preference here
col.prop(self, 'use_censors')
# updater draw function
# addon_updater_ops.update_settings_ui(self, context)
# Alternate draw function, which is more condensed and can be
# placed within an existing draw function. Only contains:
# 1) check for update/update now buttons
# 2) toggle for auto-check (interval will be equal to what is set above)
# addon_updater_ops.update_settings_ui_condensed(self, context, col)
# Adding another column to help show the above condensed ui as one column
# col = mainrow.column()
# col.scale_y = 2
# col.operator("wm.url_open","Open webpage ").url=addon_updater_ops.updater.website