Skip to content

Commit cdb28b9

Browse files
committed
update README
1 parent 6aba413 commit cdb28b9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## Nestdrop Visuals Controlpanel
1+
# NEST CTRL
2+
3+
> Nestdrop Control Panel
24
35
# Download
46

@@ -24,6 +26,13 @@ tested with `V2.x.0.23`
2426

2527
# Nestdrop setup
2628

29+
## sprites
30+
31+
Nestdrop tends to do random stuff if any image is laying in the sprites root folder `NestDropProV2\Plugins\Milkdrop2\Sprites`
32+
it is recommended to move the files there to a subfolder
33+
34+
(it makes the IDs assigned to sprites unpredictable and wil lead to the wrong sprites being loaded)
35+
2736
## OSC
2837

2938
OSC input and output needs to be enabled

src/desktopMain/kotlin/Main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ object Main {
113113

114114
logger.info { "scanning presets" }
115115
measureTime {
116-
scanPresets()
116+
scanMilkdrop()
117117
}.also {
118118
logger.info { "scan took $it" }
119119
}

src/desktopMain/kotlin/ScanPresets.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import ui.screens.presetsMap
1111
import java.io.File
1212
import kotlin.time.measureTimedValue
1313

14-
suspend fun scanPresets() {
14+
suspend fun scanMilkdrop() {
1515

1616
val categoryTagsSet = mutableSetOf<Tag>()
1717

0 commit comments

Comments
 (0)