I wish I could make a dungeon crawler -esque game, but the stage is so small and there's no way to make the camera follow a sprite (if there is, lmk). What can I do to make the stage bigger or make it so that we aren't confined to the space provided?
The regular stage size is 480 x 360. You might want to try increasing the stage size using
(from the Getters and setters
library; don’t forget to enable Javascript extensions, through the Settings
pop-up menu).
You can change the stage size in options > Stage size. This option should be used if you aren't planning on changing the stage size later in the project (which is most cases).
Snap doesn't have a built in camera system, however you can make one yourself. I currently don't have the code to show you how to make it, but it is relatively simple.
TYSM! I appreciate the help
that being said, do you know where I can find a tutorial for the camera system? i cant find any on youtube
Move all other sprites in the opposite direction, and keep the sprite you are following in the middle. You could also write simple helper blocks to abstract that away.
{go to x: ((x #)) y: ((y #)) w/ camera::motion}::hat go to (list ((x::variables) - (cameraX)) ((y::variables) - (cameraY)) $<>)
I share this project with you, maybe it would help...
in food sprite:
Blobby doesn't move: all around blobby move...
ah. but what if i wants things to both move on their own (wandering) and also move in an open world?
change myX and myY