We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e91e30 commit f3e1c40Copy full SHA for f3e1c40
pywavefront/texture.py
@@ -38,3 +38,8 @@ def __init__(self, path):
38
# Treat path as part of a file uri always using forward slashes
39
self.path = path.replace('\\', '/')
40
self.image = None
41
+
42
+ @property
43
+ def image_name(self):
44
+ """Wrap the old property name to not break compatibility"""
45
+ return self.path
0 commit comments