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