PrimaryClick
Introduction
Example
if(GuiManager.Cursor.PrimaryClick)
{
var circle = new Circle();
circle.Visible = true;
circle.X = GuiManager.Cursor.WorldXAt(0);
circle.Y = GuiManager.Cursor.WorldYAt(0);
}
Last updated
Was this helpful?