top of page

Placing Picasso

  • Writer: Michael Jusman
    Michael Jusman
  • Nov 29, 2023
  • 1 min read

Placing Picasso is a puzzle game based on cubism paintings that was made as a University project. The team had 3 people working on it, my role was as a programmer and UI. I also did the character animations in the game.

Project Description
  • Project Type : University project

  • Duration : 20 February 2023 - 7 May 2023

  • Engine : Unity

  • Language : C#

  • Roles : UI Designer, Programmer, Animator

  • Other Apps : Figma, Procreate, Photoshop, Illustrator, Excel

My Contributions
Mr. Moustache Animation & Reaction

When making the game, we wanted a way for the player to know how far they were from the correct location. we felt that we needed this function due to the fact that cubism painting can be quite abstract and the less artistically inclined players seems to struggle when assembling the puzzle. We decided that a companion of some sort was needed to guide the players by their reaction to what the player is doing.


This is Mr. Moustache, designed and created by another team member, Emily. I was tasked to create animations of him, creating different expression depending on how well the player were doing, along with some voice accompanying the animation.


Mr. Moustache himself is made out of separated pieces and was animated in Unity. We did it this way so that we could be more flexible with what expression he could have. It also reduced the workload on our artist, as she needed to make other paintings.


To control the expression Mr. Moustache gives, our other programmer, Lilli, who was in charge of gameplay, made a range parameter that I could adjust and call whichever reaction that I think fits what the player is doing.

Here is a code snippet from the function that I wrote:

public void ProtagonistAnim()
    {
        switch (characterEmotion)
        {
            case CharacterEmotion.Enter:
                textBox.text = "We need to restore the painting";
                break;
                
            ....
            
            case CharacterEmotion.Idle:
                anim.SetTrigger("Idle");
                textBox.text = "A few more pieces";
         }
     }

Here is an example of how Mr. Moustache reacts to gameplay:


Main Menu Gallery Hall
Other UI Programming

 
 

© 2035 by Michael Jusman. Powered and secured by Wix

bottom of page