(ref Float2 mousePos, MouseButton button)
| 242 | } |
| 243 | |
| 244 | internal void Internal_OnMouseUp(ref Float2 mousePos, MouseButton button) |
| 245 | { |
| 246 | var pos = mousePos / DpiScale; |
| 247 | |
| 248 | bool handled = false; |
| 249 | MouseUp?.Invoke(ref pos, button, ref handled); |
| 250 | if (handled) |
| 251 | return; |
| 252 | |
| 253 | GUI.OnMouseUp(pos, button); |
| 254 | } |
| 255 | |
| 256 | internal void Internal_OnMouseDoubleClick(ref Float2 mousePos, MouseButton button) |
| 257 | { |