Possible to run without web server when not using images? #138
-
|
I'm interested to know if it's possible to get the game to run without a server by rendering using only shapes? I would expect to have to include LittleJS script in the body. |
Beta Was this translation helpful? Give feedback.
Answered by
KilledByAPixel
Oct 28, 2025
Replies: 1 comment
-
|
Yes! You can call engineInit without passing in any textures. It will still startup and you can use all the engine features. The Breakout tutorial actually does this by running without images. You can even create your own textures at run time, there is no demo for that yet but I have done this for js13k games before. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gingerbeardman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes! You can call engineInit without passing in any textures. It will still startup and you can use all the engine features.
The Breakout tutorial actually does this by running without images.
You can even create your own textures at run time, there is no demo for that yet but I have done this for js13k games before.