2022-05-16 23:48:22 +00:00
|
|
|
init offset = 3
|
|
|
|
|
|
|
|
default studio.faces = None
|
|
|
|
default studio.choices = None
|
|
|
|
default studio.drags = None
|
|
|
|
|
|
|
|
init python in studio:
|
2023-01-30 20:18:54 +00:00
|
|
|
import os
|
|
|
|
import functools
|
2023-02-18 21:56:29 +00:00
|
|
|
import posixpath
|
2023-01-30 20:18:54 +00:00
|
|
|
|
2024-03-26 22:10:18 +00:00
|
|
|
from store import Transform, Flatten, Drag, get_character_object
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-01-30 20:18:54 +00:00
|
|
|
@functools.cache
|
2022-05-16 23:48:22 +00:00
|
|
|
def get_faces():
|
2024-03-26 22:10:18 +00:00
|
|
|
faces = _dict()
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-04-11 19:36:22 +00:00
|
|
|
for charname in renpy.store.states.dolls:
|
2023-01-30 20:18:54 +00:00
|
|
|
charobj = get_character_object(charname)
|
|
|
|
extensions = charobj.extensions
|
2024-03-26 22:10:18 +00:00
|
|
|
face = faces.setdefault(charname, _dict())
|
2023-01-30 20:18:54 +00:00
|
|
|
|
|
|
|
for part in charobj.face._face.keys():
|
|
|
|
|
2023-03-09 21:55:55 +00:00
|
|
|
path = posixpath.join("characters", charname, "poses", charobj.pose, "face", part)
|
2023-01-30 20:18:54 +00:00
|
|
|
|
2024-03-26 22:10:18 +00:00
|
|
|
if part in ("cheeks", "tears"):
|
|
|
|
expressions = face.setdefault(part, _list((False,)))
|
|
|
|
else:
|
|
|
|
expressions = face.setdefault(part, _list())
|
|
|
|
|
2023-01-30 20:18:54 +00:00
|
|
|
for f in renpy.list_files():
|
|
|
|
fp, fn = os.path.split(f)
|
|
|
|
fn, ext = os.path.splitext(fn)
|
|
|
|
expression = os.path.split(fp)[1]
|
2024-03-26 20:58:22 +00:00
|
|
|
|
2023-01-30 20:18:54 +00:00
|
|
|
if not fp.startswith(path) or not ext in extensions:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not expression in expressions:
|
|
|
|
expressions.append(expression)
|
2024-03-26 22:10:18 +00:00
|
|
|
return faces
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
def get_choices():
|
2024-03-26 22:10:18 +00:00
|
|
|
choices = {}
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-04-11 19:36:22 +00:00
|
|
|
for i in renpy.store.states.dolls:
|
2024-03-26 22:10:18 +00:00
|
|
|
choices[i] = ci = {}
|
2024-03-26 21:06:04 +00:00
|
|
|
fi = faces[i]
|
2024-03-26 22:10:18 +00:00
|
|
|
ci["eyebrows"] = fi.get("eyebrows", [None]).index("base")
|
|
|
|
ci["eyes"] = fi.get("eyes", [None]).index("base")
|
|
|
|
ci["mouth"] = fi.get("mouth", [None]).index("base")
|
|
|
|
ci["pupils"] = fi.get("pupils", [None]).index("mid")
|
|
|
|
ci["cheeks"] = fi.get("cheeks", [False]).index(False)
|
|
|
|
ci["tears"] = fi.get("tears", [False]).index(False)
|
|
|
|
ci["zoom"] = 0.5
|
|
|
|
ci["flip"] = 1
|
|
|
|
ci["alpha"] = 1.0
|
|
|
|
|
|
|
|
choices["background"] = {
|
2022-05-16 23:48:22 +00:00
|
|
|
"image": 0,
|
|
|
|
"alpha": 1.0,
|
|
|
|
"hue": 0,
|
|
|
|
"saturation": 1.0,
|
|
|
|
"brightness": 0.0,
|
|
|
|
"blur": 0.0,
|
|
|
|
"list": ["wall_day", "castle", "forest", "quidditch_pitch", "highlight", "versus", "corridor", "custom"]
|
|
|
|
}
|
|
|
|
|
2024-03-26 22:10:18 +00:00
|
|
|
choices["overlay"] = {
|
2022-05-16 23:48:22 +00:00
|
|
|
"image": 0,
|
|
|
|
"alpha": 1.0,
|
|
|
|
"hue": 0,
|
|
|
|
"saturation": 1.0,
|
|
|
|
"brightness": 0.0,
|
|
|
|
"blur": 0.0,
|
|
|
|
"list": [None, "curtains", "card", "g_bottom", "g_left", "g_circular"]
|
|
|
|
}
|
2024-03-26 22:10:18 +00:00
|
|
|
return choices
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
def get_drags():
|
2023-03-31 22:41:48 +00:00
|
|
|
active_girl = renpy.store.states.active_girl
|
2024-03-26 22:10:18 +00:00
|
|
|
return {i: [drag_init(getattr(renpy.store, i)), (i == active_girl)] for i in renpy.store.states.dolls}
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
def get_face(char):
|
2024-03-26 21:06:04 +00:00
|
|
|
cho = choices[char]
|
|
|
|
eyebrows = cho["eyebrows"]
|
|
|
|
eyes = cho["eyes"]
|
|
|
|
mouth = cho["mouth"]
|
|
|
|
pupils = cho["pupils"]
|
|
|
|
cheeks = cho["cheeks"]
|
|
|
|
tears = cho["tears"]
|
|
|
|
|
|
|
|
fa = faces[char]
|
2022-05-16 23:48:22 +00:00
|
|
|
d = {
|
2024-03-26 21:06:04 +00:00
|
|
|
"eyebrows": fa["eyebrows"][eyebrows],
|
|
|
|
"eyes": fa["eyes"][eyes],
|
|
|
|
"mouth": fa["mouth"][mouth],
|
|
|
|
"pupils": fa["pupils"][pupils],
|
|
|
|
"cheeks": fa["cheeks"][cheeks],
|
|
|
|
"tears": fa["tears"][tears],
|
2022-05-16 23:48:22 +00:00
|
|
|
}
|
|
|
|
return d
|
|
|
|
|
|
|
|
def drag_init(obj):
|
|
|
|
char_obj = obj
|
|
|
|
char_name = char_obj.name
|
|
|
|
|
2023-01-18 20:22:59 +00:00
|
|
|
d = Transform(Flatten(char_obj.image), zoom=choices[char_name]["zoom"], xzoom=choices[char_name]["flip"], alpha=choices[char_name]["alpha"])
|
2022-05-16 23:48:22 +00:00
|
|
|
pos = (250, 0)
|
|
|
|
|
|
|
|
drag = Drag(d, activated=drag_activated, drag_offscreen=True, focus_mask=True)
|
|
|
|
drag.char_obj = char_obj
|
|
|
|
drag.char_name = char_name
|
|
|
|
drag.initial_pos = pos
|
|
|
|
drag.style.pos = pos
|
|
|
|
|
|
|
|
return drag
|
|
|
|
|
|
|
|
def drag_activated(drag):
|
|
|
|
drag = drag[0]
|
|
|
|
|
|
|
|
renpy.store.char_active = drag.char_obj
|
2023-03-31 22:41:48 +00:00
|
|
|
renpy.store.states.active_girl = drag.char_name
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
drag.top()
|
|
|
|
renpy.restart_interaction()
|
|
|
|
return
|
|
|
|
|
|
|
|
def drag_update(drag):
|
|
|
|
drag.char_obj.set_face(**get_face(drag.char_name))
|
|
|
|
|
2024-03-26 21:06:04 +00:00
|
|
|
cho = choices[drag.char_name]
|
|
|
|
zoom = cho["zoom"]
|
|
|
|
flip = cho["flip"]
|
|
|
|
alpha = cho["alpha"]
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-01-18 20:22:59 +00:00
|
|
|
d = Flatten(drag.char_obj.image)
|
2022-05-16 23:48:22 +00:00
|
|
|
d = Transform(d, zoom=zoom, xzoom=flip, alpha=alpha)
|
|
|
|
drag.set_child(d)
|
|
|
|
return
|
|
|
|
|
|
|
|
def drag_reset(drag):
|
2024-03-26 21:06:04 +00:00
|
|
|
cho = choices[drag.char_name]
|
|
|
|
fa = faces[drag.char_name]
|
|
|
|
cho["eyebrows"] = fa["eyebrows"].index("base")
|
|
|
|
cho["eyes"] = fa["eyes"].index("base")
|
|
|
|
cho["mouth"] = fa["mouth"].index("base")
|
|
|
|
cho["pupils"] = fa["pupils"].index("mid")
|
|
|
|
cho["cheeks"] = fa["cheeks"].index(False)
|
|
|
|
cho["tears"] = fa["tears"].index(False)
|
|
|
|
cho["zoom"] = 0.5
|
|
|
|
cho["flip"] = 1
|
|
|
|
cho["alpha"] = 1.0
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
drag.char_obj.set_face(**get_face(drag.char_name))
|
|
|
|
|
|
|
|
x, y = drag.initial_pos
|
|
|
|
drag.snap(x, y, 0)
|
|
|
|
|
|
|
|
drag_update(drag)
|
|
|
|
return
|
|
|
|
|
|
|
|
label studio(char):
|
|
|
|
|
|
|
|
# TODO: Finish adding presets saving.
|
|
|
|
# Add character drag offset based on zoom.
|
|
|
|
|
2023-03-24 18:04:49 +00:00
|
|
|
hide screen wardrobe
|
|
|
|
|
2022-05-16 23:48:22 +00:00
|
|
|
python:
|
|
|
|
last_char = char_active
|
2023-03-31 22:41:48 +00:00
|
|
|
last_girl = states.active_girl
|
2022-05-16 23:48:22 +00:00
|
|
|
last_face = last_char.get_face()
|
|
|
|
|
|
|
|
studio.faces = studio.get_faces()
|
|
|
|
studio.choices = studio.get_choices()
|
2023-03-31 22:41:48 +00:00
|
|
|
char_active.set_face(**studio.get_face(states.active_girl))
|
2022-05-16 23:48:22 +00:00
|
|
|
studio.drags = studio.get_drags()
|
|
|
|
|
|
|
|
call screen studio
|
|
|
|
|
|
|
|
# Reset
|
|
|
|
$ char_active = last_char
|
2023-03-31 22:41:48 +00:00
|
|
|
$ states.active_girl = last_girl
|
2022-05-16 23:48:22 +00:00
|
|
|
$ char_active.set_face(**last_face)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
screen studio():
|
|
|
|
tag studio
|
|
|
|
zorder 30
|
|
|
|
style_prefix "studio"
|
|
|
|
predict False
|
|
|
|
|
|
|
|
default icon_size = (32, 32)
|
|
|
|
default take_screenshot = False
|
|
|
|
|
|
|
|
$ bg_hue = HueMatrix(studio.choices["background"]["hue"])
|
|
|
|
$ bg_saturation = SaturationMatrix(studio.choices["background"]["saturation"])
|
|
|
|
$ bg_brightness = BrightnessMatrix(studio.choices["background"]["brightness"])
|
|
|
|
$ bg_blur = studio.choices["background"]["blur"]
|
|
|
|
$ bg_matrix = bg_hue*bg_saturation*bg_brightness
|
|
|
|
$ bg_image = studio.choices["background"]["list"][studio.choices["background"]["image"]]
|
2024-03-26 20:58:22 +00:00
|
|
|
$ bg_image = f"images/rooms/_bg_/{bg_image}.webp"
|
2022-05-16 23:48:22 +00:00
|
|
|
$ bg = Transform(bg_image, matrixcolor=bg_matrix, blur=bg_blur)
|
|
|
|
|
|
|
|
$ ov_hue = HueMatrix(studio.choices["overlay"]["hue"])
|
|
|
|
$ ov_saturation = SaturationMatrix(studio.choices["overlay"]["saturation"])
|
|
|
|
$ ov_brightness = BrightnessMatrix(studio.choices["overlay"]["brightness"])
|
|
|
|
$ ov_blur = studio.choices["overlay"]["blur"]
|
|
|
|
$ ov_alpha = studio.choices["overlay"]["alpha"]
|
|
|
|
$ ov_matrix = ov_hue*ov_saturation*ov_brightness
|
|
|
|
$ ov_image = studio.choices["overlay"]["list"][studio.choices["overlay"]["image"]]
|
|
|
|
|
2024-03-26 20:58:22 +00:00
|
|
|
if ov_image is not None:
|
|
|
|
$ ov = Transform(f"images/rooms/overlays/{ov_image}.webp", matrixcolor=ov_matrix, blur=ov_blur, alpha=ov_alpha)
|
2022-05-16 23:48:22 +00:00
|
|
|
else:
|
|
|
|
$ ov = None
|
|
|
|
|
2023-03-31 22:41:48 +00:00
|
|
|
$ active_drag = studio.drags[states.active_girl][0]
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
add bg
|
|
|
|
|
|
|
|
draggroup:
|
2022-09-29 21:19:55 +00:00
|
|
|
for i in studio.drags.values():
|
2022-05-16 23:48:22 +00:00
|
|
|
if i[1]:
|
|
|
|
add i[0]
|
|
|
|
|
|
|
|
add ov
|
|
|
|
|
|
|
|
if not _windows_hidden:
|
|
|
|
use close_button(action=Confirm("Exit Photo Studio?\n{size=-4}All changes will be lost.{/size}", Return("Close")))
|
|
|
|
|
|
|
|
hbox:
|
|
|
|
pos (25, 25)
|
|
|
|
|
|
|
|
style_prefix gui.theme("studio")
|
|
|
|
|
|
|
|
vbox:
|
2023-03-31 22:41:48 +00:00
|
|
|
label (states.active_girl)
|
2022-05-16 23:48:22 +00:00
|
|
|
$ drag_update = Function(studio.drag_update, active_drag)
|
|
|
|
$ drag_reset = Function(studio.drag_reset, active_drag)
|
|
|
|
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/eyebrows.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "eyebrows", len(studio.faces[states.active_girl]["eyebrows"])-1, False, step=1, force_step=True, action=drag_update) tooltip "Character eyebrows"
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/eyes.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "eyes", len(studio.faces[states.active_girl]["eyes"])-1, False, step=1, force_step=True, action=drag_update) tooltip "Character eyes"
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/pupils.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "pupils", len(studio.faces[states.active_girl]["pupils"])-1, False, step=1, force_step=True, action=drag_update) tooltip "Character pupils"
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/mouth.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "mouth", len(studio.faces[states.active_girl]["mouth"])-1, False, step=1, force_step=True, action=drag_update) tooltip "Character mouth"
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/blush.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "cheeks", len(studio.faces[states.active_girl]["cheeks"])-1, False, step=1, force_step=True, action=drag_update) tooltip "Character blush"
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/tears.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "tears", len(studio.faces[states.active_girl]["tears"])-1, False, step=1, force_step=True, action=drag_update) tooltip "Character tears"
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/scale.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "zoom", 1.0, False, step=0.1, force_step=True, action=drag_update) tooltip "Character Scale"
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/opacity.webp" size icon_size
|
2023-03-31 22:41:48 +00:00
|
|
|
bar value DictValue(studio.choices[states.active_girl], "alpha", 1.0, False, step=0.1, force_step=True, action=drag_update) tooltip "Character Opacity"
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-03-31 22:41:48 +00:00
|
|
|
textbutton "Flip" action [ToggleDict(studio.choices[states.active_girl], "flip", -1, 1), drag_update] xpos 4
|
2022-05-16 23:48:22 +00:00
|
|
|
textbutton "Reset" action drag_reset xpos 4
|
|
|
|
|
|
|
|
vbox:
|
|
|
|
label "Background"
|
|
|
|
default bg_dict = studio.choices["background"]
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/background.webp" size icon_size
|
|
|
|
bar value DictValue(bg_dict, "image", len(bg_dict["list"])-1, False, step=1, force_step=True) tooltip "Background Image"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/hue.webp" size icon_size
|
|
|
|
bar value DictValue(bg_dict, "hue", 360.0, False, step=1.0, force_step=True) tooltip "Background Hue"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/saturation.webp" size icon_size
|
|
|
|
bar value DictValue(bg_dict, "saturation", 1.0, False, step=0.1, force_step=False) tooltip "Background Saturation"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/brightness.webp" size icon_size
|
|
|
|
bar value DictValue(bg_dict, "brightness", 1.0, False, step=0.1, force_step=False) tooltip "Background Brightness"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/blur.webp" size icon_size
|
|
|
|
bar value DictValue(bg_dict, "blur", 50.0, False, step=1.0, force_step=True) tooltip "Background Blur"
|
|
|
|
|
|
|
|
vbox:
|
|
|
|
label "Overlay"
|
|
|
|
default ov_dict = studio.choices["overlay"]
|
|
|
|
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/overlay.webp" size icon_size
|
|
|
|
bar value DictValue(ov_dict, "image", len(ov_dict["list"])-1, False, step=1, force_step=True) tooltip "Overlay Image"
|
|
|
|
|
2024-03-26 21:05:15 +00:00
|
|
|
if ov_dict["image"] > 0:
|
2022-05-16 23:48:22 +00:00
|
|
|
hbox:
|
|
|
|
add "interface/studio/hue.webp" size icon_size
|
|
|
|
bar value DictValue(ov_dict, "hue", 360.0, False, step=1.0, force_step=True) tooltip "Overlay Hue"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/saturation.webp" size icon_size
|
|
|
|
bar value DictValue(ov_dict, "saturation", 1.0, False, step=0.1, force_step=False) tooltip "Overlay Saturation"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/brightness.webp" size icon_size
|
|
|
|
bar value DictValue(ov_dict, "brightness", 1.0, False, step=0.1, force_step=False) tooltip "Overlay Brightness"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/blur.webp" size icon_size
|
|
|
|
bar value DictValue(ov_dict, "blur", 50.0, False, step=1.0, force_step=True) tooltip "Overlay Blur"
|
|
|
|
hbox:
|
|
|
|
add "interface/studio/opacity.webp" size icon_size
|
|
|
|
bar value DictValue(ov_dict, "alpha", 1.0, False, step=0.1, force_step=True) tooltip "Overlay Opacity"
|
|
|
|
|
|
|
|
vbox:
|
|
|
|
label "Characters"
|
|
|
|
vbox:
|
2022-09-29 21:19:55 +00:00
|
|
|
for k, v in studio.drags.items():
|
2023-03-31 22:41:48 +00:00
|
|
|
$ active = (states.active_girl == k and v[1])
|
2023-04-16 16:47:14 +00:00
|
|
|
$ unlocked = get_character_unlock(k)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
if not v[1]:
|
|
|
|
$ action = [ SetDict(studio.drags[k], 1, True), Function(studio.drag_activated, [v[0]]), renpy.restart_interaction ]
|
2023-03-31 22:41:48 +00:00
|
|
|
elif not states.active_girl == k:
|
2022-05-16 23:48:22 +00:00
|
|
|
$ action = [ Function(studio.drag_activated, [v[0]]), renpy.restart_interaction]
|
|
|
|
else:
|
|
|
|
$ action = [ SetDict(studio.drags[k], 1, False), renpy.restart_interaction ]
|
|
|
|
|
|
|
|
if unlocked:
|
|
|
|
textbutton k:
|
|
|
|
action action
|
|
|
|
selected v[1] text_color ("#009900" if active else "#f9d592")
|
|
|
|
text_hover_color "#fff"
|
|
|
|
text_first_indent 20
|
2024-03-26 20:58:22 +00:00
|
|
|
background Transform(f"interface/icons/head/{k}.webp", size=(16, 16), offset=(22, 3))
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
vbox:
|
|
|
|
align (1.0, 1.0)
|
|
|
|
xoffset -12
|
|
|
|
|
|
|
|
label "Actions"
|
|
|
|
hbox:
|
|
|
|
imagebutton:
|
|
|
|
idle Transform(image_alpha("interface/studio/screenshot.webp"), size=icon_size)
|
|
|
|
hover Transform("interface/studio/screenshot.webp", size=icon_size)
|
|
|
|
action [Function(_hide_windows), SetScreenVariable("take_screenshot", True)]
|
|
|
|
tooltip "Screenshot (Prnt Scrn)"
|
|
|
|
imagebutton:
|
|
|
|
idle Transform(image_alpha("interface/studio/hide.webp"), size=icon_size)
|
|
|
|
hover Transform("interface/studio/hide.webp", size=icon_size)
|
|
|
|
action Function(_hide_windows)
|
|
|
|
tooltip "Hide interface (H)"
|
|
|
|
|
|
|
|
if _windows_hidden:
|
|
|
|
use invisible_button(action=Function(_hide_windows))
|
|
|
|
|
|
|
|
if take_screenshot:
|
|
|
|
timer 0.2 action [_screenshot, Function(_hide_windows), SetScreenVariable("take_screenshot", False)]
|
|
|
|
|
|
|
|
style studio_hbox:
|
|
|
|
spacing 25
|
|
|
|
|
|
|
|
style studio_label_text:
|
|
|
|
color "#f9d592"
|
|
|
|
outlines [ (2, "#00000080", 0, 0) ]
|
|
|
|
|
|
|
|
style studio_bar:
|
|
|
|
xsize 112
|
|
|
|
xalign 0.5
|
|
|
|
|
|
|
|
style studio_button:
|
|
|
|
xsize 106
|
|
|
|
xalign 0.5
|
|
|
|
|
|
|
|
style studio_button_text:
|
|
|
|
size 12
|
|
|
|
|
|
|
|
style dark_studio_bar is dark_slider:
|
|
|
|
xsize 160
|
|
|
|
yalign 0.5
|
|
|
|
|
|
|
|
style light_studio_bar is light_slider:
|
|
|
|
xsize 160
|
|
|
|
yalign 0.5
|
|
|
|
|
|
|
|
style light_studio_hbox is studio_hbox
|
|
|
|
style dark_studio_hbox is studio_hbox
|
|
|
|
|
|
|
|
style studio_hbox:
|
|
|
|
spacing 5
|
|
|
|
|
|
|
|
style light_studio_button is light_radio_button
|
|
|
|
style dark_studio_button is dark_radio_button
|
|
|
|
|
|
|
|
style light_studio_button_text:
|
|
|
|
first_indent 6
|
|
|
|
size 10
|
|
|
|
color "#f9d592"
|
|
|
|
hover_color "#fff"
|
|
|
|
outlines [ (2, "#00000080", 0, 0) ]
|
|
|
|
|
|
|
|
style dark_studio_button_text:
|
|
|
|
first_indent 6
|
|
|
|
size 10
|
|
|
|
color "#9b8d84"
|
|
|
|
hover_color "#fff"
|
|
|
|
outlines [ (2, "#00000080", 0, 0) ]
|