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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLipu Fei <lipu.fei815@gmail.com>2018-12-18 15:42:23 +0300
committerLipu Fei <lipu.fei815@gmail.com>2018-12-18 15:42:23 +0300
commite885b527370a84d0399962b436e3da472d8ac85a (patch)
tree395e4a75ac9bf16ed20389c8eff8242807f1b612 /plugins/CuraEngineBackend/Cura.proto
parent328f32615369f0a5e0bd2c4729fb5fe9dfc7c4ae (diff)
Add time prime tower into Cura.proto
Diffstat (limited to 'plugins/CuraEngineBackend/Cura.proto')
-rw-r--r--plugins/CuraEngineBackend/Cura.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto
index 292330576b..c4f934bc00 100644
--- a/plugins/CuraEngineBackend/Cura.proto
+++ b/plugins/CuraEngineBackend/Cura.proto
@@ -29,7 +29,7 @@ message Object
bytes normals = 3; //An array of 3 floats.
bytes indices = 4; //An array of ints.
repeated Setting settings = 5; // Setting override per object, overruling the global settings.
- string name = 6;
+ string name = 6; //Mesh name
}
message Progress
@@ -108,8 +108,9 @@ message PrintTimeMaterialEstimates { // The print time for each feature and mate
float time_travel = 9;
float time_retract = 10;
float time_support_interface = 11;
+ float time_prime_tower = 12;
- repeated MaterialEstimates materialEstimates = 12; // materialEstimates data
+ repeated MaterialEstimates materialEstimates = 13; // materialEstimates data
}
message MaterialEstimates {