How to get sequence_data?
i have silly question.
i know how save sequence_data in plugin. when take after effect's project file, sequence_data saved in there.
but don't know how read it... me that? didn't find answer after searching through forum.
dave
you read pretty same way save it.
you sequence_data handle in_data, , cast data structure.
something along lines of:
//in header
typedef struct {
int yo;
float mama;
} mydata;
//in function
mydata *seqdata;
seqdata = *(mydata **)in_data->sequence_data;
//now can access data, either read or write.
seqdata->yo = 1;
More discussions in After Effects SDK
adobe
Comments
Post a Comment