mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 18:27:51 -06:00
Added extruder to proto message
CURA-1681
This commit is contained in:
parent
899e4cc175
commit
a01b554ee3
1 changed files with 7 additions and 1 deletions
|
@ -12,7 +12,13 @@ message Slice
|
||||||
{
|
{
|
||||||
repeated ObjectList object_lists = 1;
|
repeated ObjectList object_lists = 1;
|
||||||
SettingList global_settings = 2;
|
SettingList global_settings = 2;
|
||||||
repeated SettingList extruder_settings = 3;
|
repeated Extruder extruders = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Extruder
|
||||||
|
{
|
||||||
|
int32 id = 1;
|
||||||
|
SettingList settings = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Object
|
message Object
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue