Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/CuraEngine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Kuipers <t.kuipers@ultimaker.com>2016-06-09 13:00:35 +0300
committerTim Kuipers <t.kuipers@ultimaker.com>2016-06-09 13:00:35 +0300
commit28b8b414757f3aaca899cb6b8be576bb14cc6e2b (patch)
tree9c2f9c053fbe2251f038bb641fdcbc23ce94a34f /Cura.proto
parent457e609091826f23ffd99b79580c8f006c86a639 (diff)
Added extruder to proto message
CURA-1681 CURA-1682
Diffstat (limited to 'Cura.proto')
-rw-r--r--Cura.proto8
1 files changed, 7 insertions, 1 deletions
diff --git a/Cura.proto b/Cura.proto
index 3469c68da..38753fd80 100644
--- a/Cura.proto
+++ b/Cura.proto
@@ -12,7 +12,13 @@ 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 SettingList extruder_settings = 3; // The settings sent to each extruder object
+ repeated Extruder extruders = 3; // The settings sent to each extruder object
+}
+
+message Extruder
+{
+ int32 id = 1;
+ SettingList settings = 2;
}
message Object