mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
14 lines
No EOL
715 B
Python
14 lines
No EOL
715 B
Python
# Copyright (c) 2018 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from cura.CuraApplication import CuraApplication #To find some resource types.
|
|
from UM.PackageManager import PackageManager #The class we're extending.
|
|
from UM.Resources import Resources #To find storage paths for some resource types.
|
|
|
|
|
|
class CuraPackageManager(PackageManager):
|
|
def __init__(self, parent = None):
|
|
super().__init__(parent)
|
|
|
|
self._installation_dirs_dict["materials"] = Resources.getStoragePath(CuraApplication.ResourceTypes.MaterialInstanceContainer)
|
|
self._installation_dirs_dict["qualities"] = Resources.getStoragePath(CuraApplication.ResourceTypes.QualityInstanceContainer) |