Join our discord community

Forum breadcrumbs - You are here:ForumPrism: Feature RequestsAsset Categories
Please or Register to create posts and topics.

Asset Categories

PreviousPage 2 of 2

Alright thanks, I'm not really good at writing code, is there any tutorials for doing this? I realise that this might be expected of me to run prism to its full exstent but so far its been really been really great and easy to use even for an Animator 🙂

No, unfortunately there are no tutorials for plugins, but there is an example plugin in the plugins folder which you could take a look at. The steps how to create a new plugin are mentioned here: https://prism-pipeline.readthedocs.io/en/latest/index/feature_reference/#creating-a-new-plugin

Some python knowledge is definitely recommended.

You would need to create a plugin of type "custom" and add some code in the "onStepCreated" function. This function has a "path" argument, which contains the folderpath of a created step. You can use it like this:

self.core.entities.createCategory("myCategory", path=path)

PreviousPage 2 of 2