three.MF.V3.Settings.Project
class
Project:
2class Project: 3 4 """ 5 Project settings. 6 """ 7 def __init__(self, index: int = None, name: str = None): 8 """The index identifying which project the settings applies to. 9 If undefined the current open project is used.""" 10 self.index = index 11 # Project name. 12 self.name = name
Project settings.
Project(index: int = None, name: str = None)
7 def __init__(self, index: int = None, name: str = None): 8 """The index identifying which project the settings applies to. 9 If undefined the current open project is used.""" 10 self.index = index 11 # Project name. 12 self.name = name
The index identifying which project the settings applies to. If undefined the current open project is used.