mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 15:37:30 -06:00
ENH: Add Textured PEI Plate
Change-Id: I08178e86a8ccb23844cca00bc9d265df7507f910 (cherry picked from commit 8f101963ecab1352e2721ead83928b327d6c0dbd)
This commit is contained in:
parent
acb05dcf19
commit
0ab13a6abb
16 changed files with 109 additions and 4 deletions
|
@ -1262,6 +1262,7 @@ enum BambuBedType {
|
|||
bbtCoolPlate = 1,
|
||||
bbtEngineeringPlate = 2,
|
||||
bbtHighTemperaturePlate = 3,
|
||||
bbtTexturedPEIPlate = 4,
|
||||
};
|
||||
|
||||
static BambuBedType to_bambu_bed_type(BedType type)
|
||||
|
@ -1273,6 +1274,8 @@ static BambuBedType to_bambu_bed_type(BedType type)
|
|||
bambu_bed_type = bbtEngineeringPlate;
|
||||
else if (type == btPEI)
|
||||
bambu_bed_type = bbtHighTemperaturePlate;
|
||||
else if (type == btPTE)
|
||||
bambu_bed_type = bbtTexturedPEIPlate;
|
||||
|
||||
return bambu_bed_type;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue