Skip to content

Try building like this instead #1

New issue

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

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
002c222
Fix all Asset Replacement Endpoints + Add Tests
SmokedPete Mar 19, 2025
1d8b016
Merge branch 'dev/ptrottier/fix_api_endpoint' into 'main'
SmokedPete Mar 19, 2025
4153ebd
Redirect documentation pages that were moved to avoid 404 errors + Up…
SmokedPete Mar 19, 2025
d989a49
Merge branch 'dev/ptrottier/docs_redirect' into 'main'
SmokedPete Mar 19, 2025
a770d52
REMIX-3869: Drag and dropping texture brings up error window with upp…
Mar 20, 2025
e130280
Merge branch 'dev/sgillard/upper_case_text_bug' into 'main'
Mar 20, 2025
79a4b02
Add REST API Tests for all endpoints
SmokedPete Mar 21, 2025
3f65930
Merge branch 'dev/ptrottier/add_rest_api_tests' into 'main'
SmokedPete Mar 21, 2025
95711b6
Fixed min specs in docs + URL for Home page
SmokedPete Mar 21, 2025
c71751d
Merge branch 'dev/ptrottier/fix_docs' into 'main'
SmokedPete Mar 21, 2025
34226a5
REMIX-3900: Fix for texture preview for height maps
Mar 21, 2025
9d59a97
Merge branch 'dev/sgillard/height_map_bug' into 'main'
Mar 21, 2025
79f9545
Cleanup legacy extensions
SmokedPete Mar 22, 2025
3b2425a
Merge branch 'dev/ptrottier/cleanup_extensions' into 'main'
SmokedPete Mar 22, 2025
fef9f83
REMIX-3581: Fix multi-selection visibility toggle to have consistent …
SmokedPete Mar 24, 2025
025b3b0
Merge branch 'dev/ptrottier/multiselect_toggle' into 'main'
SmokedPete Mar 24, 2025
8c2f1a2
[REMIX-3891] Material Property Widget control with Stage Manager Mate…
Mar 24, 2025
b657a6b
Merge branch 'dev/sfitzpatrick/mat_properties_control_with_stage_mana…
Mar 24, 2025
9a2c9ae
REMIX-4043: Fixed layer creation transferring metadata from parent layer
SmokedPete Mar 26, 2025
691f67f
Merge branch 'dev/ptrottier/fix_layer_creation' into 'main'
SmokedPete Mar 26, 2025
00736bc
[REMIX-4073] Fix material override saving location
Apr 1, 2025
4a19fd4
Merge branch 'dev/sfitzpatrick/fix_mat_override_saving' into 'main'
Apr 1, 2025
7a003d5
Fixed Toolkit Build Dependencies
SmokedPete Apr 1, 2025
a2b7ad0
Merge branch 'dev/ptrottier/fix_build' into 'main'
SmokedPete Apr 1, 2025
a0aa678
Try building like this instead
nvzkupu Mar 17, 2025
c13d881
Build on changes to github actions files
nvzkupu Mar 17, 2025
0b83141
Checkout the repo
nvzkupu Mar 17, 2025
2cf9ab1
Update linux build config as well
nvzkupu Mar 17, 2025
66e7bba
Add timeout of 1 hour
nvzkupu Mar 18, 2025
281242e
whitespace
nvzkupu Mar 18, 2025
ed4c654
test: comment out steps that need app to run
nxkb Apr 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ on:
branches: [main]
pull_request:
branches: [main]
paths:
- '.github/workflows/build-linux.yml'

jobs:
build-linux:
runs-on: ubuntu-24.04
timeout-minutes: 60

steps:
- uses: actions/checkout@v4

- name: Build Linux
shell: bash
run: ./build.sh --rebuild --release
9 changes: 7 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,19 @@ on:
branches: [main]
pull_request:
branches: [main]
paths:
- '.github/workflows/build-windows.yml'

jobs:
build-windows:
runs-on: windows-2022
timeout-minutes: 60

steps:
steps:
- uses: actions/checkout@v4

- name: Build Windows
shell: powershell
run: |
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
. .\build.bat --rebuild --release
.\build.bat --rebuild --release
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Created 1.0.0 build
- Added release notes for 1.0.0
- Added tests for REST API endpoints
- REMIX-3891: Added Material Property Widget control with Stage Manager Materials Tab

### Changed
- Improved the documentation layout and contents
Expand All @@ -19,8 +21,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed tests for the `omni.flux.validator.mass.widget` extension
- Fixed `get_texture_material_inputs` API endpoint for Kit 106.5
- Fixed `is_valid_texture_prim` API validator for Kit 106.5
- Redirect documentation pages that were moved to avoid 404 errors
- REMIX-3869: Made extension lowercase for texture validation
- Fixed Quick Start Guide link on the home page
- REMIX-3900: Added ImageWithProvider to better display single channel textures
- REMIX-3581: Fix multi-selection visibility toggle to have consistent behavior
- REMIX-4043: Fixed layer creation transferring metadata from parent layer
- REMIX-4073: Fixed Material Property Widget saving overrides onto instances instead of meshes
- Fixed Toolkit Build Dependencies to allow building externally

### Removed
- Cleaned up legacy code and unused files

## [1.0.0]

Expand Down
2 changes: 0 additions & 2 deletions auto_update_extension_deps.bat

This file was deleted.

4 changes: 0 additions & 4 deletions auto_update_extension_deps.sh

This file was deleted.

11 changes: 0 additions & 11 deletions deps/host-deps.packman.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,4 @@
<dependency name="premake" linkPath="../_build/host-deps/premake">
<package name="premake" version="5.0.0-beta2+nv1-${platform}" platforms="windows-x86_64 linux-x86_64 linux-aarch64" />
</dependency>
<dependency name="msvc" linkPath="../_build/host-deps/msvc">
<!-- If this version changes, you must also fix up MSVC_VERSION in premake5-public.lua -->
<package name="msvc" version="2019-16.11.17-2" platforms="windows-x86_64" />
</dependency>
<dependency name="winsdk" linkPath="../_build/host-deps/winsdk">
<package name="winsdk" version="10.17763" platforms="windows-x86_64"/>
</dependency>
<dependency name="linbuild" linkPath="../_build/host-deps/linbuild">
<package name="linbuild" version="3.6.1-linux-aarch64" platforms="linux-aarch64" />
<package name="linbuild" version="3.6.1-linux-x86_64" platforms="linux-x86_64" />
</dependency>
</project>
2 changes: 2 additions & 0 deletions docs/howto/learning-packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ If any references are missing, you'll see a dialog prompting you to fix the unre
See the [Fixing Unresolved Assets section](../toolkitinterface/remix-toolkitinterface-layouttab.md#fixing-unresolved-assets) for more information on the dialog in question.
```

<iframe width="560" height="315" src="https://www.youtube.com/embed/efdQngiggdE?si=JVhF-t5cQgM1zpMW&amp;controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

Once packaging is complete, click the "Open in Explorer" button to see your packaged mod directory.
You can easily zip up this directory, and it'll be ready for uploading and sharing.

Expand Down
12 changes: 6 additions & 6 deletions docs/remix-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ Finally, using the RTX Remix Toolkit, you are able to easily make and add new ga

## Technical Requirements

RTX Remix and its mods are built to run on RTX-powered machines. For ideal performance, we recommend using GeForce RTX™ 4070 or higher. For latest drivers, visit [NVIDIA Driver Downloads](https://www.nvidia.com/Download/index.aspx)s. For Quadro, select 'Quadro New Feature Driver (QNF).
RTX Remix and its mods are built to run on RTX-powered machines. For ideal performance, we recommend using GeForce RTX™ 4070 or higher. For latest drivers, visit [NVIDIA Driver Downloads](https://www.nvidia.com/Download/index.aspx). For Quadro, select 'Quadro New Feature Driver (QNF).


| Level | Operating System | CPU | CPU Cores | RAM | GPU | VRAM | Disk |
| :------------------: | :---------------: | :-------------------: | :-------: | :-----: | :----------------: | :---: |:-------------:|
| Min | Windows 10/11 | Intel I7 or AMD Ryzen 7 | 4 | 16 GB | GeForce RTX 3060Ti | 8 GB | 10 GB SSD |
| Rec | Windows 10/11 | Intel I7 or AMD Ryzen 7 | 8 | 32 GB | GeForce RTX 4070 | 12 GB | 10 GB M.2 SSD |
| Level | Operating System | CPU | RAM | GPU | VRAM | Disk |
|:---------------:|:----------------:|:-----------------------------------:|:-----:|:----------------:|:-----:|:--------------:|
| **Minimum** | Windows 10 | N/A | N/A | Any RTX GPU | N/A | 10 GB SSD |
| **Recommended** | Windows 11 | Intel i7 13700K / AMD Ryzen 7 7700X | 32 GB | GeForce RTX 4070 | 12 GB | 10 GB NVME SSD |

Since the RTX Remix Application is built using the Omniverse Kit SDK, We recommend that you review the [Omniverse Technical Requirement Documentation](https://docs.omniverse.nvidia.com/materials-and-rendering/latest/common/technical-requirements.html) for further details on what is required to use Applications within the Omniverse Platform.
Since the RTX Remix Toolkit is built using the Omniverse Kit SDK, We recommend that you review the [Omniverse Technical Requirement Documentation](https://docs.omniverse.nvidia.com/materials-and-rendering/latest/common/technical-requirements.html) for further details on what is required to use Applications within the Omniverse Platform.

## Requirements For Modders

Expand Down
9 changes: 2 additions & 7 deletions docs_dev/REVIEW_CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Before submitting your code for review, please ensure you have thoroughly evalua

5. **Version Bumping and Dependency Updates**:
- Always bump the version of any extensions you modify.
- After updating the extensions, run `./auto_update_extension_deps.bat` to update the kit files accordingly.
- Add an entry to the `changelog.md` files for all modified extensions, as well as the central `CHANGELOG.md` file
in the root of the repository, to describe the changes that were made.

Expand All @@ -43,8 +42,7 @@ Before submitting your code for review, please ensure you have thoroughly evalua
purpose and usage. The documentation for the code will be generated from these docstrings.

- **Version Bumping and Dependency Updates**: Incrementing the version of modified extensions ensures that changes are
tracked and managed properly. Running `./auto_update_extension_deps.bat` updates the kit files to reflect these
changes, maintaining consistency across the project. Additionally, updating the `changelog.md` files for all modified
tracked and managed properly. Additionally, updating the `changelog.md` files for all modified
extensions and the central `CHANGELOG.md` file in the repository provides a clear record of the changes made.

## Examples
Expand Down Expand Up @@ -112,10 +110,7 @@ Maintain version control and update dependencies to ensure consistency:
1. **Bump Extension Versions**: Always increment the version of any extensions you modify. This practice helps in
tracking changes and managing updates effectively.

2. **Update Kit Files**: After making changes to the extensions, run `./auto_update_extension_deps.bat` to update the
kit files accordingly. This step ensures that all dependencies are accurately reflected in the project.

3. **Update Changelog**: Add an entry to the `changelog.md` files for all modified extensions, as well as the
2. **Update Changelog**: Add an entry to the `changelog.md` files for all modified extensions, as well as the
central `CHANGELOG.md` file in the root of the repository, to describe the changes that were made.

## Conclusion
Expand Down
75 changes: 31 additions & 44 deletions repo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@
logging = "warn"

# Use Kit Template repo configuration as a base. Only override things specific to the repo.
import_configs = ["${root}/_repo/deps/repo_kit_tools/kit-template/repo.toml", "${root}/repo_public.toml"]
import_optional_configs = ["${root}/repo_internal.toml"]
import_configs = [
"${root}/_repo/deps/repo_kit_tools/kit-template/repo.toml",
"${root}/repo_public.toml"
]
import_optional_configs = [
"${root}/repo_internal.toml"
]

# Reposiory Name. It is used for solution name and final package name
name = "rtx_remix"
Expand Down Expand Up @@ -341,17 +346,19 @@ release.files_exclude = [
#######################################################################################################################
[repo_build]

# Build is disabled but pre-build commands are still executed
pre_build.commands = [
# Pull install-time dependencies
["${root}/_build/${platform}/${config}/pull_dependencies${shell_ext}"],
]

# Multiple commands (processes) can be executed in order after build.
# These have the same behavior as repo_build.pre_build.commands, except that they run after the build.
post_build.commands = [
# Generate the stubgen config file
["${root}/repo${shell_ext}", "stubgen", "-c", "${config}"],
# Generate a shortcut to run the Mass Ingestion CLI in LSS
["${root}/_build/${platform}/${config}/kit/kit${exe_ext}", "${root}/_build/${platform}/${config}/apps/lightspeed.app.trex.validation_cli_generator.kit", "--no-window", "--/app/extensions/excluded/0='omni.kit.splash' --/app/extensions/excluded/1='omni.kit.window.splash' --/app/settings/persistent=0 --/app/settings/loadUserConfig=0 --/structuredLog/enable=0 --/app/hangDetector/enabled=0 --/crashreporter/skipOldDumpUpload=1 --/app/content/emptyStageOnStart=1", "--/app/file/ignoreUnsavedOnExit=1", "--/app/fastShutdown=1", "--/app/quitAfter=10", "--exec", "${root}/tools/custom/generate_mass_cli.py"],
["${root}/_build/${platform}/${config}/kit/kit${exe_ext}", "${root}/_build/${platform}/${config}/apps/omni.flux.app.service.documentation_cli_generator.kit", "--no-window", "--exec", "${root}/tools/custom/generate_app.py -id omni.flux.service.documentation -n omni.flux.app.service.documentation.cli"],
# TODO: rewrite without extension manager dependency running in app. Should be able to pass root path to tool.
# # Generate a shortcut to run the Mass Ingestion CLI in LSS
# ["${root}/_build/${platform}/${config}/kit/kit${exe_ext}", "${root}/_build/${platform}/${config}/apps/lightspeed.app.trex.validation_cli_generator.kit", "--no-window", "--/app/extensions/excluded/0='omni.kit.splash' --/app/extensions/excluded/1='omni.kit.window.splash' --/app/settings/persistent=0 --/app/settings/loadUserConfig=0 --/structuredLog/enable=0 --/app/hangDetector/enabled=0 --/crashreporter/skipOldDumpUpload=1 --/app/content/emptyStageOnStart=1", "--/app/file/ignoreUnsavedOnExit=1", "--/app/fastShutdown=1", "--/app/quitAfter=10", "--exec", "${root}/tools/custom/generate_mass_cli.py"],
# TODO: Need to figure out how to skip for github builds
# # Generate the service documentation
# ["${root}/_build/${platform}/${config}/kit/kit${exe_ext}", "${root}/_build/${platform}/${config}/apps/omni.flux.app.service.documentation_cli_generator.kit", "--no-window", "--exec", "${root}/tools/custom/generate_app.py -id omni.flux.service.documentation -n omni.flux.app.service.documentation.cli"],
]

copy = [
Expand All @@ -367,10 +374,12 @@ files_to_pull = [
"${root}/deps/pip_internal.toml",
]

[repo_build.build]
enabled = false

# Disable linbuild until we have a public image available.
[repo_build.docker]
# Linbuild against Ubuntu 22 CI Builder images
"platform:linux-x86_64".image_url = "urm.nvidia.com/ct-omniverse-docker/ci-jammy-x86_64-builder:1.0.6-97c67f00"
"platform:linux-aarch64".image_url = "urm.nvidia.com/ct-omniverse-docker/ci-jammy-aarch64-builder:1.0.6-97c67f00"
enabled = false

[repo_stubgen]
exts_exclude = [
Expand Down Expand Up @@ -523,35 +532,12 @@ autodoc_mock_imports = [
sphinx_exclude_patterns = [
####################################################################################################################
# Documentation generation failures
# Undocumented errors are: WARNING: document isn't included in any toctree
####################################################################################################################
"source/extensions/lightspeed.asset_capture_localizer.*",
"source/extensions/lightspeed.color_to_normal.*",
"source/extensions/lightspeed.color_to_roughness.*",
"source/extensions/lightspeed.common*",
"source/extensions/lightspeed.error_popup.*",
"source/extensions/lightspeed.event.*",
"source/extensions/lightspeed.events_manager*",
"source/extensions/lightspeed.export*",
"source/extensions/lightspeed.layer_helpers*",
"source/extensions/lightspeed.layer_manager*",
"source/extensions/lightspeed.light.gizmos*",
"source/extensions/lightspeed.lock_xform*",
"source/extensions/lightspeed.paths_to_relative.*",
"source/extensions/lightspeed.pip_archive*",
"source/extensions/lightspeed.property_template*",
"source/extensions/lightspeed.stage_column_nickname*",
"source/extensions/lightspeed.tool.material.*",
"source/extensions/lightspeed.tool.octahedral_converter*",
"source/extensions/lightspeed.trex.layout.*",
"source/extensions/lightspeed.trex.stage_manager.plugin.widget.usd*", # Excluded to avoid viewports import doc build failure
"source/extensions/lightspeed.trex.viewports.shared.*", # Kit is Executing extension-logic at the module-level which crashes docs generation
"source/extensions/lightspeed.upscale.*",
"source/extensions/lightspeed.widget.content_viewer*",
"source/extensions/lightspeed.widget.game_captures*",
"source/extensions/lightspeed.widget.new_game*",
"source/extensions/lightspeed.widget.new_workspace*",
"source/extensions/lightspeed.workspace*",
"source/extensions/lightspeed.event.waypoint_game_camera*", # Carb interface is not available
"source/extensions/lightspeed.event.generate_thumbnail*", # Carb interface is not available
"source/extensions/lightspeed.trex.layout.*", # Carb interface is not available
"source/extensions/lightspeed.trex.stage_manager.plugin.widget.usd*", # Carb interface is not available
"source/extensions/lightspeed.trex.viewports.shared.*", # Carb interface is not available
####################################################################################################################
# Ignore directories
####################################################################################################################
Expand All @@ -563,9 +549,6 @@ sphinx_exclude_patterns = [
"tools",
"SECURITY.md",
"VERSION.md",
"source/extensions/lightspeed_example*",
"source/extensions/lightspeed.common/**/tools/*", # 3rd part tools documentation
"source/extensions/lightspeed.widget.content_viewer/**/jxnblk-LICENSE.md", # 3rd part tools documentation
"**/omni-core-materials-LICENSE.md",
####################################################################################################################
# Development READMEs
Expand All @@ -576,7 +559,11 @@ sphinx_exclude_patterns = [
]

redirects = [
{ path = "docs/remix-releasenote.html", target = "docs/remix-releasenotes.html" }
{ path = "docs/remix-releasenote.html", target = "docs/remix-releasenotes.html" },
{ path = "docs/howto/learning-runtimesetup.html", target = "docs/gettingstarted/learning-runtimesetup.html" },
{ path = "docs/howto/tutorial-remixtool.html", target = "docs/tutorials/tutorial-remixtool.html" },
{ path = "docs/howto/learning-viewport.html", target = "docs/toolkitinterface/remix-toolkitinterface-viewport.html" },
{ path = "docs/howto/tutorial-portalhl2.html", target = "docs/tutorials/tutorial-portalhl2.html" },
]

repo_url = "https://gitlab-master.nvidia.com/lightspeedrtx/lightspeed-kit/-/blob/master"
Expand Down
32 changes: 1 addition & 31 deletions source/apps/exts.deps.generated.kit
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@

# All local extensions built in this repo:
[dependencies]
"lightspeed.asset_capture_localizer.core" = {}
"lightspeed.asset_capture_localizer.menu" = {}
"lightspeed.asset_capture_localizer.window" = {}
"lightspeed.color_to_normal.core" = {}
"lightspeed.color_to_normal.menu" = {}
"lightspeed.color_to_roughness.core" = {}
"lightspeed.color_to_roughness.menu" = {}
"lightspeed.common" = {}
"lightspeed.dependencies" = {}
"lightspeed.error_popup.window" = {}
Expand All @@ -45,22 +38,15 @@
"lightspeed.events_manager" = {}
"lightspeed.hydra.remix.bootstrap" = {}
"lightspeed.hydra.remix.core" = {}
"lightspeed.layer_helpers" = {}
"lightspeed.layer_manager.core" = {}
"lightspeed.layer_manager.service" = {}
"lightspeed.light.gizmos" = {}
"lightspeed.lock_xform" = {}
"lightspeed.paths_to_relative.core" = {}
"lightspeed.paths_to_relative.menu" = {}
"lightspeed.paths_to_relative.window" = {}
"lightspeed.pip_archive" = {}
"lightspeed.progress_popup.window" = {}
"lightspeed.project_manager.service" = {}
"lightspeed.sentry_manager.core" = {}
"lightspeed.sentry_manager.event" = {}
"lightspeed.stage_column_nickname" = {}
"lightspeed.tool.material.core" = {}
"lightspeed.tool.material.widget" = {}
"lightspeed.tool.octahedral_converter" = {}
"lightspeed.trex.app.resources" = {}
"lightspeed.trex.app.setup" = {}
Expand Down Expand Up @@ -109,6 +95,7 @@
"lightspeed.trex.properties_pane.shared.mod_setup.widget" = {}
"lightspeed.trex.properties_pane.shared.render.widget" = {}
"lightspeed.trex.properties_pane.stagecraft.widget" = {}
"lightspeed.trex.recent_projects.core" = {}
"lightspeed.trex.replacement.core.shared" = {}
"lightspeed.trex.selection_tree.shared.widget" = {}
"lightspeed.trex.service.core" = {}
Expand Down Expand Up @@ -137,21 +124,6 @@
"lightspeed.trex.viewports.stagecraft.bundle" = {}
"lightspeed.trex.waypoint.core" = {}
"lightspeed.ui_scene.light_manipulator" = {}
"lightspeed.upscale.content_browser.menu" = {}
"lightspeed.upscale.core" = {}
"lightspeed.upscale.menu" = {}
"lightspeed.widget.content_viewer" = {}
"lightspeed.widget.game_captures" = {}
"lightspeed.widget.new_game" = {}
"lightspeed.widget.new_workspace" = {}
"lightspeed.workspace" = {}
"lightspeed_example.app.resources" = {}
"lightspeed_example.my_name.controller" = {}
"lightspeed_example.my_name.core" = {}
"lightspeed_example.my_name.menu" = {}
"lightspeed_example.my_name.widget" = {}
"lightspeed_example.my_name.window" = {}
"lightspeed_example.style" = {}
"omni.flux.asset_importer.core" = {}
"omni.flux.asset_importer.widget" = {}
"omni.flux.bookmark_tree.model.usd" = {}
Expand Down Expand Up @@ -234,8 +206,6 @@
"omni.flux.wizard.window" = {}




########################################################################################################################
# BEGIN GENERATED PART (Remove from 'BEGIN' to 'END' to regenerate)
########################################################################################################################
Expand Down
3 changes: 3 additions & 0 deletions source/apps/lightspeed.app.trex.stagecraft.kit
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ context = ""
[settings.exts."lightspeed.event.save_global_muteness"]
context = ""

[settings.exts."lightspeed.event.save_recent"]
context = ""

[settings.exts."lightspeed.event.save_root_mod"]
context = ""

Expand Down
Loading
Loading