for some reason Mouse.IsChanged is always true, even while the mouse is not moving nor doing anything. is this by design ?
[Input("MouseState")](Input("MouseState"))
public IDiffSpread<MouseState> FMouseIn;
and
if (FMouseIn.IsChanged) {
FLogger.Log(LogType.Debug, "Mouse Changed");
}
what’s the pro way to do it ? :)