ParaView does not have an orientation mode that does this in either the Glyph filter or Glyph with Custom Source filter. With the exception of the Box glyph and the 2D glyphs, there is an assumption that the glyph is radially symmetric about the x-axis, so the transformation that rotates the glyphs to line up with a vector may induce a rotation about the glyph’s axis that is assumed not to matter.
However, the 3D Glyphs representation may let you rotate about a specific axis if you set the Orientation Mode property to Rotation. In that mode, the vector array will specify a rotation about each of the X, Y, or Z axes.
Thinking about this, it should be possible, but it is a bit involved. Only one texture can be applied to a polygonal data set in ParaView at a time. You could do a trick where you pack different textures into a single texture and then adjust the texture coordinates applied to each glyph to get the effect you are looking for You’ll need to have some 2d texture coordinates defined in a custom glyph, and then transform the texture coordinates for each glyph so that they map into the different textures you’ve packed into one.
Now, how do you transform the texture coordinates randomly for each glyph? The Programmable Filter will be run once for the entire output of the Glyph with Custom Source filter, so you’ll need to process all glyphs in one execution of the filter. To assign texture coordinates randomly, the filter will need to know something like a “glyph ID” and then map that ID to a texture coordinate transform. You could generate a random mapping ahead of time from “glyph ID” to texture transform and then use that map while processing each point in the glyphed data. The Glyph with Custom Source filter does not produce a “glyph ID” field, but you could apply the Connectivity filter to obtain effectively an ID for each glyph in an array called RegionId, and then apply the Programmable Filter to that (so your pipeline would be Glyph with Custom Source
Connectivity
Programmable Filter).
So, it’s likely possible, but not necessarily straightforward.