Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sephirot47/cfa991766d8aa2abc267 to your computer and use it in GitHub Desktop.
Save sephirot47/cfa991766d8aa2abc267 to your computer and use it in GitHub Desktop.
UE4 Little UMG or Set UMG size or Set UMG Position
/*
The key to this is to make a normal UMG, but use the Blueprint function SetAnchors, where Minimum and Maximum inputs to this function go from 0.0 -> 1.0 (normalized screen size).
For example, if I want to put an UMG which only occupies the right bottom corner of the screen, I would use:
SetAnchors, where Minimum = (0.5, 0.5) and Maximum = (1.0, 1.0)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment