Skip to content

Commit

Permalink
updated customer todos
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviaxjiang committed Apr 14, 2024
1 parent 997e529 commit 8b3cd9e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/com/raccoon/mygame/models/Customer.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,13 @@ public void draw(float scaleX, float scaleY) {
}

// //todo still shows when order has been taken, and when order has been satisfied, and also weird that doesn't show for some customers
// //todo essentially, i only want this to show during WAIT and if order has not been taken
// if(controller.state == CustomerAIController.FSMState.WAIT && !satisfied && !show){
// question.drawCustomerQuestion(canvas,this.getX(),this.getY()+10,this.drawScale.x,this.drawScale.y);
// }

//why does this work and the above doesnt ;-;
//todo implement thumbs up thumbs down differentiation later
if(satisfied){
thumbsUp.drawCustomerQuestion(canvas,this.getX(),this.getY()+3,this.drawScale.x,this.drawScale.y);
}
Expand Down

0 comments on commit 8b3cd9e

Please sign in to comment.