1 parent f9a814a commit 4e66158Copy full SHA for 4e66158
1 file changed
UnityPy/files/File.py
@@ -22,6 +22,9 @@ def __init__(self, parent=None):
22
self.parent = parent
23
24
def get_objects(self):
25
+ if self.isinstance(SerializedFile.SerializedFile):
26
+ return self.objects.values()
27
+
28
for f in self.files.values():
29
if isinstance(f, (BundleFile.BundleFile, WebFile.WebFile)):
30
for obj in f.objects:
0 commit comments