How would I make a makecode game able to be played on only one screen with multiple people?
Basically local multiplayer
How would I make a makecode game able to be played on only one screen with multiple people?
Basically local multiplayer
There are a set of controller commands for ‘player 2’ (which should be default, although they might be in the ‘controller’ extension)! IDK how to do more than 2 though.
Nevermind… i am stupid and didnt notice you could use JKIL, U, and O to control player 2
Use the split-screen and multiplayer extension
very useful
looked further into this topic and @richard seems to be working on this, it wont be an actual feature for a long time. sorry
Its Quite Simple @Lilvince, So Basically you must Download the Multiplayer Extension by clicking the exact center of the plus button, one INCH off and it wont show up, Now that you are in the Super Secret Extension Menu you must scroll up and down 5 time and then search multiplayer, if you don’t know how to spell it this is the spelling
M U L T I P L A Y E R
Now that you installed it you must discover the meaning of life, for it to work.
I have passed to you the wisdom of my sensei in the art of Makecode, I do this on a daily basis, good luck traveler
set a new invisible sprite that is on game update set to the average two players x’s and y’s and the camera follows
I like to use the split screen extension for this. It’s pretty easy to use and fairly customizable. You can access it with this link
When using this I also recommend changing the screen resolution in JavaScript. This is so the screen can be bigger and easier for two separate screens. Paste this into JavaScript
namespace userconfig {
export const ARCADE_SCREEN_WIDTH = 320
export const ARCADE_SCREEN_HEIGHT = 240
}
You can convert into blocks afterwards if you want, the screen resolution won’t revert.