# Updates YOU want to see in Makecode

**URL:** https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713
**Category:** Forum Feedback
**Tags:** music, extension, make, game, demo
**Created:** [May 16, 2025, 7:39pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713 "2025-05-16T19:39:14Z")
**Posts on this page:** 15
**Page:** 27

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 24, 2026, 3:12am UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/523 "2026-09-24T03:12:29Z")

</div>

MakeCode uses real js (ts) but still

---

<div class="post-metadata">

### Author: ![ShadowWhisker](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/shadowwhisker/32/35148_2.png) [@ShadowWhisker](https://forum.makecode.com/u/ShadowWhisker)
#### Post date: [September 24, 2026, 3:16am UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/524 "2026-09-24T03:16:27Z")

</div>

How did that make you feel i was hating?! i was just pointing out… ughhhhhhhhhhh 😭

---

<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: [September 24, 2026, 4:46pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/525 "2026-09-24T16:46:12Z")

</div>

> **[Raycaster Simulator](https://c-minusminus.github.io/Makecode-3D-js/)**

This is my 3D engine on GitHub. The MakeCode version had a 100x100 screen (10,000 pixels), this has a 320x240 screen (76,800 pixels), which has 7.68 times more pixels. the other one ran at 6 fps on my Chromebook. This ran at 60. The code is mostly the same. The raycasting and play physics are the most expensive parts, and they were not changed. Mostly the controls and main loop to fit on js. [This](https://forum.makecode.com/t/3d-voxel-rendering-engine/42425/150) is the original project.

---

<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: [September 24, 2026, 4:55pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/526 "2026-09-24T16:55:46Z")

</div>

How many times do i have to tell you. The mods are people too and they have other things to do than the forums

---

<div class="post-metadata">

### Author: ![richard](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/richard/32/5417_2.png) [@richard](https://forum.makecode.com/u/richard)
#### Post date: [September 24, 2026, 4:56pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/527 "2026-09-24T16:56:21Z")

</div>

not me, i’m a pigeon!

---

<div class="post-metadata">

### Author: ![Dodec](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/dodec/32/20281_2.png) [@Dodec](https://forum.makecode.com/u/Dodec)
#### Post date: [September 24, 2026, 4:56pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/528 "2026-09-24T16:56:30Z")

</div>

Custom microsoft arcade theme color

---

<div class="post-metadata">

### Author: ![ThatCoder](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/thatcoder/32/29388_2.png) [@ThatCoder](https://forum.makecode.com/u/ThatCoder)
#### Post date: [September 24, 2026, 6:57pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/529 "2026-09-24T18:57:05Z")

</div>

They legit hired a pigeon onto the Makecode arcade team but not me! A human!

---

<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: [September 25, 2026, 9:21pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/530 "2026-09-25T21:21:56Z")

</div>

no it is not. If I do this in js:

```javascript
function add(a, b) { return a + b }
console.log(add)

```

in js, it should output:

```javascript
add(a, b) { return a + b }

```

in makecode, I do this:

```auto
function add (a: number, b: number) { return a + b }
console.log(add)

```

it outputs:

```typescript
function add__P4448(s) {
let r0 = s.r0, step = s.pc;
s.pc = -1;
while (true) {
if (yieldSteps-- < 0 && maybeYield(s, step, r0) || runtime !== pxsim.runtime) return null;
switch (step) {
case 0:
if (s.lambdaArgs) {
s.arg0 = (s.lambdaArgs[0]);
s.arg1 = (s.lambdaArgs[1]);
s.lambdaArgs = null;
}
r0 = (s.arg0 + s.arg1);
return leave(s, r0)
default: oops()
} } }

```

that is what makecode compiles your code into. cleaned up, it looks like:

```typescript
function add__P4448(s) {
    let r0 = s.r0, step = s.pc;
    s.pc = -1;
    while (true) {
        if (yieldSteps-- < 0 && maybeYield(s, step, r0) || runtime !== pxsim.runtime) return null;
        switch (step) {
            case 0:
                if (s.lambdaArgs) {
                    s.arg0 = (s.lambdaArgs[0]);
                    s.arg1 = (s.lambdaArgs[1]);
                    s.lambdaArgs = null;
                }
                r0 = (s.arg0 + s.arg1);
                return leave(s, r0)
            default: oops()
        }
    }
}

```

```auto

```

---

<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: [September 25, 2026, 9:22pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/531 "2026-09-25T21:22:08Z")

</div>

The best pigeon in the world

---

<div class="post-metadata">

### Author: ![kirbob](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/kirbob/32/34880_2.png) [@kirbob](https://forum.makecode.com/u/kirbob)
#### Post date: [September 25, 2026, 9:22pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/532 "2026-09-25T21:22:13Z")

</div>

> [@Sword\_Studios](#):
>
> How many times do i have to tell you. The mods are people and pigeons too and they have other things to do than the forums

i fixed it : )

---

<div class="post-metadata">

### Author: ![kirbob](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/kirbob/32/34880_2.png) [@kirbob](https://forum.makecode.com/u/kirbob)
#### Post date: [September 25, 2026, 9:22pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/533 "2026-09-25T21:22:16Z")

</div>

how dare u challenge the bird god of teh foruns

---

<div class="post-metadata">

### Author: ![RoboVacDev](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/robovacdev/32/29619_2.png) [@RoboVacDev](https://forum.makecode.com/u/RoboVacDev)
#### Post date: [September 25, 2026, 9:22pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/534 "2026-09-25T21:22:20Z")

</div>

They may have hired a pigeon, but no one said a **robot vacuum** could join!

---

<div class="post-metadata">

### Author: ![CopySprite](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/copysprite/32/35475_2.png) [@CopySprite](https://forum.makecode.com/u/CopySprite)
#### Post date: [September 25, 2026, 9:22pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/535 "2026-09-25T21:22:22Z")

</div>

You guys are human?

---

<div class="post-metadata">

### Author: ![TheEarth](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/theearth/32/34579_2.png) [@TheEarth](https://forum.makecode.com/u/TheEarth)
#### Post date: [September 25, 2026, 9:22pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/536 "2026-09-25T21:22:24Z")

</div>

That’s true the version you see on stream is a puppet and the pigeon knows ventriloquism

---

<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: [September 25, 2026, 9:22pm UTC](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713/537 "2026-09-25T21:22:27Z")

</div>

An array of all sprites block. not of kind. just sprites in general.

[Previous page](https://forum.makecode.com/t/updates-you-want-to-see-in-makecode/36713.md?page=26)
