19 lines
460 B
C#
19 lines
460 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Experimental.StateVisualizer
|
|
{
|
|
/// <summary>
|
|
/// The animatable properties of a game object. Utilized in the StateVisualizer component.
|
|
/// </summary>
|
|
public enum AnimatableProperty
|
|
{
|
|
ScaleOffset = 0,
|
|
Color,
|
|
PositionOffset,
|
|
ShaderFloat,
|
|
ShaderColor,
|
|
ShaderVector
|
|
}
|
|
}
|