How to play animation for skeletal meshes in an array?

I have an array of skeletal meshes feeding into a spawn node and then play animation node. The problem is I can’t set up the Play Animation node to get the corresponding animations for each skeletal mesh and play them.
Any help would be appreciated!

Thanks

Paul

Hmm without knowing the exact intent i can maybe throw out an idea.

Create a Struct like “MyAwesomeSpawnInfo”.

It contains two key/values:

  1. SkeletalMesh (The skeletal mesh class you want to spawn)
  2. Animation (The animation you want to play.)

Your change your array of “SkeletalMesh” to an array of “MyAwesomeSpawnInfo” Structs so you can specify the mesh plus the animation.

Thanks, structs look like the solution I needed.