GithubHelp home page GithubHelp logo

scientific-coder / impi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from weavejester/impi

0.0 2.0 0.0 97 KB

ClojureScript library for using Pixi.js through immutable data

Clojure 99.38% HTML 0.62%

impi's Introduction

Impi

Impi is Imutable Pixi. It's a ClojureScript library for using Pixi.js through an immutable data structure.

This library is experimental. Experimental means the API is unstable, and may change significantly. Documentation will be sparse until the library is in a more usable state.

Installation

To install, add the following to your project :dependencies:

[impi "0.0.10"]

Usage

Impi has just two functions: mount and unmount.

We can mount a data structure that represents a Pixi scene onto a DOM node:

(impi/mount
 :example-scene
 {:pixi/renderer
  {:pixi.renderer/size [400 300]}
  :pixi/stage
  {:impi/key             :bunny
   :pixi.object/type     :pixi.object.type/sprite
   :pixi.object/position [200 150]
   :pixi.sprite/anchor   [0.5 0.5]
   :pixi.sprite/texture  {:pixi.texture/source "img/bunny.png"}}}
 (.getElementById js/document "app"))

When we've finished, we can unmount using the key we supplied:

(impi/unmount :example-scene)

Behind the curtain, Impi converts the immutable scene definition into a mutable object tree. The objects are cached, so incremental changes can be efficiently processed.

License

Copyright © 2016 James Reeves

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

impi's People

Contributors

weavejester avatar nbardy avatar

Watchers

 avatar James Cloos 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.