I have a parent clip and I add another clip inside it. For example:
clip.addIncident(anIncident,0);
clip.addIncident(anotherIncident,100);
clip.addIncident(childClip,200);
I would like to know how I can pass the initParams from the clip to the childClip with MotorCortexjs. The reason is that I want to use them inside the childClip, but it doesn’t work if I use them like in the clip (e.g. “@initParams.myInitParam”), without define them in the childClip.