Hello everyone,
Let me explain my problem in a 'theoretical' manner, then explain what I'm trying to achieve.
I'm with a certain difficulty manipulating the TRANSFORM parameter from the particle shader material. I kinda understood that the TRANSFORM[0][1][2] (the xyz coordinates) correspond to the 3x3 matrix from a Basis Transform in a Mesh3D.
What I don't understand is how to apply a Vector3 to this matrix to achieve a desirable rotation.
Here what I want to achieve: I'm trying to make a rope from particles that have Physical interaction. For this my 'rope' is constructed from a series of cylinders. Here a screenshot of what I already achieve:
From what I gather the collisions with the GPUParticlesCollisionSphere3D give you a COLLISION_NORMAL, so my instinct was using this vec3 to rotate the particles around the collider. However, I don't know how to apply this vec3 to the TRANSFORM of the particles.
I don't know if I'm approaching this idea from a 'wrong side', so any other suggestion is appreciated.