Upload files to 'project_manager'

This commit is contained in:
Jeison Yehuda Amihud (Blender Dumbass) 2020-12-25 14:22:28 +00:00
parent 7229c4620b
commit 98e176fec2

View file

@ -318,17 +318,37 @@ def layer(win):
# Wiki # Wiki
# Tutorials about VCStudio.
UI_color.set(layer, win, "text_normal")
layer.move_to(120, current_Y+win.scroll["pm_help"])
layer.set_font_size(20)
layer.show_text(talk.text("help_read_wiki"))
current_Y = current_Y+20
tutorials = [
["Documenation | Installation | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Installation+%7C+Version+20.128"],
["Documenation | Project Manager | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Project+Manager+%7C+Version+20.128"],
["Documenation | Story Editor | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Story+Editor+%7C+Version+20.128+"],
["Documenation | Script Writer | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Script+Writer+%7C+Version+20.128"],
["Documenation | Analytics | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Analytics+%7C+Version+20.128"],
["Documenation | Assets | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Assets+%7C+Version+20.128"],
["Documenation | Linking Assets | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Linking+Assets+%7C+Version+20.128"],
["Documenation | Rendering | Version 20.128", "https://notabug.org/jyamihud/VCStudio/wiki/Documenation+%7C+Rendering+%7C+Version+20.128"]
]
for tutorial in tutorials:
def do(): def do():
os.system("xdg-open https://notabug.org/jyamihud/VCStudio/wiki/_pages") os.system("xdg-open "+tutorial[1])
UI_elements.roundrect(layer, win, UI_elements.roundrect(layer, win,
110, 110,
current_Y+win.scroll["pm_help"]-25, current_Y+win.scroll["pm_help"],
win.current["w"]-250, win.current["w"]-250,
40, 40,
10, 10,
button=do, button=do,
icon="internet", icon="scene",
tip="https://notabug.org/jyamihud/VCStudio/wiki/_pages", tip=tutorial[1],
clip=[ clip=[
100, 100,
110, 110,
@ -337,9 +357,12 @@ def layer(win):
]) ])
UI_color.set(layer, win, "text_normal") UI_color.set(layer, win, "text_normal")
layer.move_to(160, current_Y+win.scroll["pm_help"]) layer.move_to(160, current_Y+win.scroll["pm_help"]+25)
layer.set_font_size(20) layer.set_font_size(20)
layer.show_text(talk.text("help_read_wiki")) layer.show_text(tutorial[0])
current_Y = current_Y+50
current_Y += 60 current_Y += 60