Robot-Body-Neutral Profile USD Authoring Guide#
This document describes how to author a USD asset that conforms to the
Robot-Body-Neutral profile. It consolidates the required feature set, USD
properties, naming conventions, and composition expectations.
Profile definition#
The Robot-Body-Neutral profile includes the following feature set (see profiles.toml and the feature dependency graph). Each feature’s requirements and dependencies are defined in the feature specifications.
[Robot-Body-Neutral]
"1.0.0" = {features = [
{"FET001_BASE_NEUTRAL" = {version = "0.1.0"}}, # Minimal
{"FET003_BASE_NEUTRAL" = {version = "0.1.0"}}, # RBD Physics
{"FET004_BASE_NEUTRAL" = {version = "0.1.0"}}, # Multi-Body Physics
{"FET022_DRIVEN_JOINTS_NEUTRAL" = {version = "0.1.0"}}, # Driven Joints
{"FET024_BASE_ARTICULATION_NEUTRAL" = {version = "0.1.0"}}, # Articulation
]}
Required USD properties and schemas#
Stage metadata (required)#
defaultPrimmust be set on every layer.upAxis = "Z"andmetersPerUnit = 1must be set on every stage.
Rigid bodies and colliders (required)#
Apply
PhysicsRigidBodyAPIto any simulated rigid body prim.Apply
PhysicsCollisionAPIto collision-enabled prims.Rigid body prims must be
UsdGeomXformable.
Multi-body joints (required)#
Use
UsdPhysicsJointprims (or subtypes) to connect rigid bodies.Author
rel physics:body0andrel physics:body1relationships.
Driven joints (required)#
Apply
PhysicsDriveAPI:*andPhysicsJointStateAPI:*to driven joints.Author
drive:*:physics:maxForcewith a positive, finite value.Ensure joint state and drive targets are consistent with authored transforms.
Articulation root (required)#
Apply PhysicsArticulationRootAPI to the root prim of the articulation:
def Xform "Robot" (
prepend apiSchemas = ["PhysicsArticulationRootAPI"]
)
{
}
Stage composition requirements#
This profile does not require Isaac Sim composition. A single-layer USD is acceptable. If you choose to split layers, keep all references and payloads relative and consistent.
Naming conventions#
Prim naming#
Choose either
camelCaseorsnake_caseand use it consistently.Avoid spaces, special characters, and reserved keywords.
Use descriptive, purpose-driven names.
Use prefixes by prim type when appropriate (e.g.,
mesh_,material_).
File naming#
Use lowercase file names.
Use
.usd,.usda,.usdc, or.usdzas appropriate.Use underscores or hyphens; avoid spaces and special characters.
Avoid reserved names (e.g.,
CON,PRN,AUX,NUL).Use version numbers when appropriate (e.g.,
_v1.0).
Validation metadata (recommended)#
Include profile metadata in customLayerData to simplify validation workflows:
customLayerData = {
dictionary SimReady_Metadata = {
dictionary validation = {
string profile = "Robot-Body-Neutral"
string profile_version = "1.0.0"
}
}
}
References#
Feature dependency graph — requirements and dependencies for all features
nv_core/sr_specs/docs/profiles/profiles.tomlnv_core/sr_specs/docs/features/FET_003-rigid_body_physics.mdnv_core/sr_specs/docs/features/FET_004-simulate_multi_body_physics.mdnv_core/sr_specs/docs/features/FET_022-driven_joints.mdnv_core/sr_specs/docs/features/FET_024-base_articulation.mdnv_core/sr_specs/docs/capabilities/physics_bodies/physics_joints/requirements/joint-capability.mdnv_core/sr_specs/docs/capabilities/physics_bodies/physics_driven_joints/requirements/physics-drive-and-joint-state.mdnv_core/sr_specs/docs/capabilities/physics_bodies/physics_driven_joints/requirements/joint-has-joint-state-api.mdnv_core/sr_specs/docs/capabilities/physics_bodies/physics_driven_joints/requirements/joint-has-correct-transform-and-state.mdnv_core/sr_specs/docs/capabilities/physics_bodies/base_articulation/requirements/has-articulation-root.mdnv_core/sr_specs/docs/capabilities/core/naming_paths/requirements/prim-naming-convention.mdnv_core/sr_specs/docs/capabilities/core/naming_paths/requirements/file-naming-convention.md