13 lines
213 B
C#
13 lines
213 B
C#
using UnityEngine;
|
|
|
|
namespace UnityEditor.Animations.Rigging
|
|
{
|
|
internal interface IRigEffector
|
|
{
|
|
Transform transform { get; }
|
|
bool visible { get; set; }
|
|
|
|
void OnSceneGUI();
|
|
}
|
|
}
|