blueprint
Get Monitor Aspect Ratio – UI UMG
- Exposure: public
- UE Version: 4.25
Blueprint version of this StackOverflow answer
https://stackoverflow.com/a/1186465
function gcd (a,b): if b == 0: return a return gcd (b, a mod b)
ctrl + v