コード例 #1
0
        private void OnAnimationKeyAdded(AnimationKeyAdded e)
        {
            if (!_entityId.HasValue)
            {
                return;
            }

            if (_editor.GetCurrentAnimation().CurrentFrame == e.Frame)
            {
                RefreshKeyButtonsOnly();
            }
        }
コード例 #2
0
ファイル: Editor.cs プロジェクト: thomasvt/pose
 private void OnKeyAdded(AnimationKeyAdded obj)
 {
     CurrentDocument.ApplyCurrentAnimationFrameToScene(_currentAnimationId);
 }
コード例 #3
0
 private void OnAnimationKeyAdded(AnimationKeyAdded msg)
 {
     OnAnimationKeyChanged(msg.KeyId);
 }