Made GUI Movable, renamed mod

This commit is contained in:
Robert 2019-08-03 16:16:46 +02:00
parent c71ba064ce
commit 147f53a52d
3 changed files with 4 additions and 2 deletions

View file

@ -100,7 +100,9 @@ namespace CrosshairMod
// Renders the Panel, but also handles Updating the buttons
private static void RenderFunc(int windowID)
{
// Make Window draggable
GUI.DragWindow(new Rect(0, 0, 10000, 20));
// Draw the Length and Thickness Labels
GUI.Label(new Rect(60, 70, 120, 30), "Length: " + Settings.GetValue("crosshairLength"));
GUI.Label(new Rect(60, 110, 120, 30), "Thickness: " + Settings.GetValue("crosshairThickness"));

View file

@ -22,7 +22,7 @@ namespace CrosshairMod
* handling initializing and updating the components
* of the crosshair mod.
*/
public class Main : MonoBehaviour
public class CrosshairMod : MonoBehaviour
{
// Define Hotkeys for Menu and Crosshair Toggle
private char MENU_OPEN_KEY = 'H';