Hello, I'm just getting acquainted with Python and Psychopy and I have an issue that I haven't been able to find a solution for.
The stimuli I am trying to create involves something like a random dot kinematogram. However, each dot must be paired with another identical dot except its center is X pixels to the right of the original dot, and these pairs would then have some correlated motion direction (move in parallel, or move through each other, etc) and disappear at the same time.
I've had some success using ElementArrayStim, but the problem is I've been able to make N pairs of dots, but now all N pairs are correlated together and move in parallel, and all have the same life-time, but what I really want is to have each pair move around and disappear independently and uncorrelated with the other pairs.
How could I go about creating what I'm looking for (an rdk with two-dot elements rather than single dot elements)? If there was a way to record the position/velocities of the dots created using DotStim, and reproduce those (while adding a certain amount of displacement), I think that would help get me what I need, but I don't know of how to do this.
Thank you in advance for guidance,
Andy