LIBOMV-379 Added Animation type support to wrapper creation in AssetManager

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2218 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2008-09-13 03:16:21 +00:00
parent cc91647129
commit 038c6eede0

View File

@@ -888,6 +888,9 @@ namespace OpenMetaverse
case AssetType.Bodypart:
asset = new AssetBodypart();
break;
case AssetType.Animation:
asset = new AssetAnimation();
break;
default:
Logger.Log("Unimplemented asset type: " + type, Helpers.LogLevel.Error, Client);
return null;