Skip to content
Advertisement

Is there a “repeat [function] until [property = true]” type of loop in MakeCode JS?

I’m making a game in Microsoft MakeCode Arcade for a school project, and I wanted to know if there was a “repeat [function] until [property = true]” type of loop like there is in Luau. I wanted to use this so that the game waits until my player sprite is at a certain coordinate to run some code. I figured out a way to do this in a different way, but I wanted to know just for future reference.

If anyone is wondering, this is what the alternative way I am using.

JavaScript

Advertisement

Answer

You could use either while loop or do...while loop

For while loop, the following code will keep on running as long as the condition is true.

JavaScript

For do...while loop, the following code will keep on running as long as the condition is true. And this loop will run at least once.

JavaScript

Coming back to your example, I believe you’re running the loop every 100ms (based on first argument of your game.onUpdateInterval.

You could easily do this by adding a timer function and wrap this loop in as an async function.

JavaScript

While I’m not 100% sure of the functionality of your current workaround, but this is my interpretation (Hope it works)

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement