Fixed caching issue.
This commit is contained in:
parent
6b758e2714
commit
c1fc88c6a3
|
@ -348,6 +348,7 @@ class MapWireToTag:
|
||||||
|
|
||||||
class PathData:
|
class PathData:
|
||||||
def __init__(self, obj):
|
def __init__(self, obj):
|
||||||
|
print("PathData(%s)" % obj.Base.Name)
|
||||||
self.obj = obj
|
self.obj = obj
|
||||||
self.wire = PathGeom.wireForPath(obj.Base.Path)
|
self.wire = PathGeom.wireForPath(obj.Base.Path)
|
||||||
self.edges = self.wire.Edges
|
self.edges = self.wire.Edges
|
||||||
|
@ -640,7 +641,7 @@ class ObjectDressup:
|
||||||
return self.setup(obj).generateTags(obj, 4)
|
return self.setup(obj).generateTags(obj, 4)
|
||||||
|
|
||||||
def setup(self, obj):
|
def setup(self, obj):
|
||||||
if False or not hasattr(self, "pathData") or not self.pathData:
|
if True or not hasattr(self, "pathData") or not self.pathData:
|
||||||
try:
|
try:
|
||||||
pathData = PathData(obj)
|
pathData = PathData(obj)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user