-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcensored_popup_screen.rpy
85 lines (72 loc) · 2.08 KB
/
censored_popup_screen.rpy
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
screen censored_popup(continue_label):
modal True
add "censored_background"
text _("THE NEXT SCENE HAS NSFW CONTENT"):
style "nsfw_text"
xalign 0.5
ypos 125
size 70
color "#FFFFFF"
text _("* CONTENT NOT SUITABLE FOR TWITCH OR YOUTUBE"):
style "nsfw_italic_text"
xalign 0.5
ypos 255
size 40
color "#FFFFFF"
vbox:
xalign 0.5
ypos 450
xsize 1050
if is_censored:
text _("TO VIEW THIS SCENE YOU MUST HAVE NSFW ENABLED"):
style "nsfw_text"
xalign 0.5
size 35
color "#FFFFFF"
text _("IN THE SETTINGS MENU"):
style "nsfw_text"
xalign 0.5
size 35
color "#FFFFFF"
else:
text _("YOU HAVE NSFW CONTENT ENABLED SO YOU MAY"):
style "nsfw_text"
xalign 0.5
size 35
color "#FFFFFF"
text _("CONTINUE TO VIEW THE FOLLOWING SCENE"):
style "nsfw_text"
xalign 0.5
size 35
color "#FFFFFF"
text _("OR YOU MAY CHOOSE TO SKIP THIS SCENE"):
style "nsfw_text"
xalign 0.5
ypos 730
xsize 1050
size 35
color "#FFFFFF"
if is_censored:
imagebutton:
idle "censored_settings"
hover "censored_settings_hover"
action ShowMenu("preferences")
xalign 0.5
ypos 555
else:
imagebutton:
idle "censored_continue"
hover "censored_continue_hover"
action Return()
xalign 0.5
ypos 555
imagebutton:
idle "censored_skip_scene"
hover "censored_skip_scene_hover"
action Jump(continue_label)
xalign 0.5
ypos 790
on "show" action Hide("phone_icon")
on "hide" action Show("phone_icon")
on "replace" action Hide("phone_icon")
on "replaced" action Show("phone_icon")