Designer Plugins
Plugins for Disguise Designer software.
Plugins for Disguise Designer software.
d3 supports two types of plugins: internal and remote. Each type has its own characteristics and use cases.
Internal plugins are stored directly within the project folder structure:
{project_path}/
└── plugins/
└── my-plugin/
├── index.html
├── index.js
└── ... other plugin files
or alternatively can be stored in the common folder, making them accessible to all projects on that machine:
common/
└── plugins/
└── my-plugin/
├── index.html
├── index.js
└── ... other plugin files
Remote plugins are discovered using DNS-SD (Bonjour) on the network:
_d3plugin._tcp.local.
Remote plugins typically consist of two parts:
Both types of plugins can coexist in the same project:
Choose the Right Type
Version Management
Network Considerations
Resource Management