コード例 #1
0
 private void RaiseInteractionEvent(AttractorLoopPlayer attractorLoop, InteractionTypes interactionType)
 {
     RaiseInteractionEvent(attractorLoop, new InteractedEventArgs()
     {
         InteractionType = interactionType
     });
 }
コード例 #2
0
 private void RaiseReadyEvent(AttractorLoopPlayer attractorLoop)
 {
     RaiseReadyEvent(attractorLoop, null);
 }
コード例 #3
0
 private void RaiseReadyEvent(AttractorLoopPlayer attractorLoop, object args)
 {
     Ready?.Invoke(attractorLoop, args);
 }
コード例 #4
0
 private void RaiseInteractionEvent(AttractorLoopPlayer attractorLoop, InteractedEventArgs args)
 {
     Interacted?.Invoke(attractorLoop, args);
 }