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

Make a standing unit creepily phase up through the floor?

Status
Not open for further replies.
Level 7
Joined
Jan 17, 2019
Messages
163
Making a boss fight where you pretty much stumble into a ghost council meeting and I want the boss units to slowly rise up from the floor one by one while they say their intro voicelines. Anyone know the most efficient way to make a standing unit float up through the ground?
 
Level 7
Joined
Feb 10, 2016
Messages
59
Sounds like you'd want to use a negative flying height for that.

A unit's flying height is only considered if its movement type is Hover or Fly, but that should be fine for ghosts anyway. Ground units like Wisps and Banshees use Hover, while flying units use Fly.

Units that fly have a minimum flying height (Movement - Height Minimum) as well as their normal flying height (Movement - Height) so you'll need to experiment with those a bit. Set them to equal values, and set them so that your boss units are completely below ground at first.

Later, when you want them to rise, use the trigger action Animation - Change Unit Flying Height to bring them up to (or slightly above) ground level, which is height 0.0 for most unit models. Keep in mind that the "rate" value in that action represents how much height the unit should gain per second.
 
Level 7
Joined
Jan 17, 2019
Messages
163
Got it to work! Had to make the units initial height hover and -250, then I have to trigger giving and removing Crow Form, after that the trigger to change their height and make them float up from the ground works! thanks!
 
Status
Not open for further replies.
Top