# How to make tilemap tiles smaller?

**URL:** https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219
**Category:** Help
**Created:** [August 2, 2026, 6:08pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219 "2026-08-02T18:08:17Z")
**Posts on this page:** 10
**Page:** 1

<div class="post-metadata">

### Author: ![superOPScoder1](https://avatars.discourse-cdn.com/v4/letter/s/cdc98d/32.png) [@superOPScoder1](https://forum.makecode.com/u/superOPScoder1)
#### Post date: [August 2, 2026, 6:08pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/1 "2026-08-02T18:08:18Z")

</div>

I want the tilemap to be smaller? but not in the obvious way?

Made this image to help

 ![Screenshot 2026-08-02 14.36.32](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/3X/9/4/941c31e4d8ec16d59c862f37a41082000fdd04d2.png)

hope it helps

---

<div class="post-metadata">

### Author: ![Sword\_Studios](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/sword_studios/32/35216_2.png) [@Sword\_Studios](https://forum.makecode.com/u/Sword_Studios)
#### Post date: [August 2, 2026, 9:04pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/2 "2026-08-02T21:04:54Z")

</div>

If the “obvious way” is using the tile-util extension, I got nothing,

---

<div class="post-metadata">

### Author: ![CodaKnight](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/codaknight/32/33491_2.png) [@CodaKnight](https://forum.makecode.com/u/CodaKnight)
#### Post date: [August 2, 2026, 9:06pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/3 "2026-08-02T21:06:22Z")

</div>

You can use this extension too zoom out.

> **[GitHub - kiwiphoenix364/pxt-zoom: Extension for making the image that is currently...](https://github.com/kiwiphoenix364/pxt-zoom)**
>
> Extension for making the image that is currently on the screen be zoomed in!

Example:

> **[@superOPScoder1 (help)](https://arcade.makecode.com/S33822-30638-34196-58911)**
>
> Made with ❤️ in Microsoft MakeCode Arcade.

---

<div class="post-metadata">

### Author: ![PizzaBoi](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/pizzaboi/32/33932_2.png) [@PizzaBoi](https://forum.makecode.com/u/PizzaBoi)
#### Post date: [August 2, 2026, 9:08pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/4 "2026-08-02T21:08:13Z")

</div>

you can use this in javascript, namespace userconfig {

```
export const ARCADE_SCREEN_WIDTH = 224

```

export const ARCADE\_SCREEN\_HEIGHT = 256

}

---

<div class="post-metadata">

### Author: ![CodaKnight](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/codaknight/32/33491_2.png) [@CodaKnight](https://forum.makecode.com/u/CodaKnight)
#### Post date: [August 3, 2026, 5:03pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/5 "2026-08-03T17:03:54Z")

</div>

"Reformatted from @PizzaBoi "

```typescript
namespace userconfig {

export const ARCADE_SCREEN_WIDTH = 224
export const ARCADE_SCREEN_HEIGHT = 256

}

```

---

<div class="post-metadata">

### Author: ![VoxelMaster64](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/voxelmaster64/32/32075_2.png) [@VoxelMaster64](https://forum.makecode.com/u/VoxelMaster64)
#### Post date: [August 3, 2026, 5:14pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/6 "2026-08-03T17:14:12Z")

</div>

@superOPScoder1 The default screen size is

```typescript
namespace userconfig {
    export const ARCADE_SCREEN_WIDTH = 160
    export const ARCADE_SCREEN_HEIGHT = 120
}

```

But also you can’t change the screen size during runtime (as in you can’t change the size while in the game, it has to be at the start)

---

<div class="post-metadata">

### Author: ![superOPScoder1](https://avatars.discourse-cdn.com/v4/letter/s/cdc98d/32.png) [@superOPScoder1](https://forum.makecode.com/u/superOPScoder1)
#### Post date: [August 3, 2026, 9:19pm UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/7 "2026-08-03T21:19:25Z")

</div>

> [@CodaKnight](#):
>
> ```auto
> namespace userconfig {
> 
> export const ARCADE_SCREEN_WIDTH = 224
> export const ARCADE_SCREEN_HEIGHT = 256
> 
> }
> 
> ```

thanks everyone specifically the people that said the javascript the extension doesnt work thank you anyway tho

---

<div class="post-metadata">

### Author: ![superOPScoder1](https://avatars.discourse-cdn.com/v4/letter/s/cdc98d/32.png) [@superOPScoder1](https://forum.makecode.com/u/superOPScoder1)
#### Post date: [August 4, 2026, 3:10am UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/8 "2026-08-04T03:10:02Z")

</div>

By the way, Can this Javascript method be done with the Life and Score counters as well? They look so teeny now…

---

<div class="post-metadata">

### Author: ![CodaKnight](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/codaknight/32/33491_2.png) [@CodaKnight](https://forum.makecode.com/u/CodaKnight)
#### Post date: [August 5, 2026, 2:23am UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/9 "2026-08-05T02:23:45Z")

</div>

No. I’m pretty sure.

---

<div class="post-metadata">

### Author: ![VoxelMaster64](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/voxelmaster64/32/32075_2.png) [@VoxelMaster64](https://forum.makecode.com/u/VoxelMaster64)
#### Post date: [August 5, 2026, 2:27am UTC](https://forum.makecode.com/t/how-to-make-tilemap-tiles-smaller/45219/10 "2026-08-05T02:27:36Z")

</div>

probably not, but you could make your own.
