Search found 5 matches

by Izzy
Fri Apr 27, 2018 11:59 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Command for deleting save files
Replies: 2
Views: 576

Re: Command for deleting save files

Ah, I found what I needed. Thank you!!! :D
by Izzy
Fri Apr 27, 2018 12:55 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Command for deleting save files
Replies: 2
Views: 576

[SOLVED] Command for deleting save files

Hello,

I was wondering if there was a command/piece of code that will delete all save files (like the saves for when you load your game). Additionally, if there is a link to the documentation, that would be fantastic.

Any help would be much appreciated. Thank you! :D
by Izzy
Tue Apr 17, 2018 4:26 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Adding displayables to main menu screen
Replies: 5
Views: 706

[SOLVED] Adding displayables to main menu screen

To apply a transform you need to use the keyword "at" So try this: add "images/izzymenu.png" at fly(0.5) Syntax error basically means the code you put in doesn't conform to the language's format, and usually references which line the syntax error is (I think). In this instance -...
by Izzy
Tue Apr 17, 2018 4:04 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Adding displayables to main menu screen
Replies: 5
Views: 706

Re: Adding displayables to main menu screen

Hey Qlara, Thank you for your response, now I know how to add images to the main menu! :D There is one more problem, however. I've defined a transformation, fly: transform fly(x): zoom x * 0.5 parallel: ease 1.5 zoom x And this is what I'm trying to do in screens.rpy, under 'add gui.main_menu_backgr...
by Izzy
Tue Apr 17, 2018 12:24 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Adding displayables to main menu screen
Replies: 5
Views: 706

[SOLVED] Adding displayables to main menu screen

Hello, I'm relatively new to Ren'Py, but I have a little bit of experience in javascript and python. Anyway, I was wondering how I can add a picture to the main menu screen (not the static background image you can configure in screens.rpy). I want to add a picture to the foreground, not just the bac...