Can you make a google drive link github is blocked on school-issued laptops
Is it possible this could work with any other extension?
What exactly are you trying to say? Most arcade extensions are compatible, so probably yes
such as raycasting
Yes, it should be able to work
Yeah, it works. I used path finding with raycasting in one of my games.
Yup, weâve been making this game on live stream and used path finding + raycasting together:
one thing to remember is that the sprite that is following the path must be smaller than (or equal to) one tile â we have to work around that in this game because we have a huge enemy following you. The way we do so making the âactualâ sprite follow around another, smaller sprite (that we donât show, you can just set it to a 1x1 image or something), and we have the smaller sprite be the one that is actually following the path / checking collisions.
This is probably the most useful extension I have used! I couldnât have made a lot of my projects if this didnât exist. Thank you!