view
Interface ICueTransitioner

All Known Subinterfaces:
ILightViewConnector

public interface ICueTransitioner

This interface is used for triggering cue transitions and changes.


Method Summary
 void cueTransition(float oldCueNumber, float newCueNumber)
          This method will start a transition from the old cue to the new cue.
 void goToCue(float cueNumber)
          This method will go to the given cue without a transition.
 

Method Detail

cueTransition

void cueTransition(float oldCueNumber,
                   float newCueNumber)
This method will start a transition from the old cue to the new cue.

Parameters:
oldCueNumber - The number of the cue to transition away from.
newCueNumber - The number of the cue to transition to.

goToCue

void goToCue(float cueNumber)
This method will go to the given cue without a transition.

Parameters:
cueNumber - The number of the cue to go to.