Пример #1
0
 private void OnPropertyEndEdit(AnimationPropertiesView.ItemArg args)
 {
     m_timelineView.EndSetKeyframeValues(true);
     EndEdit();
     //Debug.Log("OnPropertyEndEdit");
 }
Пример #2
0
 private void OnPropertyValueChanged(AnimationPropertiesView.ItemArg args)
 {
     m_timelineView.SetKeyframeValue(args.Row, args.Item);
 }
Пример #3
0
 private void OnPropertyCollapsed(AnimationPropertiesView.ItemArg args)
 {
     m_timelineView.CollapseRow(args.Row, args.Item);
 }
Пример #4
0
 private void OnPropertyBeginEdit(AnimationPropertiesView.ItemArg args)
 {
     BeginEdit();
     m_timelineView.BeginSetKeyframeValues(true);
     //Debug.Log("OnPropertyBeginEdit");
 }
Пример #5
0
 private void OnPropertyExpanded(AnimationPropertiesView.ItemArg args)
 {
     m_timelineView.ExpandRow(args.Row, args.Item);
 }