Just Spaceships!

Just Spaceships! – development notes

Just Spaceships! – poznatky z vývoje

Obsah

Contents

  1. Canvas
  2. Audio
  3. Network Síťová komunikace
  4. Miscellaneous Ostatní

Canvas

Canvas

Canvas – animace

Canvas – animation

var dirty = false;

var simulate = function() {    /* setTimeout(simulate, 1000/60); */
	if (...) { dirty = true; }
}

var animate = function() {     /* requestAnimationFrame(animate) */
	if (!dirty) { return; }
	dirty = false;
	redraw();
}

Canvas – špatné nápady

Canvas – bad ideas

Audio

Network

Síťová komunikace

Network – server

Síťová komunikace – server

Miscellaneous

Ostatní

Questions?

Prostor pro otázky