mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 05:07:50 -06:00
Added transferMeshCommand
This commit is contained in:
parent
71bbe1ef7e
commit
f8dd19460b
2 changed files with 9 additions and 1 deletions
6
TransferMeshCommand.py
Normal file
6
TransferMeshCommand.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from Cura.Backend.Command import Command
|
||||
|
||||
class TransferMeshCommand(Command):
|
||||
def __init__(self):
|
||||
super(TransferMeshCommand,self).__init__()
|
||||
|
|
@ -5,4 +5,6 @@ def getMetaData():
|
|||
return { "name": "CuraBackend", "type": "Backend" }
|
||||
|
||||
def register(app):
|
||||
app.setBackend(CuraEngineBackend())
|
||||
engine = CuraEngineBackend()
|
||||
app.setBackend(engine)
|
||||
engine.addCommand(TransferMeshCommand())
|
Loading…
Add table
Add a link
Reference in a new issue