使用MonoGame开发多平台游戏包括ios android uwp desktop macos默认情况下ios android uwp手机上运行使用的是touch或者是tap,desktop macos uwp电脑上使用的是mouse

MonoGame提供了一个开关,打开以后可以不考虑mouse情况,直接使用touch或者tap来代替鼠标点击状态。减少代码量!只需要在Game类的构造函数中加入:TouchPanel.EnableMouseTouchPoint = true

public Game1()
{
      graphics = new GraphicsDeviceManager(this);
      Content.RootDirectory = "Content";
      IsMouseVisible = true;
      TouchPanel.EnableMouseTouchPoint = true;
}