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

Minor model edit request

Status
Not open for further replies.
Level 6
Joined
Jul 21, 2019
Messages
168
Hello, i wonder if anyone could please edit the Resurrection Stone model for me? i need two versions, one facing north-east and one facing north-west, ingame there are SW and SE facing version but i need the other two so i can cover all the corners of my map.

Thanks in advance
 
Level 20
Joined
Aug 13, 2013
Messages
1,696
I believe there's no native function for animating destructibles except for the trees resurrection or birth animation. If you're using the model as unit and not as destructible then you may also alter it's facing in unit properties.
 
Level 28
Joined
Feb 18, 2014
Messages
3,576
Or, you can simply use triggers to rotate the building.
  • Rotate Building
    • Events
    • Conditions
    • Actions
      • Set u = Resurrection Stone (southwest facing) 0001 <gen>
      • Custom script: call SetUnitPosition(udg_u, GetUnitX(udg_u), GetUnitY(udg_u))
      • Custom script: call SetUnitFacing(udg_u, 360)
 
Status
Not open for further replies.
Top