Zip up your submissions with your NYU id as the file name (e.g. rn47.zip) and upload them to this google drive folder by next class. Do not include the Library, Temp or Logs folders from your Unity projects or your zip file will be gigantic! Include only the following files and folders in your submission (your .sln file will be named differently):
Remember that your best efforts and attempts are what counts the most! We will discuss this on Monday.
Your homework is to use Unity's Mesh API to recreate this iconic interaction from Mario 64.
I'm going to ask you to make a Unity project from scratch again. Remember some key things from class:
// get access to the mesh in the mesh on the MeshFilter component
Mesh mesh = GetComponent<MeshFilter>().mesh;
// read the vertex positions
mesh.vertices
// write back the vertex positions
mesh.SetVertices()