Nincs leírás

sphrose 3a9d8c6388 Move shiboken gem to extras, modify build system to use pyside find functionality. 2 éve
Gems 3a9d8c6388 Move shiboken gem to extras, modify build system to use pyside find functionality. 2 éve
Projects d83f7f7233 Added default level to OpenXRTest project (#51) 2 éve
Templates 769314c638 Making hash lowercase so it works with project manager. Also removed git stuff from the template manifest. 2 éve
.automatedtesting.json f405f34861 turn off the xr gems from being tested 2 éve
.gitattributes 330a31dfc9 Initial commit 3 éve
.gitignore a3d8e88161 Add Oculus Quest 2 support at RHI level (#14) 2 éve
.lfsconfig 330a31dfc9 Initial commit 3 éve
CODE_OF_CONDUCT.md 330a31dfc9 Initial commit 3 éve
CONTRIBUTING.md 330a31dfc9 Initial commit 3 éve
LICENSE.txt cf65315da8 Readme and license changes 3 éve
LICENSE_APACHE2.TXT 330a31dfc9 Initial commit 3 éve
LICENSE_MIT.TXT 330a31dfc9 Initial commit 3 éve
README.md fd31745665 Adding all gems path parameter to readme 3 éve
repo.json 0c8b01abb1 Update based on feedback; template link updated to use .git; the original returns the page you'd see in a web-browser, whereas .git causes the script to use the git API to get the raw file 2 éve

README.md

O3DE-Extras

Extras add-on repo for O3DE.

Contribute

For information about contributing to Open 3D Engine, visit https://o3de.org/docs/contributing/.

Download and Install

Clone the repository

git clone https://github.com/o3de/o3de-extras

For more details on the steps above, refer to Setting up O3DE from GitHub in the documentation.

Setting up new projects and building the engine

  1. From the O3DE repo folder, set up a new project using the o3de create-project command.

    scripts\o3de.bat create-project --project-path <your new project path>
    
  2. Register gems with this command:

    scripts\o3de.bat register -gp <your path to o3de-extras>/Gems/<gem name>
    

    To recursively register all gems in the path, use the -agp or --all-gems-path parameter

  3. Add these gems to your project with this command:

    scripts\o3de.bat enable-gem -gn <gem name> -pn <your project name>
    

    To enable all gems in a path, use the -agp or --all-gems-paths parameter

  4. Configure a solution for your project.

    cmake -B <your project build path> -S <your new project source path> -G "Visual Studio 16"
    

    Example:

    cmake -B C:\my-project\build\windows -S C:\my-project -G "Visual Studio 16"
    
  5. Build the project, Asset Processor, and Editor to binaries by running this command inside your project:

    cmake --build <your project build path> --target <New Project Name>.GameLauncher Editor --config profile -- /m
    

    Note: Your project name used in the build target is the same as the directory name of your project.

This will compile after some time and binaries will be available in the project build path you've specified, under bin/profile.

For a complete tutorial on project configuration, see Creating Projects Using the Command Line Interface in the documentation.

License

For terms please see the LICENSE*.TXT files at the root of this distribution.