Files
2026-07-13 13:13:17 +08:00

16 lines
411 B
C#

using System;
using T3.Core.Operator.Slots;
namespace T3.Core.Operator.Interfaces;
/// <summary>
/// Allows operators to be controlled by a 3d transform gizmo
/// </summary>
public interface ITransformable
{
IInputSlot TranslationInput { get; }
IInputSlot RotationInput { get; }
IInputSlot ScaleInput { get; }
Action<Instance, EvaluationContext> TransformCallback { get; set; }
}