Exemplo n.º 1
0
        private void ViewInterpolation()
        {
            InterpolationForm   f = MainForm.Instance.InterpolationForm;
            InterpolationEditor e = f?._interpolationEditor;

            e?.SetTarget(_resource as IKeyframeSource);
        }
Exemplo n.º 2
0
        private void ViewInterp()
        {
            InterpolationForm f = MainForm.Instance.InterpolationForm;

            if (f != null)
            {
                InterpolationEditor e = f._interpolationEditor;
                if (e != null)
                {
                    e.SetTarget(_resource as IKeyframeSource);
                }
            }
        }