I Tried Making a 3D RPG Game in JavaScript

Follow me on: Twitter: Github: Here I tried making a 3d RPG game, completely from scratch in JavaScript/. I took some code from previous tutorials, such as player controllers and third person cameras, bolted on a few free assets like Quaternius’s models, and added some gameplay. The code could serve as a nice jumping off point for someone looking to make their own little browser rpg. Basically, I tried to code up the skeleton of your basic rpg in a couple days, using just JavaScript. All the elements, player stats, quests, inventory, enemies and AI are all there, in various stages. There’s a lot of improvements you could make here of course, adding more weaponry and items, magical powers and skills, bigger and badder enemies. But this will hopefully help you to understand how to use to get started on this type of project. Making the basic bones of a 3d rpg game isn’t too difficult. W
Back to Top