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 » Fri May 21, 2021 10:48 am
This is the code, I don't know what statement the code is expecting
Code: Select all
init:
Transform sroLTxT:
xpos 0.0
ypos 0.0
linear 0.6 xpos -5.0
-
laure44
- Regular
- Posts: 60
- Joined: Mon Mar 08, 2021 10:55 pm
- Projects: Arkan'sTower, Gemshine Lorelei!
- Location: France
-
Contact:
#2
Post
by laure44 » Fri May 21, 2021 10:55 am
Hi,
Use transform instead of Transform.
Like this :
Code: Select all
init:
transform sroLTxT:
xpos 0.0
ypos 0.0
linear 0.6 xpos -5.0
-
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 » Fri May 21, 2021 10:57 am
laure44 wrote: ↑Fri May 21, 2021 10:55 am
Hi,
Use transform instead of Transform.
Like this :
Code: Select all
init:
transform sroLTxT:
xpos 0.0
ypos 0.0
linear 0.6 xpos -5.0
Im an idiot, tks a lot! that solved it.