<!doctype html>
<html>
<head><title>Code Tutorial</title></head>
<body>
<main>
<h1>Mesh Deformation</h1>
<p>Attach this component to a Unity mesh.</p>
<pre><code class="language-csharp">public class MeshDeformer : MonoBehaviour
{
void Update()
{
Debug.Log("deform");
}
}
</code></pre>
</main>
</body>
</html>