Hi folks,
I have a document in memory and I need to evaluate data to a sub-frame time value. The issue I'm getting is that when I do this:
BaseTime time = doc->GetTime();
// adjust time numerator here
doc->SetTime(time);
//SetDocumentTime(doc,time);
doc->ExecutePasses(...);
the document time is floored to the nearest frame, and does not take on the sub-frame value. I can see this, because straight after I execute the document and pull the time again, it's reverted back to the original floored frame. I can however, change to the next full frame.
I've tried other methods like SetDocumentTime() to no avail.
Is there a trick I'm missing to this?
WP.