Skip to content

Commit c2a3c13

Browse files
authored
Merge pull request #18 from stereolabs/fix-stream-zed-sdk-4.2.5
Fix ZED SDK 4.2.5 compatibility
2 parents 88ae7ed + 748831e commit c2a3c13

File tree

7 files changed

+8
-5
lines changed

7 files changed

+8
-5
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.

exts/sl.sensor.camera/config/extension.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11

22
[package]
33
# Semantic Versioning is used: https://semver.org/
4-
version = "2.0.0"
4+
version = "2.0.1"
55

66
# Lists people or organizations that are considered the "authors" of the package.
77
authors = ["Stereolabs"]
88

99
# The title and description fields are primarly for displaying extension info in UI
1010
title = "ZED Camera Extension"
11-
description="Streams virtual ZED camera data to the ZED SDK. "
11+
description = "Streams virtual ZED camera data to the ZED SDK. "
1212

1313
# Path (relative to the root) or content of readme markdown file for UI.
14-
readme = "docs/README.md"
14+
readme = "docs/README.md"
1515

1616
# Path (relative to the root) or content of changelog markdown file for UI.
17-
changelog = "docs/CHANGELOG.md"
17+
changelog = "docs/CHANGELOG.md"
1818

1919
# URL of the extension source repository.
20-
repository="https://github.com/stereolabs/zed-isaac-sim"
20+
repository = "https://github.com/stereolabs/zed-isaac-sim"
2121

2222
# One of categories for UI.
2323
category = "simulation"
@@ -35,6 +35,7 @@ icon = "data/icon.png"
3535
[package.target]
3636
platform = ["windows-x86_64", "linux-x86_64"]
3737
python = ["cp310"]
38+
kit = ["106.1.0"]
3839

3940
# Watch the .ogn files for hot reloading (only works for Python files)
4041
[fswatcher.patterns]

exts/sl.sensor.camera/sl/sensor/camera/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
# Any class derived from `omni.ext.IExt` in a top level module (defined in `python.modules` of `extension.toml`) will be
66
# instantiated when the extension is enabled and `on_startup(ext_id)` will be called. Later when extension gets disabled
77
# on_shutdown() will be called.
8+
9+
810
class SlSensorCameraExtension(omni.ext.IExt):
911
# ext_id is the current extension id. It can be used with the extension manager to query additional information,
1012
# such as where this extension is located in the filesystem.
Binary file not shown.

0 commit comments

Comments
 (0)