All pastes #2068574 Raw Edit

Miscellany

public text v1 · immutable
#2068574 ·published 2011-05-24 17:30 UTC
rendered paste body
			var bullet:FlxSprite = new FlxSprite(playerShip.x, playerShip.y);
				bullet.makeGraphic(1,1,0xff333333);
				var drawShape:Shape = new Shape();
	drawShape.graphics.lineStyle(3, 0xff333333, 1);
	
	drawShape.graphics.moveTo(startX, startY);
	drawShape.graphics.lineTo(targetPoint.x, targetPoint.y);
	bullet.pixels.draw(drawShape)
	add(bullet);