• 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.

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