mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Add backend_plugin messages to proto file
CURA-10717
This commit is contained in:
parent
8fd3ef5221
commit
26bf00ccc0
1 changed files with 14 additions and 0 deletions
|
@ -8,12 +8,26 @@ message ObjectList
|
|||
repeated Setting settings = 2; // meshgroup settings (for one-at-a-time printing)
|
||||
}
|
||||
|
||||
enum SlotID {
|
||||
SIMPLIFY = 0;
|
||||
POSTPROCESS = 1;
|
||||
}
|
||||
|
||||
message EnginePlugin
|
||||
{
|
||||
SlotID id = 1;
|
||||
optional string address = 2;
|
||||
optional uint32 port = 3;
|
||||
}
|
||||
|
||||
message Slice
|
||||
{
|
||||
repeated ObjectList object_lists = 1; // The meshgroups to be printed one after another
|
||||
SettingList global_settings = 2; // The global settings used for the whole print job
|
||||
repeated Extruder extruders = 3; // The settings sent to each extruder object
|
||||
repeated SettingExtruder limit_to_extruder = 4; // From which stack the setting would inherit if not defined per object
|
||||
|
||||
repeated EnginePlugin engine_plugins = 5;
|
||||
}
|
||||
|
||||
message Extruder
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue