• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[JASS] Removing a unit variable, without removing the unit?

Status
Not open for further replies.
Level 3
Joined
Mar 27, 2004
Messages
70
If you mean a variable set using the handle variables, you just set that variable to null (or 0) and it is cleaned up.

If you mean a global or local variable, it makes no sense trying to remove them.
 
Level 7
Joined
May 6, 2005
Messages
390
You can't really remove variables, but by setting them to null they won't use the memory. This is only important with locals though, just do it at the end of the function.
 
Status
Not open for further replies.
Top