• 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.
  • It's time for the first HD Modeling Contest of 2025. Join the theme discussion for Hive's HD Modeling Contest #7! Click here to post your idea!

One unit with many model

Status
Not open for further replies.
Level 25
Joined
Mar 29, 2020
Messages
1,465
do you mean have it morph?

if you actually want to show 2 models at the same time you would need to combine the models into 1 model file that knows how to apply all the animations together. this is probably not a huge deal for good modelers. maybe you can find someone in the modeling requests area to help you stick the units together.

another way to go about it would be to create a dummy model and use knockback and stuff like that to "stick" it to the other model. and also trigger it's animations to mimic the other model. sounds like a mess, but should be possible.
 
Last edited:

Uncle

Warcraft Moderator
Level 71
Joined
Aug 10, 2018
Messages
7,543
If you mean morph, we also have the Set Unit Skin function on more recent versions. I recommend using Custom script for this one, the GUI version is janky.
The function is also a little buggy sometimes.

This will set the unit's skin to Archmage or footman:
  • Set Variable SkinUnit = Some unit
  • Custom script: call BlzSetUnitSkin(udg_SkinUnit, 'Hamg')
  • Custom script: call BlzSetUnitSkin(udg_SkinUnit, 'hfoo')
 
Level 5
Joined
Jun 20, 2019
Messages
100
do you mean have it morph?

if you actually want to show 2 models at the same time you would need to combine the models into 1 model file that knows how to apply all the animations together. this is probably not a huge deal for good modelers. maybe you can find someone in the modeling requests area to help you stick the units together.

another way to go about it would be to create a dummy model and use knockback and stuff like that to "stick" it to the other model. and also trigger it's animations to mimic the other model. sounds like a mess, but should be possible.
do creating a model with different morph in 1 unit mean we have to create an ability so it can turn to uther midel, right?
 

Uncle

Warcraft Moderator
Level 71
Joined
Aug 10, 2018
Messages
7,543
When you reply, make sure your comment is separate from the quote.

Morph abilities have two fields, Normal unit and Alternate unit. A single ability can be used to transform between both forms.
Normal -> Alternate. Alternate -> Normal.

Look at any of the existing morph abilities as examples. Storm Crow Form, Bear Form, Metamorphosis, Chemical Rage, etc...
 
Status
Not open for further replies.
Top