Component that runs at start and sets the global mouse visibility to visible so users can click UI. It overrides OnStart and assigns Mouse.Visibility.
namespace Sandbox;
// Just makes the mouse visible so you can click stuff
public class ExampleMouseEnabler : Component
{
protected override void OnStart()
{
Mouse.Visibility = MouseVisibility.Visible;
}
}