Skip to content

Download And Installation From Dev Branch

BleuRaven edited this page Nov 1, 2024 · 5 revisions

I work on this addon often and add a lot of functionality.
If you want to test the work in progress, you can try the development branch.

Get the dev addon files.

  1. Go to the Github page and switch the branch to "Dev".

    image

  2. Download the source files as a ZIP file.

  3. Extract the content.

Build and Install the Addon from Blender

  1. Open Blender.

  2. Go to the Scripting workspace and create a new text file.

  3. Paste the following script:

    # Run this script in Blender to build and install Blender For Unreal Engine.
    import os
    import importlib.util
    
    # /!\ Replace with the addon location /!\
    dir = r"C:\Users\BleuRaven\Downloads\Blender-For-UnrealEngine-Addons-Dev\blender-for-unrealengine"
    
    script_path = os.path.join(dir, "bbam/exec/install_from_blender.py")
    spec = importlib.util.spec_from_file_location("install_from_blender", script_path)
    module = importlib.util.module_from_spec(spec)
    spec.loader.exec_module(module)
  4. Update the variable 'dir' with the correct location and run the script to install.

    image

Clone this wiki locally