add two todos to change name into material_name in the layer class

This commit is contained in:
Guille Gutierrez 2023-09-14 06:42:28 +02:00
parent cf6542cb0c
commit aa6b3c9e74

View File

@ -59,6 +59,7 @@ class Layer:
Get material name
:return: str
"""
# todo: this should be named material_name instead
return self._name
@name.setter
@ -67,6 +68,7 @@ class Layer:
Set material name
:param value: string
"""
# todo: this should be named material_name instead
self._name = str(value)
@property