MTE with the "perfect config.lua file?"

by perfect lua file i mean this

http://www.coronalabs.com/blog/2012/12/04/the-ultimate-config-lua-file/

It makes it alot easier to get my UI to look the same on all screens, but the map zoom seems to be way too far in with this engine. 

what would be the best way to fix this?

-Paulo

The resolution (width and height) are set much lower in the perfect config.lua file than in my samples. You can fix this two ways: 1) change the width and height in the config.lua file for each device, or 2) change blockScale when you call a goto. The second option is the easiest as it requires just a single change.

Taking SonicFinale sample as an example, changing the blockScale on line 19 of main.lua from 350 to 150 will get you back to approximately the correct map zoom while using the perfect config.lua file.

worked perfectly :slight_smile: thanks dyson

The resolution (width and height) are set much lower in the perfect config.lua file than in my samples. You can fix this two ways: 1) change the width and height in the config.lua file for each device, or 2) change blockScale when you call a goto. The second option is the easiest as it requires just a single change.

Taking SonicFinale sample as an example, changing the blockScale on line 19 of main.lua from 350 to 150 will get you back to approximately the correct map zoom while using the perfect config.lua file.

worked perfectly :slight_smile: thanks dyson