Noaml1 Posted May 15, 2014 Share Posted May 15, 2014 Hi, i'm fairly new to JavaScript and very new to Phaser. I'm coming from developing in Java which has amazing content assist (i get the method names, parameters and if available, the description of the method for every object etc) and im wondering if theres a way to set this up with Phaser? I'm using the Aptana IDE and not having any content assist makes things way more difficult. Link to comment Share on other sites More sharing options...
nExt Posted May 16, 2014 Share Posted May 16, 2014 Hi, i'm fairly new to JavaScript and very new to Phaser. I'm coming from developing in Java which has amazing content assist (i get the method names, parameters and if available, the description of the method for every object etc) and im wondering if theres a way to set this up with Phaser? I'm using the Aptana IDE and not having any content assist makes things way more difficult.You can use webstorm .. or some ide code JS.. Link to comment Share on other sites More sharing options...
lewster32 Posted May 16, 2014 Share Posted May 16, 2014 Any recent version of Visual Studio (even Express, which is free) has Intellisense for JavaScript. Simply put phaser.js (the non-minified version) into the project folder somewhere, and at the top of your working files add:/// <reference path="phaser.js" />Altering the path to the file if necessary. This will enable Intellisense code completion and also show documentation for methods and properties as you code. Very handy! Link to comment Share on other sites More sharing options...
BitOfGold Posted May 16, 2014 Share Posted May 16, 2014 Intel XDK has very decent code completion, automatically if you include Phaser or other js library.BTW it has a fast device emulator too, very good IDE! Link to comment Share on other sites More sharing options...
Recommended Posts