Docs: Fix SurfaceTool example caps typo

This commit is contained in:
archsolar 2023-03-29 13:19:34 +03:00 committed by Max Hilbrunner
parent 8f25cc2d13
commit 6719fea8dc

View file

@ -17,7 +17,7 @@
var st = new SurfaceTool(); var st = new SurfaceTool();
st.Begin(Mesh.PrimitiveType.Triangles); st.Begin(Mesh.PrimitiveType.Triangles);
st.SetColor(new Color(1, 0, 0)); st.SetColor(new Color(1, 0, 0));
st.SetUv(new Vector2(0, 0)); st.SetUV(new Vector2(0, 0));
st.AddVertex(new Vector3(0, 0, 0)); st.AddVertex(new Vector3(0, 0, 0));
[/csharp] [/csharp]
[/codeblocks] [/codeblocks]