Page 1 of 1

Fast Block Resizing

Posted: Sat Apr 26, 2014 6:35 pm
by Sambo
I'm making a level where all of the blocks that are block-60 need to be resized to be 64 by 64 pixels, and I know how to do it but its annoying to go through the level file and replace so many numbers. I'm using Notepad++ for this. Is there a way that I can search and replace more than one row at a time?
Like if I want to find this:

Code: Select all

32
32
60
and replace it with this:

Code: Select all

64
64
60

Re: Fast Block Resizing

Posted: Sat Apr 26, 2014 6:52 pm
by FanofSMBX
Step 1: Find a 64x64 default block that you aren't using in your level.
Step 2: Place these where you'd like the other blocks to be.
Step 3: Go to the debugger, and block swap xxx to 60.

Re: Fast Block Resizing

Posted: Tue Apr 29, 2014 10:26 pm
by Sambo
That works. Thanks. I wonder why I didn't think of that. :)
This can be locked now.