UnionForever. Posted November 15 Share Posted November 15 I was recently creating a web game. Now, while creating graphics for this game (characters, map etc), I saw that under the HTML canvas API, drawing even a single line took 4 lines of code (not to mention you had to map out the coordinates of every point)- ctx.beginPath(); ctx.moveTo(100, 150); ctx.lineTo(100, 200); ctx.stroke(); I knew that things like mapping out coordinates and rewriting repeated methods can easily be done by a no-code tool. This led me to code Canvascript. It's a no-code tool for web game devs to quickly create mobile-friendly high-performance graphics, easily. Using it is simple, Just draw with your pointer on the HTML canvas, then get the code to render it. You can now draw curved lines too. You can use the tool here. What do you think about this? any feedback or suggestions? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.