Example #1
0
        protected void ElementDoubleClickedHandler(object sender, ElementEventArgs e)
        {
            TimedSequenceElement element = e.Element as TimedSequenceElement;

            if (element.EffectNode == null)
            {
                Logging.Error("TimedSequenceEditor: Element double-clicked, and it doesn't have an associated effect!");
                return;
            }

            EditElement(element);
        }
Example #2
0
 protected void ElementRemovedFromRowHandler(object sender, ElementEventArgs e)
 {
     // not currently used
 }
Example #3
0
 protected void ElementAddedToRowHandler(object sender, ElementEventArgs e)
 {
     // not currently used
 }