What's the correct entry point for a mod?
I tried to follow Erik's project:
https://github.com/ErikMinekus/traktor-api-client
with something like this in S4MK3.qml:
import "./MyMod"
Mapping {
MyModule {}
…
}
where MyModule is something like:
import CSI 1.0
Module {
SomeComponent { … }
}
But Traktor doesn't seem to pick my changes whereas if I put my code in say S4MK3Deck.qml , it works fine.
Is this approach still supposed to work?
Any suggestions?