mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Nodes - Added color gradient pin type Data bindings - Changed color gradient data bindings to now take a color gradient
32 lines
789 B
C#
32 lines
789 B
C#
namespace Artemis.Core;
|
|
|
|
/// <summary>
|
|
/// Represents the position of a node's custom view model.
|
|
/// </summary>
|
|
public enum CustomNodeViewModelPosition
|
|
{
|
|
/// <summary>
|
|
/// Puts the view model above the pins.
|
|
/// </summary>
|
|
AbovePins,
|
|
|
|
/// <summary>
|
|
/// Puts the view model between the pins, vertically aligned to the top.
|
|
/// </summary>
|
|
BetweenPinsTop,
|
|
|
|
/// <summary>
|
|
/// Puts the view model between the pins, vertically aligned to the center.
|
|
/// </summary>
|
|
BetweenPinsCenter,
|
|
|
|
/// <summary>
|
|
/// Puts the view model between the pins, vertically aligned to the bottom.
|
|
/// </summary>
|
|
BetweenPinsBottom,
|
|
|
|
/// <summary>
|
|
/// Puts the view model below the pins.
|
|
/// </summary>
|
|
BelowPins
|
|
} |