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

Method Internal_OnMouseMove

Source/Engine/Platform/Window.cs:280–286  ·  view source on GitHub ↗
(ref Float2 mousePos)

Source from the content-addressed store, hash-verified

278 }
279
280 internal void Internal_OnMouseMove(ref Float2 mousePos)
281 {
282 var pos = mousePos / DpiScale;
283
284 MouseMove?.Invoke(ref pos);
285 GUI.OnMouseMove(pos);
286 }
287
288 internal void Internal_OnMouseMoveRelative(ref Float2 motion)
289 {

Callers

nothing calls this directly

Calls 1

OnMouseMoveMethod · 0.45

Tested by

no test coverage detected