// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
using UltimateXR.Core;
namespace UltimateXR.Avatar
{
///
/// Contains information about an avatar update event.
///
public class UxrAvatarUpdateEventArgs : UxrAvatarEventArgs
{
#region Public Types & Data
///
/// Gets the update stage the update event belongs to.
///
public UxrUpdateStage UpdateStage { get; }
#endregion
#region Constructors & Finalizer
///
/// Constructor.
///
/// Avatar the event describes
/// Update stage the event belongs to
public UxrAvatarUpdateEventArgs(UxrAvatar avatar, UxrUpdateStage updateStage) : base(avatar)
{
UpdateStage = updateStage;
}
#endregion
}
}