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

Remove Animation

Status
Not open for further replies.
Level 1
Joined
Apr 7, 2005
Messages
9
open the MDL by notepad and look down towards sequences. You find many

Code:
	Anim "Stand - 1" {
		Interval { 167, 1667 },
		MinimumExtent { -19.5992, -33.1796, -0.28233 },
		MaximumExtent { 52.4008, 36.7176, 99.0722 },
		BoundsRadius 62.4483,
	}
	Anim "Stand - 2" {
		Interval { 1833, 4333 },
		Rarity 4,
		MinimumExtent { -27.0629, -46.5617, -0.690621 },
		MaximumExtent { 59.4818, 42.1317, 99.4823 },
		BoundsRadius 63.9095,
	}
	Anim "Stand Victory" {
		Interval { 4500, 6833 },
		MinimumExtent { -25.6095, -52.7413, -0.528684 },
		MaximumExtent { 54.3427, 48.3475, 142.281 },
		BoundsRadius 82.3794,
	}
delete the Anim that no you want. If no you wanted Stand - 2 above would turn to

Code:
	Anim "Stand - 1" {
		Interval { 167, 1667 },
		MinimumExtent { -19.5992, -33.1796, -0.28233 },
		MaximumExtent { 52.4008, 36.7176, 99.0722 },
		BoundsRadius 62.4483,
	}
	Anim "Stand Victory" {
		Interval { 4500, 6833 },
		MinimumExtent { -25.6095, -52.7413, -0.528684 },
		MaximumExtent { 54.3427, 48.3475, 142.281 },
		BoundsRadius 82.3794,
	}
 
Status
Not open for further replies.
Top