RMXP - no more double size for pictures

Blizzy

me = Scripter.new("Noob")
  • 492
    Posts
    20
    Years
    hated rmxp's picture double size?
    follow this easy step:

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

    you'll see:
    Code:
        @zoom_x = 100.0
        @zoom_y = 100.0
    what you need to do is change the 100.0 to 200.0:
    Code:
        @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)
     
    Does this mean we dont have to convert resources?
     
    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
     
    Back
    Top