MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Internal_OnMouseUp

Method Internal_OnMouseUp

Source/Engine/Platform/Window.cs:244–254  ·  view source on GitHub ↗
(ref Float2 mousePos, MouseButton button)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 1

OnMouseUpMethod · 0.45

Tested by

no test coverage detected