-
While trying to run the demos shown on the excalibur website, some demos do not run in the codesandbox. I'm running Firefox, v 95.0.1 In case of the platformer, the "mini-browser" in the codesandbox shows 502 bad gateway error, while for the breakout nothing is loaded/shown in the "mini-browser". I have tried refreshing, trying to run it with random interval in between to see if there was any issue particularly at the time I was trying to access, but for all tries, both of the examples don't run. Can someone confirm if this is reproducible, or just my issue? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The platformer definitely is no longer working for me in codesandbox, however the breakout did build for me and display for me in codesandbox. I pulled both locally as well to double check them. (platformer needed a small webpack tweak I've pushed, but breakout seems okay locally out of the box) I've had mixed luck with codesandbox recently, might be time to host on gh pages instead? One nice feature of codesandbox is the ability to easily play with the code samples and make changes. @kamranayub @jedeen Do you have any leads on a better tool? I'm half tempted to try and do what webglfundamentals does with their docs and build a custom embed. The tricky bit will be typescript/build tool support... |
Beta Was this translation helpful? Give feedback.
The platformer definitely is no longer working for me in codesandbox, however the breakout did build for me and display for me in codesandbox. I pulled both locally as well to double check them. (platformer needed a small webpack tweak I've pushed, but breakout seems okay locally out of the box)
I've had mixed luck with codesandbox recently, might be time to host on gh pages instead? One nice feature of codesandbox is the ability to easily play with the code samples and make changes.
@kamranayub @jedeen Do you have any leads on a better tool?
I'm half tempted to try and do what webglfundamentals does with their docs and build a custom embed. The tricky bit will be typescript/build tool su…