private void ViewInterpolation() { InterpolationForm f = MainForm.Instance.InterpolationForm; InterpolationEditor e = f?._interpolationEditor; e?.SetTarget(_resource as IKeyframeSource); }
private void ViewInterp() { InterpolationForm f = MainForm.Instance.InterpolationForm; if (f != null) { InterpolationEditor e = f._interpolationEditor; if (e != null) { e.SetTarget(_resource as IKeyframeSource); } } }