[Solved] GetRectCenter() leaks?

Status
Not open for further replies.
Yes, GetRectCenter returns a location. Are you using JNGP? You can hold down Ctrl and click a BJ or native, and it will show it in the function list.

JASS:
function GetRectCenter takes rect whichRect returns location
    return Location(GetRectCenterX(whichRect), GetRectCenterY(whichRect))
endfunction

And technically that leaks a fogmodifier, but that's OK if you need it the entire game. If you're creating these and removing them later, you need to set them to a variable, and destroy them when you need to.
 
Yes, GetRectCenter returns a location. Are you using JNGP? You can hold down Ctrl and click a BJ or native, and it will show it in the function list.

JASS:
function GetRectCenter takes rect whichRect returns location
    return Location(GetRectCenterX(whichRect), GetRectCenterY(whichRect))
endfunction

And technically that leaks a fogmodifier, but that's OK if you need it the entire game. If you're creating these and removing them later, you need to set them to a variable, and destroy them when you need to.

Got it, thanks. :) +Rep
 
Status
Not open for further replies.
Back
Top