|
13 | 13 | -- If you ever change a setting of the Interface object, will add one of these flags to it. |
14 | 14 | -- This will be sent to the client to know what to read in the net message to save networking |
15 | 15 | local Modify = { |
16 | | - volume = b'000000000001', |
17 | | - time = b'000000000010', |
18 | | - pos = b'000000000100', |
19 | | - playing = b'000000001000', |
20 | | - playback_rate = b'000000010000', |
21 | | - direction = b'000000100000', |
22 | | - parented = b'000001000000', |
23 | | - radius = b'000010000000', |
24 | | - looping = b'000100000000', |
25 | | - mode = b'001000000000', |
26 | | - reserved = b'010000000000', -- pan maybe? |
27 | | - |
28 | | - destroyed = b'100000000000', |
29 | | - |
30 | | - all = b'111111111111' |
| 16 | + volume = b"000000000001", |
| 17 | + time = b"000000000010", |
| 18 | + pos = b"000000000100", |
| 19 | + playing = b"000000001000", |
| 20 | + playback_rate = b"000000010000", |
| 21 | + direction = b"000000100000", |
| 22 | + parented = b"000001000000", |
| 23 | + radius = b"000010000000", |
| 24 | + looping = b"000100000000", |
| 25 | + mode = b"001000000000", |
| 26 | + reserved = b"010000000000", -- pan maybe? |
| 27 | + |
| 28 | + destroyed = b"100000000000", |
| 29 | + |
| 30 | + all = b"111111111111" |
31 | 31 | } |
32 | 32 |
|
33 | 33 | -- Bits needed to send a bitflag of all the modifications |
|
0 commit comments