Skip to content

Commit 52ff053

Browse files
authored
Fix ContainerHelper for .container retrieval (#200)
This commit is aware of the difference between _container and container_ in old versions of SerializedFile.py for compatibility.
1 parent 657a0f6 commit 52ff053

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

UnityPy/files/ObjectReader.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,7 @@ def set_raw_data(self, data):
139139

140140
@property
141141
def container(self):
142-
return (
143-
self.assets_file._container[self.path_id]
144-
if self.path_id in self.assets_file._container
145-
else None
146-
)
142+
return self.assets_file._container.path_dict.get(self.path_id)
147143

148144
@property
149145
def Position(self):

UnityPy/files/SerializedFile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ def __init__(self, container) -> None:
653653
self.container = container
654654
# support for getitem
655655
self.container_dict = {key: value.asset for key, value in container}
656-
self.path_dict = {value.asset.path_id: value.asset for key, value in container}
656+
self.path_dict = {value.asset.path_id: key for key, value in container}
657657

658658
def items(self):
659659
return ((key, value.asset) for key, value in self.container)

0 commit comments

Comments
 (0)