12-22-2020, 02:33 AM
(12-21-2020, 12:37 PM)tyFlow Wrote: Yes this is because each time you evaluate a texmap at a time that is different than the last, it must be re-read from disk using that different time value as the frame offset for its input sequence.
The seemingly-obvious solution would just be to cache texmaps and re-use them so that multiple calls to the same offset time do not trigger reloads from disk. However, that could cause big problems....imagine a user has a million particles and each one reads a slightly different time from the texmap. That would result in a million texmaps loaded into memory!
I think the best solution would be one implemented in your Script. If you sort your particles so that particles with the same time offset read their texmap values in sequence, the reload of the texmap won't happen for every particle.
thank you for the reply.
We fully respect your opinion. Nor is it that I haven't found a way to do it faster within the script through the given method. But what looks weird is that it only has 5 offset times, and reading the bitmap file assigned to the texture every tick is very different from when the processing speed is not offset. So I thought I should check the method, so I asked for confirmation.
And, as mentioned in the comments section, "Imagine a user has a million particles and each particle reads a slightly different time from the texmap. Then it loads a million texmaps into memory!" of course!!.
If you're a tyflow user, you won't be fooled by such a problem.
Of course, can create a predictable solution and avoid problems like this. Thanks for the answer anyway.
And I want to express my deep respect for your efforts.