We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d63d7e7 commit ae90598Copy full SHA for ae90598
1 file changed
source/isaaclab/isaaclab/sensors/camera/tiled_camera.py
@@ -17,6 +17,7 @@
17
import warnings
18
19
from .camera import Camera
20
+from .tiled_camera_cfg import TiledCameraCfg
21
22
23
class TiledCamera(Camera):
@@ -26,7 +27,7 @@ class TiledCamera(Camera):
26
27
Use :class:`Camera` directly — it now uses the same Renderer abstraction.
28
"""
29
- def __init__(self, cfg):
30
+ def __init__(self, cfg: TiledCameraCfg):
31
warnings.warn(
32
"TiledCamera is deprecated and will be removed in a future release. "
33
"Use Camera directly — it now uses the same Renderer abstraction.",
0 commit comments