Skip to content

Instantly share code, notes, and snippets.

@tlhunter
Created September 17, 2012 23:24
Show Gist options
  • Save tlhunter/3740381 to your computer and use it in GitHub Desktop.
Save tlhunter/3740381 to your computer and use it in GitHub Desktop.
Cobalt Calibur Draw Black
function render(redrawNametags) {
// immediately draw canvas as black
app.graphics.handle.fillStyle = "rgb(0,0,0)";
app.graphics.handle.fillRect(0, 0, app.graphics.viewport.WIDTH_PIXEL, app.graphics.viewport.HEIGHT_PIXEL);
var i, j;
var mapX = 0;
var mapY = 0;
var tile;
if (redrawNametags) app.graphics.nametags.hide();
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment