This repository contains the Scarlett Editor Module and associated libraries. At the moment this software is in Development Stage and not ready for production use.
The Scarlett Editor can run in all common Operative Systems including Windows, MacOS and Linux.
$ npm install
for dependency resolution$ npm start
to run the software$ npm install -g grunt-cli
in your terminal$ gem install sass
in your terminal$ npm install
for dependency resolution$ npm start
to run the softwareScarlett Editor depends on the Scarlett Framework. In order to make the editor aware of its location, you need to use symlinks:
$ cd ~/projects/scarlett-framework
go into the framework directory$ npm link
create a global link of the framework package$ cd ~/projects/scarlett-editor
go into the editor directory$ npm link @scarlett-game-studio/scarlett-framework
link install the frameworkscarlett-editor/node_modules
should now have the framework within. Rebuilding the framework with:
$ npm run build:editor
or $ npm run build:all
and refreshing/restarting the editor should be enough to update the framework version within the editor.
$ grunt
in the root folder This project uses the latest Ecma6 Javascript features and therefore if you are using an IDE such as IntelliJ or Webstorm it might detect code errors when using the default settings.
To allow Ecma6 syntax make sure to change the Javascript Version in the settings menu (Settings -> Languages & Frameworks -> Javascript).