Giter VIP home page Giter VIP logo

generator-crafty's Introduction

generator-crafty

Features

  • CraftyJS project skeleton
  • CraftyJS scaffolding for:
    • Scenes
    • Components

And it's an awesome Yeoman generator:

  • Test server with live reloading
  • Project building using Grunt
  • etc...

Decription

Yeoman.io generator for CraftyJS game engine.

Prerequisite Installation (Node, NPM, and Yeoman)

npm install -g yo

Usage

Install generator-crafty:

npm install -g generator-crafty

Make a new directory, and cd into it:

mkdir my-new-project && cd $_

Run yo crafty and talk with Yeoman, he creates the project skeleton for you

Now creating a new CraftyJS scene is as easy as running yo crafty:scene MyScene

You called the scene subgenerator with the argument MyScene.
   create app/scripts/scenes/MyScene.js

Now we can edit the just created scene, here's an example:

Crafty.scene('MyScene', function() {
  var Block = Crafty.e('2D, Canvas, Color')
    .attr({
      x: 100,
      y: 100,
      w: 50,
      h: 50
    })
    .color('rgb(20, 185, 40)');
}, function() {
  // destructor
});

And editing the game.js file:

'use strict';

var Game = {
  // Initialize and start our game
  start: function () {
    Crafty.load([ ], function () {

      // Start crafty and set a background color so that we can see it's working
      Crafty.init(400, 600);
      Crafty.background('#66D124');

      // Simply start splashscreen
      Crafty.scene('splash');
    });
  }
};

Game.start();

Previewing your game

Now you can test your beautiful creation in the browser by running grunt serve. With live reloading you can edit your projects files and see the magic happen in your browser almost instantly, how cool is that?

Build for distribution

Are you ready for liftoff? Run grunt build and check out the dist directory in your projects root.

generator-crafty's People

Contributors

sgmeyer avatar weeezes avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.