05-12-2020, 03:24 PM
(This post was last modified: 05-12-2020, 03:24 PM by remkonoteboom.)
Just today, I have merged in a Plugin version of the VFX template in the latest 4.8 branch. Eventually these will replace the template vfx. It has a few changes that I noticed and future fixes specifically in the VFX module will go here. There is still a bunch of work to do to integrate with the project creation interface and make sure you can still save your own templates, however, it is a good example to see how plugins are built.
src/plugins/TACTIC/vfx/
There are two plugins: stypes (which define all of the search types) and config (which define ui configuration). We separate these because you tend not to want to reload the stypes plugins as it literally has to dump the table, create the new table and reload the data (not something you want to do after production starts).
To use these plugins, simple create an empty project with no theme, go to the plugin manager and load both plugins.
src/plugins/TACTIC/vfx/
There are two plugins: stypes (which define all of the search types) and config (which define ui configuration). We separate these because you tend not to want to reload the stypes plugins as it literally has to dump the table, create the new table and reload the data (not something you want to do after production starts).
To use these plugins, simple create an empty project with no theme, go to the plugin manager and load both plugins.