Exemple #1
0
 internal InteractiveEventArgs(InteractiveEventType type)
 {
 }
Exemple #2
0
 internal InteractiveEventArgs(InteractiveEventType type, int errorCode, string errorMessage)
 {
 }
Exemple #3
0
 internal InteractiveButtonEventArgs(InteractiveEventType type, string id, InteractiveParticipant participant, bool isPressed) : base(type)
 {
 }
 internal InteractiveParticipantStateChangedEventArgs(InteractiveEventType type, InteractiveParticipant participant, InteractiveParticipantState state) : base(type)
 {
     Participant = participant;
     State       = state;
 }
Exemple #5
0
 internal InteractiveJoystickEventArgs(InteractiveEventType type, string id, InteractiveParticipant participant, double x, double y) : base(type)
 {
 }
Exemple #6
0
 internal InteractivityStateChangedEventArgs(InteractiveEventType type, InteractivityState state) : base(type)
 {
 }
Exemple #7
0
 public InteractiveButtonControl(string controlID, InteractiveEventType type, bool disabled, string helpText, uint cost, string eTag, string sceneID, Dictionary <string, object> metaproperties) :
     base(controlID, InteractivityManager._CONTROL_TYPE_BUTTON, type, disabled, helpText, eTag, sceneID, metaproperties)
 {
     Cost = cost;
 }