TACTIC Open Source
Deprecate template projects? - Printable Version

+- TACTIC Open Source (http://forum.southpawtech.com)
+-- Forum: TACTIC Open Source (http://forum.southpawtech.com/forumdisplay.php?fid=3)
+--- Forum: TACTIC Discussion (http://forum.southpawtech.com/forumdisplay.php?fid=4)
+--- Thread: Deprecate template projects? (/showthread.php?tid=232)

Pages: 1 2


RE: Deprecate template projects? - Nachogor - 07-22-2021

Yes, I tried the plugins unified directly as the template and it seemed to work, but then the prefix was wrong and when I tried it again I always did is as 2 separated plugins, and then changed to template.

When I finish the template I´ll try to export it as plugins referenced.

Thanks!


RE: Deprecate template projects? - Diego - 07-22-2021

(07-22-2021, 02:10 PM)remkonoteboom Wrote: I also noticed that the new VFX template was 2 plugins would be an issue, so yesterday, I added a new tag to the plugin manifest (not commited yet):


Code:
<manifest>
  <data>
    <code>TACTIC/vfx</code>
    <title>Scrum</title>
    <description>TACTIC VFX</description>
    <version>1</version>
  </data>
  <!-- Plugins -->
  <plugin code="stypes"/>
  <plugin code="config"/>
</manifest>


This allows you to reference another plugin (relative path here).  The plugin loader with then load (or unload the plugin) that is reference.  This allows you create a superset plugin that references other plugins.  So, in this case, you would only have to load the "vfx" plugin which would then load the "stypes" and then the "config" plugin.

There are details that need to be worked out, but I think it's a good start.

Didn't know about the <plugin code="XXX"/> tag, that's interesting


RE: Deprecate template projects? - listy - 07-22-2021

(07-22-2021, 04:12 PM)Diego Wrote: Didn't know about the <plugin code="XXX"/> tag, that's interesting
This is not yet implemented


RE: Deprecate template projects? - Diego - 07-22-2021

(07-22-2021, 04:35 PM)listy Wrote:
(07-22-2021, 04:12 PM)Diego Wrote: Didn't know about the <plugin code="XXX"/> tag, that's interesting
This is not yet implemented

Yea, you'r right, didn't notice the "not commited yet" part