We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't seem to find the starting place. The example code presumes a pak or a "game", but I want to parse .uasset files.
# parameter passed is something like /path/to/a/file/file.uasset path = sys.argv[1] provider = DefaultFileProvider(os.path.dirname(path), VersionContainer(EUEVersion.LATEST)) provider.initialize() package_path = os.path.basename(path) #stream = provider.open_stream(package_path) #package = provider.try_load_package(stream) package = provider.try_load_package(package_path) if package is not None: package_dict = package.get_dict() # get json serializable dict
The text was updated successfully, but these errors were encountered:
Use LegacyPackageReader directly
pyUE4Parse/UE4Parse/Assets/PackageReader.py
Line 80 in 1c7b64c
Sorry, something went wrong.
No branches or pull requests
Can't seem to find the starting place. The example code presumes a pak or a "game", but I want to parse .uasset files.
The text was updated successfully, but these errors were encountered: