Skip to content

Latest commit

 

History

History
57 lines (40 loc) · 1.73 KB

ReadMe.md

File metadata and controls

57 lines (40 loc) · 1.73 KB

Nintendo Extended Editor (NX-Editor)

License Downloads

A general editor for editing first-party Nintendo formats. Primarily aimed at support for Tears of the Kingdom files and more modern Nintendo Switch files.

Setup

  1. Install the .NET 8 runtime (Windows x64 direct download)
  2. Download the latest release (Launcher), extract the zip, and run the exe
  3. Toggle the plugins you would like to install
  4. Click Install NX Editor and wait for the installation to complete

Building from Source (Windows)

Requirments

Instructions

  1. Clone the GitHub repository

    git clone --recursive "https://github.com/NX-Editor/NxEditor"; cd "NxEditor"
  2. Build the project

    cd "./src/NxEditor/"; dotnet build
  3. Run the project

    dotnet run

PowerShell Script & Command

git clone --recursive "https://github.com/NX-Editor/NxEditor"
cd "NxEditor"
cd "./src/NxEditor/"
dotnet build
dotnet run
git clone --recursive "https://github.com/NX-Editor/NxEditor"; cd "NxEditor"; cd "./src/NxEditor/"; dotnet build; dotnet run