Skip to content

Instantly share code, notes, and snippets.

@mauriciomassaia
Created August 2, 2017 08:49
Show Gist options
  • Save mauriciomassaia/056edaf051349714a6461f7b961bf85b to your computer and use it in GitHub Desktop.
Save mauriciomassaia/056edaf051349714a6461f7b961bf85b to your computer and use it in GitHub Desktop.
Pixi Application es6
import { Application } from 'pixi.js'
const app = new Application({
width: window.innerWidth,
height: window.innerHeight,
resolution: window.devicePixelRatio || 1,
antialias: true
})
app.ticker.add(() => {
})
app.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment