Skip to main content
Inspiring
March 4, 2024
Answered

Storing AEGP data in a comp or project?

  • March 4, 2024
  • 1 reply
  • 286 views

I'm developing an AEGP plugin, and I'd like to store my own custom data in a comp, or in a project. Is there a way to do that?

This topic has been closed for replies.
Correct answer shachar carmi

well... there's no facility designed for that, but you can make use of layer and comp comments which are i've NEVER seen a user make use of, and are very rarely even displayed in the UI...

i've used that trick on numerous occasions where i needed to stash some layer/comp related stuff. you can just hope the that user doesn't use any other plug-in doing the same stuff.

 

alternatively, you could add a null layer to the comp, name it "my stuff, do not delete" and lock it (just make sure the user understands what it is). then use that layer's comments field.

 

another solution would be to create a folder in the ae project (name is something clear) and put folders inside it who's names contain comp id data to tell what comp they refer to, and the data itself. that will create minimal clutter in the project. (just one visible folder for the entire project)

1 reply

shachar carmiCommunity ExpertCorrect answer
Community Expert
March 5, 2024

well... there's no facility designed for that, but you can make use of layer and comp comments which are i've NEVER seen a user make use of, and are very rarely even displayed in the UI...

i've used that trick on numerous occasions where i needed to stash some layer/comp related stuff. you can just hope the that user doesn't use any other plug-in doing the same stuff.

 

alternatively, you could add a null layer to the comp, name it "my stuff, do not delete" and lock it (just make sure the user understands what it is). then use that layer's comments field.

 

another solution would be to create a folder in the ae project (name is something clear) and put folders inside it who's names contain comp id data to tell what comp they refer to, and the data itself. that will create minimal clutter in the project. (just one visible folder for the entire project)

Inspiring
March 5, 2024

Those are all great ideas. Thanks for the suggestions. I'm going to create a null layer with a special name, and then stuff data into comment marker!  🙂 Locking the null layer is a great idea too. Thanks.