Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
LogitechLED.c
Go to the documentation of this file.
1
2sealed class LogitechLED
3{
4 private void LogitechLED();
5 private void ~LogitechLED();
6
8 static proto native LogitechLED Get();
9
16 native proto void SetLighting(int red, int green, int blue);
17
24 native proto bool SaveCurrentLighting();
25
32 native proto bool RestoreLighting();
33
40 native proto bool StopEffects();
41
54 native proto bool FlashLighting(
55 int red,
56 int green,
57 int blue,
58 int msDuration,
59 int msInterval
60 );
61
74 native proto bool PulseLighting(
75 int red,
76 int green,
77 int blue,
78 int msDuration,
79 int msInterval
80 );
81
92 native proto bool SetLightingForKey(
93 string keyName,
94 int red,
95 int green,
96 int blue
97 );
98
107 native proto bool SaveLightingForKey(string keyName);
108
117 native proto bool RestoreLightingForKey(string keyName);
118
135 native proto bool FlashSingleKey(
136 string keyName,
137 int red,
138 int green,
139 int blue,
140 int msDuration,
141 int msInterval
142 );
143
162 native proto bool PulseSingleKey(
163 string keyName,
164 int startRed,
165 int startGreen,
166 int startBlue,
167 int finishRed,
168 int finishGreen,
169 int finishBlue,
170 int msDuration,
171 bool isInfinite
172 );
173
181 native proto bool StopEffectsOnKey(string keyName);
182}