Code Monkey home page Code Monkey logo

moople.js---html5-library's Introduction

moople.js---html5-library [0.15]

Library that makes canvas drawing a little bit easier.

[UNMAINTAINED]

Easy to create canvas

var game = new MoopleGame(800, 800, "canv", {update: update});

// 800 - width, 800 - height,
// "canv" - canvas id
//  update - function that is called 60 times per second

First of all, you need to create game scene

var myScene = new Scene();
myScene.show();
myScene.update();
--to close this scene and open a new one:
firstScene.hide();
secondScene.show();
secondScene.update();

Set scene background color

myScene.setColor("#27ae60");

Easy to load and add sprite

var sprite = myScene.addSprite("Cat", 0, 0, 200, 200); // 0 - x, 0 - y, 200 - width and height

Changing size and position

sprite.setSize(500,500);
or
sprite.width = 500;
sprite.height = 500;
sprite.x = 50;
sprite.y++;

Creating canvas text

text = myScene.addText('enemy1', '30px Arial', 'red', 200, 100);
1st parameter - text
2rd parameter - font and size
3th parameter - color
4 and 5 - x and y positions

moople.js---html5-library's People

Contributors

dandanxd avatar danmoop avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

kerrishotts

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.