Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
-
neometalero
- Regular
- Posts: 181
- Joined: Sun Oct 23, 2016 3:51 am
- Completed: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Projects: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Deviantart: neometalero
-
Contact:
#1
Post
by neometalero » Tue Apr 19, 2022 12:50 pm
I have this screen that shows with a transformation
Code: Select all
show screen palabraIra at saltoRapido
but Im getting the error
"end of line expected", no idea what im doing wrong.
-
Xiael
- Regular
- Posts: 31
- Joined: Thu Aug 06, 2020 9:13 am
- itch: Xiael
- Discord: message me first here
-
Contact:
#2
Post
by Xiael » Tue Apr 19, 2022 1:14 pm
Does the error go away if you delete "at saltoRapido"?
If yes then you can't use transforms with screens. What you can do is that you can but the transform inside your screen and add an on show/hide to it.
Like so:
Code: Select all
transform transformName:
on show:
alpha 0
linear 1 alpha 1
on hide:
alpha 1
linear 1 alpha 0
screen screenName:
frame at transformName:
text "stuff"
-
neometalero
- Regular
- Posts: 181
- Joined: Sun Oct 23, 2016 3:51 am
- Completed: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Projects: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Deviantart: neometalero
-
Contact:
#3
Post
by neometalero » Tue Apr 19, 2022 3:26 pm
Xiael wrote: ↑Tue Apr 19, 2022 1:14 pm
Does the error go away if you delete "at saltoRapido"?
If yes then you can't use transforms with screens. What you can do is that you can but the transform inside your screen and add an on show/hide to it.
Like so:
Code: Select all
transform transformName:
on show:
alpha 0
linear 1 alpha 1
on hide:
alpha 1
linear 1 alpha 0
screen screenName:
frame at transformName:
text "stuff"
That was the solution, tks!
-
neometalero
- Regular
- Posts: 181
- Joined: Sun Oct 23, 2016 3:51 am
- Completed: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Projects: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Deviantart: neometalero
-
Contact:
#4
Post
by neometalero » Tue Apr 19, 2022 3:32 pm
The only problem I have now it's the frame, there is any way to do this without the frame being shown?
-
neometalero
- Regular
- Posts: 181
- Joined: Sun Oct 23, 2016 3:51 am
- Completed: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Projects: My Dream Sport Dating Simulator, Attack Helicopter Dating Simulator
- Deviantart: neometalero
-
Contact:
#5
Post
by neometalero » Tue Apr 19, 2022 3:43 pm
I solved it using an imagebutton
Code: Select all
screen palabraIra:
imagebutton at saltoRapido:
idle "BotonesOpcion/pp01.png"
hover "BotonesOpcion/pph01.png"
action [Jump("situacion09IraSum")]
text "{size=+40} [eligIra] [pers1Ira] {/size} " at saltoRapido #muestra la palabra elegida
-
Alex
- Lemma-Class Veteran
- Posts: 2981
- Joined: Fri Dec 11, 2009 5:25 pm
-
Contact:
#6
Post
by Alex » Tue Apr 19, 2022 3:57 pm
neometalero wrote: ↑Tue Apr 19, 2022 3:32 pm
The only problem I have now it's the frame, there is any way to do this without the frame being shown?
You can set frame's background to None
Code: Select all
frame:
background None
at saltoRapido
text "???"
Users browsing this forum: Google [Bot]