, IPosedActive
where D : PosedData
where P : IPose
{
internal bool active;
protected PosedActive (D data, P pose, P constrained)
: base(data, pose, constrained) {
SetupPose();
}
/// Returns false when this constraint won't be updated by
/// because a skin is required and the
/// active skin does not contain this item. See ,
/// , , and .
public bool Active { get { return active; } set { active = value; } }
}
}