2009-02-20 18:04:35 +00:00
|
|
|
The Open Toolkit 0.9.3 Beta Release notes
|
2007-07-23 00:15:18 +00:00
|
|
|
|
2009-02-20 18:04:35 +00:00
|
|
|
This version introduces joystick support and improves improves the mouse and
|
|
|
|
keyboard interfaces.
|
2007-11-12 08:34:27 +00:00
|
|
|
|
2009-02-20 18:04:35 +00:00
|
|
|
Please report bugs any bugs you encounter at http://www.opentk.com.
|
2008-01-15 16:39:32 +00:00
|
|
|
|
2008-03-01 13:10:56 +00:00
|
|
|
|
2008-01-15 16:39:32 +00:00
|
|
|
|
2009-02-20 18:04:35 +00:00
|
|
|
API changes
|
2008-01-15 16:39:32 +00:00
|
|
|
|
2009-02-20 18:04:35 +00:00
|
|
|
The MouseDevice.ButtonDown and .ButtonUp events have changed signatures to better
|
|
|
|
conform to the BCL conventions. This is a breaking change. Please change your relevant
|
|
|
|
event handlers signatures from:
|
2007-07-23 00:15:18 +00:00
|
|
|
|
2009-02-20 18:04:35 +00:00
|
|
|
void ButtonHandler(MouseDevice sender, MouseButton button)
|
|
|
|
{
|
|
|
|
}
|
2009-02-13 22:19:43 +00:00
|
|
|
|
2009-02-20 18:04:35 +00:00
|
|
|
to:
|
2009-02-13 22:19:43 +00:00
|
|
|
|
2009-02-20 18:04:35 +00:00
|
|
|
void ButtonHandler(object sender, MouseButtonEventArgs e)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
The MouseDevice.XDelta, .YDelta and .WheelDelta properties have been deprecated and
|
|
|
|
will be removed at a later version. Please use the Move and WheelChanged events
|
|
|
|
instead, or track mouse deltas manually.
|