PDA

View Full Version : RMXP - no more double size for pictures


Blizzy
July 4th, 2005, 12:17 PM
hated rmxp's picture double size?
follow this easy step:

in the script editor,
go to Game_Picture,
line 32/33.

you'll see:

@zoom_x = 100.0
@zoom_y = 100.0

what you need to do is change the 100.0 to 200.0:

@zoom_x = 200.0
@zoom_y = 200.0

what happens?
> it automaticly zooms into the picture.

why is this good?
> saves double sizing
> pictures are smaller in size (kb)

Neo Genesis
July 4th, 2005, 04:39 PM
Does this mean we dont have to convert resources?

Peekimon
July 4th, 2005, 07:44 PM
Cool code, virtual!
Neo Genesis: I don't think so, I think he means that you can hve RM2k3 sized images, and you wouldn't have to resize them yourself; and that RMXP does that automatically.

Edit: Post 1700, w00t!! XD

Datriot
July 7th, 2005, 05:36 AM
Yeah, very useful, thanks!