• 🏆 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!

Doodad Hiding System?

Status
Not open for further replies.
This is probably what you were thinking of:
http://www.hiveworkshop.com/forums/jass-resources-412/destructablehider-219569/

It actually works for destructables, not doodads. There is a way to hide doodads, but it would be complex to implement since the only method is through:
JASS:
//============================================================================
// Doodad API
//
native SetDoodadAnimation       takes real x, real y, real radius, integer doodadID, boolean nearestOnly, string animName, boolean animRandom returns nothing
native SetDoodadAnimationRect   takes rect r, integer doodadID, string animName, boolean animRandom returns nothing

By putting in "hide" for the animation. (there may be a GUI equivalent too) However, you need to know the ID's of the doodads, there isn't a way to group the doodads in a rect the way you can with destructables.
 
Status
Not open for further replies.
Top