Last active
June 12, 2017 17:38
-
-
Save joakimk/c406a43e28fa194c66a5752fb1b5d489 to your computer and use it in GitHub Desktop.
#live_coding Simple example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* jshint asi:true */ | |
// PixiJS v4 example (WebGL rendering) | |
model = loadStateOrDefaultTo({ | |
move: 1 | |
}) | |
tick = (delta) => { | |
if(codeHasChanged()) { return } | |
app.stage.removeChildren() | |
model.move += 2 * delta | |
move = model.move | |
for(i = 0; i < 7 * 2.5; i++) { | |
var container = new PIXI.Container() | |
var graphics = new PIXI.Graphics() | |
graphics.beginFill(0xAAAAAA * i * 33) | |
graphics.moveTo(0, 0) | |
graphics.lineTo(- 4, - 200) | |
graphics.lineTo(+ 4, - 2) | |
graphics.endFill() | |
container.addChild(graphics) | |
container.x = 300 + Math.sin(move * 0.002) * 300 | |
container.y = 300 + Math.cos(move * 0.005) * 50 | |
container.scale.x = 1 + (i * 0.5) | |
container.scale.y = i * 1 * (Math.sin(move * 0.008) + 0.1) * 100 | |
container.rotation = i * 0.36 + (Math.atan(move * 0.001) + 0.2) | |
app.stage.addChild(container) | |
} | |
saveState(model) | |
} | |
// Helper code below here ------------------------------------------------ | |
bootstrap = () => { | |
// We can only set up the GL context once | |
window.app = new PIXI.Application(800, 600, { antialias: true }) | |
liveViewElement.appendChild(app.view); | |
start() | |
} | |
start = () => { app.ticker.add(tick); app.stage.removeChildren() } | |
if(!window.depsLoaded) { | |
script = document.createElement("script") | |
script.src = "https://cdnjs.cloudflare.com/ajax/libs/pixi.js/4.5.1/pixi.min.js" | |
document.body.appendChild(script) | |
window.depsLoaded = true | |
setTimeout(bootstrap, 500) | |
} else { | |
start() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment