FSO.Vitaboy.Avatar.RemoveAppearance C# (CSharp) Method

RemoveAppearance() public method

Removes an Appearance instance from this avatar.
public RemoveAppearance ( AvatarAppearanceInstance appearance, bool dispose ) : void
appearance AvatarAppearanceInstance The Appearance instance to remove.
dispose bool Should the appearance be disposed?
return void
        public void RemoveAppearance(AvatarAppearanceInstance appearance, bool dispose)
        {
            foreach (var binding in appearance.Bindings)
            {
                RemoveBinding(binding, dispose);
            }
        }