Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions source/isaaclab/isaaclab/physics/physics_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from typing import TYPE_CHECKING, Any, ClassVar

if TYPE_CHECKING:
from isaaclab.scene.scene_data_provider import SceneDataBackend
from isaaclab.sim.simulation_context import SimulationContext

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -259,6 +260,12 @@ def forward(cls) -> None:
"""Update kinematics without stepping physics (for rendering)."""
pass

@classmethod
@abstractmethod
def get_scene_data_backend(cls) -> SceneDataBackend:
"""Return the SceneDataBackend for the SceneDataProvider."""
pass
Comment thread
daniela-hase marked this conversation as resolved.

@classmethod
@abstractmethod
Comment thread
daniela-hase marked this conversation as resolved.
def step(cls) -> None:
Expand Down
Loading