Can i place RenPy statements within a Python block?
Posted: Fri Oct 03, 2014 7:49 am
Well, i do afraid this query leads to a really ugly coding solutions, but i was asked for this, and don't know the answer, so now i wonder.
Question is:
I know i can place a Python code within RenPy script, thats easy
what i need is once i'm on a python block to make a renpy statements something like:
though i thats pretty much to expect, so maybe something like
for now i think the best way to push renpy code within python block is statement equivalents, but i don't know equivalents to every statement,
and sometimes i don't have free time and/or effort to acknowledge, so need some solution that works no matter how ugly it is ^^ thanks for listen my tirades
Question is:
I know i can place a Python code within RenPy script, thats easy
Code: Select all
#my renpy statements
python:
#my python statements
Code: Select all
#my renpy statements
python:
#my python statements
RenPy():
#my other renpy statements
Code: Select all
python:
#my python statements
renpy.execute([
"transform transformexample:",
" xalign 0.0",
" linear 4 xalign 1.0",
" repeat"], init = True)
and sometimes i don't have free time and/or effort to acknowledge, so need some solution that works no matter how ugly it is ^^ thanks for listen my tirades