• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[Solved] GetRectCenter() leaks?

Status
Not open for further replies.
Level 7
Joined
Mar 6, 2006
Messages
282
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.
 
Level 11
Joined
Oct 11, 2012
Messages
711
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.
Top