after-effects icon indicating copy to clipboard operation
after-effects copied to clipboard

PIPL Version

Open virtualritz opened this issue 6 months ago • 0 comments

Just recording an undocumented tidbit from the Ae SDK list here:

The Pipl file effect version has to match PF_VERSION returned value otherwise you are limited to Max 7 for MAJOR_VERSION

    out_data->my_version = PF_VERSION(    MAJOR_VERSION,
                                        MINOR_VERSION,
                                        BUG_VERSION,
                                        STAGE_VERSION,
                                        BUILD_VERSION);    

Good thing to know for new plugins... as it has a limited purpose , plugin who currently somehow use VERSION defines for other things, can work around this with extra defines (locking MAJOR to 7 and shifting MAJOR to MINOR)...

virtualritz avatar Feb 11 '24 18:02 virtualritz