add two todos to change name into material_name in the layer class
This commit is contained in:
parent
cf6542cb0c
commit
aa6b3c9e74
|
@ -59,6 +59,7 @@ class Layer:
|
||||||
Get material name
|
Get material name
|
||||||
:return: str
|
:return: str
|
||||||
"""
|
"""
|
||||||
|
# todo: this should be named material_name instead
|
||||||
return self._name
|
return self._name
|
||||||
|
|
||||||
@name.setter
|
@name.setter
|
||||||
|
@ -67,6 +68,7 @@ class Layer:
|
||||||
Set material name
|
Set material name
|
||||||
:param value: string
|
:param value: string
|
||||||
"""
|
"""
|
||||||
|
# todo: this should be named material_name instead
|
||||||
self._name = str(value)
|
self._name = str(value)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in New Issue
Block a user