Minor Project 8: Pseudo Code has been posted on the blog previously:
http://zckohlberg-gdd200.blogspot.com/2012/03/minor-project-8.html
Minor Project 11: Write a function that responds to a listener, function below:
public function fl_KeyboardDownHandler(event:KeyboardEvent):void
{
switch (event.keyCode)
{
case Keyboard.A:
case Keyboard.LEFT:
hspeed = -6;
break;
case Keyboard.D:
case Keyboard.RIGHT:
hspeed = 6;
break;
case Keyboard.W:
case Keyboard.UP:
vspeed = -6;
break;
case Keyboard.S:
case Keyboard.DOWN:
vspeed = 6;
break;
}
}
Minor Project 14: I believe we went over this problem in class. My primary issue at the time was using the line-drawing function to display attacks from the turrets.
Major Project 12: The checklist created after Professor Faye's class has been posted on this blog:
http://zckohlberg-gdd200.blogspot.com/2012/04/prioritized-task-list.html
No comments:
Post a Comment