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.
-
Ryue
- Miko-Class Veteran
- Posts: 745
- Joined: Fri Nov 02, 2012 8:41 am
- Projects: Red eyes in the darkness
-
Contact:
#1
Post
by Ryue » Mon Jul 18, 2016 11:08 am
I'm trying to show a screen and have it "move in" by pixellating it into position.
My first attempt was: show screen DescriptionMap("MapAlley") with pixellate which resulted in a end of line expected error.
Code: Select all
with pixellate
show screen DescriptionMap("MapAlley")
On the other hand pixellates the whole computer screen instead of only just what I want to move in.
So my question is: Is it possible to pixellate "just" that DescriptionMap?
What do I have to do?
For completeness sake here also the definition of the map:
Code: Select all
screen DescriptionMap(imageName):
frame:
xysize 1366,200
top_margin 30
left_margin 320
right_margin 320
background imageName
-
Ryue
- Miko-Class Veteran
- Posts: 745
- Joined: Fri Nov 02, 2012 8:41 am
- Projects: Red eyes in the darkness
-
Contact:
#3
Post
by Ryue » Mon Jul 18, 2016 4:01 pm
tnx I think it worked. (the screen itself is very small so not 100%^^')