Skip to content

Commit 1d30ad0

Browse files
update markdown to reflect the new Exclusive system
1 parent 40cdf32 commit 1d30ad0

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

src/.vuepress/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { defineClientConfig } from 'vuepress/client'
2-
import KistanExclusive from './components/kistanExclusive.vue';
2+
import ExclusiveTo from './components/ExclusiveTo.vue';
33

44
export default defineClientConfig({
55
enhance({ app, router, siteData }) {
6-
app.component('KistanExclusive', KistanExclusive)
6+
app.component('ExclusiveTo', ExclusiveTo)
77
},
88
setup() {},
99
layouts: {},

src/lights/lmixer/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ to that output.
3131
It is also possible to create layers from inputs. This can be used to add remote
3232
sources of color information from other programs.
3333

34-
<KistanExclusive lmixer="true">
34+
<ExclusiveTo exclusiveTo="LMixer">
3535

3636
### Alpha-Data Layers
3737
An Alpha-Data Layer works the same as a normal layer, except for the fact that it
@@ -55,7 +55,7 @@ they do not effect the data anyway, they are executed exactly like normal,
5555
regardless of the alpha.
5656
:::
5757

58-
</KistanExclusive>
58+
</ExclusiveTo>
5959

6060
### Fixtures
6161

src/lights/lmixer/mixing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ intensity going down"
4646
[fade_on_off]: ./images/fade_on_off.png "A fade between blue and red with
4747
another layer creating on/off pattern"
4848

49-
<KistanExclusive lmixer="true">
49+
<ExclusiveTo exclusiveTo="LMixer">
5050

5151
## Alpha-data layer scripting
5252

@@ -85,4 +85,4 @@ dj:add(0, take_control_of_fixture(djFixtures, 1000))
8585
dj:add(0, release_control_of_fixture(djFixtures, 1000))
8686
```
8787

88-
</KistanExclusive>
88+
</ExclusiveTo>

src/lights/lmixer/scripting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ is 1.
3131
dimmer = layer(master, mul, 512, 1)
3232
```
3333

34-
<KistanExclusive lmixer="true">
34+
<ExclusiveTo exclusiveTo="LMixer">
3535

3636
### Create alpha-data layer
3737

@@ -82,7 +82,7 @@ In this case, direct alpha access makes since, however, in general taking contro
8282
fixture is desired, for this [take_control_of_fixture](#take-control-of-fixture) and
8383
[release_control_of_fixture](#release-control-of-fixture) should be used.
8484
:::
85-
</KistanExclusive>
85+
</ExclusiveTo>
8686

8787
### `output`
8888

@@ -348,7 +348,7 @@ Stop playback of all sound files. No parameters.
348348
```lua
349349
stop_play()
350350
```
351-
<KistanExclusive>
351+
<ExclusiveTo exclusiveTo="LMixer">
352352

353353
### `take_control_of_fixture`
354354

@@ -394,6 +394,6 @@ The "take control" and "release control" terminology can be slightly confusing
394394
when it comes to priority. The priority is ***always*** whatever is latest in
395395
the layer order (the order that layers are added as children).
396396
:::
397-
</KistanExclusive>
397+
</ExclusiveTo>
398398

399399
[1]: https://en.wikipedia.org/wiki/Art-Net

0 commit comments

Comments
 (0)