HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Removing Animation with MDL editor?

10-10-2003, 10:01 PM#1
Dark_MoonRider
[Title] is it possible? If yes plz tell me how....
10-12-2003, 01:31 PM#2
Oinkerwinkle
It is possible. Just go into the sequences section and delete the one you want gone. Be sure to change the number of sequences to one less than what is was at, as specified at the top of the sequences section.

An example: removing the walk animation.
Before:
Code:
Sequences 3 {
	Anim "Walk" {
		Interval { 41, 1166 },
		MinimumExtent { -10, -17.7064, 0 },
		MaximumExtent { 10, 10, 59.6984 },
		BoundsRadius 60.1279,
	}
	Anim "Stand" {
		Interval { 1200, 1300 },
		MinimumExtent { -10, -17.7064, 0 },
		MaximumExtent { 10, 10, 59.6984 },
		BoundsRadius 60.1279,
	}
	Anim "Death" {
		Interval { 2000, 3000 },
		NonLooping,
		MinimumExtent { -10, -17.7064, 0 },
		MaximumExtent { 10, 10, 59.6984 },
		BoundsRadius 60.1279,
	}
}
After:
Code:
Sequences [b]2[/b] {
	Anim "Stand" {
		Interval { 1200, 1300 },
		MinimumExtent { -10, -17.7064, 0 },
		MaximumExtent { 10, 10, 59.6984 },
		BoundsRadius 60.1279,
	}
	Anim "Death" {
		Interval { 2000, 3000 },
		NonLooping,
		MinimumExtent { -10, -17.7064, 0 },
		MaximumExtent { 10, 10, 59.6984 },
		BoundsRadius 60.1279,
	}
}
10-12-2003, 01:45 PM#3
Dark_MoonRider
hey thanks alot!!!!