This project provides data extraction utilities for the following Need for Speed 4 HS asset files:
- tracks
- cars
Additionally, Blender addon is provided to directly import track and car data.
- Download the latest ZIP file from Releases.
- Open Blender.
- Go to
Edit -> Preferences -> Get Extensions
. - Click
v
in the top right corner of the window. - Click
Install from Disk...
. - Select the downloaded ZIP file.
- Activate the addon in the
Add-ons
panel.
Warning: Use instructions from this section only if you have problems with the recommended setup.
-
Create new empty Blender project
-
Open the Scripting tab
-
Copy-paste the following two commands into the Blender console:
import sys, subprocess subprocess.call([sys.executable, "-m", "pip", "install", "speedtools"])
This command will install the
speedtools
package to your Blender Python installation.Note: Python installation that comes with Blender is completely separate from the global Python installation on your system. For this reason, it is necessary to use the Blender scripting console to install the package correctly.
-
Copy and paste the content of this file to the Blender scripting window.
-
Click the ▶ button.
-
You should see
Track resources
andCar resources
underFile > Import
.
Install the package from PyPI:
pip install speedtools
Currently, the command line version does not provide any useful functionality.
This setup is needed only if you plan to modify the add-on.
To develop the project the following dependencies must be installed on your system:
Make sure the binary directories are in your PATH
.
This tool is a part of the re-make project. The project source code is available here.