Exemplo n.º 1
0
 /// <summary>
 /// Sets a spectrum cycling effect on this device.
 /// </summary>
 /// <param name="effect">Effect options.</param>
 public void SetSpectrumCycling(SpectrumCycling effect)
 {
     SetGuid(NativeWrapper.CreateDeviceEffect(DeviceId, Effect.SpectrumCycling, effect));
 }
Exemplo n.º 2
0
 public void CreateShouldSetDefaultParameter()
 {
     Assert.That(SpectrumCycling.Create().Parameter, Is.EqualTo(0));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Sets a spectrum cycling effect on the mouse.
 /// </summary>
 /// <param name="effect">Effect options struct.</param>
 public void SetSpectrumCycling(SpectrumCycling effect)
 {
     SetGuid(NativeWrapper.CreateMouseEffect(Effect.SpectrumCycling, effect));
 }
Exemplo n.º 4
0
 public void Set(SpectrumCycling effect)
 {
     SetSpectrumCycling(effect);
 }