Creating a word Scramble game where you can drag and drop the word and create a complete word. (drag and drop word Scramble game).
Creating a word game using phaser game engine which is a javascript based gaming engine where u can drag and drop world like Word Scramble Game and complete a given word. your index.html file look like below < html > < head > < script src = "src/phaser.min.js" ></ script > < script src = "src/wordGame.js" ></ script > < script src = "src/main.js" ></ script > </ head > < body > </ body > </ html > 1. <script src="src/phaser.min.js"></script> required to run the phaser game engine. 2. rest of the two files deals with game logics <script src="src/wordGame.js"></script> <script src="src/main.js"></script> you can download whole project from https://github.com/manishchauhan/wordgame/tree/master just copy and paste the project in your local server and run ...
Comments
Post a Comment