From 70f1c6a80793f75939d05b7eeacc93e23b0c5ddc Mon Sep 17 00:00:00 2001 From: Nova Date: Fri, 29 Oct 2021 00:45:27 -0500 Subject: [PATCH] cursor go brrrrrr --- Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Program.cs b/Program.cs index 44292f6..92de6fd 100644 --- a/Program.cs +++ b/Program.cs @@ -8,6 +8,8 @@ class Program { settings.assetsFolder = "Assets"; SK.Initialize(settings); + Model cursor = Model.FromFile("cursor.glb"); + ColorCube cube = new ColorCube(); OrbitalView.strength = 4; OrbitalView.distance = 0.4f; @@ -17,6 +19,8 @@ class Program { Matrix orbitMatrix = OrbitalView.transform; cube.Step(Matrix.S(Vec3.One * 0.2f) * orbitMatrix); Default.MaterialHand["color"] = cube.color; + + cursor.Draw(Matrix.S(0.1f)); })); SK.Shutdown(); }