Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a continuation of work @paulhoux started with PR #2326, implementing a
CanvasUiclass, similar toCameraUibut for 2D canvas manipulation.This PR includes two samples, one exercising most of the functionality, CanvasUi, and another showing how to implement a mini-map paired with
CanvasUicalled CanvasUiMinimap.The implementation allows customization of hotkeys and mouse interactions, but by default uses middle, right, or alt-left clicking for panning, leaving left click for selecting. It also supports several hotkeys for zoom by default.
One key concept is the notion of a bounded vs. unbounded canvas. The former is required for "fitting" functionality, which allows automatic zoom to fit height, width, etc to the window. An unbounded canvas cannot be fit to a window but allows an infinite canvas.
It's challenging for a class like this to be "all things to all men" but I believe this addresses most of the common features typically needed and should simplify samples at the very least.


Tested on macOS, MSW and Linux.