Page 1 of 1

Doubling NPC Size

Posted: Sun Aug 13, 2023 6:25 am
by Angel_Yohane
Sorry if this is a dumb question, but how do I double the size of an npc? I want to make the red SMB1 Cheep Cheep (NPC-28) to be 64x64, instead of 32x32. I tried doing the code below in a text document, but it didn't work. What am I doing wrong?

gfx-offset-x = 0
gfx-offset-y = 0
gfx-width = 64
gfx-height = 64
physical-width = 64
physical-height = 64
grid = 64
grid-offset-x = 0
grid-offset-y = 0

Re: Doubling NPC Size

Posted: Sun Aug 13, 2023 7:07 am
by deice
those look like parameters for the ini files which only affect how the npc shows up in the editor. you should have a file named "npc-28.txt" inside your level/episode folder and write the following into it instead:

Code: Select all

width=64
height=64
gfxwidth=64
gfxheight=64

Re: Doubling NPC Size

Posted: Sun Aug 13, 2023 9:37 am
by Angel_Yohane
There we go! Thank you so much! :D