Source code for isaaclab.assets.cable_object.cable_object_cfg
# Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
from __future__ import annotations
from typing import TYPE_CHECKING
from isaaclab.assets.asset_base_cfg import AssetBaseCfg
from isaaclab.utils.configclass import configclass
if TYPE_CHECKING:
from .cable_object import CableObject
[docs]
@configclass
class CableObjectCfg(AssetBaseCfg):
"""Configuration parameters for a cable object.
The inherited :attr:`init_state` sets the cable's spawn position and orientation.
"""
class_type: type[CableObject] | str = "{DIR}.cable_object:CableObject"