我有一个简单的自定义光标代码,可以将光标从我的Content文件夹加载到Texutre2D,然后只需在Draw上绘制它。当我按住右键单击然后在我发布右键单击时切换回默认值时,如何对图像进行编程以进行更改?
答案 0 :(得分:1)
您必须在两个Texture2D
变量中加载纹理,然后只需检查Update
右侧按钮的状态。
if (mouse.RightButton == ButtonState.Pressed)
cursorTexture = pressedTexture;
else
cursorTexture = releasedTexture;
当然,cursorTexture
是您必须绘制的。