i forgot this site existed fun to see that people are modding the project but i left it in such an unfinished state that i think they should just make their own game atp
was just curious.
ah ok. thanks for coming back soly from this LOL
also, while i was looking at your devlog, i noticed that your ingame screenshots and sprites have a lot more pixels and colours than what makecode arcade can offer, and it looks great! i might have missed something, but is this a different game engine? a reason why i stopped using makecode arcade was because of the small palette size
Oh, yeah. This is MakeCode. The screen resolution was changed with this function in Javascript. 160x152 is just a placeholder, the resolution can be whatever you want. Although, doing something like 400×400 will tank the fps.
userconfig {
export const ARCADE_SCREEN_WIDTH = 160
export const ARCADE_SCREEN_HEIGHT = 152
}
And there’s still only 15 colors, I just did a crazy amount of pallette optimization. Here’s what I use for mine:
Note: Some colors have been modified or removed since the first few versions like amy’s pink.
All running in Makecode Arcade:
for me the javascript doesnt work
i never knew you could change the screen size, thanks for telling me! also that was really smart of you to use flying battery to fit sonic and tails’ colour palettes. i wish you the best for your game!
Oh gosh, it’s terrifying
Oh, yeah, thanks! Good luck with whatever you do in the future.
thank you I hate it
You need to use namespace in front of userconfig
Community Opinions Poll
New poll! This is just to see how people are feeling about the game, nothing too special. Answer honestly andstuff, afterall it’s still not playable for the public yet so I don’t expect anything too high here.
- Very Excited
- Cautiously Optimistic
- Neutral (Just Looking sometimes)
- Not interested
- Worried
controller.A.onEvent(ControllerButtonEvent.Pressed, function () {
namespace userconfig {
export const ARCADE_SCREEN_WIDTH = 160
export const ARCADE_SCREEN_HEIGHT = 152
}
When I use this it is showing error.
Problem
Line 313: A namespace declaration is only allowed in a s namespace or module.
Yes, it has to be set outside of a loop.
It Must Be Set When The game Starts, It Cannot be changed when the game is happening