SetCameraBoundsToRect
- Parameters
-
r rect
- return type
nothing
- Source code
function SetCameraBoundsToRect takes rect r returns nothing local real minX = GetRectMinX(r) local real minY = GetRectMinY(r) local real maxX = GetRectMaxX(r) local real maxY = GetRectMaxY(r) call SetCameraBounds(minX, minY, minX, maxY, maxX, maxY, maxX, minY) endfunction
- Source
- Blizzard.j
- wc3modding.com
- SetCameraBoundsToRect